https://github.com/jasmcaus/canaro
A Python library including support for Deep Learning models built using the Keras framework
https://github.com/jasmcaus/canaro
computer-vision convolutional-neural-networks deep-learning keras keras-tensorflow matplotlib opencv tensorflow
Last synced: about 1 year ago
JSON representation
A Python library including support for Deep Learning models built using the Keras framework
- Host: GitHub
- URL: https://github.com/jasmcaus/canaro
- Owner: jasmcaus
- License: mit
- Created: 2020-08-17T18:09:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-13T05:07:25.000Z (over 4 years ago)
- Last Synced: 2025-03-22T02:03:39.282Z (over 1 year ago)
- Topics: computer-vision, convolutional-neural-networks, deep-learning, keras, keras-tensorflow, matplotlib, opencv, tensorflow
- Language: Python
- Homepage:
- Size: 82 KB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Canaro
A Python library including support for Deep Learning models built using the Keras framework
[](https://pepy.tech/project/canaro)
[](https://github.com/jasmcaus/canaro/blob/master/LICENSE)
## Installation
To install the current release:
```shell
$ pip install canaro
```
Optionally, Canaro can also install [caer](https://github.com/jasmcaus/caer) if you install it with `pip install canaro[caer]`
### Installing from Source
First, clone the repo on your machine and then install with `pip`:
```shell
git clone https://github.com/jasmcaus/canaro.git
cd canaro
pip install -e .
```
You can run the following to verify things installed correctly:
```python
import canaro
print(f'Canaro version {canaro.__version__}')
```
## License
canaro is released under the [MIT License](https://github.com/jasmcaus/canaro/blob/master/LICENSE)