Coverage for deeponnxcustom/__init__.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v6.4.1, created at 2022-06-06 02:28 +0200

1# coding: utf-8 

2""" 

3@file 

4@brief Experimentation with ONNX about deep learning, examples. 

5""" 

6 

7__version__ = "0.1.0" 

8__author__ = "Xavier Dupré, ..." 

9__max_supported_opset__ = 15 # Converters are tested up to this version. 

10 

11 

12def check(verbose=1): 

13 """ 

14 Runs a couple of functions to check the module is working. 

15 

16 :param verbose: 0 to hide the standout output 

17 :return: list of dictionaries, result of each test 

18 """ 

19 return []