Skip to content

Commit

Permalink
Add one more slide
Browse files Browse the repository at this point in the history
  • Loading branch information
whynotkimhari committed May 27, 2024
1 parent 2852c4e commit 3eb96cc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Binary file modified presentation.pdf
Binary file not shown.
19 changes: 19 additions & 0 deletions presentation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,25 @@
\end{itemize}
\end{block}
\end{frame}

\begin{frame}{Splitting data}
\begin{exampleblock}{Can we just put the processed data into model straight forward?}
No, we can not feed the whole data straight forward into the model, because that action will cause \textbf{over-fitting} problem which no one want it to be happened when training model
\end{exampleblock}

\begin{block}{Do we need to shuffle the data before splitting?}
No, we don't want to shuffle the data because it has \textbf{continuous} attribute of time then shuffling will make the data lose this special and important property which cause a big problem for the model to learn the pattern
\end{block}

\begin{exampleblock}{How will we feed input data to our model?}
We will split the data into three categories:
\begin{itemize}
\item \structure{Train}: The first 80\% data of the input
\item \structure{Validation}: The next 10\% data
\item \structure{Test}: The last 10\% data
\end{itemize}
\end{exampleblock}
\end{frame}

\begin{frame}{Applications}
\begin{block}{Can it be used in production?}
Expand Down

0 comments on commit 3eb96cc

Please sign in to comment.