Experimental Study of Methods of Scenario Lattice Construction for Stochastic Dual Dynamic Programming

Abstract

The stochastic dual dynamic programming (SDDP) algorithm is becoming increasingly used. In this paper we present analysis of different methods of lattice construction for SDDP exemplifying a realistic variant of the newsvendor problem, incorporating storage of production. We model several days of work and compare the profits realized using different methods of the lattice construction and the corresponding computer time spent in lattice construction. Our case differs from the known one because we consider not only a multidimensional but also a multistage case with stage dependence. We construct scenario lattice for different Markov processes which play a crucial role in stochastic modeling. The novelty of our work is comparing different methods of scenario lattice construction. We considered a realistic variant of the newsvendor problem. The results presented in this article show that the Voronoi method slightly outperforms others, but the k-means method is much faster overall.

Share and Cite:

Golembiovsky, D. , Pavlov, A. and Daniil, S. (2021) Experimental Study of Methods of Scenario Lattice Construction for Stochastic Dual Dynamic Programming. Open Journal of Optimization, 10, 47-60. doi: 10.4236/ojop.2021.102004.

1. Introduction

This article discusses one of the most powerful modern algorithms, which can solve problems of stochastic optimization—the stochastic dual dynamic programming algorithm first described in [1]. There are several ways to implement the algorithm; an exhaustive survey can be found in [2]. We will discuss the most commonly used version—SDDP algorithm with scenario lattice. The main goal of our study is the testing of methods of a lattice construction. We considered “The problem of production, sales and product storage”, which is an extension of the newsvendor problem [3], to compare the scenario lattice construction methods.

There are many articles about scenario generation methods. The approach of [4] is based on variance reduction techniques. There are works with overviews of different methods [5] [6] [7]. Multiple scenario lattice construction methods exist, but we will only consider 3 of them: k-means, competitive learning and Voronoi cell sampling. In this study, we use the scenario generation methods for stochastic variables that follow a Markovian process. We are focusing on comparing some different techniques. There were some works with a similar goal, for example [8]. However, in this work, we go further and make an empirical analysis in the stage-dependent case. We perform modeling for several days, and each next day is related to the previous day (unlike [8], where stage-independent processes are considered).

The rest of the paper is organized as follows: In Section 2, we are making an introduction to the theory, then in Sections 3 and 4 describing the methods of lattice construction we are using, and then we discuss numerical experiments in Section 5, and after this summarize all the results in Section 6.

2. Problem Formulation

The original problem of stochastic programming in general terms looks like the following [8]:

min x X C ( x ) (1.1)

C ( x ) = c ( x , z ) d F ( z ) (1.2)

where x is a controlling variable with definition area X n ; z is a vector vector of realizations of random variable Z; C ( x ) is a cost function.

To resolve this problem, we need to move from integral, whose computation is too hard, to sum, so our problem will have the discrete form:

min x X C ^ ( x ) (1.3)

C ^ ( x ) = z ^ F ^ p ^ ( z ) c ( x , z ^ ) (1.4)

In literature, this transition is known as sample average approximation (SAA), and it is formally described, for example, in [9].

There are many ways to implement transition from (1.1)-(1.2) to (1.3)-(1.4), for example Monte Carlo [10] [11] or quasi-Monte Carlo methods [12]. We will use another method based on the direct reduction of the approximation error of C ^ ( x ) to C ( x ) , which was described in [12]. We will briefly describe this method below.

3. Methods and Algorithms of Probability Distribution Discretization

Our approach is based on established work [4]. We will briefly discuss it here. Our task is to approximate the distribution F with discrete one F ^ . To do so, we generate realizations of F. The Monte-Carlo method provides the approximation cost function convergence to the real cost function with probability of 1, but we want to reduce the variance of the estimate to speed up the convergence of the error bounds. To do so, we want to address the approximation error directly. Let’s define an error in SAA as absolute difference between the cost functions:

e ( C , C ^ ) = | max x ( C ( x ) C ( arg min x C ^ ( x ) ) ) | (1.5)

