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

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.

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); });
```