Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eloyekunle/boston_housing
Predicting Boston house prices with Machine Learning.
https://github.com/eloyekunle/boston_housing
boston-housing machine-learning udacity-machine-learning-nanodegree
Last synced: 25 days ago
JSON representation
Predicting Boston house prices with Machine Learning.
- Host: GitHub
- URL: https://github.com/eloyekunle/boston_housing
- Owner: eloyekunle
- Created: 2016-09-07T10:57:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-07T17:00:37.000Z (over 8 years ago)
- Last Synced: 2024-10-29T10:47:39.255Z (2 months ago)
- Topics: boston-housing, machine-learning, udacity-machine-learning-nanodegree
- Language: HTML
- Size: 521 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project 1: Model Evaluation & Validation
## Predicting Boston Housing Prices### Install
This project requires **Python 2.7** and the following Python libraries installed:
- [NumPy](http://www.numpy.org/)
- [matplotlib](http://matplotlib.org/)
- [scikit-learn](http://scikit-learn.org/stable/)You will also need to have software installed to run and execute an [iPython Notebook](http://ipython.org/notebook.html)
Udacity recommends our students install [Anaconda](https://www.continuum.io/downloads), a pre-packaged Python distribution that contains all of the necessary libraries and software for this project.
### Code
Template code is provided in the `boston_housing.ipynb` notebook file. You will also be required to use the included `visuals.py` Python file and the `housing.csv` dataset file to complete your work. While some code has already been implemented to get you started, you will need to implement additional functionality when requested to successfully complete the project.
### Run
In a terminal or command window, navigate to the top-level project directory `boston_housing/` (that contains this README) and run one of the following commands:
```ipython notebook boston_housing.ipynb```
```jupyter notebook boston_housing.ipynb```This will open the iPython Notebook software and project file in your browser.
### Data
The dataset used in this project is included with the scikit-learn library ([`sklearn.datasets.load_boston`](http://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_boston.html#sklearn.datasets.load_boston)). You do not have to download it separately. You can find more information on this dataset from the [UCI Machine Learning Repository](https://archive.ics.uci.edu/ml/datasets/Housing) page.