Updated thesis

This commit is contained in:
2024-05-09 13:25:22 +02:00
parent 4c4914e227
commit 907f62d9cd
29 changed files with 286 additions and 144 deletions

View File

@@ -41,10 +41,20 @@ TODO: ask Jonas: add urls to the correct data? via citation?
A lot of data is available but only the most relevant data needs to be used. Experiments will be done to identify which data and features improve the NRV modeling. The data will be split into a training and test set. The training dataset starts depending on which data features are used but ends on 31-12-2022. The test set starts on 01-01-2023 and ends on (TODO: check the end date). This makes sure enough data is available to train the models and the test set is large enough to evaluate the models. The year 2023 is chosen as the test set because it is the most recent data available when the thesis experiments were conducted. Using data from 2022 in the test set also does not make a lot of sense because the trained models would be used to predict the future. Data from 2022 is not relevant anymore to evaluate the models. A lot of data is available but only the most relevant data needs to be used. Experiments will be done to identify which data and features improve the NRV modeling. The data will be split into a training and test set. The training dataset starts depending on which data features are used but ends on 31-12-2022. The test set starts on 01-01-2023 and ends on (TODO: check the end date). This makes sure enough data is available to train the models and the test set is large enough to evaluate the models. The year 2023 is chosen as the test set because it is the most recent data available when the thesis experiments were conducted. Using data from 2022 in the test set also does not make a lot of sense because the trained models would be used to predict the future. Data from 2022 is not relevant anymore to evaluate the models.
\subsection{Quantile Regression} \subsection{Quantile Regression}
\input{sections/results/linear} \input{sections/results/models/linear}
\input{sections/results/non-linear} \input{sections/results/models/non-linear}
\input{sections/results/gru} \input{sections/results/models/gru}
\input{sections/results/diffusion} \input{sections/results/models/diffusion}
\input{sections/results/models/comparison}
\newpage
\section{Policies for battery optimization}
The goal of this thesis is to model the NRV data and use this to optimize the buying and selling of electricity to make a profit. Different models and methods can be used to model the NRV data which can all result in different results. To evaluate the performance of the models, the generated profit on the test set can be used as a metric. First of all, baselines are needed to be able to compare the models to if adding NRV predictions to the policies improves the profit. The baselines are already discussed in the background section. It is very important to compare the baselines and other policies fairly. The profit depends on the number of charge cycles that are used. The more charge cycles a policy uses, the more profit it will be able to make. Using too many charge cycles is bad for the health of the battery. A penalty parameter can be used to penalize the policy when too many charge cycles are used in a day. To fairly compare the policies with different models and baselines, a maximum number of charge cycles is determined for the test period. The test period starts on 01-01-2023 and ends on (TODO: check the end date). Assuming a maximum of 400 charge cycles can be used in a year, only 293 charge cycles can be used during the test period. The penalty parameter is optimized using a simple gradient descent approach to make sure only 293 charge cycles are used during the test period. The profit is then calculated using the optimized penalty parameter.
\input{sections/results/policies/baselines}
\input{sections/results/policies/nrv_samples_policy}

View File

@@ -0,0 +1 @@
\subsection{Comparison}

View File

@@ -0,0 +1,20 @@
\subsection{Baselines}
As discussed earlier, the most simple baseline that can be used is choosing two fixed thresholds. One threshold is used to buy electricity and the other threshold is used to sell electricity. The thresholds can be chosen based on the available historical data. A simple grid search is done over multiple combinations of thresholds. For each combination, the penalty parameter is optimized to make sure only 400 charge cycles are used in a year. The thresholds that achieve the highest profit on the training set are then used to evaluate the policy on the test set. The thresholds found that maximize the profit on the training set are 100€/MWh for buying and 200€/MWh for selling. Evaluating these thresholds on the test set results in a profit of €266,294.15 but using 492.0 charge cycles. This can not be used to fairly compare other policies. The thresholds can also be determined on the test set itself to find what the maximum possible profit is for the fixed thresholds policy. This can not be used in practice because the thresholds are determined on future data. It is, however, useful for the comparison of the other policies. The best thresholds found on the test set are 200€/MWh for buying and 250€/MWh for selling. The profit achieved using these thresholds is €143,004.34 with 287.12 charge cycles.
Another baseline that can be used is using the real NRV data of the previous day to determine the buying and selling thresholds for the next day. The NRV data of the previous day can be seen as a prediction for the NRV data of the next day. Now, the thresholds are not fixed anymore but are determined based on the NRV predictions. The thresholds are determined separately for each day using a simple grid search which allows the policy to adapt to the changing NRV data. The penalty parameter is also optimized to make sure only around 283 charge cycles are used. The profit achieved using this policy is €198,807.09 using 283.5 charge cycles.
The baseline policy using the NRV data of the day before as a prediction can be adapted to use the real NRV data of the day that is being optimized. This policy can show the maximum profit that can be achieved if a perfect NRV prediction is made. The profit for the policy using a perfect prediction of the NRV is €230,317.84 using 282.5 charge cycles. This policy can be seen as the upper bound for the other policies. To achieve better profit results than this, more complex policies need to be used. \\
\begin{table}[H]
\centering
\begin{tabular}{|l|l|l|l|}
\hline
\textbf{Policy} & \textbf{Profit (€)} & \textbf{Charge cycles} \\ \hline
Fixed thresholds & 143,004.34 & 287.12\\ \hline
Yesterday NRV & 198,807.09 & 283.5\\ \hline
Perfect NRV & 230,317.84 & 282.5\\ \hline
\end{tabular}
\caption{Results of the baseline policies on the test set. }
\label{tab:fixed_thresholds}
\end{table}

View File

