Skip to content

Commit

Permalink
add requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored and waleedka committed Apr 6, 2018
1 parent 451d738 commit 8c47ad6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,10 @@ You can also [join our team](https://matterport.com/careers/) and help us build

## Requirements
* Python 3.4+
* TensorFlow 1.3+
* Keras 2.0.8+
* Jupyter Notebook
* Numpy, skimage, scipy, Pillow, cython, h5py

```bash
pip3 install -r requirements.txt
```

### MS COCO Requirements:
To train or test on MS COCO, you'll also need:
Expand Down
12 changes: 12 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
numpy
scipy
Pillow
cython
matplotlib
scikit-image
tensorflow>=1.3.0
keras>=2.0.8
opencv-python
h5py
imgaug
IPython[all]
6 changes: 3 additions & 3 deletions samples/balloon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ Open the `inspect_balloon_data.ipynb` or `inspect_balloon_model.ipynb` Jupter no
## Train the Balloon model

Train a new model starting from pre-trained COCO weights
```
```bash
python3 balloon.py train --dataset=/path/to/balloon/dataset --weights=coco
```

Resume training a model that you had trained earlier
```
```bash
python3 balloon.py train --dataset=/path/to/balloon/dataset --weights=last
```

Train a new model starting from ImageNet weights
```
```bash
python3 balloon.py train --dataset=/path/to/balloon/dataset --weights=imagenet
```

Expand Down

0 comments on commit 8c47ad6

Please sign in to comment.