This app is a fork of Agile's (archived) fork.
The app is currently deployed at playground.scienxlab.org.
Rocky Playground is an interactive visualization of neural networks, written in TypeScript using d3.js. It is a fork of the Google Neural Network Playground, and also incorporates code from David Cato's fork of the same project.
Some examples of what has changed:
- Real-world datasets related to geological tasks.
- New activation functions including ELU, Leaky ReLU, and Swish.
- Some new synthetic datasets: moons and linear (from
matplotlib
), and diagonal (to illustrate overfitting). - You can change regularization on the fly.
- You can upload your own datasets.
- Some bug-fixes and cosmetic changes.
Want to help? We'd love to have your involvement! If you'd like to contribute, take a look at the contribution guidelines.
You will need to install Node for your system.
Then, to run the visualization locally, run:
npm i
to install dependenciesnpm run build
to compile the app and place it in thedist/
directorynpm run serve
to serve from thedist/
directory and open a page on your browser.
For a fast edit-refresh cycle when developing run npm run serve-watch
.
This will start an http server and automatically re-compile the TypeScript,
HTML and CSS files whenever they change.