From 0fc6898c70ac69342bc922a04e3334297a8f4254 Mon Sep 17 00:00:00 2001 From: lukas-heiligenbrunner Date: Fri, 26 Apr 2024 07:07:44 +0200 Subject: [PATCH] add some impl stuff --- src/implementation.tex | 15 +++++++++++++++ src/main.tex | 1 + src/materialandmethods.tex | 4 ++++ 3 files changed, 20 insertions(+) diff --git a/src/implementation.tex b/src/implementation.tex index fb04878..ff59628 100644 --- a/src/implementation.tex +++ b/src/implementation.tex @@ -1 +1,16 @@ \section{Implementation}\label{sec:implementation} + +\subsection{Dagster with Label-Studio} + +The main goal is to implement an active learning loop with the help of Dagster and Label-Studio. +The task was split as much as possible... + +\subsection{Jupyter} + +To get accurate performance measures the active-learning process was implemented in a Jupyter notebook first. +This helps to choose which of the methods performs the best and which one to use in the final Dagster pipeline. +A straight forward machine-learning pipeline was implemented with the help of Pytorch and RESNet. + +\begin{lstlisting} +# todo listing of the sample selection process +\end{lstlisting} \ No newline at end of file diff --git a/src/main.tex b/src/main.tex index 0fbe7a5..0c6090f 100644 --- a/src/main.tex +++ b/src/main.tex @@ -8,6 +8,7 @@ \usepackage{amsmath} \usepackage{mathtools} \usepackage{hyperref} +\usepackage{listings} \usepackage[inline]{enumitem} diff --git a/src/materialandmethods.tex b/src/materialandmethods.tex index e1981ca..30ac3ba 100644 --- a/src/materialandmethods.tex +++ b/src/materialandmethods.tex @@ -3,6 +3,10 @@ \subsection{Material}\label{subsec:material} \subsubsection{Dagster} +Dagster is a data orchestrator for machine learning, analytics, and ETL workflows. +It lets you define pipelines in terms of the data flow between reusable, logical components. +Dagster is a tool that helps to build scalable and reliable data workflows. + \subsubsection{Label-Studio} \subsubsection{Pytorch} \subsubsection{NVTec}