Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
CNNArch2Gluon
Commits
374d469f
Commit
374d469f
authored
Sep 03, 2019
by
Christian Fuß
Browse files
changed BeamSearch to GreedySearch in one test
parent
227d975d
Pipeline
#179482
failed with stages
in 3 minutes and 6 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/test/resources/valid_tests/RNNencdec.cnna
View file @
374d469f
...
@@ -14,7 +14,7 @@ architecture RNNencdec(max_length=50, vocabulary_size=30000, hidden_size=1000){
...
@@ -14,7 +14,7 @@ architecture RNNencdec(max_length=50, vocabulary_size=30000, hidden_size=1000){
encoder.state -> decoder.state;
encoder.state -> decoder.state;
timed<t=1>
Beam
Search
Start
(max_length=50) {
timed<t=1>
Greedy
Search(max_length=50) {
target[t-1] ->
target[t-1] ->
Embedding(output_dim=hidden_size) ->
Embedding(output_dim=hidden_size) ->
decoder ->
decoder ->
...
...
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