Skip to content

Commit 997d7a6

Browse files
authored
Merge pull request udacity#51 from udacity/nicky/upload_p1_cn
P1 translated into Chinese
2 parents 99d90ce + 82fa3c8 commit 997d7a6

File tree

4 files changed

+1274
-0
lines changed

4 files changed

+1274
-0
lines changed

projects_cn/boston_housing/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Project 1: Model Evaluation & Validation
2+
## Predicting Boston Housing Prices
3+
4+
### Install
5+
6+
This project requires **Python 2.7** and the following Python libraries installed:
7+
8+
- [NumPy](http://www.numpy.org/)
9+
- [matplotlib](http://matplotlib.org/)
10+
- [scikit-learn](http://scikit-learn.org/stable/)
11+
12+
You will also need to have software installed to run and execute an [iPython Notebook](http://ipython.org/notebook.html)
13+
14+
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.
15+
16+
### Code
17+
18+
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.
19+
20+
### Run
21+
22+
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:
23+
24+
```ipython notebook boston_housing.ipynb```
25+
```jupyter notebook boston_housing.ipynb```
26+
27+
This will open the iPython Notebook software and project file in your browser.
28+
29+
### Data
30+
31+
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.

0 commit comments

Comments
 (0)