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
b5adbb62
You need to sign in or sign up before continuing.
Commit
b5adbb62
authored
Oct 12, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
634369d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
+9
-6
README.md
README.md
+3
-2
examples/FasterRCNN/train.py
examples/FasterRCNN/train.py
+1
-0
examples/README.md
examples/README.md
+5
-4
No files found.
README.md
View file @
b5adbb62
...
...
@@ -5,10 +5,11 @@ A neural net training interface based on TensorFlow.
[

](http://tensorpack.readthedocs.io/en/latest/index.html)
[

](https://gitter.im/tensorpack/users)
See some
[
examples
](
examples
)
to learn about the framework
:
See some
[
examples
](
examples
)
to learn about the framework
. Everything runs on multiple GPUs, because why not?
### Vision:
+
[
Multi-GPU training of ResNet on ImageNet
](
examples/ResNet
)
+
[
Train ResNet/SE-ResNet on ImageNet
](
examples/ResNet
)
+
[
Train Faster-RCNN on COCO object detection
](
examples/FasterRCNN
)
+
[
Generative Adversarial Network(GAN) variants
](
examples/GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image, CycleGAN.
+
[
DoReFa-Net: train binary / low-bitwidth CNN on ImageNet
](
examples/DoReFa-Net
)
+
[
Fully-convolutional Network for Holistically-Nested Edge Detection(HED)
](
examples/HED
)
...
...
examples/FasterRCNN/train.py
View file @
b5adbb62
...
...
@@ -252,6 +252,7 @@ if __name__ == '__main__':
if
args
.
evaluate
is
not
None
:
assert
args
.
evaluate
.
endswith
(
'.json'
)
assert
args
.
load
os
.
environ
[
'TF_CUDNN_USE_AUTOTUNE'
]
=
'0'
offline_evaluate
(
args
.
load
,
args
.
evaluate
)
sys
.
exit
()
if
args
.
predict
is
not
None
:
...
...
examples/README.md
View file @
b5adbb62
...
...
@@ -10,17 +10,18 @@ Training examples with __reproducible__ and meaningful performance.
## Vision:
+
[
A tiny SVHN ConvNet with 97.8% accuracy
](
svhn-digit-convnet.py
)
+
Multi-GPU training of
[
ResNet
](
ResNet
)
and
[
ShuffleNet
](
ShuffleNet
)
on ImageNet
+
Train
[
ResNet
](
ResNet
)
and
[
ShuffleNet
](
ShuffleNet
)
on ImageNet
+
[
Train ResNet50-Faster-RCNN on COCO
](
FasterRCNN
)
+
[
DoReFa-Net: training binary / low-bitwidth CNN on ImageNet
](
DoReFa-Net
)
+
[
Generative Adversarial Network(GAN) variants
](
GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image, CycleGAN
.
+
[
Generative Adversarial Network(GAN) variants
](
GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image, CycleGAN
+
[
Inception-BN and InceptionV3
](
Inception
)
+
[
Fully-convolutional Network for Holistically-Nested Edge Detection(HED)
](
HED
)
+
[
Spatial Transformer Networks on MNIST addition
](
SpatialTransformer
)
+
[
Visualize CNN saliency maps
](
Saliency
)
+
[
Similarity learning on MNIST
](
SimilarityLearning
)
+
Learn steering filters with
[
Dynamic Filter Networks
](
DynamicFilterNetwork
)
+
Load a pre-trained
[
AlexNet
](
load-alexnet.py
)
or
[
VGG16
](
load-vgg16.py
)
model
.
+
Load a pre-trained
[
Convolutional Pose Machines
](
ConvolutionalPoseMachines/
)
.
+
Load a pre-trained
[
AlexNet
](
load-alexnet.py
)
or
[
VGG16
](
load-vgg16.py
)
model
+
Load a pre-trained
[
Convolutional Pose Machines
](
ConvolutionalPoseMachines/
)
## Reinforcement Learning:
+
[
Deep Q-Network(DQN) variants on Atari games
](
DeepQNetwork
)
, including DQN, DoubleDQN, DuelingDQN.
...
...
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