Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 canaro

print(f'Canaro version {canaro.__version__}')
```

## License

canaro is released under the [MIT License](https://github.com/jasmcaus/canaro/blob/master/LICENSE)