Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Argument Relevance Presentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
Marc Feger
Argument Relevance Presentation
Commits
bd0b948e
Commit
bd0b948e
authored
4 years ago
by
Marc Feger
Browse files
Options
Downloads
Patches
Plain Diff
Refactor Methods
parent
8b8d9709
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#45904
passed
4 years ago
Stage: test
Changes
4
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
bilder/BestPageRank.png
+0
-0
0 additions, 0 deletions
bilder/BestPageRank.png
bilder/Vectors.png
+0
-0
0 additions, 0 deletions
bilder/Vectors.png
bilder/Wordnet.png
+0
-0
0 additions, 0 deletions
bilder/Wordnet.png
slides/methods.tex
+26
-40
26 additions, 40 deletions
slides/methods.tex
with
26 additions
and
40 deletions
bilder/BestPageRank.png
0 → 100644
+
0
−
0
View file @
bd0b948e
400 KiB
This diff is collapsed.
Click to expand it.
bilder/Vectors.png
0 → 100644
+
0
−
0
View file @
bd0b948e
8.98 KiB
This diff is collapsed.
Click to expand it.
bilder/Wordnet.png
0 → 100644
+
0
−
0
View file @
bd0b948e
30.6 KiB
This diff is collapsed.
Click to expand it.
slides/methods.tex
+
26
−
40
View file @
bd0b948e
...
...
@@ -4,64 +4,50 @@
\begin{frame}
\frametitle
{
PageRank
}
\begin{columns}
\column
{
0.6
\textwidth
}
\begin{itemize}
\item
PageRank by
\cite
{
PageRank1999
}
was originally used to evaluate relevant websites via their links
\item
Websites can be replaced by arguments
\item
Linking results due to the reuse of conclusions and premises
\item
In this work it was used:
\column
{
0.5
\textwidth
}
\begin{itemize}
\item
Custom-made PageRank
\item
NetworkX PageRank
\item
NetworkX-Scipy PageRank
\end{itemize}
\item
PageRank originally used for websites
\item
Websites replaced by arguments
\end{itemize}
\begin{block}
{
Custom-made PageRank
}
\begin{equation*}
p
_
t(c
_
i) =
\left\{
\begin{array}
{
lr
}
(1 -
\alpha
)
\frac
{
1
}{
|D|
}
+
\alpha
\sum
_{
j
}{
\frac
{
p
_{
t-1
}
(c
_
j)
}{
|P'
_
j|
}
}
&
: t > 0
\\
\frac
{
1
}{
|D|
}
&
: t = 0
(1 -
\alpha
)
G
_{
rel
}
+
\alpha
L
_{
rel
}
&
: t > 0
\\
G
_{
rel
}
&
: t = 0
\end{array}
\right
.
\end{equation*}
\end{block}
\column
{
0.
4
\textwidth
}
\column
{
0.
5
\textwidth
}
\includegraphics
[scale=0.25]
{
bilder/ExampleGraph.png
}
\end{columns}
\end{frame}
\begin{frame}
\frametitle
{
WordNet
}
\begin{columns}
\column
{
0.5
\textwidth
}
\begin{itemize}
\item
As knowledge based method
$
Sim
(
T
_
1
, T
_
2
)
$
of
\cite
{
Mihalcea2006similarity
}
was used
\item
$
Sim
(
T
_
1
, T
_
2
)
$
determines the semantic similarity of
$
T
_
1
,T
_
2
$
by mutually picking up highly similar concepts
\item
The concepts were determined via WordNet
\item
For
$
maxSim
$
the
$
CoSim
$
of
\cite
{
Wu1994distance
}
was used
\end{itemize}
\begin{block}
{$
Sim
(
T
_
1
, T
_
2
)
$}
\begin{equation*}
\frac
{
1
}{
2
}
(
\frac
{
\sum
_{
w
\in
{
T
_
1
}}{
maxSim(w, T
_
2)
\cdot
idf(w)
}}{
\sum
_{
w
\in
{
T
_
1
}}{
idf(w)
}}
+
\frac
{
\sum
_{
w
\in
{
T
_
2
}}{
maxSim(w, T
_
1)
\cdot
idf(w)
}}{
\sum
_{
w
\in
{
T
_
2
}}{
idf(w)
}}
)
\end{equation*}
\end{block}
\begin{itemize}
\item
Analogously, the average conceptual similarity between
$
T
_
1
$
and
$
T
_
2
$
was used as a weakened variant
\item
Knowledge-based method
\item
Conceptual similarity between conclusion and premise
\end{itemize}
\column
{
0.5
\textwidth
}
\includegraphics
[scale=0.33]
{
bilder/Wordnet.png
}
\end{columns}
\end{frame}
\begin{frame}
\frametitle
{
Similarity
}
\begin{columns}
\column
{
0.5
\textwidth
}
\begin{itemize}
\item
For ranking the arguments, we measured the s
emantic similarity
between the premises and conclusion
s
\item
Argument were embedded word-wise in an averaged vector spac
e
\item
The resulting similarity was calculated by using
$
Cos
(
c
,
p
)
$
\item
S
emantic similarity
\item
Different embedding
s
\item
BERT, ELMo and GloV
e
\item
Similarity over
$
Cos
(
C
,
P
)
$
\end{itemize}
\begin{block}
{
Embeddings used
}
BERT by
\cite
{
devlin2018bert
}
ELMo by
\cite
{
Peters:2018ELMo
}
GloVe by
\cite
{
pennington2014glove
}
\end{block}
\column
{
0.5
\textwidth
}
\includegraphics
[scale=0.4]
{
bilder/Vectors.png
}
\end{columns}
\end{frame}
\begin{frame}
\frametitle
{
Sentiment
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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