You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -160,12 +160,7 @@ Contributions to this repository are welcome. Examples of things you can contrib
160
160
You can also [join our team](https://matterport.com/careers/) and help us build even more projects like this one.
161
161
162
162
## Requirements
163
-
* Python 3.4+
164
-
165
-
All required packages are listed in standard file:
166
-
```bash
167
-
pip3 install -r requirements.txt
168
-
```
163
+
Python 3.4, TensorFlow 1.3, Keras 2.0.8 and other common packages listed in `requirements.txt`.
169
164
170
165
### MS COCO Requirements:
171
166
To train or test on MS COCO, you'll also need:
@@ -180,12 +175,17 @@ If you use Docker, the code has been verified to work on
180
175
181
176
182
177
## Installation
183
-
1. Clone this repository. The installation as possible using following command:
178
+
1. Install dependencies
179
+
```bash
180
+
pip3 install -r requirements.txt
181
+
```
182
+
2. Clone this repository
183
+
3. Run setup from the repository root directory
184
184
```bash
185
185
python3 setup.py install
186
186
```
187
-
2. Download pre-trained COCO weights (mask_rcnn_coco.h5) from the [releases page](https://github.com/matterport/Mask_RCNN/releases).
188
-
3. (Optional) To train or test on MS COCO install `pycocotools` from one of these repos. They are forks of the original pycocotools with fixes for Python3 and Windows (the official repo doesn't seem to be active anymore).
187
+
3. Download pre-trained COCO weights (mask_rcnn_coco.h5) from the [releases page](https://github.com/matterport/Mask_RCNN/releases).
188
+
4. (Optional) To train or test on MS COCO install `pycocotools` from one of these repos. They are forks of the original pycocotools with fixes for Python3 and Windows (the official repo doesn't seem to be active anymore).
0 commit comments