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
64bda846
Commit
64bda846
authored
Oct 17, 2016
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
7d300ea5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
+11
-7
README.md
README.md
+6
-3
examples/DoReFa-Net/README.md
examples/DoReFa-Net/README.md
+1
-1
examples/ResNet/cifar10-resnet.py
examples/ResNet/cifar10-resnet.py
+3
-3
tensorpack/train/multigpu.py
tensorpack/train/multigpu.py
+1
-0
No files found.
README.md
View file @
64bda846
...
@@ -3,12 +3,15 @@ Neural Network Toolbox on TensorFlow
...
@@ -3,12 +3,15 @@ Neural Network Toolbox on TensorFlow
Still in development, but usable.
Still in development, but usable.
See some interesting
[
training examples
](
examples
)
to learn about the framework:
See some
[
examples
](
examples
)
to learn about the framework.
You can actually train them and reproduce the performance... not just see how to write code.
+
[
DoReFa-Net: training binary / low bitwidth CNN
](
examples/DoReFa-Net
)
+
[
DoReFa-Net: training binary / low bitwidth CNN
](
examples/DoReFa-Net
)
+
[
Double-DQN and A3C for playing Atari games
](
examples/Atari2600
)
+
[
ResNet for Cifar10 classification
](
examples/ResNet
)
+
[
IncpetionV3 on ImageNet
](
examples/Inception/inceptionv3.py
)
+
[
IncpetionV3 on ImageNet
](
examples/Inception/inceptionv3.py
)
+
[
ResNet for Cifar10 classification
](
examples/ResNet
)
+
[
Fully-convolutional Network for Holistically-Nested Edge Detection
](
examples/HED
)
+
[
Double-DQN plays Atari games
](
examples/Atari2600
)
+
[
Batch-A3C plays Atari games with demos on OpenAI Gym
](
examples/OpenAIGym
)
+
[
char-rnn language model
](
examples/char-rnn
)
+
[
char-rnn language model
](
examples/char-rnn
)
## Features:
## Features:
...
...
examples/DoReFa-Net/README.md
View file @
64bda846
...
@@ -30,7 +30,7 @@ export PYTHONPATH=$PYTHONPATH:`readlink -f tensorpack`
...
@@ -30,7 +30,7 @@ export PYTHONPATH=$PYTHONPATH:`readlink -f tensorpack`
## Support
## Support
Please use
[
github issues
](
https://github.com/ppwwyyxx/tensorpack/issues
)
for any issues related to the code.
Please use
[
github issues
](
https://github.com/ppwwyyxx/tensorpack/issues
)
for any issues related to the code
itself
.
Send email to the authors for general questions related to the paper.
Send email to the authors for general questions related to the paper.
## Citation
## Citation
...
...
examples/ResNet/cifar10-resnet.py
View file @
64bda846
...
@@ -21,9 +21,9 @@ This implementation uses the variants proposed in:
...
@@ -21,9 +21,9 @@ This implementation uses the variants proposed in:
Identity Mappings in Deep Residual Networks, arxiv:1603.05027
Identity Mappings in Deep Residual Networks, arxiv:1603.05027
I can reproduce the results on 2 TitanX for
I can reproduce the results on 2 TitanX for
n=5, about 7.1
%
val error after 67k step (8.6 step/s)
n=5, about 7.1
%
val error after 67k step
s
(8.6 step/s)
n=18, about 5.
7
%
val error (2.45
step/s)
n=18, about 5.
8
%
val error after 80k steps (2.6
step/s)
n=30: a 182-layer network, about 5.6
%
val error after 51k step (1.55 step/s)
n=30: a 182-layer network, about 5.6
%
val error after 51k step
s
(1.55 step/s)
This model uses the whole training set instead of a train-val split.
This model uses the whole training set instead of a train-val split.
"""
"""
...
...
tensorpack/train/multigpu.py
View file @
64bda846
...
@@ -9,6 +9,7 @@ from six.moves import zip, range
...
@@ -9,6 +9,7 @@ from six.moves import zip, range
from
..models
import
TowerContext
from
..models
import
TowerContext
from
..utils
import
logger
from
..utils
import
logger
from
..utils.naming
import
*
from
..utils.concurrency
import
LoopThread
from
..utils.concurrency
import
LoopThread
from
..tfutils.summary
import
summary_moving_average
from
..tfutils.summary
import
summary_moving_average
from
..tfutils.modelutils
import
describe_model
from
..tfutils.modelutils
import
describe_model
...
...
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