Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
seminar-breakout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
seminar-breakout
Commits
7dacad08
Commit
7dacad08
authored
Jul 11, 2020
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cache CI depednencies
parent
4114ed88
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
.github/workflows/workflow.yml
.github/workflows/workflow.yml
+10
-3
examples/FasterRCNN/train.py
examples/FasterRCNN/train.py
+1
-1
sotabench/sotabench_setup.sh
sotabench/sotabench_setup.sh
+2
-2
No files found.
.github/workflows/workflow.yml
View file @
7dacad08
...
...
@@ -31,16 +31,23 @@ jobs:
python-version
:
[
3.6
]
TF-version
:
[
tensorflow==1.5.0
,
tensorflow-cpu==1.15.0
]
steps
:
-
uses
:
actions/checkout@v
1
-
uses
:
actions/checkout@v
2
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v
1
uses
:
actions/setup-python@v
2
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Cache dependencies
uses
:
actions/cache@v2
with
:
path
:
|
${{ env.pythonLocation }}/lib/python3.6/site-packages
key
:
${{ runner.os }}-${{ matrix.TF-version }}-20200711
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip
python -m pip install scikit-image opencv-python lmdb h5py pyarrow
python -m pip install .
python -m pip install
-e
.
python -c "import tensorpack.dataflow"
# check that dataflow can be imported alone without tensorflow
python -c "import cv2; print('OpenCV '+ cv2.__version__)"
...
...
examples/FasterRCNN/train.py
View file @
7dacad08
...
...
@@ -84,7 +84,7 @@ if __name__ == '__main__':
HostMemoryTracker
(),
ThroughputTracker
(
samples_per_step
=
cfg
.
TRAIN
.
NUM_GPUS
),
EstimatedTimeLeft
(
median
=
True
),
SessionRunTimeout
(
60000
),
# 1
minute timeout
SessionRunTimeout
(
60000
0
),
# 10
minute timeout
GPUUtilizationTracker
()
]
if
cfg
.
TRAIN
.
EVAL_PERIOD
>
0
:
...
...
sotabench/sotabench_setup.sh
View file @
7dacad08
...
...
@@ -5,8 +5,8 @@ set -v
.
/workspace/venv/bin/activate
pip
install
-e
.
pip
install
tensorflow-gpu
==
1.1
4
.0
pip
install
opencv-python
scipy
pip
install
tensorflow-gpu
==
1.1
5
.0
pip
install
opencv-python
-headless scipy pycocotools>
=
2.0.1
echo
"Extracting ..."
cd
./.data/vision/coco
...
...
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