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
26f09ada
Commit
26f09ada
authored
Oct 05, 2016
by
Yuxin Wu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update some example readme
parent
145fb01d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
examples/DisturbLabel/README.md
examples/DisturbLabel/README.md
+1
-1
examples/ResNet/README.md
examples/ResNet/README.md
+2
-0
examples/char-rnn/README.md
examples/char-rnn/README.md
+6
-0
examples/char-rnn/char-rnn.py
examples/char-rnn/char-rnn.py
+0
-1
No files found.
examples/DisturbLabel/README.md
View file @
26f09ada
...
@@ -23,4 +23,4 @@ The method didn't work for slightly harder problems such as SVHN:
...
@@ -23,4 +23,4 @@ The method didn't work for slightly harder problems such as SVHN:
The SVHN experiements used the model & hyperparemeters as my original
[
svhn example
](
../svhn-digit-convnet.py
)
.
The SVHN experiements used the model & hyperparemeters as my original
[
svhn example
](
../svhn-digit-convnet.py
)
.
Experiements were all repeated 10 times to get the error bar.
Experiements were all repeated 10 times to get the error bar.
And I don't believe it will work for ImageNet either.
And I don't believe it will work for ImageNet either.
And that's a CVPR paper..
examples/ResNet/README.md
View file @
26f09ada
...
@@ -11,3 +11,5 @@ The validation error here is computed on test set.
...
@@ -11,3 +11,5 @@ The validation error here is computed on test set.
Download model:
Download model:
[
Cifar10 ResNet-110 (n=18)
](
https://drive.google.com/open?id=0B9IPQTvr2BBkTXBlZmh1cmlnQ0k
)
[
Cifar10 ResNet-110 (n=18)
](
https://drive.google.com/open?id=0B9IPQTvr2BBkTXBlZmh1cmlnQ0k
)
Also see an implementation of
[
DenseNet
](
https://github.com/YixuanLi/densenet-tensorflow
)
from
[
Densely Connected Convolutional Networks
](
https://arxiv.org/abs/1608.06993
)
.
examples/char-rnn/README.md
View file @
26f09ada
## Character-Level RNN Language Model
## Character-Level RNN Language Model
To train, create some corpus in
`input.txt`
, and run
`./char-rnn.py train`
.
Some corpus to play with: http://cs.stanford.edu/people/karpathy/char-rnn/
To genearate text, see
`./char-rnn.py sample --help`
for the options.
Generate linux kernel source code:
Generate linux kernel source code:
```
c
```
c
static
int
via_playback_set_interrupt
(
int
action
,
void
*
data
,
int
val
)
static
int
via_playback_set_interrupt
(
int
action
,
void
*
data
,
int
val
)
...
...
examples/char-rnn/char-rnn.py
View file @
26f09ada
...
@@ -34,7 +34,6 @@ param.grad_clip = 5.
...
@@ -34,7 +34,6 @@ param.grad_clip = 5.
param
.
vocab_size
=
None
param
.
vocab_size
=
None
param
.
softmax_temprature
=
1
param
.
softmax_temprature
=
1
param
.
corpus
=
'input.txt'
param
.
corpus
=
'input.txt'
# Get corpus to play with at: http://cs.stanford.edu/people/karpathy/char-rnn/
class
CharRNNData
(
DataFlow
):
class
CharRNNData
(
DataFlow
):
def
__init__
(
self
,
input_file
,
size
):
def
__init__
(
self
,
input_file
,
size
):
...
...
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