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
befbe0f9
Commit
befbe0f9
authored
Oct 20, 2019
by
Hongkun Yu
Committed by
A. Unique TensorFlower
Oct 20, 2019
Browse files
Refine readme
PiperOrigin-RevId: 275739207
parent
d169c201
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
official/README.md
official/README.md
+20
-4
No files found.
official/README.md
View file @
befbe0f9
...
@@ -40,12 +40,28 @@ Please follow the below steps before running models in this repo:
...
@@ -40,12 +40,28 @@ Please follow the below steps before running models in this repo:
[
nightly binaries
](
https://github.com/tensorflow/tensorflow#installation
)
[
nightly binaries
](
https://github.com/tensorflow/tensorflow#installation
)
2.
Add the top-level
***/models**
*
folder to the Python path with the command:
2.
Add the top-level
***/models**
*
folder to the Python path with the command:
`export PYTHONPATH=$PYTHONPATH:/path/to/models`
Using Colab: `import os os.environ['PYTHONPATH'] += ":/path/to/models"`
```
shell
export
PYTHONPATH
=
$PYTHONPATH
:/path/to/models
```
3.
Install dependencies:
`pip3 install --user -r official/requirements.txt`
or
Using Colab:
`pip install --user -r official/requirements.txt`
```
python
import
os
os
.
environ
[
'PYTHONPATH'
]
+=
":/path/to/models"
```
3.
Install dependencies:
```
shell
pip3
install
--user
-r
official/requirements.txt
```
or (Python 2 compatibility is not guaranteed)
```
shell
pip
install
--user
-r
official/requirements.txt
```
To make Official Models easier to use, we are planning to create a pip
To make Official Models easier to use, we are planning to create a pip
installable Official Models package. This is being tracked in
installable Official Models package. This is being tracked in
...
...
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