An open API service indexing awesome lists of open source software.

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.

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
```