Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-13T05:07:25.000Z (about 3 years ago)
- Last Synced: 2024-10-04T23:17:17.788Z (3 months ago)
- Topics: computer-vision, convolutional-neural-networks, deep-learning, keras, keras-tensorflow, matplotlib, opencv, tensorflow
- Language: Python
- Homepage:
- Size: 82 KB
- Stars: 10
- 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[![Downloads](https://pepy.tech/badge/canaro)](https://pepy.tech/project/canaro)
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](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 canaroprint(f'Canaro version {canaro.__version__}')
```## License
canaro is released under the [MIT License](https://github.com/jasmcaus/canaro/blob/master/LICENSE)