Note
Go to the end to download the full example code.
Compute reference probabilities with Monte-Carlo¶
In this example, we perform a reliability benchmark based on a large Monte-Carlo sample. In order to limit the elapsed time, we consider a limited elapsed time for each problem. In order to get the best possible accuracy within this time limit, we set the coefficient of variation to zero.
import otbenchmark as otb
import pandas as pd
import numpy as np
from tqdm import tqdm
import time
problemslist = otb.ReliabilityBenchmarkProblemList()
numberOfProblems = len(problemslist)
numberOfProblems
26
coefficientOfVariation = 0.0
maximumOuterSampling = 10 ** 4 # 10 ** 6 for real
blockSize = 10 ** 0 # 10 ** 4 for real simulations
blockSize
1
confidenceLevel = 0.95
maximumDurationSeconds = 5 * 60.0
totalDurationMinutes = numberOfProblems * maximumDurationSeconds / 60.0
totalDurationMinutes
130.0
model_names = [problemslist[i].getName() for i in range(numberOfProblems)]
metrics = ["PF", "N. function calls", "PMin", "PMax", "C.O.V.", "Digits", "Time (s)"]
resultArray = np.zeros((numberOfProblems, len(metrics)))
for i in tqdm(range(numberOfProblems)):
startTime = time.time()
problem = problemslist[i]
name = problem.getName()
event = problem.getEvent()
g = event.getFunction()
factory = otb.ProbabilitySimulationAlgorithmFactory()
algo = factory.buildMonteCarlo(problem)
algo.setMaximumOuterSampling(maximumOuterSampling)
algo.setBlockSize(blockSize)
algo.setMaximumCoefficientOfVariation(coefficientOfVariation)
algo.setMaximumTimeDuration(maximumDurationSeconds)
initialNumberOfCall = g.getEvaluationCallsNumber()
algo.run()
result = algo.getResult()
numberOfFunctionEvaluations = g.getEvaluationCallsNumber() - initialNumberOfCall
computedProbability = result.getProbabilityEstimate()
confidenceLength = result.getConfidenceLength(confidenceLevel)
pmin = computedProbability - 0.5 * confidenceLength
pmax = computedProbability + 0.5 * confidenceLength
cov = result.getCoefficientOfVariation()
if cov > 0.0:
expectedDigits = -np.log10(cov) - 1.0
else:
expectedDigits = 0.0
stopTime = time.time()
elapsedTime = stopTime - startTime
resultArray[i][0] = computedProbability
resultArray[i][1] = numberOfFunctionEvaluations
resultArray[i][2] = pmin
resultArray[i][3] = pmax
resultArray[i][4] = cov
resultArray[i][5] = expectedDigits
resultArray[i][6] = elapsedTime
0%| | 0/26 [00:00<?, ?it/s]
4%|▍ | 1/26 [00:00<00:13, 1.87it/s]
8%|▊ | 2/26 [00:00<00:07, 3.28it/s]
19%|█▉ | 5/26 [00:00<00:02, 8.67it/s]
31%|███ | 8/26 [00:00<00:01, 12.84it/s]
38%|███▊ | 10/26 [00:01<00:01, 13.65it/s]
50%|█████ | 13/26 [00:01<00:01, 12.83it/s]
58%|█████▊ | 15/26 [00:01<00:00, 14.10it/s]
65%|██████▌ | 17/26 [00:01<00:00, 13.00it/s]
73%|███████▎ | 19/26 [00:01<00:00, 14.02it/s]
81%|████████ | 21/26 [00:02<00:01, 4.66it/s]
88%|████████▊ | 23/26 [00:03<00:00, 4.16it/s]
100%|██████████| 26/26 [00:03<00:00, 6.05it/s]
100%|██████████| 26/26 [00:03<00:00, 7.28it/s]
df = pd.DataFrame(resultArray, index=model_names, columns=metrics)
# df.to_csv("reliability_compute_reference_proba.csv")
df
The problems with higher failture probabilities are obviously solved with more accuracy with the Monte-Carlo method. For example, the RP55 problem which has the highest probability equal to 0.560 has more than 3 significant digits. On the opposite side, the problems with probabilities close to zero are much more difficult to solve. The RP28 with a probability close to has no significant digit.
These previous results are consistent with the distribution of the Monte-Carlo estimator. The properties of the binomial distribution imply that its variance is:
where is the sample size and is the failure probability. The coefficient of variation is:
Since we do not know the exact value of , we use is approximation instead (this turns rigorous equations into approximate ones, but does not change the outcome). This implies:
When , we have which implies:
Inverting the previous equation, we get the sample size given the coefficient of variation:
This leads to the rule of thumb that, in order to estimate the probability , where is an integer, we need a sample size equal to:
For example, estimating the probability of the RP28 problem with just one single digit leads to a sample size equal to , since the exact .
Total running time of the script: (0 minutes 3.779 seconds)