File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed
research/object_detection Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ cd models/research
35
35
protoc object_detection/protos/* .proto --python_out=.
36
36
# Install TensorFlow Object Detection API.
37
37
cp object_detection/packages/tf1/setup.py .
38
- python -m pip install .
38
+ python -m pip install --use-feature=2020-resolver .
39
39
```
40
40
41
41
``` bash
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ cd models/research
35
35
protoc object_detection/protos/* .proto --python_out=.
36
36
# Install TensorFlow Object Detection API.
37
37
cp object_detection/packages/tf2/setup.py .
38
- python -m pip install .
38
+ python -m pip install --use-feature=2020-resolver .
39
39
```
40
40
41
41
``` bash
@@ -81,4 +81,4 @@ We provide a large collection of models that are trained on COCO 2017 in the
81
81
* <a href =' tpu_compatibility.md ' >
82
82
TPU compatible detection pipelines</a ><br >
83
83
* <a href =' tf2_training_and_evaluation.md ' >
84
- Training and evaluation guide (CPU, GPU, or TPU)</a ><br >
84
+ Training and evaluation guide (CPU, GPU, or TPU)</a ><br >
Original file line number Diff line number Diff line change 7
7
# tf-models-offical requirements. These packages request for incompatible
8
8
# oauth2client package.
9
9
REQUIRED_PACKAGES = [
10
- 'tensorflow-metadata<0.23.0' , # TODO(b/164107742)
11
10
# Required for apache-beam with PY3
12
- 'avro-python3==1.8.1 ' ,
11
+ 'avro-python3' ,
13
12
'apache-beam' ,
14
13
'pillow' ,
15
14
'lxml' ,
21
20
'pycocotools' ,
22
21
'scipy' ,
23
22
'pandas' ,
24
- # Required to avoid Numpy 1.19.1 conflict with TF 2.3
25
- 'tf-models-official==2.2.2'
23
+ 'tf-models-official'
26
24
]
27
25
28
26
setup (
You can’t perform that action at this time.
0 commit comments