# vue-backpropagation-exercise

> Web based exercise about visually retracing the backpropagation steps performed when training neural nets.

Latest version **0.1.1** (published 2020-03-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-backpropagation-exercise
pnpm add vue-backpropagation-exercise
yarn add vue-backpropagation-exercise
bun add vue-backpropagation-exercise
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2020-03-07 |
| First published | 2020-03-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 7.3 MB |
| Known vulnerabilities | 0 (+3 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | into-ai |
| Maintainers | intoai |
| Keywords | backpropagation, mooc, exercise, learning, vuejs, vue-component |

## Links

- npm: https://www.npmjs.com/package/vue-backpropagation-exercise
- Repository: https://github.com/into-ai/vue-backpropagation-exercise
- Homepage: https://github.com/into-ai/vue-backpropagation-exercise#readme
- Issues: https://github.com/into-ai/vue-backpropagation-exercise/issues
- npm.io page: https://npm.io/package/vue-backpropagation-exercise

## Dependencies (8)

- [d3](https://npm.io/package/d3.md) ^5.15.0
- [vue](https://npm.io/package/vue.md) ^2.6.11
- [katex](https://npm.io/package/katex.md) ^0.11.1
- [core-js](https://npm.io/package/core-js.md) ^3.6.4
- [@types/d3](https://npm.io/package/@types/d3.md) ^5.7.2
- [@types/d3-hierarchy](https://npm.io/package/@types/d3-hierarchy.md) ^1.1.6
- [vue-class-component](https://npm.io/package/vue-class-component.md) ^7.2.2
- [vue-property-decorator](https://npm.io/package/vue-property-decorator.md) ^8.3.0

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2020-03-07
- 0.1.6 (next) — 2020-03-12
- 0.1.5 — 2020-03-10
- 0.1.4 — 2020-03-10
- 0.1.3 — 2020-03-09
- 0.1.2 — 2020-03-08

## README

## Vue Backpropagation Exercise

[![Build Status](https://travis-ci.com/into-ai/vue-backpropagation-exercise.svg?branch=master)](https://travis-ci.com/into-ai/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](https://into-ai.github.io/vue-backpropagation-exercise).

```bash
npm install --save vue-backpropagation-exercise
```

![Screenshot](screenshot.png)

#### Configuration

Add the component to your Vue project (this assumes typescript is used):
```javascript
import VueBackpropagationExercise, {
  BackpropGraph
} from "vue-backpropagation-exercise";

@Component({
  components: {
    VueBackpropagationExercise
  }
})
export default class App extends Vue {}
```

Use props to configure the component
```html
<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 install
    ```

- Compiles and hot-reloads for development:
    ```
    npm run serve
    ```

- Compiles and minifies for production:
    ```
    npm run build
    ```

- Run your unit tests:
    ```
    npm run test:unit
    ```

- Lints and fixes files
    ```
    npm run lint
    ```

---
_Source: https://npm.io/package/vue-backpropagation-exercise · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
