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

https://github.com/guilt/keras-helper

Helpful Keras Import Wrapper
https://github.com/guilt/keras-helper

Last synced: 7 months ago
JSON representation

Helpful Keras Import Wrapper

Awesome Lists containing this project

README

          

# Helpful Keras Import Wrapper

This is a library meant to help get an optimized version of
Keras and other useful libraries without worrying about what
is the underlying implementation (PlaidML, Tensorflow etc.)

## Installation

```bash
pip install keras-helper
```

and then install your other Keras packages as necessary.

## Usage

```python
from keras_helper import keras

if not keras:
raise ImportError('No keras found')
```

## Questions?

Reach out to *Karthik Kumar Viswanathan* `karthikkumar at gmail dot com`
for any suggestions, feedback. PRs welcome.