Metadata-Version: 2.1
Name: quicklearning
Version: 0.0.9
Summary: Create Tensorflow models and train them fast and easy
Home-page: https://github.com/JorgePoblete/quicklearning
Author: koke
Author-email: jpobleteriquelme@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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: Pillow (>=7.2.0)
Requires-Dist: DuckDuckGoImages (>=2.0.0)
Requires-Dist: tensorflow (>=2.3.0)
Requires-Dist: tensorflow-hub (>=0.9.0)
Provides-Extra: dev
Requires-Dist: pytest (>=3.7) ; extra == 'dev'


 ## quicklearning

## Instalation

To install run the following:

```python
pip install quicklearning
```

## automodel usage

First import
```python
from quicklearning.classification.image import automodel
```

then run something like
```python
model = automodel.fit(automodel.balanced, 1, ['cat', 'dog'], verbose=True)
```

