Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
clef18
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jurica Seva
clef18
Commits
31a4d1d1
Commit
31a4d1d1
authored
6 years ago
by
Mario Sänger
Browse files
Options
Downloads
Patches
Plain Diff
Add encoder-decoder illustration
parent
80e9f392
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
paper/encoder-decoder-model.docx
+0
-0
0 additions, 0 deletions
paper/encoder-decoder-model.docx
paper/encoder-decoder-model.pdf
+0
-0
0 additions, 0 deletions
paper/encoder-decoder-model.pdf
paper/wbi-eclef18.tex
+15
-10
15 additions, 10 deletions
paper/wbi-eclef18.tex
with
15 additions
and
10 deletions
paper/encoder-decoder-model.docx
0 → 100644
+
0
−
0
View file @
31a4d1d1
File added
This diff is collapsed.
Click to expand it.
paper/encoder-decoder-model.pdf
0 → 100644
+
0
−
0
View file @
31a4d1d1
File added
This diff is collapsed.
Click to expand it.
paper/wbi-eclef18.tex
+
15
−
10
View file @
31a4d1d1
...
...
@@ -134,9 +134,10 @@ The goal of the model is to reassemble the dictionary symptom name from the
certificate line.
For this we adopt the encoder-decoder architecture proposed in
\cite
{
sutskever
_
sequence
_
2014
}
. As encoder we utilize a forward LSTM model,
which takes the single words of a certificate line as inputs and scans the line
from left to right. Each token will be represented using pre-trained FastText
\cite
{
sutskever
_
sequence
_
2014
}
. Figure
\ref
{
fig:encoder
_
decoder
}
illustrates the
architecture of the model. As encoder we utilize a forward LSTM model, which
takes the single words of a certificate line as inputs and scans the line from
left to right. Each token will be represented using pre-trained FastText
word embeddings. Word embedding models represent words using a real-valued
vector and caputure syntactic and semantic similiarities between them. FastText
embeddings take sub-word information into account during training whereby the
...
...
@@ -168,15 +169,19 @@ To enable our model to attend to different parts of a disease name we add an
extra attention layer
\cite
{
raffel
_
feed-forward
_
2015
}
to the model. We train the
model using the provided ICD-10 dictionaries from all three languages.
During development we also experimented with character-level RNNs
, but
couldn't achieve any approvements.
During development we also experimented with character-level RNNs
for better
ICD-10 classification, however
couldn't achieve any
performance
approvements.
\begin{figure}
\includegraphics
[width=\textwidth]
{
Input.pdf
}
\caption
{
A figure caption is always placed below the illustration.
Please note that short captions are centered, while long ones are
justified by the macro package automatically.
}
\label
{
fig1
}
\includegraphics
[width=\textwidth,trim={0 17cm 0 3cm},clip=true]
{
encoder-decoder-model.pdf
}
\caption
{
Illustration of the neural encoder-decoder model for symptom
extraction. The encoder processes a death certificate line token-wise from left
to right. The final state of the encoder forms a semantic representation of the
line and serves as initial input for the decoding process. The decoder will be
trained to predict the symptom name word by word. All input tokens will be
represented using the concatenation of the FastText embeddings of all three
languages.
}
\label
{
fig:encoder
_
decoder
}
\end{figure}
\section
{
Experiments and Results
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment