Skip to content

Commit

Permalink
Merge pull request #14 from chhoumann/section-V-System-Pipeline
Browse files Browse the repository at this point in the history
Introduction for section V
  • Loading branch information
Pattrigue authored May 17, 2022
2 parents af484c8 + 7470fcf commit 85260af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions master.tex
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ \section{Preliminaries}


\section{Transformer model for time series forecasting by embedding temporal data as vectors} % Methodology
\input{sections/data-loading.tex}
\input{sections/transformers.tex}
\input{sections/methodology.tex}

Expand Down
10 changes: 10 additions & 0 deletions sections/data-loading.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
As the purpose of the project is to create a system in which a user should be able to see the weather forecast for a specific area, or more precisely, the temperature forecast, we have developed a system that leverages several models to perform the temperature forecasting.
The goal is to allow the user to interact with the system in such a way that the user can see the accuracy of the different models.
The user is able to select a region for which they want to predict the temperature. The results are shown both as a graph that displays the predicted value versus the actual value, as well as the specific set of temperatures of that region for a given time period into the future. This is similar to what one may see on regular weather forecasts.

In order to achieve, this we have constructed a pipeline that preprocesses the data, trains our models, and the resulting models are then used to perform the forecasting displayed on a web application.
Figure xx shows an overview of the architecture of the pipeline.
Note that since the transformer model is the best performing model, which is shown in section (experiment afsnit), this is the model that we chose to include and describe as part of the pipeline. Regardless of this fact, the other models are used in the pipeline in a similar fashion.

\subsection{Data loading and preprocessing}
In order to load the data, we have done the following...

0 comments on commit 85260af

Please sign in to comment.