https://github.com/microdroid/tfjs-linear-regression-demo
A demonstration of Stochastic Linear Regression implemented using Tensorflow.js.
https://github.com/microdroid/tfjs-linear-regression-demo
Last synced: 2 months ago
JSON representation
A demonstration of Stochastic Linear Regression implemented using Tensorflow.js.
- Host: GitHub
- URL: https://github.com/microdroid/tfjs-linear-regression-demo
- Owner: MicroDroid
- License: mit
- Created: 2019-04-19T19:50:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T07:17:56.000Z (over 1 year ago)
- Last Synced: 2024-09-10T09:37:04.926Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://microdroid.github.io/tfjs-linear-regression-demo/
- Size: 1.37 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Linear Regression Demo (Tensorflow.js)
==========
This is a Stochastic Linear Regression implementation using Tensorflow.js which runs in the browser.
[See demo](https://overcoder.dev/tfjs-linear-regression-demo/)
### Project structure
- `app/` contains the entire web app
- `js/` JavaScript code. Here you find the Linear Regression code.
- `csv/` Datasets. Minified and original.
- `scss/` Probably not what you're looking for here.
- `public/` contains compiled web app (after running Webpack)
### Running locally
```bash
npm i
npm run dev
# Then open up ./public/index.html in your browser
```