@@ -0,0 +1,9 @@
\subsection{Policy using generated NRV samples}
The generated full-day samples can be used to improve the profit of the policy. For each day, the generated samples can be used to determine the buying and selling thresholds. Assume that there are 100 generated full-day NRV samples for the day for which the profit needs to be optimized. The thresholds are determined for each generated sample separately using a simple grid search. All these thresholds can then be reduced by taking the mean to get one value for the buying threshold and one value for the selling threshold. Again, the penalty parameter is optimized for the test set to make sure around 283 charge cycles are used for fair comparison. The policy is evaluated for the different types of models that were trained and discussed in the previous sections.
% TODO: Explain the results of the different models
% TODO: Compare with baselines
% TODO: explain further
An observation that can be made is that the metrics used to evaluate the NRV predictions, do not necessarily correlate with the profit that can be made using the predictions. This means the best model in terms of the metrics does not necessarily result in the best profit. During the training, the profit should be used as a metric to evaluate the models but this becomes computationally expensive.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -82,17 +82,20 @@
\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}Diffusion}{36}{subsection.6.3}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {6.3}Diffusion}{36}{subsection.6.3}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {14}{\ignorespaces Intermediate steps of the diffusion model for example 864 from the test set. The confidence intervals shown in the plots are made using 100 samples.\relax }}{38}{figure.caption.23}\protected@file@percent } \@writefile{lof}{\contentsline {figure}{\numberline {14}{\ignorespaces Intermediate steps of the diffusion model for example 864 from the test set. The confidence intervals shown in the plots are made using 100 samples.\relax }}{38}{figure.caption.23}\protected@file@percent }
\newlabel{fig:diffusion_intermediates}{{14}{38}{Intermediate steps of the diffusion model for example 864 from the test set. The confidence intervals shown in the plots are made using 100 samples.\relax }{figure.caption.23}{}} \newlabel{fig:diffusion_intermediates}{{14}{38}{Intermediate steps of the diffusion model for example 864 from the test set. The confidence intervals shown in the plots are made using 100 samples.\relax }{figure.caption.23}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7}Policies for battery optimization}{38}{section.7}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {6.4}Comparison}{38}{subsection.6.4}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Baselines}{38}{subsection.7.1}\protected@file@percent } \@writefile{toc}{\contentsline {section}{\numberline {7}Policies for battery optimization}{39}{section.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Policies using NRV predictions}{38}{subsection.7.2}\protected@file@percent } \@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Baselines}{39}{subsection.7.1}\protected@file@percent }
\abx@aux@page{6}{39} \@writefile{lot}{\contentsline {table}{\numberline {9}{\ignorespaces Results of the baseline policies on the test set. \relax }}{40}{table.caption.24}\protected@file@percent }
\abx@aux@page{7}{39} \newlabel{tab:fixed_thresholds}{{9}{40}{Results of the baseline policies on the test set. \relax }{table.caption.24}{}}
\abx@aux@page{8}{39} \@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{40}{subsection.7.2}\protected@file@percent }
\abx@aux@page{9}{39} \abx@aux@page{6}{41}
\abx@aux@page{7}{41}
\abx@aux@page{8}{41}
\abx@aux@page{9}{41}
\abx@aux@read@bbl@mdfivesum{5DC935CC8C8FAB8A3CAF97A486ED2386} \abx@aux@read@bbl@mdfivesum{5DC935CC8C8FAB8A3CAF97A486ED2386}
\abx@aux@read@bblrerun \abx@aux@read@bblrerun
\abx@aux@defaultrefcontext{0}{dumas_deep_2022}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{dumas_deep_2022}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{lu_scenarios_2022}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{lu_scenarios_2022}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{poggi_electricity_2023}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{poggi_electricity_2023}{nyt/global//global/global}
\abx@aux@defaultrefcontext{0}{weron_electricity_2014}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{weron_electricity_2014}{nyt/global//global/global}
\gdef \@abspage@last{40} \gdef \@abspage@last{42}

View File

@@ -2818,4 +2818,70 @@
<bcf:entrytype>article</bcf:entrytype> <bcf:entrytype>article</bcf:entrytype>
<bcf:entrytype>report</bcf:entrytype> <bcf:entrytype>report</bcf:entrytype>
<bcf:constraint type="mandatory"> <bcf:constraint type="mandatory">
<bcf:field> <bcf:field>author</bcf:field>
<bcf:field>title</bcf:field>
</bcf:constraint>
</bcf:constraints>
</bcf:datamodel>
<!-- CITATION DATA -->
<!-- SECTION 0 -->
<bcf:bibdata section="0">
<bcf:datasource type="file" datatype="bibtex" glob="false">./references.bib</bcf:datasource>
</bcf:bibdata>
<bcf:section number="0">
<bcf:citekey order="1" intorder="1">weron_electricity_2014</bcf:citekey>
<bcf:citekey order="2" intorder="1">poggi_electricity_2023</bcf:citekey>
<bcf:citekey order="3" intorder="1">lu_scenarios_2022</bcf:citekey>
<bcf:citekey order="4" intorder="1">dumas_deep_2022</bcf:citekey>
<bcf:citekey order="5" intorder="1">rasul_autoregressive_2021</bcf:citekey>
<bcf:citekey order="6" intorder="1">dumas_deep_2022</bcf:citekey>
</bcf:section>
<!-- SORTING TEMPLATES -->
<bcf:sortingtemplate name="nyt">
<bcf:sort order="1">
<bcf:sortitem order="1">presort</bcf:sortitem>
</bcf:sort>
<bcf:sort order="2" final="1">
<bcf:sortitem order="1">sortkey</bcf:sortitem>
</bcf:sort>
<bcf:sort order="3">
<bcf:sortitem order="1">sortname</bcf:sortitem>
<bcf:sortitem order="2">author</bcf:sortitem>
<bcf:sortitem order="3">editor</bcf:sortitem>
<bcf:sortitem order="4">translator</bcf:sortitem>
<bcf:sortitem order="5">sorttitle</bcf:sortitem>
<bcf:sortitem order="6">title</bcf:sortitem>
</bcf:sort>
<bcf:sort order="4">
<bcf:sortitem order="1">sortyear</bcf:sortitem>
<bcf:sortitem order="2">year</bcf:sortitem>
</bcf:sort>
<bcf:sort order="5">
<bcf:sortitem order="1">sorttitle</bcf:sortitem>
<bcf:sortitem order="2">title</bcf:sortitem>
</bcf:sort>
<bcf:sort order="6">
<bcf:sortitem order="1">volume</bcf:sortitem>
<bcf:sortitem literal="1" order="2">0</bcf:sortitem>
</bcf:sort>
</bcf:sortingtemplate>
<!-- DATALISTS -->
<bcf:datalist section="0"
name="nyt/apasortcite//global/global"
type="entry"
sortingtemplatename="nyt"
sortingnamekeytemplatename="apasortcite"
labelprefix=""
uniquenametemplatename="global"
labelalphanametemplatename="global">
</bcf:datalist>
<bcf:datalist section="0"
name="nyt/global//global/global"
type="entry"
sortingtemplatename="nyt"
sortingnamekeytemplatename="global"
labelprefix=""
uniquenametemplatename="global"
labelalphanametemplatename="global">
</bcf:datalist>
</bcf:controlfile>

View File

@@ -1,4 +1,4 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.9.17) 8 MAY 2024 17:56 This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.9.17) 9 MAY 2024 13:21
entering extended mode entering extended mode
restricted \write18 enabled. restricted \write18 enabled.
file:line:error style messages enabled. file:line:error style messages enabled.
@@ -1211,7 +1211,7 @@ LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be
pdfTeX warning: pdflatex (file ./ea-en.pdf): PDF inclusion: found PDF version <1.7>, but at most version <1.5> allowed pdfTeX warning: pdflatex (file ./ea-en.pdf): PDF inclusion: found PDF version <1.7>, but at most version <1.5> allowed
<ea-en.pdf, id=127, 192.05753pt x 64.01918pt> <ea-en.pdf, id=131, 192.05753pt x 64.01918pt>
File: ea-en.pdf Graphic file (type pdf) File: ea-en.pdf Graphic file (type pdf)
<use ea-en.pdf> <use ea-en.pdf>
Package pdftex.def Info: ea-en.pdf used on input line 137. Package pdftex.def Info: ea-en.pdf used on input line 137.
@@ -1287,7 +1287,7 @@ Overfull \hbox (33.0pt too wide) in paragraph at lines 137--137
pdfTeX warning: pdflatex (file ./ugent-en.pdf): PDF inclusion: found PDF version <1.7>, but at most version <1.5> allowed pdfTeX warning: pdflatex (file ./ugent-en.pdf): PDF inclusion: found PDF version <1.7>, but at most version <1.5> allowed
<ugent-en.pdf, id=128, 106.69862pt x 85.3589pt> <ugent-en.pdf, id=132, 106.69862pt x 85.3589pt>
File: ugent-en.pdf Graphic file (type pdf) File: ugent-en.pdf Graphic file (type pdf)
<use ugent-en.pdf> <use ugent-en.pdf>
Package pdftex.def Info: ugent-en.pdf used on input line 137. Package pdftex.def Info: ugent-en.pdf used on input line 137.
@@ -1348,13 +1348,13 @@ LaTeX Font Info: Font shape `TS1/LinuxLibertineT-TLF/m/n' will be
[5{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusMI.enc}] [5{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusMI.enc}]
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be
(Font) scaled to size 14.4pt on input line 100. (Font) scaled to size 14.4pt on input line 100.
<images/quantile_regression/cdf_quantiles_example.png, id=200, 722.7pt x 433.62pt> <images/quantile_regression/cdf_quantiles_example.png, id=205, 722.7pt x 433.62pt>
File: images/quantile_regression/cdf_quantiles_example.png Graphic file (type png) File: images/quantile_regression/cdf_quantiles_example.png Graphic file (type png)
<use images/quantile_regression/cdf_quantiles_example.png> <use images/quantile_regression/cdf_quantiles_example.png>
Package pdftex.def Info: images/quantile_regression/cdf_quantiles_example.png used on input line 107. Package pdftex.def Info: images/quantile_regression/cdf_quantiles_example.png used on input line 107.
(pdftex.def) Requested size: 364.19667pt x 218.51653pt. (pdftex.def) Requested size: 364.19667pt x 218.51653pt.
[6{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_naooyc.enc} <./images/quantile_regression/cdf_quantiles_example.png>] [6{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_naooyc.enc} <./images/quantile_regression/cdf_quantiles_example.png>]
<images/quantile_regression/reconstructed_cdf.png, id=212, 722.7pt x 433.62pt> <images/quantile_regression/reconstructed_cdf.png, id=217, 722.7pt x 433.62pt>
File: images/quantile_regression/reconstructed_cdf.png Graphic file (type png) File: images/quantile_regression/reconstructed_cdf.png Graphic file (type png)
<use images/quantile_regression/reconstructed_cdf.png> <use images/quantile_regression/reconstructed_cdf.png>
Package pdftex.def Info: images/quantile_regression/reconstructed_cdf.png used on input line 117. Package pdftex.def Info: images/quantile_regression/reconstructed_cdf.png used on input line 117.
@@ -1364,13 +1364,13 @@ LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be
LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be
(Font) scaled to size 6.0pt on input line 127. (Font) scaled to size 6.0pt on input line 127.
[7{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusMR.enc}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusEX.enc}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusSYM.enc} <./images/quantile_regression/reconstructed_cdf.png>] [8] [9] [10] [7{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusMR.enc}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusEX.enc}{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertinust1math/libusSYM.enc} <./images/quantile_regression/reconstructed_cdf.png>] [8] [9] [10]
<images/quantile_regression/rnn/RNN_diagram.png, id=237, 753.81625pt x 324.21124pt> <images/quantile_regression/rnn/RNN_diagram.png, id=242, 753.81625pt x 324.21124pt>
File: images/quantile_regression/rnn/RNN_diagram.png Graphic file (type png) File: images/quantile_regression/rnn/RNN_diagram.png Graphic file (type png)
<use images/quantile_regression/rnn/RNN_diagram.png> <use images/quantile_regression/rnn/RNN_diagram.png>
Package pdftex.def Info: images/quantile_regression/rnn/RNN_diagram.png used on input line 206. Package pdftex.def Info: images/quantile_regression/rnn/RNN_diagram.png used on input line 206.
(pdftex.def) Requested size: 364.19667pt x 156.63872pt. (pdftex.def) Requested size: 364.19667pt x 156.63872pt.
[11 <./images/quantile_regression/rnn/RNN_diagram.png>] [11 <./images/quantile_regression/rnn/RNN_diagram.png>]
<images/diffusion/Generation-with-Diffusion-Models.png, id=245, 926.00159pt x 228.96758pt> <images/diffusion/Generation-with-Diffusion-Models.png, id=250, 926.00159pt x 228.96758pt>
File: images/diffusion/Generation-with-Diffusion-Models.png Graphic file (type png) File: images/diffusion/Generation-with-Diffusion-Models.png Graphic file (type png)
<use images/diffusion/Generation-with-Diffusion-Models.png> <use images/diffusion/Generation-with-Diffusion-Models.png>
Package pdftex.def Info: images/diffusion/Generation-with-Diffusion-Models.png used on input line 234. Package pdftex.def Info: images/diffusion/Generation-with-Diffusion-Models.png used on input line 234.
@@ -1383,7 +1383,7 @@ See the caption package documentation for explanation.
LaTeX Warning: Reference `fig:diffusion_process' on page 14 undefined on input line 274. LaTeX Warning: Reference `fig:diffusion_process' on page 14 undefined on input line 274.
<images/diffusion/diffusion_graphical_model.png, id=260, 979.66pt x 185.69376pt> <images/diffusion/diffusion_graphical_model.png, id=265, 979.66pt x 185.69376pt>
File: images/diffusion/diffusion_graphical_model.png Graphic file (type png) File: images/diffusion/diffusion_graphical_model.png Graphic file (type png)
<use images/diffusion/diffusion_graphical_model.png> <use images/diffusion/diffusion_graphical_model.png>
Package pdftex.def Info: images/diffusion/diffusion_graphical_model.png used on input line 278. Package pdftex.def Info: images/diffusion/diffusion_graphical_model.png used on input line 278.
@@ -1393,7 +1393,7 @@ LaTeX Font Info: Trying to load font information for U+bbm on input line 307.
(/usr/local/texlive/2023/texmf-dist/tex/latex/bbm-macros/ubbm.fd (/usr/local/texlive/2023/texmf-dist/tex/latex/bbm-macros/ubbm.fd
File: ubbm.fd 1999/03/15 V 1.2 Font definition for bbm font - TH File: ubbm.fd 1999/03/15 V 1.2 Font definition for bbm font - TH
) )
<images/quantile_regression/crps_visualization.png, id=269, 611.4042pt x 395.3169pt> <images/quantile_regression/crps_visualization.png, id=274, 611.4042pt x 395.3169pt>
File: images/quantile_regression/crps_visualization.png Graphic file (type png) File: images/quantile_regression/crps_visualization.png Graphic file (type png)
<use images/quantile_regression/crps_visualization.png> <use images/quantile_regression/crps_visualization.png>
Package pdftex.def Info: images/quantile_regression/crps_visualization.png used on input line 325. Package pdftex.def Info: images/quantile_regression/crps_visualization.png used on input line 325.
@@ -1419,8 +1419,8 @@ LaTeX Warning: Citation 'rasul_autoregressive_2021' on page 19 undefined on inpu
]) [20] (./sections/results.tex [21 ]) [20] (./sections/results.tex [21
] (./sections/results/linear.tex [22] [23] ] (./sections/results/models/linear.tex [22] [23]
<images/quantile_regression/nrv_mean_std_over_quarter.png, id=324, 722.7pt x 433.62pt> <images/quantile_regression/nrv_mean_std_over_quarter.png, id=329, 722.7pt x 433.62pt>
File: images/quantile_regression/nrv_mean_std_over_quarter.png Graphic file (type png) File: images/quantile_regression/nrv_mean_std_over_quarter.png Graphic file (type png)
<use images/quantile_regression/nrv_mean_std_over_quarter.png> <use images/quantile_regression/nrv_mean_std_over_quarter.png>
Package pdftex.def Info: images/quantile_regression/nrv_mean_std_over_quarter.png used on input line 42. Package pdftex.def Info: images/quantile_regression/nrv_mean_std_over_quarter.png used on input line 42.
@@ -1430,44 +1430,44 @@ Package pdftex.def Info: images/quantile_regression/nrv_mean_std_over_quarter.pn
LaTeX Warning: Reference `fig:autoregressive_linear_model_samples' on page 25 undefined on input line 81. LaTeX Warning: Reference `fig:autoregressive_linear_model_samples' on page 25 undefined on input line 81.
[25 <./images/quantile_regression/nrv_mean_std_over_quarter.png>] [25 <./images/quantile_regression/nrv_mean_std_over_quarter.png>]
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=339, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=344, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 86. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 86.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png, id=340, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png, id=345, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png used on input line 90. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png used on input line 90.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=341, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=346, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 93. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 93.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png, id=342, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png, id=347, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png used on input line 97. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png used on input line 97.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=343, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=348, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 100. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 100.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png, id=344, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png, id=349, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png used on input line 104. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png used on input line 104.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=345, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=350, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 107. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 107.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be
(Font) scaled to size 10.95pt on input line 108. (Font) scaled to size 10.95pt on input line 108.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png, id=346, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png, id=351, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png used on input line 112. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png used on input line 112.
@@ -1482,104 +1482,104 @@ Underfull \hbox (badness 10000) in paragraph at lines 122--123
[] []
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png, id=362, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png, id=367, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png used on input line 127. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png used on input line 127.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png, id=363, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png, id=368, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png used on input line 131. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png used on input line 131.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png, id=364, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png, id=369, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png Graphic file (type png) File: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png Graphic file (type png)
<use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png> <use images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png>
Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png used on input line 134. Package pdftex.def Info: images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png used on input line 134.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png, id=365, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png, id=370, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png Graphic file (type png) File: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png Graphic file (type png)
<use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png> <use images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png>
Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png used on input line 139. Package pdftex.def Info: images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png used on input line 139.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg, id=367, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg, id=372, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg> <use images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg used on input line 151. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg used on input line 151.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg, id=368, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg, id=373, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg> <use images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg used on input line 156. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg used on input line 156.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg, id=369, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg, id=374, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg> <use images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg used on input line 161. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg used on input line 161.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg, id=370, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg, id=375, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg> <use images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg used on input line 166. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg used on input line 166.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
[27 <./images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png> <./images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png> <./images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png> <./images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png>]) (./sections/results/non-linear.tex [28 <./images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg>] [29{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7grukw.enc}] [27 <./images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png> <./images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png> <./images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png> <./images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png>]) (./sections/results/models/non-linear.tex [28 <./images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg>] [29{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7grukw.enc}]
<images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=394, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=399, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png) File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png)
<use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 78. Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 78.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=395, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=400, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png) File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png)
<use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 82. Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 82.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=396, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=401, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png) File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 85. Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 85.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=397, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=402, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png) File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 89. Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 89.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=398, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=403, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png) File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 92. Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 92.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=399, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=404, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png) File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 96. Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 96.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=400, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=405, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png) File: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <use images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 99. Package pdftex.def Info: images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 99.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=401, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=406, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png) File: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <use images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 104. Package pdftex.def Info: images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 104.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
[30] [30]
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg, id=409, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg, id=414, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg> <use images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg used on input line 117. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg used on input line 117.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg, id=410, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg, id=415, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg> <use images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg used on input line 122. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg used on input line 122.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg, id=411, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg, id=416, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg> <use images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg used on input line 127. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg used on input line 127.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg, id=412, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg, id=417, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg> <use images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg used on input line 132. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg used on input line 132.
@@ -1589,64 +1589,64 @@ Underfull \hbox (badness 4582) in paragraph at lines 135--135
[]\T1/LinuxLibertineT-TLF/m/n/12 Figure 11: |Over/underestimation of the quan-tiles for the au-tore-gres-sive and non- []\T1/LinuxLibertineT-TLF/m/n/12 Figure 11: |Over/underestimation of the quan-tiles for the au-tore-gres-sive and non-
[] []
) [31 <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>] (./sections/results/gru.tex [32 <./images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg>] [33] ) [31 <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/aqr_non_linear_model_samples/AQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <./images/quantile_regression/naqr_non_linear_model_samples/NAQR_NL_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>] (./sections/results/models/gru.tex [32 <./images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg> <./images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg>] [33]
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=440, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=445, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png) File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png)
<use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 75. Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 75.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=441, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=446, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png) File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png Graphic file (type png)
<use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png>
Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 79. Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png used on input line 79.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=442, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=447, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png) File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 82. Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 82.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=443, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=448, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png) File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png Graphic file (type png)
<use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png>
Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 86. Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png used on input line 86.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=444, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=449, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png) File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 89. Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 89.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=445, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=450, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png) File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png Graphic file (type png)
<use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png>
Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 93. Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png used on input line 93.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=446, 1180.8918pt x 595.5048pt> <images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=451, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png) File: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <use images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 96. Package pdftex.def Info: images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 96.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=447, 1180.8918pt x 595.5048pt> <images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=452, 1180.8918pt x 595.5048pt>
File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png) File: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png Graphic file (type png)
<use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <use images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>
Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 101. Package pdftex.def Info: images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png used on input line 101.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt. (pdftex.def) Requested size: 223.07211pt x 112.49284pt.
[34] [34]
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg, id=453, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg, id=458, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg> <use images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg used on input line 114. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg used on input line 114.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg, id=454, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg, id=459, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg> <use images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg used on input line 119. Package pdftex.def Info: images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg used on input line 119.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg, id=455, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg, id=460, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg> <use images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg used on input line 124. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg used on input line 124.
(pdftex.def) Requested size: 223.07211pt x 153.94125pt. (pdftex.def) Requested size: 223.07211pt x 153.94125pt.
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg, id=456, 883.8621pt x 609.9588pt> <images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg, id=461, 883.8621pt x 609.9588pt>
File: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg Graphic file (type jpg) File: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg Graphic file (type jpg)
<use images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg> <use images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg used on input line 129. Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg used on input line 129.
@@ -1656,26 +1656,26 @@ Underfull \hbox (badness 4582) in paragraph at lines 132--132
[]\T1/LinuxLibertineT-TLF/m/n/12 Figure 13: |Over/underestimation of the quan-tiles for the au-tore-gres-sive and non- []\T1/LinuxLibertineT-TLF/m/n/12 Figure 13: |Over/underestimation of the quan-tiles for the au-tore-gres-sive and non-
[] []
) [35 <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>] (./sections/results/diffusion.tex [36 <./images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg> <./images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg> <./images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg>] ) [35 <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png> <./images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png> <./images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png>] (./sections/results/models/diffusion.tex [36 <./images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg> <./images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg> <./images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg> <./images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg>]
LaTeX Warning: Reference `tab:diffusion_results' on page 37 undefined on input line 13. LaTeX Warning: Reference `tab:diffusion_results' on page 37 undefined on input line 13.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg, id=477, 1166.4378pt x 581.0508pt> <images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg, id=482, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg Graphic file (type jpg) File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg Graphic file (type jpg)
<use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg> <use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg>
Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg used on input line 20. Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg used on input line 20.
(pdftex.def) Requested size: 204.85846pt x 102.04892pt. (pdftex.def) Requested size: 204.85846pt x 102.04892pt.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg, id=478, 1166.4378pt x 581.0508pt> <images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg, id=483, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg Graphic file (type jpg) File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg Graphic file (type jpg)
<use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg> <use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg>
Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg used on input line 22. Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg used on input line 22.
(pdftex.def) Requested size: 204.85846pt x 102.04892pt. (pdftex.def) Requested size: 204.85846pt x 102.04892pt.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg, id=479, 1166.4378pt x 581.0508pt> <images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg, id=484, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg Graphic file (type jpg) File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg Graphic file (type jpg)
<use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg> <use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg>
Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg used on input line 27. Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg used on input line 27.
(pdftex.def) Requested size: 204.85846pt x 102.04892pt. (pdftex.def) Requested size: 204.85846pt x 102.04892pt.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg, id=480, 1166.4378pt x 581.0508pt> <images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg, id=485, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg Graphic file (type jpg) File: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg Graphic file (type jpg)
<use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg> <use images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg>
Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg used on input line 29. Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg used on input line 29.
@@ -1683,12 +1683,19 @@ Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermed
LaTeX Warning: `h' float specifier changed to `ht'. LaTeX Warning: `h' float specifier changed to `ht'.
)) [37] [38 <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg>] [39] (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux)) ) (./sections/results/models/comparison.tex) [37] [38 <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg> <./images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg>] (./sections/results/policies/baselines.tex [39]
Underfull \hbox (badness 10000) in paragraph at lines 6--7
[]
LaTeX Font Info: Font shape `TS1/LinuxLibertineT-TLF/b/n' will be
(Font) scaled to size 12.0pt on input line 12.
) (./sections/results/policies/nrv_samples_policy.tex)) [40{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc}] [41] (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux))
LaTeX Warning: There were undefined references. LaTeX Warning: There were undefined references.
Package rerunfilecheck Info: File `verslag.out' has not changed. Package rerunfilecheck Info: File `verslag.out' has not changed.
(rerunfilecheck) Checksum: 7E50B00E62AE3A64F9DC7847891FE94D;4505. (rerunfilecheck) Checksum: DDC6B7AA614B7FD7023FF18C36539DD6;4636.
Package biblatex Warning: Please (re)run Biber on the file: Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) verslag (biblatex) verslag
@@ -1699,18 +1706,18 @@ Package logreq Info: Writing requests to 'verslag.run.xml'.
) )
Here is how much of TeX's memory you used: Here is how much of TeX's memory you used:
37274 strings out of 476025 37304 strings out of 476025
732849 string characters out of 5790017 733938 string characters out of 5790017
1884388 words of memory out of 5000000 1884388 words of memory out of 5000000
56914 multiletter control sequences out of 15000+600000 56927 multiletter control sequences out of 15000+600000
603223 words of font info for 88 fonts, out of 8000000 for 9000 603918 words of font info for 90 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191 1141 hyphenation exceptions out of 8191
84i,16n,131p,2100b,5180s stack positions out of 10000i,1000n,20000p,200000b,200000s 84i,16n,131p,2100b,5180s stack positions out of 10000i,1000n,20000p,200000b,200000s
</Users/victormylle/Library/texlive/2023/texmf-var/fonts/pk/ljfour/public/bbm/bbm12.600pk></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertinust1math/LibertinusT1Math.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTI.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/stix/stix-mathcal.pfb> </Users/victormylle/Library/texlive/2023/texmf-var/fonts/pk/ljfour/public/bbm/bbm12.600pk></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertinust1math/LibertinusT1Math.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinBiolinumTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineT.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTB.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/libertine/LinLibertineTI.pfb></usr/local/texlive/2023/texmf-dist/fonts/type1/public/stix/stix-mathcal.pfb>
Output written on verslag.pdf (40 pages, 8219331 bytes). Output written on verslag.pdf (42 pages, 8226436 bytes).
PDF statistics: PDF statistics:
588 PDF objects out of 1000 (max. 8388607) 608 PDF objects out of 1000 (max. 8388607)
431 compressed objects within 5 object streams 448 compressed objects within 5 object streams
105 named destinations out of 1000 (max. 500000) 109 named destinations out of 1000 (max. 500000)
518 words of extra memory for PDF output out of 10000 (max. 10000000) 526 words of extra memory for PDF output out of 10000 (max. 10000000)

