Licence
MIT
Version
0.1.1
Deps
8
Size
7.3 MB
Vulns
3
Weekly
0
Vue Backpropagation Exercise
This vue component packages an interactive web based exercise about visually retracing the backpropagation steps performed when training neural nets. See a live demo.
npm install --save vue-backpropagation-exercise

Configuration
Add the component to your Vue project (this assumes typescript is used):
import VueBackpropagationExercise, {
BackpropGraph
} from "vue-backpropagation-exercise";
@Component({
components: {
VueBackpropagationExercise
}
})
export default class App extends Vue {}
Use props to configure the component
<vue-backpropagation-exercise
:data="netTree"
:func="netFunc"
:debug="true"
:submissionValidator="handleSubmit"
editable="w_1"
lang="en"
/>
For an example configuration, see src/App.vue.
Development
To set up:
npm installCompiles and hot-reloads for development:
npm run serveCompiles and minifies for production:
npm run buildRun your unit tests:
npm run test:unitLints and fixes files
npm run lint