Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created March 24, 2019 13:30
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save NMZivkovic/216dcd10b89da6e4165b4b0aebd19562 to your computer and use it in GitHub Desktop.
async function run() {
const data = await getData();
await displayDataFunction(data, 30);
const model = createModel();
tfvis.show.modelSummary({name: 'Model Architecture'}, model);
await trainModel(model, data, 20);
await evaluateModel(model, data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment