Updated thesis

This commit is contained in:
2024-05-18 20:45:03 +02:00
parent 5c365ebd88
commit 1d1436612c
14 changed files with 211 additions and 115 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

@@ -1,12 +1,12 @@
\relax
\providecommand\hyper@newdestlabel[2]{}
\@writefile{toc}{\contentsline {section}{\numberline {A}Appendix}{49}{appendix.A}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {18}{\ignorespaces Comparison of the autoregressive models with the diffusion model\relax }}{49}{figure.caption.31}\protected@file@percent }
\newlabel{fig:ar_linear_gru_comparison}{{18}{49}{Comparison of the autoregressive models with the diffusion model\relax }{figure.caption.31}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {19}{\ignorespaces Comparison of the non-autoregressive models with the diffusion model\relax }}{50}{figure.caption.32}\protected@file@percent }
\newlabel{fig:ar_linear_gru_comparison}{{19}{50}{Comparison of the non-autoregressive models with the diffusion model\relax }{figure.caption.32}{}}
\@writefile{toc}{\contentsline {section}{\numberline {A}Appendix}{51}{appendix.A}\protected@file@percent }
\@writefile{lof}{\contentsline {figure}{\numberline {19}{\ignorespaces Comparison of the autoregressive models with the diffusion model\relax }}{51}{figure.caption.33}\protected@file@percent }
\newlabel{fig:ar_linear_gru_comparison}{{19}{51}{Comparison of the autoregressive models with the diffusion model\relax }{figure.caption.33}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {20}{\ignorespaces Comparison of the non-autoregressive models with the diffusion model\relax }}{52}{figure.caption.34}\protected@file@percent }
\newlabel{fig:ar_linear_gru_comparison}{{20}{52}{Comparison of the non-autoregressive models with the diffusion model\relax }{figure.caption.34}{}}
\@setckpt{sections/appendix}{
\setcounter{page}{51}
\setcounter{page}{53}
\setcounter{equation}{8}
\setcounter{enumi}{0}
\setcounter{enumii}{0}
@@ -20,8 +20,8 @@
\setcounter{subsubsection}{0}
\setcounter{paragraph}{0}
\setcounter{subparagraph}{0}
\setcounter{figure}{19}
\setcounter{table}{12}
\setcounter{figure}{20}
\setcounter{table}{13}
\setcounter{parentequation}{0}
\setcounter{float@type}{4}
\setcounter{caption@flags}{6}
@@ -155,7 +155,7 @@
\setcounter{section@level}{0}
\setcounter{Item}{0}
\setcounter{Hfootnote}{0}
\setcounter{bookmark@seq@number}{32}
\setcounter{bookmark@seq@number}{33}
\setcounter{g@acro@QR@int}{0}
\setcounter{g@acro@AQR@int}{0}
\setcounter{g@acro@NAQR@int}{1}

View File

@@ -52,7 +52,7 @@ A lot of data is available but only the most relevant data needs to be used. Exp
\input{sections/results/models/comparison}
\newpage
\section{Policies for battery optimization}
\subsection{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.
To evaluate the policies, a battery of 2 MWh is used with a maximum charge and discharge power of 1 MW. The battery is charged and discharged in quarter-hour intervals at the price of that quarter-hour.

View File

@@ -1,4 +1,4 @@
\subsection{Baselines}
\subsubsection{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 \ac{NRV} data of the previous day to determine the buying and selling thresholds for the next day. The \ac{NRV} data of the previous day can be seen as a prediction for the \ac{NRV} data of the next day. Now, the thresholds are not fixed anymore but are determined based on the \ac{NRV} predictions. The thresholds are determined separately for each day using a simple grid search which allows the policy to adapt to the changing \ac{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.

View File

@@ -1,4 +1,4 @@
\subsection{Policy using generated NRV samples}
\subsubsection{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.
A low CRPS value does not necessarily mean the policy will generate a high profit. Because of this, the CRPS metric can not be used to evaluate the model during the training phase and use this metric to do early stopping. To fairly evaluate and compare the models, a validation set is split off from the training set. The validation set is used to evaluate the profit of the policy during the training and use this to do early stopping. The last two months of the training set are used as the validation set. This range starts on 01-11-2022 and ends on 31-12-2022. Two months are chosen to make sure enough data is available to have a good estimate of the profit while making sure the validation set is not too large. The policy can be evaluated quite fast on the validation set which is feasible to do during the training after a certain number of epochs.
@@ -6,23 +6,91 @@ A low CRPS value does not necessarily mean the policy will generate a high profi
\begin{table}[ht]
\centering
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{lcccccc}
\begin{tabular}{lccccc}
\toprule
Model & Type & CRPS & Profit (€) & Charge Cycles & Penalty \\
Layers & Steps & Test CRPS & Test Profit (€) & Test Charge Cycles & Test Penalty \\
\midrule
\acs{AQR} & Non-Linear & 79.22 & 189,717.74 & 282.06 & 566.4 \\
\acs{AQR} & GRU & 80.92 & 188,973.84 & 283.06 & 536.06 \\
Diffusion & Non-Linear & 80.30 & 191,553.58 & 282.56 & 553.38 \\
\multicolumn{6}{l}{\textbf{Only NRV}} \\
\midrule
256 - 256 & 5 & 275.03 & 191,221.97 & 282.50 & 315.6875 \\
256 - 256 & 20 & 113.27 & 215,946.13 & 283.13 & 421.8125 \\
256 - 256 & 50 & 139.61 & \textbf{218,170.75} & 283.00 & 449.2750 \\
512 - 512 & 50 & 167.23 & 209,625.07 & 282.25 & 449.1875 \\
1024 - 1024 & 50 & 100.72 & 217,560.20 & 283.75 & 455.5625 \\
256 - 256 & 80 & 201.15 & 209,761.89 & 283.50 & 457.2500 \\
\midrule
\multicolumn{6}{l}{\textbf{All Features}} \\
\midrule
256 - 256 & 20 & 108.84 & \textbf{218,141.31} & 283.94 & 428.6875 \\
256 - 256 & 20 & 105.31 & 215,862.35 & 283.06 & 440.2500 \\
512 - 512 & 20 & 103.41 & 216,411.79 & 282.56 & 450.3125 \\
1024 - 1024 & 20 & \textbf{100.36} & 215,686.32 & 282.69 & 463.6875 \\
256 - 256 & 50 & 117.81 & 216,632.39 & 282.75 & 421.3125 \\
512 - 512 & 50 & 180.83 & 210,769.03 & 282.06 & 446.4375 \\
1024 - 1024 & 50 & 179.59 & 212,793.94 & 282.88 & 454.5000 \\
256 - 256 & 80 & 242.68 & 205,374.94 & 283.13 & 451.3125 \\
\bottomrule
\end{tabular}
\end{adjustbox}
\caption{Comparison of the different models using the profit metric. The best-performing models for a certain type are selected based on the profit.}
\caption{Comparison of diffusion models using different hyperparameters. Early stopping is done based on the profit using the validation set.}
\label{tab:diffusion_policy_comparison}
\end{table}
From the results shown in Table \ref{tab:diffusion_policy_comparison} multiple conclusions can be made. First of all, a lower CRPS metric does not correlate with a higher profit. The CRPS metric captures how well the NRV distribution is modeled. The profit metric captures how well the policy can make a profit using the generated samples. A lower CRPS means a better modeling of the NRV but in the table, it can be seen that the lowest CRPS is achieved by the model with layers 1024 - 1024 and 20 steps. This model also uses all features as input. The model achieves a CRPS of 100.36 with a profit of €215,686.32. The highest profit, however, is achieved by the model with layers 256 - 256 and using 50 steps. This model only uses the NRV as input. This model achieves a CRPS of 139.61 with a profit of €218,170.75. The CRPS here is higher which means a worse modeling of the NRV but the profit is higher.
Some examples of the generated samples from the model with the lowest CRPS and the model with the highest profit are shown in Figure \ref{fig:diffusion_policy_comparison_high_low_crps}. A significant difference in the confidence intervals can be observed. The left model clearly shows a better modeling of the NRV compared to the right model. The right model has confidence intervals that range from the minimum to the maximum value of the NRV. There is a high variance in the generated samples. This shows that the policy does not only benefit from good modeling of the NRV but also from a high variance in the generated samples. The model with the highest profit also only uses the NRV as input. This shows that more features do not necessarily result in a higher profit and that better modeling of the NRV does not necessarily improve the achievable profit of the policy.
\begin{figure}[H]
\centering
\begin{subfigure}[b]{0.49\textwidth}
\includegraphics[width=\textwidth]{images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.49\textwidth}
\includegraphics[width=\textwidth]{images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg}
\end{subfigure}
\begin{subfigure}[b]{0.49\textwidth}
\includegraphics[width=\textwidth]{images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg}
\caption{Lowest CRPS}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.49\textwidth}
\includegraphics[width=\textwidth]{images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg}
\caption{Highest profit}
\end{subfigure}
\caption{Comparison of the two samples from the model with the lowest CRPS and the model with the highest profit. }
\label{fig:diffusion_policy_comparison_high_low_crps}
\end{figure}
A comparison of the baselines and the best-performing models is shown in Table \ref{tab:policy_comparison}. The best-performing model is the diffusion model with two layers consisting of 256 hidden units. Only the NRV values of yesterday are used as input features and 50 steps were used. The profit achieved using this model is €218,170.75 with 283.00 charge cycles. This is an improvement of 9.74\% compared to the baseline that uses the NRV of yesterday as a prediction. When the policy is evaluated using the real NRV data for the evaluated day, a total profit of €230,317.84 is achieved. This is the maximum profit that can be achieved using the simple policy that determines a buying and selling threshold for each day. The best-performing diffusion model achieves a profit of €218,170.75. This means that 94.78\% of the maximum profit is achieved using the diffusion model. This is a significant improvement compared to the baseline that uses the NRV of yesterday as a prediction. This baseline achieves a profit of €198,807.09 which is 94.72\% of the maximum profit. This shows that integrating the use of multiple full-day NRV samples into the policy can improve the profit significantly.
\begin{table}[H]
\centering
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{lccc}
\toprule
Model & Test Profit (€) & Test Charge Cycles & Yesterday Baseline Improvement \\
\midrule
\multicolumn{4}{l}{\textbf{Baselines}} \\
\midrule
Fixed thresholds & 143,004.34 & 287.12 & \\
Yesterday NRV & 198,807.09 & 283.5 & \\
Perfect NRV & 230,317.84 & 282.5 & \\
\midrule
\multicolumn{4}{l}{\textbf{Models}} \\
\midrule
Diffusion (256 - 256, 50 steps, only NRV) & 218,170.75 & 283.00 & +9.74\% \\
\bottomrule
\end{tabular}
\end{adjustbox}
\caption{Comparison of the different models using the CRPS, profit, charge cycles and penalty. The best-performing models for a certain type are selected based on the profit.}
\label{tab:policy_comparison}
\end{table}
% TODO: Explain the results of the different models
% TODO: Compare with baselines
\newpage
% 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. Because of this, the policy now will only be evaluated after the training is done. The profit can give a better insight if the model improves the profit compared to the baselines.
\section{Conclusion}
In this thesis, generative methods are explored to model the NRV data of the Belgian electricity market. These methods are then used to improve the decision-making to charge and discharge a battery to make a profit.

View File

@@ -107,11 +107,11 @@
\ACRO{recordpage}{MAE}{43}{1}{42}
\@writefile{lof}{\contentsline {figure}{\numberline {17}{\ignorespaces Comparison of the autoregressive linear and GRU model\relax }}{43}{figure.caption.28}\protected@file@percent }
\newlabel{fig:ar_linear_gru_comparison}{{17}{43}{Comparison of the autoregressive linear and GRU model\relax }{figure.caption.28}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7}Policies for battery optimization}{44}{section.7}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Baselines}{44}{subsection.7.1}\protected@file@percent }
\@writefile{toc}{\contentsline {subsection}{\numberline {6.5}Policies for battery optimization}{44}{subsection.6.5}\protected@file@percent }
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.5.1}Baselines}{44}{subsubsection.6.5.1}\protected@file@percent }
\ACRO{recordpage}{NRV}{45}{1}{44}
\ACRO{recordpage}{NRV}{45}{1}{44}
\ACRO{recordpage}{NRV}{45}{1}{44}
\ACRO{recordpage}{NRV}{46}{1}{45}
\ACRO{recordpage}{NRV}{46}{1}{45}
\ACRO{recordpage}{NRV}{46}{1}{45}
\ACRO{recordpage}{NRV}{46}{1}{45}
@@ -120,13 +120,18 @@
\ACRO{recordpage}{NRV}{46}{1}{45}
\@writefile{lot}{\contentsline {table}{\numberline {11}{\ignorespaces Results of the baseline policies on the test set. \relax }}{45}{table.caption.29}\protected@file@percent }
\newlabel{tab:fixed_thresholds}{{11}{45}{Results of the baseline policies on the test set. \relax }{table.caption.29}{}}
\@writefile{toc}{\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{45}{subsection.7.2}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {12}{\ignorespaces Comparison of the different models using the profit metric. The best-performing models for a certain type are selected based on the profit.\relax }}{46}{table.caption.30}\protected@file@percent }
\newlabel{tab:policy_comparison}{{12}{46}{Comparison of the different models using the profit metric. The best-performing models for a certain type are selected based on the profit.\relax }{table.caption.30}{}}
\abx@aux@page{6}{48}
\abx@aux@page{7}{48}
\abx@aux@page{8}{48}
\abx@aux@page{9}{48}
\@writefile{toc}{\contentsline {subsubsection}{\numberline {6.5.2}Policy using generated NRV samples}{45}{subsubsection.6.5.2}\protected@file@percent }
\@writefile{lot}{\contentsline {table}{\numberline {12}{\ignorespaces Comparison of diffusion models using different hyperparameters. Early stopping is done based on the profit using the validation set.\relax }}{46}{table.caption.30}\protected@file@percent }
\newlabel{tab:diffusion_policy_comparison}{{12}{46}{Comparison of diffusion models using different hyperparameters. Early stopping is done based on the profit using the validation set.\relax }{table.caption.30}{}}
\@writefile{lof}{\contentsline {figure}{\numberline {18}{\ignorespaces Comparison of the two samples from the model with the lowest CRPS and the model with the highest profit. \relax }}{47}{figure.caption.31}\protected@file@percent }
\newlabel{fig:diffusion_policy_comparison_high_low_crps}{{18}{47}{Comparison of the two samples from the model with the lowest CRPS and the model with the highest profit. \relax }{figure.caption.31}{}}
\@writefile{lot}{\contentsline {table}{\numberline {13}{\ignorespaces Comparison of the different models using the CRPS, profit, charge cycles and penalty. The best-performing models for a certain type are selected based on the profit.\relax }}{47}{table.caption.32}\protected@file@percent }
\newlabel{tab:policy_comparison}{{13}{47}{Comparison of the different models using the CRPS, profit, charge cycles and penalty. The best-performing models for a certain type are selected based on the profit.\relax }{table.caption.32}{}}
\@writefile{toc}{\contentsline {section}{\numberline {7}Conclusion}{48}{section.7}\protected@file@percent }
\abx@aux@page{6}{50}
\abx@aux@page{7}{50}
\abx@aux@page{8}{50}
\abx@aux@page{9}{50}
\@input{sections/appendix.aux}
\ACRO{total-barriers}{1}
\ACRO{usage}{QR=={0}}
@@ -164,4 +169,4 @@
\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}{weron_electricity_2014}{nyt/global//global/global}
\gdef \@abspage@last{51}
\gdef \@abspage@last{53}

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) 18 MAY 2024 11:50
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=pdflatex 2023.9.17) 18 MAY 2024 20:25
entering extended mode
restricted \write18 enabled.
file:line:error style messages enabled.
@@ -1282,7 +1282,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
<ea-en.pdf, id=135, 192.05753pt x 64.01918pt>
<ea-en.pdf, id=139, 192.05753pt x 64.01918pt>
File: ea-en.pdf Graphic file (type pdf)
<use ea-en.pdf>
Package pdftex.def Info: ea-en.pdf used on input line 140.
@@ -1358,7 +1358,7 @@ Overfull \hbox (33.0pt too wide) in paragraph at lines 140--140
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=136, 106.69862pt x 85.3589pt>
<ugent-en.pdf, id=140, 106.69862pt x 85.3589pt>
File: ugent-en.pdf Graphic file (type pdf)
<use ugent-en.pdf>
Package pdftex.def Info: ugent-en.pdf used on input line 140.
@@ -1420,12 +1420,12 @@ Overfull \hbox (4.77582pt too wide) in paragraph at lines 111--113
LaTeX Font Info: Font shape `T1/LinuxBiolinumT-TLF/m/n' will be
(Font) scaled to size 14.4pt on input line 119.
[7]
<images/quantile_regression/cdf_quantiles_example.png, id=219, 722.7pt x 433.62pt>
<images/quantile_regression/cdf_quantiles_example.png, id=224, 722.7pt x 433.62pt>
File: images/quantile_regression/cdf_quantiles_example.png Graphic file (type png)
<use images/quantile_regression/cdf_quantiles_example.png>
Package pdftex.def Info: images/quantile_regression/cdf_quantiles_example.png used on input line 128.
(pdftex.def) Requested size: 364.19667pt x 218.51653pt.
<images/quantile_regression/reconstructed_cdf.png, id=222, 722.7pt x 433.62pt>
<images/quantile_regression/reconstructed_cdf.png, id=227, 722.7pt x 433.62pt>
File: images/quantile_regression/reconstructed_cdf.png Graphic file (type png)
<use images/quantile_regression/reconstructed_cdf.png>
Package pdftex.def Info: images/quantile_regression/reconstructed_cdf.png used on input line 139.
@@ -1445,13 +1445,13 @@ Overfull \hbox (17.3759pt too wide) in paragraph at lines 180--181
[]
[10] [11] [12]
<images/quantile_regression/rnn/RNN_diagram.png, id=255, 753.81625pt x 324.21124pt>
<images/quantile_regression/rnn/RNN_diagram.png, id=260, 753.81625pt x 324.21124pt>
File: images/quantile_regression/rnn/RNN_diagram.png Graphic file (type png)
<use images/quantile_regression/rnn/RNN_diagram.png>
Package pdftex.def Info: images/quantile_regression/rnn/RNN_diagram.png used on input line 234.
(pdftex.def) Requested size: 364.19667pt x 156.63872pt.
[13 <./images/quantile_regression/rnn/RNN_diagram.png>]
<images/diffusion/Generation-with-Diffusion-Models.png, id=263, 926.00159pt x 228.96758pt>
<images/diffusion/Generation-with-Diffusion-Models.png, id=268, 926.00159pt x 228.96758pt>
File: images/diffusion/Generation-with-Diffusion-Models.png Graphic file (type png)
<use images/diffusion/Generation-with-Diffusion-Models.png>
Package pdftex.def Info: images/diffusion/Generation-with-Diffusion-Models.png used on input line 262.
@@ -1464,7 +1464,7 @@ See the caption package documentation for explanation.
LaTeX Warning: Reference `fig:diffusion_process' on page 16 undefined on input line 302.
<images/diffusion/diffusion_graphical_model.png, id=277, 979.66pt x 185.69376pt>
<images/diffusion/diffusion_graphical_model.png, id=282, 979.66pt x 185.69376pt>
File: images/diffusion/diffusion_graphical_model.png Graphic file (type png)
<use images/diffusion/diffusion_graphical_model.png>
Package pdftex.def Info: images/diffusion/diffusion_graphical_model.png used on input line 306.
@@ -1474,7 +1474,7 @@ LaTeX Font Info: Trying to load font information for U+bbm on input line 335.
(/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
)
<images/quantile_regression/crps_visualization.png, id=287, 611.4042pt x 395.3169pt>
<images/quantile_regression/crps_visualization.png, id=292, 611.4042pt x 395.3169pt>
File: images/quantile_regression/crps_visualization.png Graphic file (type png)
<use images/quantile_regression/crps_visualization.png>
Package pdftex.def Info: images/quantile_regression/crps_visualization.png used on input line 353.
@@ -1501,7 +1501,7 @@ LaTeX Warning: Citation 'rasul_autoregressive_2021' on page 20 undefined on inpu
] (./sections/results/models/linear.tex [23] [24]
<images/quantile_regression/nrv_mean_std_over_quarter.png, id=338, 722.7pt x 433.62pt>
<images/quantile_regression/nrv_mean_std_over_quarter.png, id=343, 722.7pt x 433.62pt>
File: images/quantile_regression/nrv_mean_std_over_quarter.png Graphic file (type 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.
@@ -1511,44 +1511,44 @@ Package pdftex.def Info: images/quantile_regression/nrv_mean_std_over_quarter.pn
LaTeX Warning: Reference `fig:autoregressive_linear_model_samples' on page 26 undefined on input line 81.
[26 <./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=352, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=357, 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)
<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.
(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=353, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_864.png, id=358, 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)
<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.
(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=354, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=359, 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)
<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.
(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=355, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_4320.png, id=360, 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)
<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.
(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=356, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=361, 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)
<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.
(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=357, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_6336.png, id=362, 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)
<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.
(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=358, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=363, 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)
<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.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt.
LaTeX Font Info: Font shape `T1/LinuxLibertineT-TLF/m/n' will be
(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=359, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Sample_7008.png, id=364, 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)
<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.
@@ -1563,104 +1563,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=375, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_864_samples.png, id=380, 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)
<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.
(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=376, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_864_samples.png, id=381, 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)
<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.
(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=377, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_linear_model_samples/AQR_NRV_Load_Wind_PV_NP-QE-Example_4320_samples.png, id=382, 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)
<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.
(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=378, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_linear_model_samples/NAQR_NRV_Load_Wind_PV_NP-Example_4320_samples.png, id=383, 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)
<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.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt.
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg, id=380, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Training.jpeg, id=385, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg, id=381, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_Quantile_Performance_Test.jpeg, id=386, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg, id=382, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Training.jpeg, id=387, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg, id=383, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_Quantile_Performance_Test.jpeg, id=388, 883.8621pt x 609.9588pt>
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>
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.
[28 <./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 [29 <./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>] [30{/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=408, 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=413, 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)
<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.
(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=409, 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=414, 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)
<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.
(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=410, 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=415, 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)
<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.
(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=411, 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=416, 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)
<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.
(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=412, 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=417, 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)
<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.
(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=413, 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=418, 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)
<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.
(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=414, 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=419, 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)
<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.
(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=415, 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=420, 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)
<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.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt.
[31]
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg, id=422, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Training.jpeg, id=427, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg, id=423, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_NL_Quantile_Performance_Test.jpeg, id=428, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg, id=424, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Training.jpeg, id=429, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg, id=425, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg, id=430, 883.8621pt x 609.9588pt>
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>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_NL_Quantile_Performance_Test.jpeg used on input line 132.
@@ -1671,63 +1671,63 @@ Underfull \hbox (badness 4582) in paragraph at lines 135--135
[]
) [32 <./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 [33 <./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>] [34]
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=453, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=458, 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)
<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.
(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=454, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_864.png, id=459, 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)
<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.
(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=455, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=460, 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)
<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.
(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=456, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_4320.png, id=461, 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)
<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.
(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=457, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=462, 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)
<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.
(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=458, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_6336.png, id=463, 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)
<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.
(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=459, 1180.8918pt x 595.5048pt>
<images/quantile_regression/aqr_gru_model_examples/AQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=464, 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)
<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.
(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=460, 1180.8918pt x 595.5048pt>
<images/quantile_regression/naqr_gru_model_examples/NAQR_GRU_NRV_Load_Wind_PV_NP_QE-Sample_7008.png, id=465, 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)
<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.
(pdftex.def) Requested size: 223.07211pt x 112.49284pt.
[35]
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg, id=466, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Train.jpeg, id=471, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg, id=467, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/AQR_GRU_QP_Test.jpeg, id=472, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg, id=468, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Train.jpeg, id=473, 883.8621pt x 609.9588pt>
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>
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.
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg, id=469, 883.8621pt x 609.9588pt>
<images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg, id=474, 883.8621pt x 609.9588pt>
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>
Package pdftex.def Info: images/quantile_regression/quantile_performance/NAQR_GRU_QP_Test.jpeg used on input line 129.
@@ -1738,22 +1738,22 @@ Underfull \hbox (badness 4582) in paragraph at lines 132--132
[]
) [36 <./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 [37 <./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>]
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg, id=491, 1166.4378pt x 581.0508pt>
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 1_00000000.jpeg, id=497, 1166.4378pt x 581.0508pt>
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>
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.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg, id=492, 1166.4378pt x 581.0508pt>
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 2_00000000.jpeg, id=498, 1166.4378pt x 581.0508pt>
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>
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.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg, id=493, 1166.4378pt x 581.0508pt>
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 3_00000000.jpeg, id=499, 1166.4378pt x 581.0508pt>
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>
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.
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg, id=494, 1166.4378pt x 581.0508pt>
<images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg, id=500, 1166.4378pt x 581.0508pt>
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>
Package pdftex.def Info: images/diffusion/results/intermediates/Testing Intermediates 864_Sample intermediate 4_00000000.jpeg used on input line 29.
@@ -1766,28 +1766,28 @@ LaTeX Warning: `h' float specifier changed to `ht'.
Overfull \vbox (38.77904pt too high) has occurred while \output is active []
[39 <./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>]
<images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg, id=508, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg, id=513, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg used on input line 90.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg, id=509, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg, id=514, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg used on input line 94.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg, id=510, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg, id=515, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg used on input line 98.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg, id=511, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg, id=516, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg used on input line 102.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
[40 <./images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg> <./images/diffusion/results/samples/Diffusion_Test_Example_4320.jpeg> <./images/diffusion/results/samples/Diffusion_Test_Example_6336.jpeg> <./images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg>]
<images/diffusion/results/samples/Diffusion_Test_Example_864_Only_NRV.jpeg, id=518, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_864_Only_NRV.jpeg, id=523, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_864_Only_NRV.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_864_Only_NRV.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_864_Only_NRV.jpeg used on input line 113.
@@ -1796,7 +1796,7 @@ File: images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg Graphic f
<use images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_864.jpeg used on input line 117.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/results/samples/Diffusion_Test_Example_4320_Only_NRV.jpeg, id=519, 1166.4378pt x 581.0508pt>
<images/diffusion/results/samples/Diffusion_Test_Example_4320_Only_NRV.jpeg, id=524, 1166.4378pt x 581.0508pt>
File: images/diffusion/results/samples/Diffusion_Test_Example_4320_Only_NRV.jpeg Graphic file (type jpg)
<use images/diffusion/results/samples/Diffusion_Test_Example_4320_Only_NRV.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_4320_Only_NRV.jpeg used on input line 121.
@@ -1845,7 +1845,28 @@ 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)) [45{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc}] [46] [47] [48]
) (./sections/results/policies/nrv_samples_policy.tex [45{/usr/local/texlive/2023/texmf-dist/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc}]
<images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg, id=557, 1166.4378pt x 581.0508pt>
File: images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg Graphic file (type jpg)
<use images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg>
Package pdftex.def Info: images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg used on input line 48.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg, id=558, 1166.4378pt x 581.0508pt>
File: images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg Graphic file (type jpg)
<use images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg>
Package pdftex.def Info: images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg used on input line 52.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg, id=559, 1166.4378pt x 581.0508pt>
File: images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg Graphic file (type jpg)
<use images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg>
Package pdftex.def Info: images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg used on input line 55.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
<images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg, id=560, 1166.4378pt x 581.0508pt>
File: images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg Graphic file (type jpg)
<use images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg>
Package pdftex.def Info: images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg used on input line 60.
(pdftex.def) Requested size: 223.07211pt x 111.11894pt.
[46] [47 <./images/diffusion/policies/comparison/Testing_864_Low_CRPS.jpeg> <./images/diffusion/policies/comparison/Testing_864_High_CRPS.jpeg> <./images/diffusion/policies/comparison/Testing_7008_Low_CRPS.jpeg> <./images/diffusion/policies/comparison/Testing_7008_High_CRPS.jpeg>])) [48] [49] [50]
\openout2 = `sections/appendix.aux'.
(./sections/appendix.tex
@@ -1977,10 +1998,10 @@ File: images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg Graphic
<use images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg>
Package pdftex.def Info: images/diffusion/results/samples/Diffusion_Test_Example_7008.jpeg used on input line 154.
(pdftex.def) Requested size: 172.99498pt x 86.16971pt.
[49
[51
] [50]) (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux) (./sections/appendix.aux))
] [52]) (./verslag.aux (./sections/introduction.aux) (./sections/background.aux) (./sections/policies.aux) (./sections/literature_study.aux) (./sections/appendix.aux))
LaTeX Warning: There were undefined references.
@@ -1988,7 +2009,7 @@ LaTeX Warning: There were undefined references.
LaTeX Warning: There were multiply-defined labels.
Package rerunfilecheck Info: File `verslag.out' has not changed.
(rerunfilecheck) Checksum: 9FF5143B2BB48A237A680A30FF79C7E4;4721.
(rerunfilecheck) Checksum: F2AF7787A9291093A9EEB35E4D1789C7;4849.
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) verslag
@@ -1999,18 +2020,18 @@ Package logreq Info: Writing requests to 'verslag.run.xml'.
)
Here is how much of TeX's memory you used:
42813 strings out of 476025
909064 string characters out of 5790017
42850 strings out of 476025
911014 string characters out of 5790017
1884388 words of memory out of 5000000
62376 multiletter control sequences out of 15000+600000
609680 words of font info for 109 fonts, out of 8000000 for 9000
62403 multiletter control sequences out of 15000+600000
609682 words of font info for 109 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
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>
Output written on verslag.pdf (51 pages, 8684536 bytes).
Output written on verslag.pdf (53 pages, 9027690 bytes).
PDF statistics:
672 PDF objects out of 1000 (max. 8388607)
497 compressed objects within 5 object streams
127 named destinations out of 1000 (max. 500000)
564 words of extra memory for PDF output out of 10000 (max. 10000000)
695 PDF objects out of 1000 (max. 8388607)
513 compressed objects within 6 object streams
132 named destinations out of 1000 (max. 500000)
592 words of extra memory for PDF output out of 10000 (max. 10000000)

View File

@@ -26,7 +26,8 @@
\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
\BOOKMARK [1][-]{appendix.A}{\376\377\000A\000p\000p\000e\000n\000d\000i\000x}{}% 32
\BOOKMARK [2][-]{subsection.6.5}{\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.6}% 29
\BOOKMARK [3][-]{subsubsection.6.5.1}{\376\377\000B\000a\000s\000e\000l\000i\000n\000e\000s}{subsection.6.5}% 30
\BOOKMARK [3][-]{subsubsection.6.5.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}{subsection.6.5}% 31
\BOOKMARK [1][-]{section.7}{\376\377\000C\000o\000n\000c\000l\000u\000s\000i\000o\000n}{}% 32
\BOOKMARK [1][-]{appendix.A}{\376\377\000A\000p\000p\000e\000n\000d\000i\000x}{}% 33

Binary file not shown.

Binary file not shown.

View File

@@ -28,7 +28,8 @@
\contentsline {subsubsection}{\numberline {6.2.3}GRU Model}{33}{subsubsection.6.2.3}%
\contentsline {subsection}{\numberline {6.3}Diffusion}{37}{subsection.6.3}%
\contentsline {subsection}{\numberline {6.4}Comparison}{41}{subsection.6.4}%
\contentsline {section}{\numberline {7}Policies for battery optimization}{44}{section.7}%
\contentsline {subsection}{\numberline {7.1}Baselines}{44}{subsection.7.1}%
\contentsline {subsection}{\numberline {7.2}Policy using generated NRV samples}{45}{subsection.7.2}%
\contentsline {section}{\numberline {A}Appendix}{49}{appendix.A}%
\contentsline {subsection}{\numberline {6.5}Policies for battery optimization}{44}{subsection.6.5}%
\contentsline {subsubsection}{\numberline {6.5.1}Baselines}{44}{subsubsection.6.5.1}%
\contentsline {subsubsection}{\numberline {6.5.2}Policy using generated NRV samples}{45}{subsubsection.6.5.2}%
\contentsline {section}{\numberline {7}Conclusion}{48}{section.7}%
\contentsline {section}{\numberline {A}Appendix}{51}{appendix.A}%