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
- Host: GitHub
- URL: https://github.com/guilt/keras-helper
- Owner: guilt
- License: mit
- Created: 2020-10-02T10:26:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T10:34:29.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T06:59:42.991Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.