Metadata-Version: 2.1
Name: teachable-machine
Version: 0.1.1
Summary: A Python package to simplify the deployment process of exported Teachable Machine models.
Home-page: https://github.com/MeqdadDev/teachable-machine
Author: Meqdad Dev (Meqdad Darwish)
Author-email: meqdad.darweesh@gmail.com
License: UNKNOWN
Download-URL: https://github.com/MeqdadDev/teachable-machine
Keywords: python,teachable machine,ai,computer vision,camera,opencv,image classification
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: Pillow
Requires-Dist: tensorflow

# Teachable Machine

A Python package to simplify the deployment of exported Teachable Machine models into different environments like PC, Raspberry Pi and so on.

Link on PyPI: <https://pypi.org/project/teachable-machine/>

## Requirements

Python >= 3.8

## How to install package

```bash
pip install teachable-machine
```

## Dependencies

```numpy, Pillow, tensorflow```

## How to use teachable machine package

```py
from teachable_machine import TeachableMachine

my_model = TeachableMachine(model_path='keras_model.h5', deployment_env='pc')

img_path = 'images/my_image.jpg'

highest_prediction, predictions = my_model.classify_on_pc(img_path)
```

More features are coming...