View File

@@ -0,0 +1,31 @@
\BOOKMARK [1][-]{section.1}{\376\377\000I\000n\000t\000r\000o\000d\000u\000c\000t\000i\000o\000n}{}% 1
\BOOKMARK [1][-]{section.2}{\376\377\000E\000l\000e\000c\000t\000r\000i\000c\000i\000t\000y\000\040\000m\000a\000r\000k\000e\000t}{}% 2
\BOOKMARK [1][-]{section.3}{\376\377\000G\000e\000n\000e\000r\000a\000t\000i\000v\000e\000\040\000m\000o\000d\000e\000l\000i\000n\000g}{}% 3
\BOOKMARK [2][-]{subsection.3.1}{\376\377\000Q\000u\000a\000n\000t\000i\000l\000e\000\040\000R\000e\000g\000r\000e\000s\000s\000i\000o\000n}{section.3}% 4
\BOOKMARK [2][-]{subsection.3.2}{\376\377\000A\000u\000t\000o\000r\000e\000g\000r\000e\000s\000s\000i\000v\000e\000\040\000v\000s\000\040\000N\000o\000n\000-\000A\000u\000t\000o\000r\000e\000g\000r\000e\000s\000s\000i\000v\000e\000\040\000m\000o\000d\000e\000l\000s}{section.3}% 5
\BOOKMARK [2][-]{subsection.3.3}{\376\377\000M\000o\000d\000e\000l\000\040\000T\000y\000p\000e\000s}{section.3}% 6
\BOOKMARK [3][-]{subsubsection.3.3.1}{\376\377\000L\000i\000n\000e\000a\000r\000\040\000M\000o\000d\000e\000l}{subsection.3.3}% 7
\BOOKMARK [3][-]{subsubsection.3.3.2}{\376\377\000N\000o\000n\000-\000L\000i\000n\000e\000a\000r\000\040\000M\000o\000d\000e\000l}{subsection.3.3}% 8
\BOOKMARK [3][-]{subsubsection.3.3.3}{\376\377\000R\000e\000c\000u\000r\000r\000e\000n\000t\000\040\000N\000e\000u\000r\000a\000l\000\040\000N\000e\000t\000w\000o\000r\000k\000\040\000\050\000R\000N\000N\000\051}{subsection.3.3}% 9
\BOOKMARK [2][-]{subsection.3.4}{\376\377\000D\000i\000f\000f\000u\000s\000i\000o\000n\000\040\000m\000o\000d\000e\000l\000s}{section.3}% 10
\BOOKMARK [3][-]{subsubsection.3.4.1}{\376\377\000O\000v\000e\000r\000v\000i\000e\000w}{subsection.3.4}% 11
\BOOKMARK [3][-]{subsubsection.3.4.2}{\376\377\000A\000p\000p\000l\000i\000c\000a\000t\000i\000o\000n\000s}{subsection.3.4}% 12
\BOOKMARK [3][-]{subsubsection.3.4.3}{\376\377\000G\000e\000n\000e\000r\000a\000t\000i\000o\000n\000\040\000p\000r\000o\000c\000e\000s\000s}{subsection.3.4}% 13
\BOOKMARK [2][-]{subsection.3.5}{\376\377\000E\000v\000a\000l\000u\000a\000t\000i\000o\000n}{section.3}% 14
\BOOKMARK [1][-]{section.4}{\376\377\000P\000o\000l\000i\000c\000i\000e\000s}{}% 15
\BOOKMARK [2][-]{subsection.4.1}{\376\377\000B\000a\000s\000e\000l\000i\000n\000e\000s}{section.4}% 16
\BOOKMARK [2][-]{subsection.4.2}{\376\377\000P\000o\000l\000i\000c\000i\000e\000s\000\040\000b\000a\000s\000e\000d\000\040\000o\000n\000\040\000N\000R\000V\000\040\000g\000e\000n\000e\000r\000a\000t\000i\000o\000n\000s}{section.4}% 17
\BOOKMARK [1][-]{section.5}{\376\377\000L\000i\000t\000e\000r\000a\000t\000u\000r\000e\000\040\000S\000t\000u\000d\000y}{}% 18
\BOOKMARK [2][-]{subsection.5.1}{\376\377\000E\000l\000e\000c\000t\000r\000i\000c\000i\000t\000y\000\040\000P\000r\000i\000c\000e\000\040\000F\000o\000r\000e\000c\000a\000s\000t\000i\000n\000g}{section.5}% 19
\BOOKMARK [2][-]{subsection.5.2}{\376\377\000P\000o\000l\000i\000c\000i\000e\000s\000\040\000f\000o\000r\000\040\000B\000a\000t\000t\000e\000r\000y\000\040\000O\000p\000t\000i\000m\000i\000z\000a\000t\000i\000o\000n}{section.5}% 20
\BOOKMARK [1][-]{section.6}{\376\377\000R\000e\000s\000u\000l\000t\000s\000\040\000\046\000\040\000D\000i\000s\000c\000u\000s\000s\000i\000o\000n}{}% 21
\BOOKMARK [2][-]{subsection.6.1}{\376\377\000D\000a\000t\000a}{section.6}% 22
\BOOKMARK [2][-]{subsection.6.2}{\376\377\000Q\000u\000a\000n\000t\000i\000l\000e\000\040\000R\000e\000g\000r\000e\000s\000s\000i\000o\000n}{section.6}% 23
\BOOKMARK [3][-]{subsubsection.6.2.1}{\376\377\000L\000i\000n\000e\000a\000r\000\040\000M\000o\000d\000e\000l}{subsection.6.2}% 24
\BOOKMARK [3][-]{subsubsection.6.2.2}{\376\377\000N\000o\000n\000-\000L\000i\000n\000e\000a\000r\000\040\000M\000o\000d\000e\000l}{subsection.6.2}% 25
\BOOKMARK [3][-]{subsubsection.6.2.3}{\376\377\000G\000R\000U\000\040\000M\000o\000d\000e\000l}{subsection.6.2}% 26
\BOOKMARK [2][-]{subsection.6.3}{\376\377\000D\000i\000f\000f\000u\000s\000i\000o\000n}{section.6}% 27
\BOOKMARK [2][-]{subsection.6.4}{\376\377\000C\000o\000m\000p\000a\000r\000i\000s\000o\000n}{section.6}% 28
\BOOKMARK [1][-]{section.7}{\376\377\000P\000o\000l\000i\000c\000i\000e\000s\000\040\000f\000o\000r\000\040\000b\000a\000t\000t\000e\000r\000y\000\040\000o\000p\000t\000i\000m\000i\000z\000a\000t\000i\000o\000n}{}% 29
\BOOKMARK [2][-]{subsection.7.1}{\376\377\000B\000a\000s\000e\000l\000i\000n\000e\000s}{section.7}% 30
\BOOKMARK [2][-]{subsection.7.2}{\376\377\000P\000o\000l\000i\000c\000y\000\040\000u\000s\000i\000n\000g\000\040\000g\000e\000n\000e\000r\000a\000t\000e\000d\000\040\000N\000R\000V\000\040\000s\000a\000m\000p\000l\000e\000s}{section.7}% 31

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -183,12 +183,6 @@
\input{sections/results} \input{sections/results}
\newpage
\section{Policies for battery optimization}
\subsection{Baselines}
\subsection{Policies using NRV predictions}
\newpage \newpage
% bibliography % bibliography
\printbibliography \printbibliography

