Created
March 24, 2019 13:30
-
-
Save NMZivkovic/216dcd10b89da6e4165b4b0aebd19562 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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