Metadata-Version: 2.1
Name: paddlejsmodelcheck
Version: 0.0.11
Summary: Paddlejs model check
Home-page: https://github.com/PaddlePaddle/Paddle.js
Author: paddlejs
Author-email: 382248373@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: paddlepaddle (>=2.0.0)
Requires-Dist: numpy

# PaddleJsModelCheck

Check if there are unsupported operators in the model
Check if there are tensors which shape are exceed the MAX_TEXTURE_SIZE

## Installation

System Requirements:

* paddlepaddle >= 2.0.0
* Python3： 3.5.1+ / 3.6 / 3.7
* Python2： 2.7.15+

#### Install PaddleJsModelCheck

```shell
pip3 install paddlejsmodelcheck

# or

pip install paddlejsmodelcheck
```


## Usage

```shell
# model and params file should be put in a same directory
paddlejsmodelcheck --modelPath=user_model_path --paramPath=user_model_params_path

# or

# source code
python3 check.py --modelPath=user_model_path --paramPath=user_model_params_path
```


