Skip to content
This repository was archived by the owner on Dec 2, 2021. It is now read-only.

Commit 0ef9828

Browse files
authored
Update README.md
1 parent cc0e337 commit 0ef9828

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ In this project, you will train a deep neural network to identify and track a ta
1313
$ git clone https://github.com/udacity/RoboND-DeepLearning.git
1414
```
1515

16+
**Download the data**
17+
18+
Save the following two files into the data folder of the cloned repository.
19+
20+
[Training Data](https://s3-us-west-1.amazonaws.com/udacity-robotics/Deep+Learning+Data/train.zip)
21+
22+
[Validation Data](https://s3-us-west-1.amazonaws.com/udacity-robotics/Deep+Learning+Data/validation.zip)
23+
1624
**Download the QuadSim binary**
1725

1826
To interface your neural net with the QuadSim simulator, you must use a version QuadSim that has been custom tailored for this project. The previous version that you might have used for the Controls lab will not work.
@@ -39,7 +47,7 @@ If for some reason you choose not to use Anaconda, you must install the followin
3947
* transforms3d
4048

4149
## Implement the Segmentation Network
42-
1. Download the training dataset from [here](https://github.com/udacity/RoboND-DeepLearning/tree/master/data), and extract to the project `data` directory.
50+
1. Download the training dataset from above and extract to the project `data` directory.
4351
2. Complete `make_model.py`by following the TODOs in `make_model_template.py`
4452
3. Complete `data_iterator.py` by following the TODOs in `data_iterator_template.py`
4553
4. Complete `train.py` by following the TODOs in `train_template.py`
@@ -48,7 +56,7 @@ If for some reason you choose not to use Anaconda, you must install the followin
4856
7. Once you are comfortable with performance on the training dataset, see how it performs in live simulation!
4957

5058
## Collecting Training Data ##
51-
A simple training dataset has been provided in the [releases](https://github.com/udacity/RoboND-DeepLearning/tree/master/data) section of this repository. This dataset will allow you to verify that you're segmentation network is semi-functional. However, if you're interested in improving your score, you may be interested in collecting additional training data. To do, please see the following steps.
59+
A simple training dataset has been provided above in this repository. This dataset will allow you to verify that you're segmentation network is semi-functional. However, if you're interested in improving your score, you may be interested in collecting additional training data. To do, please see the following steps.
5260

5361
The data directory is organized as follows:
5462
```
@@ -95,7 +103,7 @@ $ python preprocess_ims.py
95103
**Note**: If your data is stored as suggested in the steps above, this script should run without error.
96104

97105
## Training, Predicting and Scoring ##
98-
With your training and validation data having been generated (or downloaded from the [releases](https://github.com/udacity/RoboND-DeepLearning/tree/master/data) section of this repository, you are free to begin working with the neural net.
106+
With your training and validation data having been generated or downloaded from the above section of this repository, you are free to begin working with the neural net.
99107

100108
**Note**: Training CNNs is a very compute-intensive process. If your system does not have a recent Nvidia graphics card, with [cuDNN](https://developer.nvidia.com/cudnn) installed , you may need to perform the training step in the cloud. Instructions for using AWS to train your network in the cloud may be found [here](docs/aws_setup.md)
101109

0 commit comments

Comments
 (0)