View File

@@ -26,6 +26,7 @@
\contentsline {subsubsection}{\numberline {6.2.2}Non-Linear Model}{29}{subsubsection.6.2.2}% \contentsline {subsubsection}{\numberline {6.2.2}Non-Linear Model}{29}{subsubsection.6.2.2}%
\contentsline {subsubsection}{\numberline {6.2.3}GRU Model}{32}{subsubsection.6.2.3}% \contentsline {subsubsection}{\numberline {6.2.3}GRU Model}{32}{subsubsection.6.2.3}%
\contentsline {subsection}{\numberline {6.3}Diffusion}{36}{subsection.6.3}% \contentsline {subsection}{\numberline {6.3}Diffusion}{36}{subsection.6.3}%
\contentsline {section}{\numberline {7}Policies for battery optimization}{38}{section.7}% \contentsline {subsection}{\numberline {6.4}Comparison}{38}{subsection.6.4}%
\contentsline {subsection}{\numberline {7.1}Baselines}{38}{subsection.7.1}% \contentsline {section}{\numberline {7}Policies for battery optimization}{39}{section.7}%
\contentsline {subsection}{\numberline {7.2}Policies using NRV predictions}{38}{subsection.7.2}% \contentsline {subsection}{\numberline {7.1}Baselines}{39}{subsection.7.1}%
\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{40}{subsection.7.2}%

View File

@@ -2,7 +2,7 @@ from src.utils.clearml import ClearMLHelper
#### ClearML #### #### ClearML ####
clearml_helper = ClearMLHelper(project_name="Thesis/NrvForecast") clearml_helper = ClearMLHelper(project_name="Thesis/NrvForecast")
task = clearml_helper.get_task(task_name="AQR: Non-Linear (16 - 256) + QE (dim 2)") task = clearml_helper.get_task(task_name="AQR: Linear + Load + Wind + PV + QE + NP")
task.execute_remotely(queue_name="default", exit_process=True) task.execute_remotely(queue_name="default", exit_process=True)
from src.policies.PolicyEvaluator import PolicyEvaluator from src.policies.PolicyEvaluator import PolicyEvaluator
@@ -27,19 +27,19 @@ data_config = DataConfig()
data_config.NRV_HISTORY = True data_config.NRV_HISTORY = True
data_config.LOAD_HISTORY = False data_config.LOAD_HISTORY = True
data_config.LOAD_FORECAST = False data_config.LOAD_FORECAST = True
data_config.WIND_FORECAST = False data_config.WIND_FORECAST = True
data_config.WIND_HISTORY = False data_config.WIND_HISTORY = True
data_config.PV_FORECAST = False data_config.PV_FORECAST = True
data_config.PV_HISTORY = False data_config.PV_HISTORY = True
data_config.QUARTER = True data_config.QUARTER = True
data_config.DAY_OF_WEEK = False data_config.DAY_OF_WEEK = False
data_config.NOMINAL_NET_POSITION = False data_config.NOMINAL_NET_POSITION = True
data_config = task.connect(data_config, name="data_features") data_config = task.connect(data_config, name="data_features")
@@ -89,25 +89,25 @@ time_embedding = TimeEmbedding(
# dropout=model_parameters["dropout"], # dropout=model_parameters["dropout"],
# ) # )
non_linear_model = NonLinearRegression( # non_linear_model = NonLinearRegression(
time_embedding.output_dim(inputDim), # time_embedding.output_dim(inputDim),
len(quantiles), # len(quantiles),
hiddenSize=model_parameters["hidden_size"], # hiddenSize=model_parameters["hidden_size"],
numLayers=model_parameters["num_layers"], # numLayers=model_parameters["num_layers"],
dropout=model_parameters["dropout"], # dropout=model_parameters["dropout"],
) # )
# linear_model = LinearRegression(time_embedding.output_dim(inputDim), len(quantiles)) linear_model = LinearRegression(time_embedding.output_dim(inputDim), len(quantiles))
model = nn.Sequential(time_embedding, non_linear_model) model = nn.Sequential(time_embedding, linear_model)
model.output_size = 1 model.output_size = 1
optimizer = torch.optim.Adam(model.parameters(), lr=model_parameters["learning_rate"]) optimizer = torch.optim.Adam(model.parameters(), lr=model_parameters["learning_rate"])
### Policy Evaluator ### ### Policy Evaluator ###
# battery = Battery(2, 1) battery = Battery(2, 1)
# baseline_policy = BaselinePolicy(battery, data_path="") baseline_policy = BaselinePolicy(battery, data_path="")
# policy_evaluator = PolicyEvaluator(baseline_policy, task) policy_evaluator = PolicyEvaluator(baseline_policy, task)
#### Trainer #### #### Trainer ####
trainer = AutoRegressiveQuantileTrainer( trainer = AutoRegressiveQuantileTrainer(
@@ -117,7 +117,7 @@ trainer = AutoRegressiveQuantileTrainer(
data_processor, data_processor,
quantiles, quantiles,
"cuda", "cuda",
policy_evaluator=None, policy_evaluator=policy_evaluator,
debug=False, debug=False,
) )
@@ -129,32 +129,32 @@ trainer.plot_every(15)
trainer.train(task=task, epochs=epochs, remotely=True) trainer.train(task=task, epochs=epochs, remotely=True)
### Policy Evaluation ### ### Policy Evaluation ###
# idx_samples = trainer.test_set_samples idx_samples = trainer.test_set_samples
# _, test_loader = trainer.data_processor.get_dataloaders( _, test_loader = trainer.data_processor.get_dataloaders(
# predict_sequence_length=trainer.model.output_size, full_day_skip=False predict_sequence_length=trainer.model.output_size, full_day_skip=False
# ) )
# policy_evaluator.evaluate_test_set(idx_samples, test_loader) policy_evaluator.evaluate_test_set(idx_samples, test_loader)
# policy_evaluator.plot_profits_table() policy_evaluator.plot_profits_table()
# policy_evaluator.plot_thresholds_per_day() policy_evaluator.plot_thresholds_per_day()
# optimal_penalty, profit, charge_cycles = ( optimal_penalty, profit, charge_cycles = (
# policy_evaluator.optimize_penalty_for_target_charge_cycles( policy_evaluator.optimize_penalty_for_target_charge_cycles(
# idx_samples=idx_samples, idx_samples=idx_samples,
# test_loader=test_loader, test_loader=test_loader,
# initial_penalty=1000, initial_penalty=1000,
# target_charge_cycles=283, target_charge_cycles=283,
# initial_learning_rate=3, initial_learning_rate=3,
# max_iterations=150, max_iterations=150,
# tolerance=1, tolerance=1,
# ) )
# ) )
# print( print(
# f"Optimal Penalty: {optimal_penalty}, Profit: {profit}, Charge Cycles: {charge_cycles}" f"Optimal Penalty: {optimal_penalty}, Profit: {profit}, Charge Cycles: {charge_cycles}"
# ) )
# task.get_logger().report_single_value(name="Optimal Penalty", value=optimal_penalty) task.get_logger().report_single_value(name="Optimal Penalty", value=optimal_penalty)
# task.get_logger().report_single_value(name="Optimal Profit", value=profit) task.get_logger().report_single_value(name="Optimal Profit", value=profit)
# task.get_logger().report_single_value(name="Optimal Charge Cycles", value=charge_cycles) task.get_logger().report_single_value(name="Optimal Charge Cycles", value=charge_cycles)
task.close() task.close()

View File

@@ -2,7 +2,7 @@ from src.utils.clearml import ClearMLHelper
clearml_helper = ClearMLHelper(project_name="Thesis/NrvForecast") clearml_helper = ClearMLHelper(project_name="Thesis/NrvForecast")
task = clearml_helper.get_task( task = clearml_helper.get_task(
task_name="Diffusion Training: hidden_sizes=[1024, 1024, 1024, 1024] (300 steps), lr=0.0001, time_dim=8 + Load + Wind + PV + NP" task_name="Diffusion Training: hidden_sizes=[1024, 1024, 1024, 1024] (300 steps), lr=0.0001, time_dim=8"
) )
task.execute_remotely(queue_name="default", exit_process=True) task.execute_remotely(queue_name="default", exit_process=True)
@@ -19,16 +19,16 @@ from src.policies.PolicyEvaluator import PolicyEvaluator
data_config = DataConfig() data_config = DataConfig()
data_config.NRV_HISTORY = True data_config.NRV_HISTORY = True
data_config.LOAD_HISTORY = True data_config.LOAD_HISTORY = False
data_config.LOAD_FORECAST = True data_config.LOAD_FORECAST = False
data_config.PV_FORECAST = True data_config.PV_FORECAST = False
data_config.PV_HISTORY = True data_config.PV_HISTORY = False
data_config.WIND_FORECAST = True data_config.WIND_FORECAST = False
data_config.WIND_HISTORY = True data_config.WIND_HISTORY = False
data_config.NOMINAL_NET_POSITION = True data_config.NOMINAL_NET_POSITION = False
data_config = task.connect(data_config, name="data_features") data_config = task.connect(data_config, name="data_features")