vue-backpropagation-exercise
Version:
Web based exercise about visually retracing the backpropagation steps performed when training neural nets.
20 lines (15 loc) • 386 B
HTML
<meta charset="utf-8">
<title>VueBackpropagationExercise demo</title>
<script src="https://unpkg.com/vue"></script>
<script src="./VueBackpropagationExercise.umd.js"></script>
<link rel="stylesheet" href="./VueBackpropagationExercise.css">
<div id="app">
<demo></demo>
</div>
<script>
new Vue({
components: {
demo: VueBackpropagationExercise
}
}).$mount('#app')
</script>