Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
TextRecognition
CTCModel
Commits
0bbbc0fc
Commit
0bbbc0fc
authored
Mar 20, 2019
by
Yann SOULLARD
Browse files
MAJ call CTCModel
parent
e77ed17c
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0bbbc0fc
...
...
@@ -30,7 +30,7 @@ lstm1 = LSTM(128, return_sequences=True)(lstm0)
dense = TimeDistributed(Dense(nb_labels))(lstm1)
output_layer = Activation("sigmoid")
model = CTCModel(input_layer, output_layer)
model = CTCModel(
[
input_layer
]
,
[
output_layer
]
)
model.compile(optimizer=Adam(lr=1e-4))
</code>
...
...
__pycache__/CTCModel.cpython-35.pyc
0 → 100644
View file @
0bbbc0fc
File added
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