Metadata-Version: 2.1
Name: deepdanbooru-onnx
Version: 0.0.6
Summary: anime image classification
Home-page: https://github.com/chinoll/deepdanbooru_onnx
Author: chinoll
Author-email: chinoll@chinoll.org
License: UNKNOWN
Description: # DeepDanbooru
        动漫图片分类模型
        # 安装
        ```
        pip install deepdanbooru-onnx
        ```
        # 使用
        ```python
        from deepdanbooru_onnx import DeepDanbooru, process_image
        from PIL import Image
        import numpy as np
        danbooru = DeepDanbooru()
        print(danbooru('test.jpg'))
        img = Image.open('test.jpg')
        print(danbooru(img))
        img = process_image(img) # iamge to ndarray
        print(danbooru(img))
        print(list(danbooru(['test1.jpg','test2.jpg'])))
        ```
Keywords: deepdanbooru,anime,image classification,onnx,deep learning
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Requires: onnx
Requires: onnxruntime
Requires: tqdm
Requires: numpy
Requires: Pillow
Requires: requests
Requires: shutil
Requires: hashlib
Requires: os
Description-Content-Type: text/markdown
