add implementation stuff
This commit is contained in:
parent
1060eb2f6f
commit
f59ae2eb1f
BIN
rsc/AUC_normal_lowcer_2_20.png
Normal file
BIN
rsc/AUC_normal_lowcer_2_20.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
@ -1 +1,8 @@
|
||||
\section{Experimental Results}
|
||||
\section{Experimental Results}
|
||||
|
||||
\begin{figure}[h]
|
||||
\centering
|
||||
\includegraphics[width=\linewidth]{../rsc/AUC_normal_lowcer_2_20}
|
||||
\caption{Architecture convolutional neural network. Image by \href{https://cointelegraph.com/explained/what-are-convolutional-neural-networks}{SKY ENGINE AI}}
|
||||
\label{fig:cnn-architecture}
|
||||
\end{figure}
|
@ -29,22 +29,30 @@ That means taking the absolute value of the prediction minus the class center re
|
||||
|
||||
\cite{activelearning}
|
||||
|
||||
With the help of this metric the pseudo predictions can be sorted by the score $S(z)$.
|
||||
We define $\text{min}_n(S)$ and $\text{max}_n(S)$ respectively in~\ref{eq:minnot} and~\ref{eq:maxnot} to define a short form of taking a subsection of the minimum or maximum of a set.
|
||||
|
||||
\begin{equation}\label{eq:minnot}
|
||||
\text{min}_n(S) \coloneqq a \subset S \mid \text{where a are the n smallest numbers of S}
|
||||
\text{min}_n(S) \coloneqq a \subset S \mid \text{where } a \text{ are the } n \text{ smallest numbers of } S
|
||||
\end{equation}
|
||||
|
||||
\begin{equation}\label{eq:maxnot}
|
||||
\text{max}_n(S) \coloneqq a \subset S \mid \text{where a are the n largest numbers of S}
|
||||
\text{max}_n(S) \coloneqq a \subset S \mid \text{where } a \text{ are the } n \text{ largest numbers of } S
|
||||
\end{equation}
|
||||
|
||||
\subsection{Low certainty first}
|
||||
This notation helps to define which subsets of samples to give the user for labeling.
|
||||
There are different ways how this subset can be chosen.
|
||||
In this PW we do the obvious experiments with High-Certainty first~\ref{subsec:low-certainty-first}, Low-Certainty first~\ref{subsec:high-certainty-first}.
|
||||
Furthermore, the two mixtures between them, halt-high and half-low certain and only the middle section of the sorted certainty scores.
|
||||
|
||||
\subsection{Low certainty first}\label{subsec:low-certainty-first}
|
||||
We take the samples with the lowest certainty score first and give it to the user for labeling.
|
||||
|
||||
\begin{equation}
|
||||
\text{min}_\mathcal{B}(S(z))
|
||||
\end{equation}
|
||||
|
||||
\subsection{High certainty first}
|
||||
\subsection{High certainty first}\label{subsec:high-certainty-first}
|
||||
We take the samples with the highest certainty score first and give it to the user for labeling.
|
||||
|
||||
\begin{equation}
|
||||
|
Loading…
Reference in New Issue
Block a user