Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keppel/nfer
the easiest way to deploy a keras model
https://github.com/keppel/nfer
keras
Last synced: about 19 hours ago
JSON representation
the easiest way to deploy a keras model
- Host: GitHub
- URL: https://github.com/keppel/nfer
- Owner: keppel
- Created: 2017-03-18T05:49:05.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-18T05:49:37.000Z (almost 8 years ago)
- Last Synced: 2024-12-18T19:38:02.380Z (about 2 months ago)
- Topics: keras
- Language: JavaScript
- Homepage: https://nfer.kep.io
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## nfer
the easiest way to deploy a [keras] model.### usage
```
npm install -g nfer
nfer# outputs: https://nfer.kep.io/models/fa291771204d3a4b4/
```then POST there with a body like:
```js
{
input: [
[0, 0],
[0, 1],
[1, 0],
[1, 1]
]
}
```and get a response like:
```js
{
output: [
[0.000008271],
[0.999998127],
[0.999994382],
[0.000001173]
]
}
```doesn't get much simpler than that!
[keras]: https://keras.io