Since it is nearly impossible to compute e ( C , C ^ ) with (1.5), it is usual to work with the upper bound of the error. To estimate the upper bound, firstly, we need to introduce some additional notation. Denote as L r ( c ( x ) ) Lipschitz constant of c ( x , z ) function of r order:

L r ( c ( x , z ) ) = inf { L : | c ( x , z 1 ) c ( x , z 2 ) | L | z 1 z 2 | max ( 1 , | z 1 | r 1 , | z 2 | r 1 ) z 1 , z 2 Z } L ¯ r (1.6)

where L ¯ r is the upper bound. Further, d r is Wasserstein distance between F and F ^ distributions:

d r ( F , F ^ ) = ( min g M ( F , F ^ ) z z ^ r d g ( z , z ^ ) ) 1 r , (1.7)

where the minimum is taken over the entire space of distribution functions M ( F , F ^ ) , marginal distributions F and F ^ are Lipschitz, which means they satisfy (1.6). From [12] we know that:

e ( C , C ^ ) 2 L ¯ r d r ( F , F ^ ) , (1.8)

so as far as L ¯ r is a constant for given r and c ( x , z ) , it is clear that with the reduction of d r ( F , F ^ ) , the approximation error will also reduce.

It is impractical to find d r ( F , F ^ ) using (1.7) because of the integral, so we will use distance between two discrete distributions:

d r ( F , F ^ ) = ( min y i , j [ 0 , 1 ] ( i = 1 N j = 1 M y i , j z i z ^ j r | j = 1 M y i , j = p i , i = 1 N y i , j = q j ) ) 1 r , (1.9)

where p i , q j are the probabilities of the corresponding discrete distribution values, and y i , j = p i q j . Thus, according to (1.8), we need to find the discrete distribution F ^ , which is the best approximation for F, reducing SAA error.

Since we consider continuous distributions, we need to generate a sample of size N, so (1.9) will have the following form:

min z ^ 1 , , z ^ M ( ( min y i , j { 0 , 1 } , q j 0 ( i = 1 N j = 1 M y i , j z i z ^ j r | j = 1 M y i , j = 1 , i = 1 N y i , j = q j N ) ) 1 r ) , (1.10)

where q j , j = 1 , , M are probabilities of discrete distribution values; y i , j = 1 , if element z i of the original sample attributes to element z ^ j of the new distribution, otherwise y i , j = 0 ; M is the number of values of the new distribution, M < N .

Now, we will briefly describe algorithms, which we used to solve (1.10) and get a new approximate probability distribution. More comprehensively, they are discussed in [8].

k-means algorithm:

1) Randomly choose M elements z ^ 1 * , , z ^ M * from the source sample z 1 , , z N .

2) Attribute element i , i = 1 , , N of sample z 1 , , z N to element j of sample z ^ 1 * , , z ^ M * , if j is the solution of min j z i z ^ j * .

3) Recalculate cluster centers z ^ 1 * , , z ^ M * : z ^ j * = 1 S j k = 1 s j z k , where s i is the

number of elements of the sample z 1 , , z N , attributed to cluster j on stage 2.

4) If the stopping condition is met, then stop, else return to step 2.

Note that we are using k-means modification from [13].

Competitive learning:

The sample z 1 , , z N is obtained from the distribution F and initial approximations ( z ^ j 0 ) j = 1 M are chosen. Then the following algorithm is fulfilled for j = 1 , , M ; i = 1 , , N :

z ^ j n = { z ^ j n 1 + α n ( z n z ^ j n 1 ) , if j = arg min k ( z n z ^ k n 1 2 ) z ^ j n 1 , else (1.11)

α n is the step size, j = 1 , , M ; n = 1 , , N , values z ^ j N give the wanted discrete distribution.

Voronoi cells sampling:

The sample z 1 , , z N is obtained from the distribution F and initial approximations ( z ^ j 0 ) j = 1 M are chosen. Then the following algorithm is fulfilled for j = 1 , , M ; i = 1 , , N :

z ^ j n = { z ^ j n 1 + α n ( z n z ^ j n 1 ) , if j = arg min k ( z n z ^ k n 1 2 ) z ^ j n 1 , else (1.12)

Further, put z ^ j 0 = z ^ j 0 and:

z ^ j n = { z n , if j = arg min k ( z n z ^ k n 1 2 ) z ^ j n 1 , else (1.13)

4. Scenario Lattice Construction Algorithm

Now consider the scenario lattice construction algorithm that was used.

1) First of all, the grid parameters are selected: the number of stages, the number of nodes at each stage, the number of scenarios generated from each node.

2) Then, from each vertex of stage, t, we generate M scenarios according to the relevant random processes.

3) From the M× N scenarios, where N is the number of nodes in thet stage, N is selected using one of the methods described in Section 3.

4) The probabilities of transition from the vertex i of stage t to the vertex j of stage t + 1 are calculated as the ratio of the number of scenarios generated from the vertex i and related to the vertex j of stage t + 1 to the total number of scenarios generated from the vertex i.

5) If t+ 1 is not equal to T, where T is the number of stages, we pass to point 2; otherwise, the grid is constructed.

The lattice obtained with this algorithm can be illustrated as follows (Figure 1):

In Figure 1, each vertex represents a vector of a given dimension, corresponding to random variables. The probability of transition from the node i of stage t to the node j of stage t+ 1 is indicated by p i , j t . Some probabilities can be zero, and since we are using clustering algorithms to group scenarios, our lattice can be illustrated by Figure 2. The vertex of step 1 corresponds to the initial values, which are selected before the beginning of the grid construction algorithm. We are using standard method [1] to choose scenarios during the forward step of the SDDP algorithm.

Figure 1. Scenario lattice.

Figure 2. Scenario lattice construction.

5. The Case Problem

To compare k-means, competitive learning, and Voronoi cell sampling algorithms, we will use them to solve “The problem of commodities production, storage and selling” that can be formulated as follows.

Let T be the time interval at which we consider the problem, k is the number of type of goods, p i is the cost of single item production of type i, v i is the maximum number of items that can be produced in one day, x t i is the number of goods of type i that were produced on day t, s i is the selling price for goods of type i, δ t i is the demand for type of goods i on day t, r t i – number of undelivered goods of type i on day t, c i is the cost of storage of goods of type i.

The goal is to find a strategy (amount of produced goods) that leads to maximum income.

Income in day t: i = 1 k ( p i x t i + s i w t i c i r t i )

Amount of sold goods in day t: w t i = min ( δ t i , x t i + r t 1 i ) , i = 1 , , k

Amount of goods in storage at the end of day t: r t i = r t 1 i + x t i w t i , i = 1 , , k

CVaR is used as a risk measure; the optimization criterion is the weighted sum of CVaR and profit expectation: ( 1 λ ) E [ P ] + λ CVaR .

Formally dynamic programming equations look like the following:

for t = T , , 2

Q t ( r t 1 , δ t ) = min x t i v i w t i δ t i w t i x t i + r t 1 i r t i = r t 1 i + x t i w t i x t i 0 , u t 0 { i = 1 k ( p i x t i + s i w t i c i r t i ) + λ t + 1 u t + Q t + 1 ( r t , u t , δ t ) }

where

Q t ( r t 1 , u t 1 , δ t 1 ) = E { ( 1 λ t ) Q t ( r t 1 , δ t ) + λ t α t 1 [ Q t ( r t 1 , δ t ) u t 1 ] + | δ t 1 } , ( Q T + 1 ( . , . , . ) 0 by definition), r t = ( r t 1 , , r t k ) и δ t = ( δ t 1 , , δ t k ) .

for t = 1

min x 1 i v i w 1 i δ 1 i w 1 i x 1 i + r 0 i r 1 i = r 0 i + x 1 i w 1 i x 1 i 0 , u 1 0 { i = 1 k ( p i x 1 i + s i w 1 i c i r 1 i ) + λ 2 u t + Q 2 ( r 1 , u 1 , δ 1 ) }

6. Numerical Experiments

For numerical experiments, we considered four different stochastic processes for the demand for goods.

1) Autoregressive model (AR):

X t = c + i = 1 p a i X t i + ε t ,

where c is a constant, α i are the model parameters, ε t ~ N ( 0 , σ 2 )

2) Autoregressive moving-average model (ARMA):

