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
c29f5bcf
Commit
c29f5bcf
authored
Apr 28, 2017
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
bd3df33d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
README.md
README.md
+1
-1
examples/A3C-Gym/train-atari.py
examples/A3C-Gym/train-atari.py
+3
-1
examples/README.md
examples/README.md
+2
-2
No files found.
README.md
View file @
c29f5bcf
...
...
@@ -13,7 +13,6 @@ See some [examples](examples) to learn about the framework:
+
[
Fully-convolutional Network for Holistically-Nested Edge Detection(HED)
](
examples/HED
)
+
[
Spatial Transformer Networks on MNIST addition
](
examples/SpatialTransformer
)
+
[
Visualize Saliency Maps by Guided ReLU
](
examples/Saliency
)
+
[
Similarity Learning on MNIST
](
examples/SimilarityLearning
)
### Reinforcement Learning:
+
[
Deep Q-Network(DQN) variants on Atari games
](
examples/DeepQNetwork
)
, including DQN, DoubleDQN, DuelingDQN.
...
...
@@ -21,6 +20,7 @@ See some [examples](examples) to learn about the framework:
### Unsupervised Learning:
+
[
Generative Adversarial Network(GAN) variants
](
examples/GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image.
+
[
Similarity Learning on MNIST
](
examples/SimilarityLearning
)
### Speech / NLP:
+
[
LSTM-CTC for speech recognition
](
examples/CTC-TIMIT
)
...
...
examples/A3C-Gym/train-atari.py
View file @
c29f5bcf
...
...
@@ -211,6 +211,7 @@ def get_config():
master
=
MySimulatorMaster
(
namec2s
,
names2c
,
M
)
dataflow
=
BatchData
(
DataFromQueue
(
master
.
queue
),
BATCH_SIZE
)
return
TrainConfig
(
model
=
M
,
dataflow
=
dataflow
,
callbacks
=
[
ModelSaver
(),
...
...
@@ -218,13 +219,14 @@ def get_config():
ScheduledHyperParamSetter
(
'entropy_beta'
,
[(
80
,
0.005
)]),
ScheduledHyperParamSetter
(
'explore_factor'
,
[(
80
,
2
),
(
100
,
3
),
(
120
,
4
),
(
140
,
5
)]),
HumanHyperParamSetter
(
'learning_rate'
),
HumanHyperParamSetter
(
'entropy_beta'
),
master
,
StartProcOrThread
(
master
),
PeriodicTrigger
(
Evaluator
(
EVAL_EPISODE
,
[
'state'
],
[
'policy'
]),
every_k_epochs
=
2
),
],
session_creator
=
sesscreate
.
NewSessionCreator
(
config
=
get_default_sess_config
(
0.5
)),
model
=
M
,
steps_per_epoch
=
STEPS_PER_EPOCH
,
max_epoch
=
1000
,
)
...
...
examples/README.md
View file @
c29f5bcf
...
...
@@ -13,7 +13,6 @@ Training examples with __reproducible__ and meaningful performance.
+
[
Fully-convolutional Network for Holistically-Nested Edge Detection(HED)
](
HED
)
+
[
Spatial Transformer Networks on MNIST addition
](
SpatialTransformer
)
+
[
Visualize Saliency Maps by Guided ReLU
](
Saliency
)
+
[
Similarity Learning on MNIST
](
SimilarityLearning
)
+
Load a pre-trained
[
AlexNet
](
load-alexnet.py
)
or
[
VGG16
](
load-vgg16.py
)
model.
+
Load a pre-trained
[
Convolutional Pose Machines
](
ConvolutionalPoseMachines/
)
.
...
...
@@ -22,7 +21,8 @@ Training examples with __reproducible__ and meaningful performance.
+
[
Asynchronous Advantage Actor-Critic(A3C) with demos on OpenAI Gym
](
A3C-Gym
)
## Unsupervised Learning:
+
[
Generative Adversarial Network(GAN) variants
](
GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, DiscoGAN, Image to Image.
+
[
Generative Adversarial Network(GAN) variants
](
GAN
)
, including DCGAN, InfoGAN, Conditional GAN, WGAN, BEGAN, DiscoGAN, Image to Image.
+
[
Similarity Learning on MNIST
](
SimilarityLearning
)
## Speech / NLP:
+
[
LSTM-CTC for speech recognition
](
CTC-TIMIT
)
...
...
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