Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CTCModel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
TextRecognition
CTCModel
Compare Revisions
86ec9bfeb18331652d660088f5e25ef172ae9af2...0bbbc0fc8f125f60ca8d8774d9248e6342cb5842
Source
0bbbc0fc8f125f60ca8d8774d9248e6342cb5842
Select Git revision
...
Target
86ec9bfeb18331652d660088f5e25ef172ae9af2
Select Git revision
Compare
Commits (2)
URL in README
· e77ed17c
Yann SOULLARD
authored
Jan 25, 2019
e77ed17c
MAJ call CTCModel
· 0bbbc0fc
Yann SOULLARD
authored
Mar 20, 2019
0bbbc0fc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
README.md
README.md
+4
-3
__pycache__/CTCModel.cpython-35.pyc
__pycache__/CTCModel.cpython-35.pyc
+0
-0
No files found.
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>
...
...
@@ -77,9 +77,10 @@ CTCModel is under the terms of the GPL-3.0 licence.
<code>
@misc{ctcmodel,
author = {Soullard, Yann and Ruffino, Cyprien and Paquet, Thierry},
howpublished = {$
\b
ackslash$url{
\{
}https://arxiv.org/link},
title = {{CTCModel: Connectionist Temporal Classification in Keras}},
year = {2018}
year = {2018},
ee = {https://arxiv.org/abs/1901.07957},
archivePrefix = {arXiv}
}
</code>
)
...
...
__pycache__/CTCModel.cpython-35.pyc
0 → 100644
View file @
0bbbc0fc
File added