Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
d7e4cc8a
Commit
d7e4cc8a
authored
Jan 30, 2020
by
Hongkun Yu
Committed by
A. Unique TensorFlower
Jan 30, 2020
Browse files
Update readme for 2.1.0 release.
Add instruction to clone branch with depth=1 PiperOrigin-RevId: 292434055
parent
2741cc5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
official/README.md
official/README.md
+12
-4
No files found.
official/README.md
View file @
d7e4cc8a
...
...
@@ -25,9 +25,9 @@ pip install tf-nightly
available as tagged branches or
[
downloadable releases
](
https://github.com/tensorflow/models/releases
)
. Model
repository version numbers match the target TensorFlow release, such that
[
release v2.0
](
https://github.com/tensorflow/models/releases/tag/v2.0
)
are
[
release v2.
1.
0
](
https://github.com/tensorflow/models/releases/tag/v2.
1.
0
)
are
compatible with
[
TensorFlow v2.
0
.0
](
https://github.com/tensorflow/tensorflow/releases/tag/v2.
0
.0
)
.
[
TensorFlow v2.
1
.0
](
https://github.com/tensorflow/tensorflow/releases/tag/v2.
1
.0
)
.
If you are on a version of TensorFlow earlier than 1.4, please
[
update your installation
](
https://www.tensorflow.org/install/
)
.
...
...
@@ -39,7 +39,15 @@ Please follow the below steps before running models in this repo:
1.
TensorFlow
[
nightly binaries
](
https://github.com/tensorflow/tensorflow#installation
)
2.
Add the top-level
***/models**
*
folder to the Python path with the command:
2.
If users would like to clone this repo but do not care about change history,
please consider:
```
shell
export
repo_version
=
"master"
git clone
-b
${
repo_version
}
https://github.com/tensorflow/models.git
--depth
=
1
```
3.
Add the top-level
***/models**
*
folder to the Python path with the command:
```
shell
export
PYTHONPATH
=
$PYTHONPATH
:/path/to/models
...
...
@@ -52,7 +60,7 @@ Please follow the below steps before running models in this repo:
os
.
environ
[
'PYTHONPATH'
]
+=
":/path/to/models"
```
3
.
Install dependencies:
4
.
Install dependencies:
```
shell
pip3
install
--user
-r
official/requirements.txt
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment