Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
schaertl_andreas
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
supervision
schaertl_andreas
Commits
6e3250ef
Commit
6e3250ef
authored
Sep 1, 2020
by
Andreas Schärtl
Browse files
Options
Downloads
Patches
Plain Diff
slides: fill out context chapter
parent
d1851c82
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/slides/Makefile
+2
-1
2 additions, 1 deletion
doc/slides/Makefile
doc/slides/references.bib
+1
-0
1 addition, 0 deletions
doc/slides/references.bib
doc/slides/slides.tex
+89
-12
89 additions, 12 deletions
doc/slides/slides.tex
with
92 additions
and
13 deletions
doc/slides/Makefile
+
2
−
1
View file @
6e3250ef
TEX_SOURCES
=
$(
wildcard
*
.tex
)
TEX_SOURCES
=
$(
wildcard
*
.tex
)
slides.pdf
:
$(TEX_SOURCES)
slides.pdf
:
$(TEX_SOURCES)
references.bib
pdflatex slides.tex
pdflatex slides.tex
biber slides
pdflatex slides.tex
pdflatex slides.tex
view
:
slides.pdf
view
:
slides.pdf
...
...
This diff is collapsed.
Click to expand it.
doc/slides/references.bib
0 → 120000
+
1
−
0
View file @
6e3250ef
../report/references.bib
\ No newline at end of file
This diff is collapsed.
Click to expand it.
doc/slides/slides.tex
+
89
−
12
View file @
6e3250ef
\documentclass
{
beamer
}
\documentclass
{
beamer
}
% set up citations
\usepackage
[
backend=biber,
natbib=true,
sorting=none
]
{
biblatex
}
\addbibresource
{
references.bib
}
\setbeamertemplate
{
bibliography item
}{
\insertbiblabel
}
\begin{document}
\begin{document}
% [Title]
\title
{
ulo-storage
}
\title
{
ulo-storage
}
\author
{
Andreas Schärtl
}
\author
{
Andreas Schärtl
}
...
@@ -17,28 +31,83 @@
...
@@ -17,28 +31,83 @@
\begin{frame}
{
Context
}
\begin{frame}
{
Context
}
\begin{itemize}
\begin{itemize}
\item
different kinds of mathematical knowledge
\item
\emph
{
Tetrapodal Search
}
wants to be a unified search for
\item
different formats and indicies; combine it for tetrapodal search
four distinct areas of mathematical knowledge~
\cite
{
tetra
}
.
\begin{itemize}
\item
Symbolic Knowledge
\item
Concrete Knowledge
\item
Narrative Knowledge
\item
Organizational Knowledge
\end{itemize}
\item
Each component should be formated, stored and accessible in a
format optimized for the given kind of knowledge.
\end{itemize}
\end{itemize}
\end{frame}
\end{frame}
\begin{frame}
{
Context
}
\begin{frame}
{
Context: Focus
}
\begin{itemize}
\item
For this project,
\emph
{
ulo-storage
}
, the focus was on
organizational knowledge.
\begin{itemize}
\item
Identifiers, references and their relationships.
\item
Essentially meta data.
\end{itemize}
\item
Previous work introduced the
\emph
{
upper level
ontology
}
~(ULO) as a way of formulating organizational
mathematical knowledge~
\cite
{
ulo
}
.
\begin{itemize}
\begin{itemize}
\item
focu
s
o
n
organizational data
\item
ULO i
s
a
n
RDF ontology, that is it provides RDF triplets
\item
intro for
{
ULO
}
; uses triplets
for representing mathematical knowledge as a graph.
\item
want to make triplets accessible (
\emph
{
ulo-storage
}
)
\item
\emph
{
TODO
}
: Example of RDF triplet
\end{itemize}
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}
{
Context: Contribution
}
The contribution of
\emph
{
ulo-storage
}
is twofold.
\vspace
{
2mm
}
\begin{description}
\item
[Implementation]
We provide infrastructure for automated
imports from existing ULO exports into a queryable database
repository.
\item
[Exploration]
Built on top of above infrastructure we
implemented various queries and applications.
\end{description}
\vspace
{
2mm
}
While the explorative part is probably the more interesting to talk
about, the implementation probably has more practical use.
\end{frame}
\end{frame}
% Implementation
%
[
Implementation
]
\section
{
Implementation
}
\section
{
Implementation
}
\begin{frame}
{
Implementation
}
\begin{frame}
{
Implementation: Starting Point
}
\begin{itemize}
\item
We already have exports from third party libraries to ULO
RDF~triplets, in particular from collections of
Coq~
\cite
{
ulocoq
}
and Isabelle~
\cite
{
uloisabelle
}
code.
\item
RDF triplets are stored as XML~files in Git~repositories.
\end{itemize}
\end{frame}
\begin{frame}
{
Implementation: Components
}
\begin{itemize}
\item
\emph
{
TODO
}
: Add pretty picture.
\item
Involved in the implemtation for
\emph
{
ulo-storage
}
are the
following components.
\begin{itemize}
\begin{itemize}
\item
had to be done, but honestly not interesting from a research
\item
\emph
{
Collector:
}
Fetch XML~files from Git~repositories
perspective
and apply on the fly filters and modifications.
\item
show split up components: collector, importer, endpoint
\item
\emph
{
Importer:
}
Import XML~stream from Collector into a
permanent storage.
\item
\emph
{
Endpoint:
}
Programming Interface for the permanent
storage. Essentially the database interface.
\end{itemize}
\end{itemize}
\end{itemize}
\end{frame}
\end{frame}
...
@@ -56,7 +125,7 @@
...
@@ -56,7 +125,7 @@
\end{itemize}
\end{itemize}
\end{frame}
\end{frame}
% Applications & Questions
%
[
Applications & Questions
]
\section
{
Applications and Questions
}
\section
{
Applications and Questions
}
...
@@ -85,5 +154,13 @@
...
@@ -85,5 +154,13 @@
\end{itemize}
\end{itemize}
\end{frame}
\end{frame}
% [References]
\section
{
References
}
\begin{frame}
{
References
}
\printbibliography
{}
\end{frame}
\end{document}
\end{document}
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