X t = c + i = 1 p α i X t i + ε t + j = 1 q β j ε t j ,

where c is a constant, α i , β j are the model parameters, ε t ~ N ( 0 , σ 2 )

3) Geometric Brownian motion (GBM):

d S t = μ S t + σ S t d W t ,

where μ , σ are process parameters, W t is the Wiener process.

4) Stage independent normal distribution (SIND):

X t = N ( μ , σ 2 )

We are using the processes with chosen parameters, so in our case, the processes look as follows:

1) GBM: d X t = 5 X t d t + 0.1 X t d W t ;

2) AR(1): X t = c + 0.9 X t 1 + ε t , ε t ~ N ( 0 , σ 2 ) , σ = 1 ;

3) ARMA(1,1): X t = c + ε t + 0.9 X t 1 + 0.15 ε t 1 , ε t ~ N ( 0 , σ 2 ) , σ = 1 ;

4) SIND: X t ~ N ( μ , σ 2 ) , μ = 10 , σ = 5 .

The experiments were organized as follows. First of all, for every combination of process (AR, ARMA, GBM, SIND) and scenario grid construction algorithm, we simulated the stochastic process several times. We then checked if the results came from the normal distribution using the Shapiro-Wilk test and quantile-quantile (Q-Q) plot, then compared results using the one-sided t-test. (Q-Q) plots show the relationship between observed data and theoretical quantiles. It is necessary to check our results for normality because we are using the t-test to compare average profits obtained using different lattice construction methods. All the parameters of our case problem are in Table 1. We have chosen these parameters so as to simulate the real-world situation.

For the SDDP algorithm, we used the following optimization criterion:

0.5 E [ P ] + 0.5 CVaR

Our lattice construction parameters:

The number of nodes at each stage is 10; number of scenarios generated from each node during lattice construction is 100.

To perform the experiments, we were using a computer with an Intel Core i5-6300HQ processor running at 2.30 GHz.

We used Python 3.7.3 to generate scenario lattice and Julia 1.3.1 to run the SDDP algorithm; we implemented the SDDP by ourselves. To understand SDDP realization, please refer to [14].

The full list and versions of used packages are in Table 2 for Python and in Table 3 for Julia.

Table 1. Parameters of experiments.

Table 2. Python packages.

Table 3. Julia packages.

6.1. Numerical Experiments

First of all, it is necessary to compare lattice construction time for every process and lattice construction algorithm because work time plays a crucial role in computing.

As we can see (Figure 3), k-means works much faster than the Voronoi and Competitive learning methods, whose results are almost the same.

6.2. AR Demand Results

As we can see from the tables and plots, our results came from a normal distribution (Figures 4-6 and Table 4), and mean profit from scenarios generated by the Voronoi method is higher than the profit of scenarios generated by k-means and Competitive learning (Table 4 and Table 5). (Element i,j of Table 5 means p-value of t-test, which compares method in row i and the method in column j).

6.3. ARMA Demand Results

In this case, our results are also normal (see Figures 7-9 and Table 6), but there is no difference between k-means and Voronoi, while Competitive learning results are terrible (Table 6 and Table 7).

6.4. GBM Demand Results

For GBM process, our results are slightly different from the normal distribution but not so much (Figures 10-12 and Table 8), and all three methods show almost the same result (Table 8 and Table 9).

6.5. Stage-Independent Normal Distribution Demand Results

For the Competitive learning method, our results slightly differ from the normal distribution but not so much (Figures 13-15 and Table 10). The k-means and Voronoi methods show almost identical results, while Competitive learning loses pretty badly (Table 10 and Table 11).

Figure 3. Lattice construction time.

Figure 4. K-means Q-Q plot.

Figure 5. Competitive learning Q-Q plot.

Figure 6. Voronoi Q-Q plot.

Figure 7. K-means Q-Q plot.

Figure 8. Competitive learning Q-Q plot.

Figure 9. Voronoi Q-Q plot.

Figure 10. K-means Q-Q plot.

Figure 11. Competitive learning Q-Q plot.

Figure 12. Voronoi Q-Q plot.

Figure 13. K-means Q-Q plot.

Figure 14. Competitive learning Q-Q plot.

