Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matiasvlevi/dannjs-san-francisco
A Deep Neural Network learns to predict housing prices in San-Francisco
https://github.com/matiasvlevi/dannjs-san-francisco
dannjs demo neural-network
Last synced: 4 days ago
JSON representation
A Deep Neural Network learns to predict housing prices in San-Francisco
- Host: GitHub
- URL: https://github.com/matiasvlevi/dannjs-san-francisco
- Owner: matiasvlevi
- Created: 2021-06-12T19:05:23.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-14T17:49:41.000Z (over 3 years ago)
- Last Synced: 2023-03-08T23:40:55.119Z (over 1 year ago)
- Topics: dannjs, demo, neural-network
- Language: JavaScript
- Homepage: https://dannjs.org/livedemo
- Size: 331 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dannjs San-Francisco Live Demo
A Deep Neural Network learns to predict housing prices in San-Francisco#### Dataset
The dataset consists of 9 parameters about residential city blocks.
Green dots represent low prices, Red dots represent high prices.
The moving dots are the models predictions.Data has been normalized, and formatted into JSON.
The original dataset accounts for the entirety of california,
it has been scaled down to only San-Francisco.
The original dataset can be found [here](https://www.kaggle.com/harrywang/housing?select=housing.csv)##### Data fed to the neural network:
1. longitude
2. latitude
3. housing_median_age
4. total_rooms
5. total_bedrooms
6. population
7. households
8. median_income
9. ocean_proximity
##### Data the neural network is tasked to predict:
1. median_house_value
## Run
Launch `canvas.html` into any browser, or click [here](https://dannjs.org/livedemo)
## Tutorial
A tutorial to create this in Node.js is available [here](https://dev.to/leviackerman3855/dann-js-teaching-a-neural-network-how-to-predict-san-francisco-house-prices-odd).