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
0fd4fb2f
Commit
0fd4fb2f
authored
Sep 26, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
973a29f9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
examples/ResNet/README.md
examples/ResNet/README.md
+5
-4
No files found.
examples/ResNet/README.md
View file @
0fd4fb2f
## imagenet-resnet.py
, imagenet-resnet-se.py
## imagenet-resnet.py
__Training__
code of three variants of ResNet on ImageNet:
*
imagenet-resnet.py:
[
Original ResNet
](
https://arxiv.org/abs/1512.03385
)
and
[
Pre-activation ResNet
](
https://arxiv.org/abs/1603.05027
)
.
*
imagenet-resnet-se.py:
[
Squeeze-and-Excitation ResNet
](
https://arxiv.org/abs/1709.01507
)
*
[
Original ResNet
](
https://arxiv.org/abs/1512.03385
)
*
[
Pre-activation ResNet
](
https://arxiv.org/abs/1603.05027
)
.
*
[
Squeeze-and-Excitation ResNet
](
https://arxiv.org/abs/1709.01507
)
The training mostly follows the setup in
[
fb.resnet.torch
](
https://github.com/facebook/fb.resnet.torch
)
and gets similar performance (with much fewer lines of code).
...
...
@@ -21,7 +22,7 @@ Models can be [downloaded here](https://goo.gl/6XjK9V).
To train, just run:
```
bash
./imagenet-resnet.py
--data
/path/to/original/ILSVRC
--gpu
0,1,2,3
-d
50
./imagenet-resnet.py
--data
/path/to/original/ILSVRC
--gpu
0,1,2,3
-d
50
[
--mode
resnet/preact/se]
```
You should be able to see good GPU utilization (around 95%), if your data is fast enough.
See the
[
tutorial
](
http://tensorpack.readthedocs.io/en/latest/tutorial/efficient-dataflow.html
)
on how to speed up your data.
...
...
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