Figure 15. Voronoi Q-Q plot.

Table 4. AR statistics.

Table 5. AR t-test p-values.

Table 6. ARMA statistics.

Table 7. ARMA t-test p-values.

Table 8. GBM statistics.

Table 9. GBM t-test p-values.

Table 10. Stage-independent statistics.

Table 11. Stage-independent t-test p-values.

7. Conclusions

As we can see in the numerical results section, in our experimental problem, the Voronoi method slightly outperforms others, but the k-means method is much faster.

1) With the AR process, the Voronoi method performs better than k-means and Competitive learning, which both show almost the same result.

2) With the ARMA process, the Voronoi method is comparable to k-means, and Competitive learning underperforms pretty hard.

3) With GBM process, results of the methods are close to each other.

4) Scenario lattice calculation time was the same for the Competitive learning and Voronoi method but much lower for the k-means.

Conflicts of Interest

The authors declare no conflicts of interest regarding the publication of this paper.

References

[1] Pereira, M.V.F. and Pinto, L.M.V.G. (1991) Multi-Stage Stochastic Optimization Applied to Energy Planning. Mathematical Programming, 52, 359–375.
https://doi.org/10.1007/BF01582895
[2] Dentcheva, D. and Ruszczynski, A. (2009) Lectures on Stochastic Programming. Modeling and Theory. Society for Industrial Mathematics, 9, 271-279.
[3] Birge, J.R. and Louveaux, F. (2011) Introduction to Stochastic Programming. Springer, NewYork.
https://doi.org/10.1007/978-1-4614-0237-4
[4] Higle, J. L. (1998) Variance Reduction and Objective Function Evaluation in Stochastic Linear Programs. INFORMS Journal on Computing, 10, 121-260.
https://doi.org/10.1287/ijoc.10.2.236
[5] Kaut, M. and Wallace, S. (2007) Evaluation of Scenario-Generation Methods for Stochastic Programming. Pacific Journal of Optimization, 3, 257-271.
[6] Roemich, W. and Heitsch, H. (2009) Scenario Tree Modelling for Multi-Stage Stochastic Programs. Mathematical Programming, 118, 371-406.
https://doi.org/10.1007/s10107-007-0197-2
[7] Vazsonyi, M. (2006) Overview of Scenario Tree Generation Methods, Applied in Financial and Economic Decision Making. Periodica Polytechnica Social and Management Sciences, 14, 29-37.
https://doi.org/10.3311/pp.so.2006-1.04
[8] Löhndorf, N. (2016) An Empirical Analysis of Scenario Generation Methods for Stochastic Optimization. European Journal of Operational Research, 255, 121-132.
https://doi.org/10.1016/j.ejor.2016.05.021
[9] Shapiro, A. (2013) Sample Average Approximation. In: Gass, S.I. and Fu, M.C., Eds., Encyclopedia of Operations Research and Management Science, Springer, Boston, MA, 1350-1355.
https://doi.org/10.1007/978-1-4419-1153-7_1154
[10] Shapiro, A. (2003) Monte Carlo Sampling Methods. Handbooks in Operations Research and Management Science, 10, 353-425.
https://doi.org/10.1016/S0927-0507(03)10006-0
[11] Glasserman, P. (2004) Monte Carlo Methods in Financial Engineering. Springer, NewYork.
https://doi.org/10.1007/978-0-387-21617-1
[12] Pflug, G.C. (2001) Scenario Tree Generation for Multiperiod Financial Optimization by Optimal Discretization. Mathematical Programming, 89, 251-271.
https://doi.org/10.1007/PL00011398
[13] Arthur, D. and Vassilvitskii, S. (2007) K-means++: The Advantages of Careful Seeding. Proceedings of the Eighteenth Annual ACM-SIAM Symposium on Discrete Algorithms, SODA 2007, New Orleans, Louisiana, USA, 7-9 January 2007, 1027-1035.
[14] Dowson, O. and Kapelevich, L. (2020) SDDP.jl: A Julia Package for Stochastic Dual Dynamic Programming. INFORMS Journal on Computing, 33, 1-418.
https://doi.org/10.1287/ijoc.2020.0987

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.