https://github.com/lovesaroha/trained-models
List of trained tensorflow javascript models for web applications.
https://github.com/lovesaroha/trained-models
javascript tensorflow tensorflow-models
Last synced: 9 months ago
JSON representation
List of trained tensorflow javascript models for web applications.
- Host: GitHub
- URL: https://github.com/lovesaroha/trained-models
- Owner: lovesaroha
- License: gpl-3.0
- Created: 2021-10-01T09:37:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-11T09:06:27.000Z (over 4 years ago)
- Last Synced: 2025-02-13T18:49:39.626Z (11 months ago)
- Topics: javascript, tensorflow, tensorflow-models
- Homepage:
- Size: 36.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Trained-Models
List of trained tensorflow javascript models for web applications.
## Usage
```js
let model;
// Serve model files using localhost server.
tf.loadLayersModel("http://localhost/model-name/model.json").then(savedModel => {
model = savedModel;
}).catch(e => { console.log(e); });
```