Note
Go to the end to download the full example code.
Combine many specifications: assisted specification algorithm¶
We combine many specifications, defined in Combination of many specifications. This leads to a total of 432 specifications. The algorithm implemented in the AssistedSpecification object is used to investigate some of these specifications. See Bierlaire and Ortelli (2023).
Michel Bierlaire, EPFL Sun Apr 27 2025, 15:59:08
import biogeme.biogeme_logging as blog
from IPython.core.display_functions import display
from biogeme.assisted import AssistedSpecification
from biogeme.biogeme import BIOGEME
from biogeme.multiobjectives import loglikelihood_dimension
from biogeme.results_processing import EstimationResults, compile_estimation_results
from everything_spec import database, model_catalog
logger = blog.get_screen_logger(level=blog.INFO)
logger.info('Example b07everything_assisted')
PARETO_FILE_NAME = 'b07everything_assisted.pareto'
Example b07everything_assisted
Function verifying that the estimation results are valid.
def validity(results: EstimationResults) -> tuple[bool, str | None]:
"""Function verifying that the estimation results are valid.
The results are not valid if any of the time or cost coefficient is non-negative.
"""
for parameter_index, parameter_name in enumerate(results.beta_names):
parameter_value = results.beta_values[parameter_index]
if 'TIME' in parameter_name and parameter_value >= 0:
return False, f'{parameter_name} = {parameter_value}'
if 'COST' in parameter_name and parameter_value >= 0:
return False, f'{parameter_name} = {parameter_value}'
return True, None
Create the Biogeme object
the_biogeme = BIOGEME(database, model_catalog, generate_html=False, generate_yaml=False)
the_biogeme.model_name = 'b07everything'
Biogeme parameters read from biogeme.toml.
Estimate the parameters using assisted specification algorithm.
assisted_specification = AssistedSpecification(
biogeme_object=the_biogeme,
multi_objectives=loglikelihood_dimension,
pareto_file_name=PARETO_FILE_NAME,
validity=validity,
)
non_dominated_models = assisted_specification.run()
Pareto set initialized from file with 310 elements [13 Pareto] and 0 invalid elements.
Biogeme parameters read from biogeme.toml.
Model with 4 unknown parameters [max: 50]
*** Estimate b07everything_000000
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time b_cost asc_car Function Relgrad Radius Rho
0 -0.76 -0.77 -0.7 -0.29 8.8e+03 0.04 10 1.1 ++
1 -0.66 -1.2 -0.77 -0.0015 8.7e+03 0.0064 1e+02 1.1 ++
2 -0.65 -1.3 -0.79 0.016 8.7e+03 0.00012 1e+03 1 ++
3 -0.65 -1.3 -0.79 0.016 8.7e+03 4e-08 1e+03 1 ++
default_specification=asc:no_seg;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:logit;train_tt_catalog:linear
The number of possible specifications [432] exceeds the maximum number [100]. A heuristic algorithm is applied.
*** VNS ***
asc:no_seg;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:logit;train_tt_catalog:linear [8670.163118523758, 4]
Initial pareto: 13
Attempt 0/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000001
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train lambda_travel_t b_cost_train mu_public b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_GA b_time_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 1 0 1 0 0 0 0 0 0 1.1e+04 0.22 0.5 0.046 -
1 -0.5 0.024 -0.39 1 -0.46 1.4 -0.19 0.36 -0.058 -0.077 -0.14 -0.11 9.4e+03 0.14 0.5 0.59 +
2 -0.4 0.2 -0.43 1.1 -0.44 1.4 -0.37 -0.14 -0.17 -0.21 -0.29 -0.24 8.9e+03 0.05 0.5 0.87 +
3 -0.55 0.68 -0.8 1.1 -0.8 1.7 -0.81 -0.64 -0.36 -0.49 -0.61 -0.48 8.4e+03 0.026 5 0.99 ++
4 -0.55 0.68 -0.8 1.1 -0.8 1.7 -0.81 -0.64 -0.36 -0.49 -0.61 -0.48 8.4e+03 0.026 0.65 -0.49 -
5 -0.2 0.88 -1.2 0.47 -1.1 1.9 -1.3 -0.85 -0.38 -0.85 -1.1 -0.63 8.3e+03 0.01 6.5 0.92 ++
6 -0.2 0.88 -1.2 0.47 -1.1 1.9 -1.3 -0.85 -0.38 -0.85 -1.1 -0.63 8.3e+03 0.01 0.44 -0.19 -
7 -0.14 0.81 -1.5 0.39 -1 1.4 -1.5 -0.74 -0.18 -1 -1.3 -0.59 8.2e+03 0.017 4.4 0.97 ++
8 -0.23 1 -1.8 0.31 -1 1.2 -1.6 -0.74 -0.001 -1.1 -1.4 -0.68 8.2e+03 0.0091 44 1.3 ++
9 -0.39 1.3 -2.1 0.22 -1.1 1 -1.7 -0.74 0.081 -1.1 -1.5 -0.71 8.2e+03 0.008 4.4e+02 1.2 ++
10 -0.42 1.3 -2.2 0.24 -1.1 1 -1.7 -0.73 0.1 -1.1 -1.5 -0.7 8.2e+03 0.0023 4.4e+03 1 ++
11 -0.41 1.3 -2.3 0.2 -1 1 -1.7 -0.73 0.13 -1 -1.5 -0.73 8.2e+03 0.00011 4.4e+04 1 ++
12 -0.41 1.3 -2.3 0.2 -1 1 -1.7 -0.73 0.13 -1 -1.5 -0.73 8.2e+03 4.6e-08 4.4e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 1/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000002
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time square_tt_coef cube_tt_coef b_cost mu_existing asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 1.1e+04 0.26 0.5 -0.2 -
1 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 5 0.99 ++
2 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 2.5 0.99 -
3 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 1.2 0.99 -
4 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.62 0.99 -
5 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.31 0.99 -
6 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.16 0.99 -
7 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.078 0.99 -
8 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.039 0.99 -
9 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.02 -4.3 -
10 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.0098 -4.7 -
11 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.0049 -3.6 -
12 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.0024 -2.5 -
13 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.0012 -1.9 -
14 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.00061 -1.1 -
15 -0.5 0.0056 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.9e+03 6.5 0.00031 -0.24 -
16 -0.5 0.006 -0.5 0.00031 -0.00031 -0.17 1.5 0.11 -0.089 8.9e+03 4.9 0.00031 0.59 +
17 -0.5 0.006 -0.5 0.00061 -0.00018 -0.17 1.5 0.11 -0.089 8.9e+03 5.3 0.00031 0.2 +
18 -0.5 0.0061 -0.5 0.00092 -0.0003 -0.17 1.5 0.11 -0.089 8.9e+03 4.7 0.00031 0.23 +
19 -0.5 0.0062 -0.5 0.0012 -0.00019 -0.17 1.5 0.11 -0.089 8.9e+03 4.7 0.00031 0.33 +
20 -0.5 0.0063 -0.5 0.0015 -0.00027 -0.17 1.5 0.11 -0.089 8.9e+03 2.6 0.00031 0.64 +
21 -0.5 0.0064 -0.5 0.0018 -0.00024 -0.17 1.5 0.11 -0.09 8.9e+03 0.57 0.0031 0.94 ++
22 -0.5 0.0073 -0.5 0.0049 -0.00026 -0.17 1.5 0.11 -0.09 8.9e+03 0.11 0.031 1 ++
23 -0.51 0.016 -0.53 0.035 -0.00038 -0.19 1.5 0.1 -0.097 8.8e+03 0.37 0.31 1 ++
24 -0.5 0.25 -0.78 0.16 -0.00089 -0.49 1.6 -0.0029 -0.26 8.5e+03 2.5 0.31 0.88 +
25 -0.61 0.56 -0.93 -0.062 2.7e-05 -0.65 1.8 0.061 -0.42 8.3e+03 4.3 0.31 0.66 +
26 -0.6 0.78 -1.2 -0.076 6.7e-05 -0.52 1.9 -0.026 -0.5 8.2e+03 6.4 3.1 1.1 ++
27 -0.6 0.78 -1.2 -0.076 6.7e-05 -0.52 1.9 -0.026 -0.5 8.2e+03 6.4 0.33 -0.24 -
28 -0.46 1 -1.6 -0.1 0.0002 -0.57 1.9 0.087 -0.55 8.2e+03 5.2 0.33 0.86 +
29 -0.46 1 -1.8 -0.1 0.00018 -0.6 1.7 0.16 -0.59 8.2e+03 13 3.3 1 ++
30 -0.51 1.1 -1.8 -0.1 0.00019 -0.6 1.6 0.15 -0.65 8.2e+03 0.37 33 1.1 ++
31 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 0.6 3.3e+02 1 ++
32 -0.51 1.1 -1.8 -0.1 0.00019 -0.6 1.6 0.16 -0.68 8.2e+03 0.013 3.3e+03 1 ++
33 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 0.0053 3.3e+04 1 ++
34 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 0.0026 3.3e+05 1 ++
35 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 0.0013 3.3e+06 1 ++
36 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 0.00042 3.3e+07 1 ++
37 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 4.5e-05 3.3e+08 1 ++
38 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 6.6e-06 3.3e+09 1.1 ++
39 -0.51 1.1 -1.8 -0.1 0.00019 -0.61 1.6 0.16 -0.68 8.2e+03 2.8e-10 3.3e+09 3.9 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000003
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost_train mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.54 -0.0056 -0.0089 -0.92 -0.49 1.5 -0.48 2 0.19 -0.071 -0.02 0.092 -0.7 9.6e+03 0.2 1 0.47 +
1 -0.54 -0.0056 -0.0089 -0.92 -0.49 1.5 -0.48 2 0.19 -0.071 -0.02 0.092 -0.7 9.6e+03 0.2 0.5 -0.36 -
2 -0.25 0.33 0.014 -0.55 -0.39 0.97 -0.6 2.2 -0.25 -0.33 -0.059 -0.23 -0.44 8.8e+03 0.16 0.5 0.46 +
3 -0.37 0.13 0.056 -0.76 -0.47 0.77 -0.57 2.7 -0.2 0.047 -0.12 -0.26 -0.6 8.4e+03 0.047 0.5 0.7 +
4 -0.092 0.25 0.084 -1.2 -0.4 0.3 -0.87 2.2 -0.069 -0.068 -0.39 -0.24 -0.56 8.3e+03 0.0088 5 1.1 ++
5 -0.17 0.42 0.19 -1.3 -0.48 0.43 -1.2 1.5 -0.094 -0.059 -0.49 -0.32 -0.68 8.2e+03 0.011 5 0.77 +
6 -0.23 0.49 0.25 -1.3 -0.49 0.43 -1.3 1.6 -0.13 -0.08 -0.52 -0.32 -0.7 8.2e+03 0.00071 50 1 ++
7 -0.23 0.49 0.25 -1.3 -0.49 0.43 -1.3 1.6 -0.13 -0.077 -0.52 -0.31 -0.7 8.2e+03 1.4e-05 5e+02 1 ++
8 -0.23 0.49 0.25 -1.3 -0.49 0.43 -1.3 1.6 -0.13 -0.077 -0.52 -0.31 -0.7 8.2e+03 3.4e-08 5e+02 1 ++
Considering neighbor 1/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000004
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost_train mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.55 0.25 -0.011 -0.0091 -0.92 -0.49 1.5 -0.49 2 0.2 -0.28 -0.067 -0.02 0.094 -0.69 9.3e+03 0.19 1 0.51 +
1 -0.55 0.25 -0.011 -0.0091 -0.92 -0.49 1.5 -0.49 2 0.2 -0.28 -0.067 -0.02 0.094 -0.69 9.3e+03 0.19 0.5 -0.0072 -
2 -0.37 0.45 0.2 0.0085 -0.61 -0.41 0.97 -0.51 2.2 -0.2 -0.35 -0.26 -0.053 -0.22 -0.42 8.4e+03 0.1 0.5 0.66 +
3 -0.53 0.64 0.17 0.043 -0.88 -0.56 0.47 -0.49 2.7 -0.22 -0.37 -0.0021 -0.13 -0.24 -0.64 8.2e+03 0.026 0.5 0.87 +
4 -0.49 0.79 0.25 0.073 -1.1 -0.52 0.36 -0.53 2.2 -0.22 -0.18 -0.035 -0.22 -0.11 -0.56 8.1e+03 0.0064 5 1 ++
5 -0.61 1 0.29 0.11 -1.3 -0.57 0.42 -0.74 1.5 -0.15 -0.32 -0.086 -0.39 -0.26 -0.7 8.1e+03 0.0099 5 0.78 +
6 -0.68 1 0.32 0.17 -1.3 -0.57 0.41 -0.79 1.5 -0.14 -0.44 -0.086 -0.44 -0.31 -0.72 8.1e+03 0.00032 50 1 ++
7 -0.68 1 0.32 0.17 -1.3 -0.57 0.41 -0.79 1.5 -0.14 -0.44 -0.086 -0.44 -0.31 -0.72 8.1e+03 2.1e-06 50 1 ++
Considering neighbor 2/20 for current solution
Attempt 2/100
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000005
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train square_tt_coef cube_tt_coef b_cost_train mu_public b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.45 -
1 -0.27 -0.14 -0.0056 -0.5 0.0061 0.059 -0.28 1 0.2 0.24 0.0066 -0.0068 -0.0018 -0.022 -0.0073 1e+04 1.2 0.5 0.23 +
2 -0.27 -0.14 -0.0056 -0.5 0.0061 0.059 -0.28 1 0.2 0.24 0.0066 -0.0068 -0.0018 -0.022 -0.0073 1e+04 1.2 0.25 0.23 -
3 -0.27 -0.14 -0.0056 -0.5 0.0061 0.059 -0.28 1 0.2 0.24 0.0066 -0.0068 -0.0018 -0.022 -0.0073 1e+04 1.2 0.12 0.23 -
4 -0.27 -0.14 -0.0056 -0.5 0.0061 0.059 -0.28 1 0.2 0.24 0.0066 -0.0068 -0.0018 -0.022 -0.0073 1e+04 1.2 0.062 -4.1 -
5 -0.27 -0.14 -0.0054 -0.49 -0.0045 -0.0032 -0.27 1 0.17 0.23 0.0065 -0.0079 -0.002 0.026 -0.0076 9.5e+03 5.1 0.062 0.86 +
6 -0.25 -0.1 -0.004 -0.52 -0.055 0.0035 -0.28 1 0.15 0.17 -0.019 -0.033 -0.0042 -0.006 -0.039 9.4e+03 0.4 0.062 0.59 +
7 -0.25 -0.1 -0.004 -0.52 -0.055 0.0035 -0.28 1 0.15 0.17 -0.019 -0.033 -0.0042 -0.006 -0.039 9.4e+03 0.4 0.031 -14 -
8 -0.25 -0.1 -0.004 -0.52 -0.055 0.0035 -0.28 1 0.15 0.17 -0.019 -0.033 -0.0042 -0.006 -0.039 9.4e+03 0.4 0.016 -11 -
9 -0.25 -0.1 -0.004 -0.52 -0.055 0.0035 -0.28 1 0.15 0.17 -0.019 -0.033 -0.0042 -0.006 -0.039 9.4e+03 0.4 0.0078 -11 -
10 -0.25 -0.1 -0.004 -0.52 -0.055 0.0035 -0.28 1 0.15 0.17 -0.019 -0.033 -0.0042 -0.006 -0.039 9.4e+03 0.4 0.0039 -5.2 -
11 -0.24 -0.097 -9.3e-05 -0.52 -0.059 -0.00044 -0.28 1 0.14 0.16 -0.023 -0.037 -0.0081 -0.0099 -0.043 9.4e+03 0.6 0.0039 0.82 +
12 -0.24 -0.097 -9.2e-05 -0.52 -0.059 -0.00024 -0.28 1 0.14 0.16 -0.023 -0.037 -0.0081 -0.0099 -0.043 9.4e+03 0.18 0.039 1.2 ++
13 -0.24 -0.078 0.00068 -0.53 -0.053 -2.5e-06 -0.3 1 0.12 0.13 -0.034 -0.05 -0.0097 -0.038 -0.059 9.3e+03 0.075 0.39 1 ++
14 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.39 0.89 +
15 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.2 -7.1 -
16 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.098 -7.2 -
17 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.049 -7.6 -
18 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.024 -8.1 -
19 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.012 -9.1 -
20 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.0061 -4.9 -
21 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.0031 -3.3 -
22 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.0015 -1.7 -
23 -0.25 0.099 0.0085 -0.66 0.099 -0.00014 -0.51 1.1 -0.12 -0.26 -0.12 -0.17 -0.027 -0.31 -0.21 8.9e+03 2.5 0.00076 -0.44 -
24 -0.25 0.1 0.0093 -0.66 0.1 -0.0009 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 2.6 0.00076 0.47 +
25 -0.25 0.1 0.0093 -0.66 0.1 -0.0009 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 2.6 0.00038 -0.59 -
26 -0.25 0.1 0.0096 -0.66 0.1 -0.00052 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 2.3 0.00038 0.21 +
27 -0.25 0.1 0.0096 -0.66 0.1 -0.00052 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 2.3 0.00019 -0.06 -
28 -0.25 0.1 0.0098 -0.66 0.1 -0.00071 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 0.42 0.00019 0.7 +
29 -0.25 0.1 0.0098 -0.66 0.1 -0.00069 -0.51 1.1 -0.12 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.9e+03 0.047 0.0019 1 ++
30 -0.25 0.1 0.0099 -0.66 0.1 -0.0007 -0.51 1.1 -0.13 -0.27 -0.12 -0.17 -0.028 -0.31 -0.21 8.8e+03 0.25 0.019 1 ++
31 -0.25 0.11 0.01 -0.67 0.11 -0.00073 -0.52 1.1 -0.14 -0.28 -0.12 -0.17 -0.029 -0.31 -0.2 8.8e+03 0.041 0.19 1 ++
32 -0.26 0.17 0.016 -0.69 0.22 -0.0012 -0.63 1.1 -0.33 -0.34 -0.12 -0.16 -0.036 -0.36 -0.22 8.7e+03 0.22 1.9 0.95 ++
33 -0.26 0.17 0.016 -0.69 0.22 -0.0012 -0.63 1.1 -0.33 -0.34 -0.12 -0.16 -0.036 -0.36 -0.22 8.7e+03 0.22 0.95 -9.7 -
34 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 9.5 0.98 ++
35 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 4.8 0.98 -
36 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 2.4 0.98 -
37 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 1.2 -1.9e+02 -
38 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 0.6 -55 -
39 -0.57 0.48 0.086 -0.59 0.17 -0.00098 -1.6 1.3 -0.81 -0.73 -0.41 -0.24 -0.12 -0.7 -0.39 8.4e+03 2 0.3 -4.8 -
40 -0.58 0.49 0.22 -0.89 -0.013 -0.00022 -1.5 1.4 -1.1 -0.93 -0.62 -0.053 -0.2 -0.92 -0.59 8.4e+03 1.7 0.3 0.7 +
41 -0.47 0.53 0.33 -1.2 -0.044 -8.2e-05 -1.5 1.6 -1.4 -0.82 -0.6 -0.15 -0.24 -1.1 -0.59 8.3e+03 0.94 3 1.1 ++
42 -0.47 0.53 0.33 -1.2 -0.044 -8.2e-05 -1.5 1.6 -1.4 -0.82 -0.6 -0.15 -0.24 -1.1 -0.59 8.3e+03 0.94 0.72 -11 -
43 -0.47 0.53 0.33 -1.2 -0.044 -8.2e-05 -1.5 1.6 -1.4 -0.82 -0.6 -0.15 -0.24 -1.1 -0.59 8.3e+03 0.94 0.36 -1.8 -
44 -0.35 0.44 0.44 -1.5 -0.099 0.00015 -1.5 1.4 -1.6 -0.84 -0.53 -0.013 -0.31 -1.4 -0.63 8.3e+03 7.1 0.36 0.73 +
45 -0.32 0.58 0.45 -1.9 -0.094 0.00014 -1.6 1.2 -1.9 -0.82 -0.51 -0.18 -0.37 -1.6 -0.6 8.3e+03 1.5 3.6 1.1 ++
46 -0.33 0.66 0.48 -2.1 -0.099 0.00016 -1.7 1 -2.1 -0.77 -0.47 -0.054 -0.41 -1.7 -0.62 8.3e+03 1.3 36 1 ++
47 -0.35 0.69 0.48 -2.2 -0.1 0.00017 -1.7 1 -2.1 -0.77 -0.47 -0.12 -0.42 -1.7 -0.61 8.3e+03 0.057 3.6e+02 1 ++
48 -0.25 0.77 0.63 -2.5 -0.11 0.00023 -1.7 1 -2.4 -0.79 -0.46 -0.13 -0.52 -1.9 -0.62 8.3e+03 2.2 3.6e+03 0.97 ++
49 -0.23 0.76 0.61 -2.5 -0.11 0.00022 -1.7 1 -2.4 -0.8 -0.46 -0.13 -0.56 -1.9 -0.63 8.3e+03 0.025 3.6e+04 1 ++
50 -0.24 0.76 0.61 -2.5 -0.11 0.00022 -1.7 1 -2.4 -0.8 -0.46 -0.13 -0.56 -1.9 -0.63 8.3e+03 0.00025 3.6e+05 1 ++
51 -0.24 0.76 0.61 -2.5 -0.11 0.00022 -1.7 1 -2.4 -0.8 -0.46 -0.13 -0.56 -1.9 -0.63 8.3e+03 1.1e-06 3.6e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 3/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000006
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time square_tt_coef cube_tt_coef b_cost mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 -0.88 -
1 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 5 1 ++
2 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 2.5 1 -
3 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 1.2 1 -
4 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.62 1 -
5 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.31 1 -
6 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.16 1 -
7 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.078 1 -
8 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.039 1 -
9 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.02 -4.2 -
10 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.0098 -4.6 -
11 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.0049 -3.5 -
12 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.0024 -2.5 -
13 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.0012 -1.8 -
14 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.00061 -1 -
15 -0.5 -0.0005 -0.42 -0.017 -0.5 0 0 -0.11 1.5 0.023 -0.066 -0.018 -0.0053 9e+03 6.7 0.00031 -0.22 -
16 -0.5 -0.00019 -0.42 -0.016 -0.5 0.00031 -0.00031 -0.11 1.5 0.022 -0.066 -0.018 -0.0056 9e+03 4.7 0.00031 0.58 +
17 -0.5 -2.1e-05 -0.42 -0.016 -0.5 0.00061 -0.00018 -0.12 1.5 0.022 -0.066 -0.018 -0.0056 9e+03 4.8 0.00031 0.34 +
18 -0.5 0.00015 -0.42 -0.016 -0.5 0.00092 -0.00027 -0.12 1.5 0.022 -0.066 -0.019 -0.0057 9e+03 2.3 0.00031 0.69 +
19 -0.5 0.00032 -0.42 -0.016 -0.5 0.0012 -0.00024 -0.12 1.5 0.022 -0.066 -0.019 -0.0057 9e+03 0.38 0.0031 0.97 ++
20 -0.5 0.002 -0.42 -0.016 -0.5 0.0043 -0.00025 -0.12 1.5 0.021 -0.067 -0.02 -0.0058 9e+03 0.072 0.031 1 ++
21 -0.5 0.02 -0.4 -0.016 -0.53 0.035 -0.00038 -0.14 1.5 0.0087 -0.079 -0.038 -0.0067 8.9e+03 0.18 0.31 1 ++
22 -0.46 0.25 -0.16 -0.013 -0.71 0.19 -0.0011 -0.45 1.6 -0.028 -0.22 -0.17 -0.017 8.5e+03 2.2 3.1 0.92 ++
23 -0.46 0.25 -0.16 -0.013 -0.71 0.19 -0.0011 -0.45 1.6 -0.028 -0.22 -0.17 -0.017 8.5e+03 2.2 1.5 0.92 -
24 -0.46 0.25 -0.16 -0.013 -0.71 0.19 -0.0011 -0.45 1.6 -0.028 -0.22 -0.17 -0.017 8.5e+03 2.2 0.76 -21 -
25 -0.46 0.25 -0.16 -0.013 -0.71 0.19 -0.0011 -0.45 1.6 -0.028 -0.22 -0.17 -0.017 8.5e+03 2.2 0.38 -1.5 -
26 -0.63 0.63 0.065 -0.0032 -0.9 -0.033 -0.00028 -0.69 1.9 0.23 -0.4 -0.12 -0.041 8.4e+03 17 0.38 0.65 +
27 -0.63 0.63 0.065 -0.0032 -0.9 -0.033 -0.00028 -0.69 1.9 0.23 -0.4 -0.12 -0.041 8.4e+03 17 0.19 -0.19 -
28 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.19 0.32 +
29 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.095 0.32 -
30 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.048 0.32 -
31 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.024 0.32 -
32 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.012 0.32 -
33 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.006 0.32 -
34 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.003 -3 -
35 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.0015 -2.2 -
36 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.00075 -1.5 -
37 -0.62 0.68 0.11 0.0043 -1.1 -0.083 0.00047 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.3e+03 19 0.00037 -0.46 -
38 -0.62 0.68 0.11 0.0046 -1.1 -0.083 9.5e-05 -0.58 1.9 0.06 -0.42 -0.19 -0.055 8.2e+03 8.7 0.0037 0.91 ++
39 -0.62 0.68 0.11 0.0047 -1.1 -0.08 9.1e-05 -0.58 1.9 0.061 -0.42 -0.19 -0.055 8.2e+03 1 0.037 0.99 ++
40 -0.65 0.7 0.1 0.0068 -1.1 -0.061 8.9e-06 -0.57 1.9 0.087 -0.43 -0.16 -0.059 8.2e+03 1.5 0.37 1 ++
41 -0.63 0.94 0.28 0.045 -1.5 -0.11 0.00022 -0.48 2 0.083 -0.5 -0.038 -0.11 8.2e+03 16 0.37 0.62 +
42 -0.64 0.95 0.3 0.2 -1.8 -0.099 0.00017 -0.58 1.7 0.2 -0.59 -0.067 -0.31 8.1e+03 3.4 3.7 1 ++
43 -0.74 0.99 0.34 0.24 -1.8 -0.1 0.00019 -0.61 1.6 0.19 -0.64 -0.052 -0.38 8.1e+03 0.11 37 1 ++
44 -0.75 1 0.35 0.25 -1.8 -0.1 0.00019 -0.61 1.6 0.19 -0.65 -0.049 -0.4 8.1e+03 0.00013 3.7e+02 1 ++
45 -0.75 0.99 0.35 0.25 -1.9 -0.1 0.00019 -0.61 1.6 0.19 -0.65 -0.049 -0.41 8.1e+03 0.015 3.7e+03 1 ++
46 -0.75 0.99 0.35 0.25 -1.9 -0.1 0.00019 -0.61 1.6 0.19 -0.65 -0.049 -0.41 8.1e+03 2.2e-06 3.7e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 4/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000007
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_com square_tt_coef cube_tt_coef b_cost_train mu_existing asc_car b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.5 -2.9 -
1 0 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.25 -0.23 -
2 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 2.5 1 ++
3 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 1.2 1 -
4 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.62 1 -
5 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.31 1 -
6 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.16 1 -
7 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.078 1 -
8 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.039 -3 -
9 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.02 -3.4 -
10 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.0098 -3.8 -
11 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.0049 -4.2 -
12 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.0024 -2.3 -
13 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.0012 -1.6 -
14 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.00061 -0.95 -
15 -0.25 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 5.6 0.00031 -0.18 -
16 -0.25 -0.25 -0.25 0.00031 -0.00031 -0.25 1.3 0.25 -0.025 0.25 9.3e+03 3.7 0.00031 0.63 +
17 -0.25 -0.25 -0.25 0.00051 -0.00021 -0.25 1.3 0.25 -0.025 0.25 9.3e+03 2.9 0.00031 0.56 +
18 -0.25 -0.25 -0.25 0.00072 -0.00026 -0.25 1.3 0.25 -0.025 0.25 9.3e+03 0.6 0.0031 0.92 ++
19 -0.25 -0.25 -0.25 0.0028 -0.00026 -0.25 1.3 0.25 -0.025 0.25 9.3e+03 0.1 0.031 1 ++
20 -0.27 -0.28 -0.25 0.024 -0.00035 -0.27 1.3 0.24 -0.031 0.25 9.2e+03 0.49 0.31 1 ++
21 -0.39 -0.59 -0.29 0.23 -0.0012 -0.43 1.4 0.19 -0.079 0.18 9e+03 1.9 0.31 0.52 +
22 -0.27 -0.59 -0.26 0.1 -0.00066 -0.44 1.4 0.11 -0.11 -0.12 8.7e+03 0.28 3.1 0.9 ++
23 -0.27 -0.59 -0.26 0.1 -0.00066 -0.44 1.4 0.11 -0.11 -0.12 8.7e+03 0.28 0.39 0.067 -
24 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 3.9 1.1 ++
25 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 1.9 1.1 -
26 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 0.97 -84 -
27 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 0.49 -13 -
28 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 0.24 -1.9 -
29 -0.25 -0.92 -0.21 0.0052 -0.00027 -0.81 1.7 -0.15 -0.23 -0.51 8.4e+03 0.032 0.12 0.042 -
30 -0.2 -1 -0.22 -0.084 9.9e-05 -0.92 1.8 -0.24 -0.29 -0.48 8.4e+03 4.4 0.12 0.84 +
31 -0.17 -1.2 -0.24 -0.07 4.7e-05 -0.98 1.9 -0.23 -0.26 -0.55 8.3e+03 3.1 1.2 1 ++
32 -0.17 -1.2 -0.24 -0.07 4.7e-05 -0.98 1.9 -0.23 -0.26 -0.55 8.3e+03 3.1 0.53 -7.9 -
33 -0.17 -1.2 -0.24 -0.07 4.7e-05 -0.98 1.9 -0.23 -0.26 -0.55 8.3e+03 3.1 0.26 -0.28 -
34 -0.031 -1.4 -0.31 -0.11 0.00021 -1.1 2 -0.28 -0.29 -0.61 8.3e+03 21 0.26 0.72 +
35 0.089 -1.7 -0.42 -0.1 0.00018 -1.1 2 -0.22 -0.26 -0.62 8.3e+03 13 2.6 0.92 ++
36 0.24 -1.9 -0.8 -0.11 0.00021 -1.4 1.6 -0.16 -0.29 -0.68 8.2e+03 5.5 2.6 0.76 +
37 0.23 -1.9 -0.81 -0.11 0.0002 -1.3 1.7 -0.16 -0.3 -0.67 8.2e+03 0.2 26 1 ++
38 0.22 -1.9 -0.8 -0.11 0.0002 -1.3 1.7 -0.16 -0.29 -0.66 8.2e+03 0.0051 2.6e+02 1 ++
39 0.22 -1.9 -0.8 -0.11 0.0002 -1.3 1.7 -0.16 -0.29 -0.66 8.2e+03 8.6e-06 2.6e+03 1 ++
40 0.22 -1.9 -0.8 -0.11 0.0002 -1.3 1.7 -0.16 -0.29 -0.66 8.2e+03 0.00036 2.6e+04 1 ++
41 0.22 -1.9 -0.8 -0.11 0.0002 -1.3 1.7 -0.16 -0.29 -0.66 8.2e+03 2.6e-07 2.6e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000008
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.58 0.11 -0.004 -0.72 -0.47 -1 1.7 0.29 -0.076 -0.023 8.6e+03 0.074 1 0.88 +
1 -0.58 0.11 -0.004 -0.72 -0.47 -1 1.7 0.29 -0.076 -0.023 8.6e+03 0.074 0.5 -0.36 -
2 -0.59 0.46 0.09 -0.71 -0.49 -0.5 2.1 0.083 -0.14 -0.15 8.4e+03 0.028 0.5 0.7 +
3 -0.7 0.45 0.29 -0.7 -0.49 -0.62 2.1 0.017 -0.033 -0.48 8.4e+03 0.0017 5 1 ++
4 -0.77 0.5 0.33 -0.76 -0.52 -0.68 1.8 0.036 -0.039 -0.51 8.4e+03 0.0017 5 0.84 +
5 -0.77 0.5 0.32 -0.75 -0.52 -0.68 1.9 0.033 -0.038 -0.5 8.4e+03 7.7e-05 50 1 ++
6 -0.77 0.5 0.32 -0.75 -0.52 -0.68 1.9 0.033 -0.038 -0.5 8.4e+03 4.2e-07 50 1 ++
Considering neighbor 1/20 for current solution
Attempt 5/100
Biogeme parameters read from biogeme.toml.
Model with 17 unknown parameters [max: 50]
*** Estimate b07everything_000009
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.22 0.5 -0.021 -
1 9.6e+03 0.17 0.5 0.48 +
2 9e+03 0.071 0.5 0.79 +
3 8.5e+03 0.016 5 0.99 ++
4 8.5e+03 0.016 2.5 0.99 -
5 8.5e+03 0.016 1.2 -15 -
6 8.5e+03 0.016 0.62 -0.82 -
7 8.3e+03 0.011 6.2 0.99 ++
8 8.3e+03 0.011 0.45 -0.11 -
9 8.3e+03 0.016 4.5 1 ++
10 8.3e+03 0.017 45 1.1 ++
11 8.3e+03 0.0044 4.5e+02 1.2 ++
12 8.3e+03 0.0024 4.5e+03 1 ++
13 8.3e+03 0.00028 4.5e+04 1 ++
14 8.3e+03 3.1e-07 4.5e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 6/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000010
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train lambda_travel_t b_cost mu_public b_time_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car Function Relgrad Radius Rho
0 -1 -0.4 -0.022 -0.8 1.2 -0.34 1.7 -0.39 -0.32 -0.28 -0.017 -0.41 9.8e+03 0.15 1 0.31 +
1 -0.5 0.6 0.007 -0.67 1.1 -0.83 1.7 -0.85 -0.22 -0.17 -0.048 -0.45 9e+03 0.13 1 0.49 +
2 -0.44 0.17 0.84 -0.78 0.75 -0.51 2.6 -0.81 -0.33 -0.26 -0.44 -0.63 8.9e+03 0.1 1 0.25 +
3 -0.44 0.17 0.84 -0.78 0.75 -0.51 2.6 -0.81 -0.33 -0.26 -0.44 -0.63 8.9e+03 0.1 0.5 -1.2 -
4 -0.25 0.37 0.34 -0.98 0.62 -0.56 2.7 -0.91 -0.22 -0.11 -0.46 -0.81 8.7e+03 0.033 0.5 0.84 +
5 -0.28 0.3 0.33 -1 0.58 -0.62 2.2 -0.94 -0.22 -0.19 -0.47 -0.76 8.6e+03 0.023 5 1.1 ++
6 -0.51 0.56 0.45 -1.6 0.63 -0.84 1 -1.5 -0.046 0.0035 -0.51 -1.1 8.6e+03 0.054 5 0.15 +
7 -0.75 0.73 0.67 -2 0.44 -0.77 1.1 -1.6 0.047 -0.1 -0.52 -1.3 8.4e+03 0.013 50 1.1 ++
8 -0.8 0.74 0.67 -2.1 0.46 -0.77 1 -1.6 0.097 -0.087 -0.52 -1.3 8.4e+03 0.0097 5e+02 1 ++
9 -0.84 0.89 0.79 -2.5 0.27 -0.79 1 -1.7 0.13 -0.096 -0.53 -1.4 8.4e+03 0.0024 5e+03 1 ++
10 -0.85 0.9 0.8 -2.5 0.27 -0.79 1 -1.7 0.13 -0.096 -0.53 -1.4 8.4e+03 1.8e-05 5e+04 1 ++
11 -0.85 0.9 0.8 -2.5 0.27 -0.79 1 -1.7 0.13 -0.096 -0.53 -1.4 8.4e+03 1.7e-09 5e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 7/100
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000011
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di b_cost_train mu_existing asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_cost_car b_time_swissmet b_time_swissmet b_cost_swissmet Function Relgrad Radius Rho
0 -0.42 0.29 -0.63 -0.11 -0.5 2 0.082 -0.29 -0.26 -0.23 -0.1 -0.38 0.15 -0.51 9.6e+03 0.36 1 0.61 +
1 -0.42 0.29 -0.63 -0.11 -0.5 2 0.082 -0.29 -0.26 -0.23 -0.1 -0.38 0.15 -0.51 9.6e+03 0.36 0.5 -2.1 -
2 -0.42 0.29 -0.63 -0.11 -0.5 2 0.082 -0.29 -0.26 -0.23 -0.1 -0.38 0.15 -0.51 9.6e+03 0.36 0.25 -0.54 -
3 -0.32 0.33 -0.49 -0.1 -0.45 2 -0.17 -0.32 -0.51 -0.26 -0.35 -0.25 0.17 -0.31 8.8e+03 0.19 0.25 0.7 +
4 -0.33 0.46 -0.6 -0.18 -0.52 2.2 -0.13 -0.38 -0.47 -0.21 -0.32 -0.5 0.2 -0.4 8.3e+03 0.036 2.5 0.91 ++
5 -0.59 0.88 -1.1 0.43 -0.51 2.3 -0.54 -0.15 -0.8 0.65 -0.52 -1.4 1.5 -0.53 8.1e+03 0.0076 25 1.1 ++
6 -0.61 1 -1.3 0.46 -0.69 1.5 -0.52 -0.36 -1 0.74 -0.65 -1.7 1.7 -0.63 8.1e+03 0.023 25 0.42 +
7 -0.63 1 -1.3 0.42 -0.72 1.6 -0.51 -0.43 -1 0.68 -0.62 -1.6 1.6 -0.64 8.1e+03 0.0011 2.5e+02 1 ++
8 -0.62 1 -1.3 0.42 -0.7 1.7 -0.52 -0.39 -1 0.68 -0.62 -1.6 1.6 -0.64 8.1e+03 0.00017 2.5e+03 1 ++
9 -0.62 1 -1.3 0.42 -0.7 1.7 -0.52 -0.39 -1 0.68 -0.62 -1.6 1.6 -0.64 8.1e+03 5.8e-07 2.5e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 8/100
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000012
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time square_tt_coef cube_tt_coef b_cost_train mu_public b_cost_swissmet asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.26 0.5 0 -
1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.26 0.25 -0.26 -
2 -0.25 -0.00017 -0.15 -0.0057 -0.25 0 0 -0.25 1 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 1.5 2.5 1 ++
3 -0.25 -0.00017 -0.15 -0.0057 -0.25 0 0 -0.25 1 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 1.5 1.2 -4.5 -
4 -0.25 -0.00017 -0.15 -0.0057 -0.25 0 0 -0.25 1 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 1.5 0.62 -2.8 -
5 -0.25 -0.00017 -0.15 -0.0057 -0.25 0 0 -0.25 1 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 1.5 0.31 -1.3 -
6 -0.25 -0.00017 -0.15 -0.0057 -0.25 0 0 -0.25 1 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 1.5 0.16 0.093 -
7 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.16 0.56 +
8 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.078 -0.2 -
9 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.039 -0.15 -
10 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.02 -0.15 -
11 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.0098 -0.15 -
12 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.0049 -0.16 -
13 -0.35 0.022 -0.17 -0.0075 -0.41 0.11 -0.0026 -0.35 1.1 0.23 0.024 -0.051 -0.012 -0.0039 0.0043 9.2e+03 8.6 0.0024 -0.025 -
14 -0.35 0.024 -0.17 -0.0051 -0.41 0.11 -0.0002 -0.35 1.1 0.23 0.027 -0.053 -0.014 -0.0063 0.0067 9.1e+03 4.2 0.0024 0.55 +
15 -0.35 0.024 -0.17 -0.0051 -0.41 0.11 -0.0002 -0.35 1.1 0.23 0.027 -0.053 -0.014 -0.0063 0.0067 9.1e+03 4.2 0.0012 -0.74 -
16 -0.35 0.024 -0.17 -0.0051 -0.41 0.11 -0.0002 -0.35 1.1 0.23 0.027 -0.053 -0.014 -0.0063 0.0067 9.1e+03 4.2 0.00061 0.06 -
17 -0.35 0.025 -0.17 -0.0045 -0.41 0.11 -0.00081 -0.35 1.1 0.23 0.027 -0.054 -0.015 -0.0069 0.0073 9.1e+03 1.8 0.00061 0.77 +
18 -0.35 0.025 -0.17 -0.0045 -0.41 0.11 -0.00069 -0.35 1.1 0.22 0.027 -0.054 -0.015 -0.0069 0.0074 9.1e+03 2 0.00061 0.53 +
19 -0.35 0.025 -0.17 -0.0045 -0.41 0.11 -0.00075 -0.35 1.1 0.22 0.027 -0.054 -0.015 -0.0069 0.0074 9.1e+03 0.22 0.0061 0.96 ++
20 -0.35 0.027 -0.17 -0.0044 -0.41 0.12 -0.00075 -0.36 1.1 0.22 0.028 -0.056 -0.016 -0.0071 0.0079 9.1e+03 0.069 0.061 1 ++
21 -0.36 0.05 -0.15 -0.0042 -0.45 0.14 -0.00087 -0.37 1.1 0.16 0.031 -0.074 -0.023 -0.0085 0.012 9e+03 0.22 0.61 1 ++
22 -0.37 0.35 0.088 0.0023 -0.82 0.33 -0.0016 -0.58 1.2 -0.45 -0.04 -0.3 -0.16 -0.027 -0.029 8.6e+03 0.3 0.61 0.83 +
23 -0.37 0.35 0.088 0.0023 -0.82 0.33 -0.0016 -0.58 1.2 -0.45 -0.04 -0.3 -0.16 -0.027 -0.029 8.6e+03 0.3 0.31 -0.81 -
24 -0.47 0.5 0.13 0.01 -0.81 0.022 -0.00037 -0.79 1.2 -0.32 -0.2 -0.39 -0.25 -0.042 -0.16 8.4e+03 1.2 0.31 0.85 +
25 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 3.1 1 ++
26 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 1.5 -1.3e+02 -
27 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.76 -46 -
28 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.38 -6.2 -
29 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.19 -1.3 -
30 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.095 -1.1 -
31 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.048 -1.1 -
32 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.024 -1.3 -
33 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.012 -1.8 -
34 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.006 -2.4 -
35 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.003 -3 -
36 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.0015 -3.3 -
37 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.00075 -3.5 -
38 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.00037 -3.6 -
39 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 0.00019 -1.9 -
40 -0.51 0.66 0.23 0.03 -1 0.027 -0.00045 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.2 9.3e-05 -0.83 -
41 -0.51 0.66 0.23 0.03 -1 0.027 -0.00035 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 5.5 9.3e-05 0.49 +
42 -0.51 0.66 0.23 0.03 -1 0.027 -0.00038 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 0.19 0.00093 0.95 ++
43 -0.51 0.66 0.23 0.03 -1 0.027 -0.00037 -0.87 1.3 -0.63 -0.25 -0.49 -0.21 -0.064 -0.22 8.3e+03 0.016 0.0093 1 ++
44 -0.52 0.66 0.23 0.031 -1.1 0.024 -0.00036 -0.88 1.4 -0.62 -0.25 -0.5 -0.21 -0.065 -0.23 8.3e+03 0.098 0.093 1 ++
45 -0.56 0.69 0.22 0.04 -1.1 -0.069 2e-05 -0.93 1.4 -0.58 -0.29 -0.52 -0.21 -0.072 -0.27 8.3e+03 1.9 0.093 0.69 +
46 -0.56 0.72 0.25 0.051 -1.2 -0.038 -0.00011 -0.94 1.4 -0.66 -0.29 -0.55 -0.18 -0.08 -0.29 8.2e+03 1.4 0.93 0.99 ++
47 -0.56 0.72 0.25 0.051 -1.2 -0.038 -0.00011 -0.94 1.4 -0.66 -0.29 -0.55 -0.18 -0.08 -0.29 8.2e+03 1.4 0.47 -5.2 -
48 -0.56 0.72 0.25 0.051 -1.2 -0.038 -0.00011 -0.94 1.4 -0.66 -0.29 -0.55 -0.18 -0.08 -0.29 8.2e+03 1.4 0.23 -1.9 -
49 -0.6 0.79 0.28 0.087 -1.4 -0.095 0.00017 -1 1.5 -0.68 -0.35 -0.63 -0.14 -0.1 -0.38 8.2e+03 9.8 2.3 0.99 ++
50 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 2.3 0.32 +
51 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 1.2 -8.2 -
52 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.58 -2.4 -
53 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.29 -1.2 -
54 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.15 -0.94 -
55 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.073 -0.92 -
56 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.036 -0.68 -
57 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.018 -0.67 -
58 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.0091 -0.75 -
59 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.0045 -0.64 -
60 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.0023 -0.6 -
61 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.0011 -0.58 -
62 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.00057 -0.57 -
63 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.00028 -0.57 -
64 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00019 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 46 0.00014 -0.16 -
65 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00033 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 17 0.00014 0.25 +
66 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00033 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 17 7.1e-05 -1 -
67 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00026 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 0.76 7.1e-05 0.76 +
68 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00026 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 0.12 0.00071 1 ++
69 -0.56 0.94 0.4 0.36 -2.2 -0.12 0.00027 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 4.4 0.0071 1 ++
70 -0.56 0.94 0.39 0.36 -2.2 -0.11 0.0002 -1.3 1 -0.75 -0.18 -1 -0.058 -0.25 -0.33 8.2e+03 20 0.0071 0.71 +
71 -0.57 0.94 0.39 0.36 -2.2 -0.11 0.00019 -1.3 1 -0.75 -0.17 -1 -0.057 -0.25 -0.32 8.2e+03 0.31 0.071 0.99 ++
72 -0.64 0.95 0.39 0.36 -2.3 -0.11 0.00021 -1.2 1 -0.77 -0.18 -1 -0.089 -0.26 -0.34 8.1e+03 0.41 0.71 0.99 ++
73 -0.93 1.1 0.52 0.42 -2.2 -0.11 0.0002 -1.1 1 -0.77 -0.15 -1.1 -0.075 -0.35 -0.36 8.1e+03 0.19 7.1 1.1 ++
74 -0.97 1.2 0.55 0.56 -2.2 -0.11 0.0002 -1.1 1 -0.77 -0.17 -1 -0.08 -0.45 -0.34 8.1e+03 0.0034 71 1 ++
75 -0.97 1.1 0.55 0.55 -2.2 -0.11 0.0002 -1.1 1 -0.77 -0.17 -1 -0.08 -0.47 -0.34 8.1e+03 8.6e-06 7.1e+02 1 ++
76 -0.97 1.1 0.55 0.55 -2.2 -0.11 0.0002 -1.1 1 -0.77 -0.17 -1 -0.08 -0.47 -0.34 8.1e+03 9.8e-07 7.1e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 9/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000013
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.22 0.5 -0.0059 -
1 9.5e+03 0.17 0.5 0.49 +
2 8.9e+03 0.066 0.5 0.81 +
3 8.3e+03 0.016 5 0.96 ++
4 8.3e+03 0.016 0.89 -1.7 -
5 8.3e+03 0.036 0.89 0.64 +
6 8.2e+03 0.028 0.89 0.43 +
7 8.2e+03 0.004 8.9 1.1 ++
8 8.2e+03 0.0026 89 1.1 ++
9 8.2e+03 0.00024 8.9e+02 1 ++
10 8.2e+03 3.9e-07 8.9e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 10/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000014
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com lambda_travel_t b_cost mu_public asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.78 -0.33 -0.016 -1 -0.11 1.1 -0.24 1.5 -0.074 -0.1 -0.0096 9.5e+03 0.12 1 0.43 +
1 -0.41 0.67 0.014 -1.2 -0.12 0.96 -1.1 1.6 -0.22 -0.33 -0.05 8.9e+03 0.1 1 0.51 +
2 -0.36 0.41 0.65 -1.2 -0.42 0.41 -0.53 2 0.022 -0.15 -0.62 8.6e+03 0.024 1 0.71 +
3 -0.74 0.55 0.39 -1.3 -0.27 0.63 -0.67 1 0.061 -0.13 -0.62 8.6e+03 0.034 1 0.2 +
4 -0.99 0.83 0.8 -1.6 -0.4 0.46 -0.76 1.1 0.16 -0.1 -0.59 8.5e+03 0.0019 10 1 ++
5 -1.1 0.89 0.81 -1.6 -0.39 0.5 -0.78 1 0.21 -0.12 -0.59 8.5e+03 0.0013 1e+02 1 ++
6 -1.1 0.89 0.81 -1.6 -0.39 0.5 -0.77 1 0.22 -0.12 -0.6 8.5e+03 0.0007 1e+03 1 ++
7 -1.2 0.97 0.94 -1.6 -0.38 0.49 -0.77 1 0.2 -0.1 -0.59 8.5e+03 4.7e-05 1e+04 1 ++
8 -1.2 0.97 0.94 -1.6 -0.38 0.49 -0.77 1 0.2 -0.1 -0.59 8.5e+03 2.9e-08 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 11/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000015
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 9.3e+03 0.2 1 0.62 +
1 9.3e+03 0.2 0.5 -1.5 -
2 9.3e+03 0.2 0.25 -0.12 -
3 8.4e+03 0.058 0.25 0.81 +
4 8.3e+03 0.012 2.5 1.1 ++
5 8.2e+03 0.042 2.5 0.51 +
6 8.1e+03 0.0062 25 1.1 ++
7 8.1e+03 0.00067 2.5e+02 1.1 ++
8 8.1e+03 3.1e-05 2.5e+03 1 ++
9 8.1e+03 2.7e-08 2.5e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 12/100
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000016
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train square_tt_coef cube_tt_coef b_cost_train mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car b_cost_car b_time_swissmet b_cost_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.52 -
1 -0.27 -0.14 -0.0056 -0.5 0.0058 0.056 -0.28 1.2 0.007 -0.0066 -0.0018 -0.022 -0.0069 0.2 0.24 1e+04 1.3 0.5 0.23 +
2 -0.27 -0.14 -0.0056 -0.5 0.0058 0.056 -0.28 1.2 0.007 -0.0066 -0.0018 -0.022 -0.0069 0.2 0.24 1e+04 1.3 0.25 0.23 -
3 -0.27 -0.14 -0.0056 -0.5 0.0058 0.056 -0.28 1.2 0.007 -0.0066 -0.0018 -0.022 -0.0069 0.2 0.24 1e+04 1.3 0.12 0.23 -
4 -0.27 -0.14 -0.0056 -0.5 0.0058 0.056 -0.28 1.2 0.007 -0.0066 -0.0018 -0.022 -0.0069 0.2 0.24 1e+04 1.3 0.062 -16 -
5 -0.26 -0.13 -0.0053 -0.48 -0.009 -0.0066 -0.27 1.2 0.0063 -0.0085 -0.0021 0.041 -0.0078 0.16 0.23 9.7e+03 6.2 0.062 0.58 +
6 -0.26 -0.13 -0.0053 -0.48 -0.009 -0.0066 -0.27 1.2 0.0063 -0.0085 -0.0021 0.041 -0.0078 0.16 0.23 9.7e+03 6.2 0.031 -0.048 -
7 -0.26 -0.13 -0.0053 -0.48 -0.009 -0.0066 -0.27 1.2 0.0063 -0.0085 -0.0021 0.041 -0.0078 0.16 0.23 9.7e+03 6.2 0.016 0.08 -
8 -0.26 -0.13 -0.0051 -0.47 -0.0025 0.0091 -0.27 1.2 0.0023 -0.012 -0.0024 0.025 -0.013 0.16 0.22 9.5e+03 1.2 0.016 0.23 +
9 -0.26 -0.13 -0.0051 -0.47 -0.0025 0.0091 -0.27 1.2 0.0023 -0.012 -0.0024 0.025 -0.013 0.16 0.22 9.5e+03 1.2 0.0078 -0.8 -
10 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.078 0.97 ++
11 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.039 -2.4 -
12 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.02 -2.5 -
13 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.0098 -3 -
14 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.0049 -3.8 -
15 -0.25 -0.12 -0.0017 -0.46 -0.01 0.0013 -0.27 1.2 -0.0055 -0.02 -0.0069 0.017 -0.02 0.15 0.21 9.4e+03 0.67 0.0024 -2.4 -
16 -0.25 -0.12 0.0007 -0.46 -0.013 -0.0012 -0.27 1.2 -0.008 -0.023 -0.0094 0.015 -0.023 0.15 0.21 9.4e+03 1.1 0.0024 0.81 +
17 -0.25 -0.12 0.00075 -0.46 -0.014 -0.00087 -0.27 1.2 -0.0087 -0.024 -0.0095 0.013 -0.024 0.15 0.21 9.4e+03 0.17 0.024 1 ++
18 -0.24 -0.1 0.0013 -0.45 -0.023 -0.00063 -0.27 1.2 -0.016 -0.032 -0.01 -0.0046 -0.033 0.13 0.18 9.3e+03 0.079 0.24 1 ++
19 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.24 0.79 +
20 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.12 0.79 -
21 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.061 -5.5 -
22 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.031 -5.6 -
23 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.015 -6.8 -
24 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.0076 -8.7 -
25 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.0038 -6.2 -
26 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.0019 -3.2 -
27 -0.18 0.025 0.0063 -0.43 -0.063 0.0012 -0.32 1.3 -0.077 -0.11 -0.019 -0.16 -0.12 -0.025 -0.061 9.1e+03 1 0.00095 -0.37 -
28 -0.18 0.024 0.0053 -0.43 -0.062 0.00027 -0.32 1.3 -0.076 -0.11 -0.02 -0.16 -0.12 -0.026 -0.06 9.1e+03 0.54 0.0095 0.95 ++
29 -0.19 0.023 0.0053 -0.44 -0.053 -6.1e-05 -0.33 1.3 -0.074 -0.11 -0.02 -0.16 -0.12 -0.026 -0.06 9.1e+03 1.2 0.095 0.96 ++
30 -0.24 0.01 0.0053 -0.52 0.042 -0.00044 -0.39 1.3 -0.059 -0.11 -0.022 -0.16 -0.11 -0.03 -0.063 8.9e+03 0.46 0.95 0.98 ++
31 -0.24 0.01 0.0053 -0.52 0.042 -0.00044 -0.39 1.3 -0.059 -0.11 -0.022 -0.16 -0.11 -0.03 -0.063 8.9e+03 0.46 0.48 -2.1 -
32 -0.24 0.01 0.0053 -0.52 0.042 -0.00044 -0.39 1.3 -0.059 -0.11 -0.022 -0.16 -0.11 -0.03 -0.063 8.9e+03 0.46 0.24 -0.27 -
33 -0.18 0.15 0.013 -0.5 0.15 -0.00082 -0.48 1.5 -0.13 -0.18 -0.035 -0.4 -0.22 -0.25 -0.25 8.8e+03 3.8 0.24 0.56 +
34 -0.22 0.19 0.021 -0.59 0.39 -0.002 -0.61 1.7 -0.1 -0.16 -0.048 -0.39 -0.22 -0.45 -0.37 8.5e+03 3.1 0.24 0.77 +
35 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.24 0.71 +
36 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.12 0.71 -
37 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.06 0.71 -
38 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.03 0.71 -
39 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.015 0.71 -
40 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.0075 0.71 -
41 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.0037 -1.8 -
42 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.0019 -1.2 -
43 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.00093 -0.58 -
44 -0.29 0.26 0.043 -0.55 0.21 -0.00082 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 8 0.00047 -0.11 -
45 -0.29 0.26 0.044 -0.55 0.21 -0.0013 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 4.9 0.00047 0.38 +
46 -0.29 0.26 0.044 -0.55 0.21 -0.0013 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 4.9 0.00023 -0.64 -
47 -0.29 0.26 0.044 -0.55 0.21 -0.001 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 6.4 0.00023 0.42 +
48 -0.29 0.26 0.044 -0.55 0.21 -0.0011 -0.85 1.9 -0.19 -0.19 -0.083 -0.43 -0.31 -0.51 -0.45 8.4e+03 3 0.00023 0.45 +
49 -0.29 0.26 0.044 -0.55 0.21 -0.0011 -0.85 1.9 -0.19 -0.19 -0.084 -0.43 -0.31 -0.51 -0.45 8.4e+03 2.7 0.00023 0.46 +
50 -0.29 0.26 0.044 -0.55 0.21 -0.0011 -0.85 1.9 -0.19 -0.19 -0.084 -0.43 -0.31 -0.51 -0.45 8.4e+03 0.12 0.0023 1 ++
51 -0.3 0.26 0.044 -0.56 0.21 -0.0011 -0.85 1.9 -0.19 -0.19 -0.084 -0.43 -0.31 -0.51 -0.45 8.4e+03 0.015 0.023 1 ++
52 -0.31 0.26 0.048 -0.58 0.22 -0.0011 -0.86 1.9 -0.19 -0.18 -0.089 -0.45 -0.32 -0.52 -0.45 8.4e+03 0.014 0.23 1 ++
53 -0.37 0.29 0.092 -0.7 0.13 -0.00079 -0.98 2 -0.28 -0.077 -0.15 -0.58 -0.43 -0.75 -0.58 8.3e+03 0.39 2.3 1.1 ++
54 -0.37 0.29 0.092 -0.7 0.13 -0.00079 -0.98 2 -0.28 -0.077 -0.15 -0.58 -0.43 -0.75 -0.58 8.3e+03 0.39 1.2 -1.8e+02 -
55 -0.37 0.29 0.092 -0.7 0.13 -0.00079 -0.98 2 -0.28 -0.077 -0.15 -0.58 -0.43 -0.75 -0.58 8.3e+03 0.39 0.58 -47 -
56 -0.37 0.29 0.092 -0.7 0.13 -0.00079 -0.98 2 -0.28 -0.077 -0.15 -0.58 -0.43 -0.75 -0.58 8.3e+03 0.39 0.29 -7.4 -
57 -0.37 0.29 0.092 -0.7 0.13 -0.00079 -0.98 2 -0.28 -0.077 -0.15 -0.58 -0.43 -0.75 -0.58 8.3e+03 0.39 0.15 -0.2 -
58 -0.39 0.34 0.11 -0.83 -0.012 -0.0002 -0.99 2 -0.35 -0.094 -0.18 -0.62 -0.47 -0.82 -0.52 8.3e+03 0.24 0.15 0.7 +
59 -0.38 0.36 0.14 -0.92 0.03 -0.00037 -0.96 2.1 -0.36 -0.051 -0.21 -0.72 -0.48 -0.97 -0.56 8.3e+03 0.2 1.5 0.95 ++
60 -0.38 0.36 0.14 -0.92 0.03 -0.00037 -0.96 2.1 -0.36 -0.051 -0.21 -0.72 -0.48 -0.97 -0.56 8.3e+03 0.2 0.73 -93 -
61 -0.38 0.36 0.14 -0.92 0.03 -0.00037 -0.96 2.1 -0.36 -0.051 -0.21 -0.72 -0.48 -0.97 -0.56 8.3e+03 0.2 0.36 -14 -
62 -0.38 0.36 0.14 -0.92 0.03 -0.00037 -0.96 2.1 -0.36 -0.051 -0.21 -0.72 -0.48 -0.97 -0.56 8.3e+03 0.2 0.18 -1.6 -
63 -0.4 0.39 0.16 -1.1 -0.077 0.00011 -0.97 2.1 -0.39 -0.044 -0.24 -0.82 -0.49 -1.1 -0.53 8.3e+03 14 0.18 0.6 +
64 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.18 0.12 +
65 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.091 -1.3 -
66 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.045 -1.2 -
67 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.023 -0.71 -
68 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.011 -0.35 -
69 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.0057 -0.22 -
70 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.0028 -0.16 -
71 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.0014 -0.13 -
72 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.00071 -0.12 -
73 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.00036 -0.11 -
74 -0.37 0.41 0.19 -1.2 -0.042 -0.00025 -0.93 2.1 -0.39 -0.011 -0.27 -0.99 -0.48 -1.3 -0.58 8.3e+03 21 0.00018 -0.11 -
75 -0.37 0.41 0.19 -1.2 -0.042 -7e-05 -0.93 2.1 -0.39 -0.012 -0.27 -0.99 -0.48 -1.3 -0.58 8.2e+03 1.9 0.0018 0.91 ++
76 -0.37 0.41 0.19 -1.2 -0.044 -6.5e-05 -0.93 2.1 -0.39 -0.012 -0.27 -0.99 -0.48 -1.3 -0.58 8.2e+03 0.062 0.018 1 ++
77 -0.37 0.41 0.19 -1.2 -0.062 7.7e-06 -0.93 2.1 -0.39 -0.012 -0.27 -0.99 -0.48 -1.3 -0.58 8.2e+03 0.29 0.18 0.95 ++
78 -0.34 0.44 0.21 -1.4 -0.096 0.00015 -0.94 2.2 -0.42 -0.037 -0.29 -1 -0.47 -1.5 -0.52 8.2e+03 5.7 1.8 0.93 ++
79 -0.14 0.45 0.21 -2 -0.11 0.00021 -0.98 2 -0.41 -0.054 -0.4 -1.4 -0.53 -2 -0.57 8.2e+03 2.5 18 1.1 ++
80 -0.11 0.47 0.24 -2.1 -0.11 0.00021 -1.1 1.9 -0.41 -0.058 -0.45 -1.6 -0.54 -2.1 -0.6 8.2e+03 0.8 1.8e+02 1 ++
81 -0.1 0.47 0.24 -2.2 -0.11 0.00021 -1.1 1.9 -0.41 -0.059 -0.46 -1.6 -0.54 -2.1 -0.61 8.2e+03 0.12 1.8e+03 1 ++
82 -0.1 0.47 0.24 -2.2 -0.11 0.00021 -1.1 1.9 -0.41 -0.059 -0.46 -1.6 -0.54 -2.1 -0.61 8.2e+03 0.00049 1.8e+04 1 ++
83 -0.099 0.47 0.24 -2.2 -0.11 0.00021 -1.1 1.9 -0.41 -0.059 -0.46 -1.6 -0.54 -2.1 -0.61 8.2e+03 0.0019 1.8e+05 1 ++
84 -0.099 0.47 0.24 -2.2 -0.11 0.00021 -1.1 1.9 -0.41 -0.059 -0.46 -1.6 -0.54 -2.1 -0.61 8.2e+03 5.8e-05 1.8e+06 1 ++
85 -0.099 0.47 0.24 -2.2 -0.11 0.00021 -1.1 1.9 -0.41 -0.059 -0.46 -1.6 -0.54 -2.1 -0.61 8.2e+03 3.2e-06 1.8e+06 1 ++
Considering neighbor 0/20 for current solution
Attempt 13/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000017
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di square_tt_coef cube_tt_coef b_cost mu_existing asc_car b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 0 0 0 1.1e+04 0.4 0.5 -0.39 -
1 -0.27 -0.5 -0.28 0.0028 0.027 -0.039 1.2 0.0073 -0.021 -0.0088 0.2 0.1 9.7e+03 1.5 0.5 0.46 +
2 -0.27 -0.5 -0.28 0.0028 0.027 -0.039 1.2 0.0073 -0.021 -0.0088 0.2 0.1 9.7e+03 1.5 0.25 0.46 -
3 -0.27 -0.5 -0.28 0.0028 0.027 -0.039 1.2 0.0073 -0.021 -0.0088 0.2 0.1 9.7e+03 1.5 0.12 0.46 -
4 -0.27 -0.5 -0.28 0.0028 0.027 -0.039 1.2 0.0073 -0.021 -0.0088 0.2 0.1 9.7e+03 1.5 0.062 0.46 -
5 -0.27 -0.5 -0.28 0.0028 0.027 -0.039 1.2 0.0073 -0.021 -0.0088 0.2 0.1 9.7e+03 1.5 0.031 -6.7 -
6 -0.26 -0.49 -0.27 -0.017 -0.0047 -0.054 1.2 -0.0017 0.01 -0.022 0.17 0.08 9.6e+03 7.8 0.031 0.3 +
7 -0.26 -0.49 -0.27 -0.017 -0.0047 -0.054 1.2 -0.0017 0.01 -0.022 0.17 0.08 9.6e+03 7.8 0.016 -0.0063 -
8 -0.26 -0.48 -0.27 -0.0019 0.011 -0.063 1.2 -0.0084 -0.0053 -0.028 0.17 0.08 9.4e+03 0.99 0.016 0.17 +
9 -0.26 -0.48 -0.27 -0.0019 0.011 -0.063 1.2 -0.0084 -0.0053 -0.028 0.17 0.08 9.4e+03 0.99 0.0078 -0.67 -
10 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.078 0.99 ++
11 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.039 -10 -
12 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.02 -10 -
13 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.0098 -11 -
14 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.0049 -5 -
15 -0.26 -0.47 -0.26 -0.0097 0.0031 -0.071 1.2 -0.016 -0.013 -0.036 0.16 0.072 9.3e+03 0.78 0.0024 -0.014 -
16 -0.25 -0.47 -0.26 -0.012 0.00066 -0.073 1.2 -0.019 -0.016 -0.038 0.16 0.07 9.2e+03 0.51 0.024 0.96 ++
17 -0.25 -0.47 -0.26 -0.012 0.00066 -0.073 1.2 -0.019 -0.016 -0.038 0.16 0.07 9.2e+03 0.51 0.012 -1.5 -
18 -0.25 -0.47 -0.26 -0.012 0.00066 -0.073 1.2 -0.019 -0.016 -0.038 0.16 0.07 9.2e+03 0.51 0.0061 -2.2 -
19 -0.25 -0.47 -0.26 -0.012 0.00066 -0.073 1.2 -0.019 -0.016 -0.038 0.16 0.07 9.2e+03 0.51 0.0031 -3.4 -
20 -0.25 -0.47 -0.26 -0.012 0.00066 -0.073 1.2 -0.019 -0.016 -0.038 0.16 0.07 9.2e+03 0.51 0.0015 -4.7 -
21 -0.25 -0.47 -0.26 -0.013 -0.00087 -0.075 1.2 -0.02 -0.017 -0.04 0.16 0.068 9.2e+03 1.2 0.0015 0.74 +
22 -0.25 -0.47 -0.26 -0.013 -0.00069 -0.076 1.2 -0.021 -0.019 -0.041 0.16 0.068 9.2e+03 0.26 0.015 1 ++
23 -0.25 -0.48 -0.27 -0.011 -0.00057 -0.089 1.2 -0.029 -0.034 -0.049 0.16 0.066 9.2e+03 0.1 0.15 1 ++
24 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.15 0.88 +
25 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.076 -8 -
26 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.038 -8.1 -
27 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.019 -8.5 -
28 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.0095 -8.9 -
29 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.0048 -6.8 -
30 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.0024 -3.6 -
31 -0.25 -0.5 -0.28 0.013 0.00038 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.034 9e+03 2.2 0.0012 -1.3 -
32 -0.25 -0.5 -0.28 0.012 -0.00081 -0.24 1.3 -0.1 -0.19 -0.13 0.12 0.032 9e+03 3 0.0012 0.24 +
33 -0.25 -0.5 -0.28 0.012 -7.3e-05 -0.24 1.3 -0.1 -0.18 -0.13 0.12 0.032 9e+03 1.8 0.0012 0.68 +
34 -0.25 -0.5 -0.28 0.012 -7.3e-05 -0.24 1.3 -0.1 -0.18 -0.13 0.12 0.032 9e+03 1.8 0.0006 -0.17 -
35 -0.25 -0.5 -0.28 0.012 -7.3e-05 -0.24 1.3 -0.1 -0.18 -0.13 0.12 0.032 9e+03 1.8 0.0003 -0.15 -
36 -0.25 -0.5 -0.28 0.011 -0.00037 -0.24 1.3 -0.1 -0.18 -0.13 0.12 0.031 9e+03 0.68 0.0003 0.66 +
37 -0.25 -0.5 -0.28 0.011 -0.00031 -0.24 1.3 -0.1 -0.18 -0.13 0.12 0.031 9e+03 0.068 0.003 0.99 ++
38 -0.25 -0.5 -0.28 0.011 -0.00033 -0.25 1.3 -0.099 -0.18 -0.12 0.11 0.029 9e+03 0.26 0.03 1 ++
39 -0.25 -0.51 -0.28 0.011 -0.00028 -0.27 1.3 -0.087 -0.17 -0.11 0.085 0.01 8.9e+03 0.052 0.3 1 ++
40 -0.25 -0.58 -0.31 0.12 -0.0006 -0.54 1.4 -0.06 -0.19 -0.12 -0.21 -0.18 8.7e+03 1.8 0.3 0.7 +
41 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.3 0.23 +
42 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.15 -3.8 -
43 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.075 -4.4 -
44 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.037 -3.4 -
45 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.019 -2.4 -
46 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.0093 -1.9 -
47 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.0047 -1.7 -
48 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.0023 -1.5 -
49 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.0012 -1.1 -
50 -0.21 -0.54 -0.27 0.42 -0.0025 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 3 0.00058 -0.52 -
51 -0.21 -0.54 -0.27 0.42 -0.0019 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 5.4 0.00058 0.66 +
52 -0.21 -0.54 -0.27 0.42 -0.002 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 1.8 0.00058 0.72 +
53 -0.21 -0.54 -0.27 0.42 -0.0019 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 1.3 0.00058 0.89 +
54 -0.21 -0.54 -0.27 0.42 -0.002 -0.62 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 0.16 0.0058 1 ++
55 -0.21 -0.54 -0.27 0.41 -0.002 -0.63 1.6 -0.16 -0.38 -0.29 -0.37 -0.25 8.6e+03 0.67 0.058 1 ++
56 -0.21 -0.53 -0.27 0.39 -0.0018 -0.63 1.6 -0.14 -0.32 -0.25 -0.4 -0.27 8.5e+03 0.08 0.58 1 ++
57 -0.21 -0.53 -0.27 0.39 -0.0018 -0.63 1.6 -0.14 -0.32 -0.25 -0.4 -0.27 8.5e+03 0.08 0.29 -1.7 -
58 -0.29 -0.6 -0.33 0.095 -0.00055 -0.77 1.8 -0.37 -0.26 -0.37 -0.41 -0.36 8.4e+03 3.6 0.29 0.63 +
59 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.29 0.9 +
60 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.15 -3.2 -
61 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.073 -2.7 -
62 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.036 -2.5 -
63 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.018 -2.9 -
64 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.0091 -2.9 -
65 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.0045 -3.1 -
66 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.0023 -3.2 -
67 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.0011 -3.3 -
68 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.00057 -3.3 -
69 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.00028 -1.5 -
70 -0.29 -0.72 -0.48 0.08 -0.00074 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 4.1 0.00014 -0.16 -
71 -0.29 -0.72 -0.48 0.08 -0.0006 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 1.6 0.00014 0.88 +
72 -0.29 -0.72 -0.48 0.08 -0.00057 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 0.61 0.00014 0.79 +
73 -0.29 -0.72 -0.48 0.08 -0.00058 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 0.031 0.0014 1 ++
74 -0.29 -0.73 -0.48 0.078 -0.00057 -0.64 2 -0.43 -0.4 -0.44 -0.7 -0.53 8.4e+03 0.016 0.014 1 ++
75 -0.29 -0.73 -0.47 0.064 -0.00051 -0.65 2 -0.43 -0.4 -0.45 -0.7 -0.53 8.4e+03 0.016 0.14 1 ++
76 -0.27 -0.88 -0.49 -0.034 -0.0001 -0.7 2.1 -0.45 -0.42 -0.56 -0.81 -0.56 8.3e+03 0.84 0.14 0.76 +
77 -0.2 -1 -0.61 -0.046 -4.9e-05 -0.63 2.2 -0.51 -0.52 -0.58 -0.95 -0.62 8.3e+03 0.5 1.4 1.1 ++
78 -0.2 -1 -0.61 -0.046 -4.9e-05 -0.63 2.2 -0.51 -0.52 -0.58 -0.95 -0.62 8.3e+03 0.5 0.64 -33 -
79 -0.2 -1 -0.61 -0.046 -4.9e-05 -0.63 2.2 -0.51 -0.52 -0.58 -0.95 -0.62 8.3e+03 0.5 0.32 -8 -
80 -0.12 -1.3 -0.65 -0.1 0.00019 -0.75 2.5 -0.52 -0.71 -0.73 -1.3 -0.74 8.3e+03 5.8 0.32 0.74 +
81 0.02 -1.7 -0.62 -0.1 0.0002 -0.66 2.4 -0.5 -0.94 -0.67 -1.6 -0.64 8.3e+03 2.5 3.2 1.1 ++
82 0.075 -1.8 -0.6 -0.11 0.00021 -0.68 2.2 -0.52 -1 -0.64 -1.7 -0.57 8.3e+03 0.87 32 1 ++
83 0.082 -1.8 -0.57 -0.11 0.00021 -0.68 2.2 -0.51 -1 -0.61 -1.7 -0.53 8.3e+03 0.034 3.2e+02 1 ++
84 0.077 -1.8 -0.57 -0.11 0.00021 -0.68 2.2 -0.52 -1 -0.6 -1.7 -0.52 8.3e+03 0.0039 3.2e+03 1 ++
85 0.08 -1.8 -0.56 -0.11 0.00021 -0.68 2.2 -0.51 -1 -0.6 -1.7 -0.51 8.3e+03 3.5e-05 3.2e+04 1 ++
86 0.079 -1.8 -0.56 -0.11 0.00021 -0.68 2.2 -0.52 -1 -0.6 -1.7 -0.51 8.3e+03 1.3e-05 3.2e+05 1 ++
87 0.079 -1.8 -0.56 -0.11 0.00021 -0.68 2.2 -0.52 -1 -0.6 -1.7 -0.51 8.3e+03 3.9e-06 3.2e+05 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000018
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_train square_tt_coef cube_tt_coef b_cost mu_public b_time_swissmet asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_time_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.23 -
1 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.5 0.68 +
2 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.25 0.68 -
3 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.12 0.68 -
4 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.062 -14 -
5 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.031 -12 -
6 -0.27 -2.8e-05 -0.14 -0.0056 -0.5 0.0019 0.019 -0.039 1 0.2 0.0073 -0.022 -0.0063 -0.0018 -0.021 9.6e+03 0.82 0.016 -2.8 -
7 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.16 0.96 ++
8 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.078 -9.9 -
9 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.039 -8 -
10 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.02 -6.7 -
11 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.0098 -7.4 -
12 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.0049 -12 -
13 -0.27 0.012 -0.13 -0.0053 -0.5 -0.0029 0.0029 -0.054 1 0.19 -0.0084 -0.031 -0.019 -0.0026 -0.0053 9.4e+03 0.39 0.0024 -0.009 -
14 -0.27 0.015 -0.13 -0.0047 -0.5 -0.00043 0.00046 -0.057 1 0.19 -0.011 -0.033 -0.022 -0.0051 -0.0078 9.4e+03 0.2 0.024 0.96 ++
15 -0.28 0.022 -0.13 -0.0046 -0.51 0.0087 -0.002 -0.071 1 0.19 -0.022 -0.039 -0.031 -0.0056 -0.032 9.4e+03 4.2 0.024 0.38 +
16 -0.28 0.031 -0.12 -0.0044 -0.53 0.014 -0.00023 -0.087 1 0.19 -0.032 -0.044 -0.038 -0.0062 -0.057 9.3e+03 0.2 0.024 0.89 +
17 -0.29 0.043 -0.12 -0.0042 -0.54 0.025 -0.00065 -0.11 1 0.19 -0.042 -0.052 -0.047 -0.0069 -0.081 9.3e+03 0.37 0.24 0.99 ++
18 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.24 0.71 +
19 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.12 0.71 -
20 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.061 0.71 -
21 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.031 -11 -
22 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.015 -5.3 -
23 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.0076 -3.6 -
24 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.0038 -2.3 -
25 -0.33 0.18 -0.044 -0.00094 -0.66 0.13 0.0002 -0.35 1.1 0.079 -0.12 -0.13 -0.12 -0.015 -0.3 9.1e+03 2.9 0.0019 -0.9 -
26 -0.32 0.18 -0.042 0.00096 -0.66 0.13 -0.0017 -0.36 1.1 0.077 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 3.8 0.0019 0.24 +
27 -0.32 0.18 -0.041 0.00099 -0.66 0.13 -0.0005 -0.36 1.1 0.075 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 2.8 0.0019 0.69 +
28 -0.32 0.18 -0.041 0.00099 -0.66 0.13 -0.0005 -0.36 1.1 0.075 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 2.8 0.00095 -0.8 -
29 -0.32 0.18 -0.041 0.00099 -0.66 0.13 -0.0005 -0.36 1.1 0.075 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 2.8 0.00048 -0.068 -
30 -0.32 0.18 -0.041 0.0015 -0.66 0.13 -0.00098 -0.36 1.1 0.074 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 1.8 0.00048 0.49 +
31 -0.32 0.18 -0.041 0.0015 -0.66 0.13 -0.00098 -0.36 1.1 0.074 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 1.8 0.00024 -0.46 -
32 -0.32 0.18 -0.041 0.0017 -0.66 0.13 -0.00074 -0.36 1.1 0.074 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 1.7 0.00024 0.46 +
33 -0.32 0.18 -0.041 0.0017 -0.66 0.13 -0.00086 -0.36 1.1 0.074 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 0.57 0.00024 0.82 +
34 -0.32 0.18 -0.041 0.0017 -0.66 0.13 -0.00082 -0.36 1.1 0.074 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 0.12 0.0024 0.99 ++
35 -0.32 0.18 -0.04 0.0017 -0.66 0.13 -0.00083 -0.36 1.1 0.071 -0.12 -0.14 -0.12 -0.017 -0.3 9e+03 0.24 0.024 1 ++
36 -0.32 0.19 -0.035 0.002 -0.66 0.12 -0.00077 -0.37 1 0.047 -0.11 -0.14 -0.11 -0.018 -0.28 9e+03 0.095 0.24 1 ++
37 -0.33 0.29 0.025 0.0061 -0.69 0.17 -0.00093 -0.48 1.1 -0.19 -0.071 -0.18 -0.1 -0.022 -0.26 8.7e+03 0.75 0.24 0.88 +
38 -0.35 0.47 0.12 0.014 -0.71 0.33 -0.0017 -0.6 1.1 -0.43 -0.13 -0.26 -0.14 -0.033 -0.44 8.5e+03 1.8 0.24 0.87 +
39 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.24 0.88 +
40 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.12 -3.5 -
41 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.06 -3.4 -
42 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.03 -3 -
43 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.015 -2.9 -
44 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.0075 -2.9 -
45 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.0037 -3 -
46 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.0019 -1.1 -
47 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.00093 -0.31 -
48 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0013 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 6.2 0.00047 0.034 -
49 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0018 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 1.6 0.00047 0.3 +
50 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0018 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 1.6 0.00023 -0.76 -
51 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0015 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 0.21 0.00023 0.84 +
52 -0.54 0.71 0.16 0.029 -0.81 0.31 -0.0016 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 0.054 0.0023 1 ++
53 -0.54 0.71 0.16 0.029 -0.81 0.3 -0.0015 -0.71 1.2 -0.59 -0.2 -0.38 -0.17 -0.052 -0.49 8.5e+03 0.3 0.023 1 ++
54 -0.53 0.71 0.17 0.03 -0.79 0.28 -0.0014 -0.71 1.2 -0.6 -0.2 -0.38 -0.17 -0.053 -0.49 8.4e+03 0.027 0.23 1 ++
55 -0.74 0.91 0.17 0.053 -0.83 0.049 -0.00048 -0.7 1.3 -0.66 -0.32 -0.48 -0.18 -0.077 -0.61 8.4e+03 0.039 2.3 0.9 ++
56 -1 1.1 0.37 0.5 -1.2 -0.08 8e-05 -0.7 1.4 -1.3 -0.31 -1.1 -0.053 -0.32 -1.1 8.2e+03 1.6 23 1.1 ++
57 -1.1 1.3 0.46 0.52 -1.9 -0.081 8.4e-05 -0.73 1.1 -2 -0.37 -1.1 -0.071 -0.39 -1.5 8.2e+03 0.51 2.3e+02 1.2 ++
58 -1.1 1.4 0.58 0.52 -2.2 -0.1 0.00017 -0.7 1 -2.1 -0.38 -1.1 -0.071 -0.4 -1.6 8.1e+03 0.058 2.3e+03 1.2 ++
59 -1.1 1.4 0.58 0.52 -2.2 -0.096 0.00015 -0.7 1 -2.1 -0.38 -1.1 -0.071 -0.4 -1.6 8.1e+03 0.25 2.3e+04 1 ++
60 -1 1.4 0.55 0.6 -2.5 -0.11 0.00022 -0.74 1 -2.4 -0.39 -0.99 -0.077 -0.43 -1.8 8.1e+03 3 2.3e+05 0.92 ++
61 -0.99 1.4 0.54 0.58 -2.5 -0.11 0.00021 -0.74 1 -2.4 -0.39 -0.98 -0.079 -0.43 -1.8 8.1e+03 0.068 2.3e+06 1 ++
62 -1 1.4 0.54 0.58 -2.5 -0.11 0.00021 -0.74 1 -2.4 -0.39 -0.98 -0.08 -0.44 -1.8 8.1e+03 0.001 2.3e+07 1 ++
63 -1 1.4 0.54 0.58 -2.5 -0.11 0.00021 -0.74 1 -2.4 -0.39 -0.98 -0.08 -0.44 -1.8 8.1e+03 3.3e-06 2.3e+07 1 ++
Considering neighbor 1/20 for current solution
Attempt 14/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000019
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di square_tt_coef cube_tt_coef b_cost b_time_swissmet b_time_swissmet asc_car b_time_car_ref b_time_car_diff Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.19 -
1 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.5 0.77 +
2 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.25 -8.3 -
3 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.12 -10 -
4 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.062 -13 -
5 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.031 -76 -
6 -0.27 -0.5 -0.071 0.0013 0.013 -0.039 0.2 0.046 0.0074 -0.021 -0.021 9.5e+03 0.9 0.016 -5.8 -
7 -0.29 -0.52 -0.083 0.0097 -0.0024 -0.054 0.19 0.062 -0.0082 -0.0085 -0.0059 9.4e+03 5.2 0.016 0.53 +
8 -0.29 -0.52 -0.085 0.013 6.9e-06 -0.062 0.19 0.065 -0.015 -0.024 -0.012 9.4e+03 0.27 0.016 0.8 +
9 -0.29 -0.53 -0.087 0.019 -0.0011 -0.072 0.19 0.067 -0.022 -0.04 -0.017 9.3e+03 1 0.016 0.88 +
10 -0.29 -0.54 -0.088 0.026 -0.00076 -0.084 0.19 0.07 -0.029 -0.055 -0.021 9.3e+03 0.49 0.16 1 ++
11 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.16 0.63 +
12 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.078 -8.1 -
13 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.039 -10 -
14 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.02 -6.9 -
15 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.0098 -4.5 -
16 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.0049 -3.1 -
17 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.0024 -1.5 -
18 -0.32 -0.61 -0.11 0.092 0.00062 -0.21 0.16 0.099 -0.093 -0.21 -0.074 9.2e+03 2.8 0.0012 0.099 -
19 -0.32 -0.61 -0.11 0.091 -0.0006 -0.21 0.16 0.099 -0.092 -0.21 -0.073 9.1e+03 1.6 0.012 0.98 ++
20 -0.32 -0.61 -0.11 0.088 -0.0007 -0.22 0.15 0.1 -0.089 -0.21 -0.074 9.1e+03 0.44 0.12 0.99 ++
21 -0.32 -0.62 -0.12 0.063 -0.00052 -0.3 0.027 0.1 -0.062 -0.17 -0.087 9e+03 0.047 1.2 1 ++
22 -0.32 -0.62 -0.12 0.063 -0.00052 -0.3 0.027 0.1 -0.062 -0.17 -0.087 9e+03 0.047 0.61 -0.39 -
23 -0.33 -0.79 -0.19 0.46 -0.0022 -0.77 -0.58 0.19 -0.18 -0.57 -0.25 8.7e+03 3.4 0.61 0.41 +
24 -0.35 -0.86 -0.17 0.24 -0.0013 -0.75 -0.73 0.8 -0.31 -0.55 -0.018 8.5e+03 0.95 6.1 0.9 ++
25 -0.35 -0.86 -0.17 0.24 -0.0013 -0.75 -0.73 0.8 -0.31 -0.55 -0.018 8.5e+03 0.95 0.76 -3.1e+02 -
26 -0.35 -0.86 -0.17 0.24 -0.0013 -0.75 -0.73 0.8 -0.31 -0.55 -0.018 8.5e+03 0.95 0.38 -17 -
27 -0.35 -0.86 -0.17 0.24 -0.0013 -0.75 -0.73 0.8 -0.31 -0.55 -0.018 8.5e+03 0.95 0.19 -0.27 -
28 -0.36 -0.9 -0.1 0.32 -0.0016 -0.76 -0.91 0.68 -0.35 -0.58 0.076 8.5e+03 0.86 0.19 0.4 +
29 -0.38 -0.95 -0.0073 0.25 -0.0013 -0.79 -0.91 0.87 -0.44 -0.57 0.11 8.5e+03 0.13 0.19 0.84 +
30 -0.45 -1.1 0.13 0.15 -0.00089 -0.8 -1.1 0.99 -0.53 -0.68 0.23 8.5e+03 0.017 1.9 0.97 ++
31 -0.29 -1.5 0.24 0.036 -0.00042 -0.8 -1.5 1.3 -0.49 -0.93 0.36 8.5e+03 0.22 19 1.2 ++
32 -0.11 -1.9 0.26 -0.011 -0.00022 -0.8 -1.7 1.4 -0.47 -1.2 0.38 8.4e+03 0.17 1.9e+02 1.4 ++
33 -0.11 -1.9 0.26 -0.011 -0.00022 -0.8 -1.7 1.4 -0.47 -1.2 0.38 8.4e+03 0.17 0.47 -6.9 -
34 -0.022 -2.3 0.34 -0.084 8.5e-05 -0.79 -2.1 1.3 -0.46 -1.5 0.31 8.4e+03 2.7 0.47 0.81 +
35 0.29 -2.8 0.19 -0.09 0.00013 -0.8 -2.3 1.2 -0.41 -1.7 0.18 8.4e+03 2.1 4.7 1.1 ++
36 0.4 -3 0.029 -0.11 0.00019 -0.8 -2.5 0.88 -0.41 -1.8 -0.023 8.4e+03 5.3 4.7 0.46 +
37 0.36 -2.9 -0.031 -0.099 0.00016 -0.8 -2.4 0.82 -0.4 -1.7 -0.069 8.4e+03 0.98 47 1.1 ++
38 0.35 -2.9 -0.1 -0.1 0.00017 -0.8 -2.4 0.7 -0.41 -1.7 -0.17 8.4e+03 0.072 4.7e+02 1 ++
39 0.36 -2.9 -0.11 -0.1 0.00017 -0.8 -2.4 0.69 -0.41 -1.7 -0.17 8.4e+03 0.0023 4.7e+03 1 ++
40 0.36 -2.9 -0.12 -0.1 0.00017 -0.8 -2.4 0.68 -0.41 -1.7 -0.17 8.4e+03 4.2e-05 4.7e+04 1 ++
41 0.36 -2.9 -0.12 -0.1 0.00017 -0.8 -2.4 0.68 -0.41 -1.7 -0.17 8.4e+03 2.9e-06 4.7e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 15/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000020
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost mu_public asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.78 -0.32 -0.016 -1 -0.58 -0.29 1.8 -0.08 -0.12 -0.011 1e+04 0.17 1 0.23 +
1 -0.78 -0.32 -0.016 -1 -0.58 -0.29 1.8 -0.08 -0.12 -0.011 1e+04 0.17 0.5 -0.055 -
2 -0.28 0.18 0.0029 -0.65 -0.44 -0.56 1.4 -0.075 -0.15 -0.02 8.8e+03 0.085 0.5 0.72 +
3 -0.69 0.45 0.5 -0.74 -0.45 -0.76 1.7 -0.18 -0.12 -0.32 8.5e+03 0.0093 5 0.92 ++
4 -0.69 0.45 0.5 -0.74 -0.45 -0.76 1.7 -0.18 -0.12 -0.32 8.5e+03 0.0093 0.36 0.0025 -
5 -0.74 0.55 0.49 -0.89 -0.62 -0.78 1.4 -0.0016 -0.12 -0.36 8.5e+03 0.0086 3.6 0.94 ++
6 -1.1 0.73 0.68 -0.9 -0.62 -0.84 1.1 0.032 -0.13 -0.62 8.5e+03 0.0071 36 1.1 ++
7 -1.3 0.83 0.79 -0.91 -0.63 -0.85 1.1 0.042 -0.11 -0.62 8.5e+03 0.0017 3.6e+02 1.2 ++
8 -1.4 0.89 0.85 -0.91 -0.65 -0.86 1 0.054 -0.11 -0.63 8.5e+03 0.00079 3.6e+03 1.1 ++
9 -1.4 0.89 0.85 -0.92 -0.64 -0.86 1 0.055 -0.11 -0.63 8.5e+03 7.2e-05 3.6e+04 1 ++
10 -1.4 0.89 0.85 -0.92 -0.64 -0.86 1 0.055 -0.11 -0.63 8.5e+03 3.4e-07 3.6e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 16/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000021
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di b_cost b_time_swissmet b_time_swissmet asc_car b_time_car_ref b_time_car_diff Function Relgrad Radius Rho
0 -0.84 -0.66 -0.49 -0.75 -0.78 -0.64 -0.69 -0.38 -0.63 8.7e+03 0.076 10 1.1 ++
1 -0.43 -1.2 -0.72 -0.85 -1 -0.83 -0.59 -0.58 -0.73 8.5e+03 0.02 1e+02 1.1 ++
2 -0.23 -1.3 -0.84 -0.86 -1.1 -0.87 -0.61 -0.58 -0.77 8.5e+03 0.0027 1e+03 1.1 ++
3 -0.21 -1.3 -0.86 -0.86 -1.1 -0.88 -0.61 -0.58 -0.77 8.5e+03 4.8e-05 1e+04 1 ++
4 -0.21 -1.3 -0.86 -0.86 -1.1 -0.88 -0.61 -0.58 -0.77 8.5e+03 1.6e-08 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 17/100
Biogeme parameters read from biogeme.toml.
Model with 6 unknown parameters [max: 50]
*** Estimate b07everything_000022
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time b_cost asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.96 1 -0.72 -0.64 -0.31 -0.48 8.5e+03 0.043 10 1.1 ++
1 -1.1 1.4 -1.1 -0.69 -0.0034 -1.1 8.3e+03 0.0087 1e+02 1.1 ++
2 -1.1 1.5 -1.2 -0.7 0.014 -1.3 8.3e+03 0.0003 1e+03 1 ++
3 -1.1 1.5 -1.2 -0.7 0.014 -1.3 8.3e+03 5.2e-07 1e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 18/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000023
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_com b_cost_train mu_existing asc_car_ref asc_car_diff_GA b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.53 0.33 -1 -0.015 -0.56 2 0.14 -0.33 -0.025 -0.64 9e+03 0.18 1 0.73 +
1 -0.53 0.33 -1 -0.015 -0.56 2 0.14 -0.33 -0.025 -0.64 9e+03 0.18 0.5 -0.094 -
2 -0.16 0.74 -0.72 0.07 -0.62 2.5 -0.3 -0.48 -0.25 -0.43 8.5e+03 0.12 0.5 0.52 +
3 -0.52 0.48 -0.75 0.23 -0.45 2.8 -0.31 0.018 -0.2 -0.48 8.3e+03 0.024 0.5 0.71 +
4 -0.59 0.88 -0.92 0.22 -0.42 2.3 -0.3 -0.076 -0.19 -0.5 8.3e+03 0.007 5 1.2 ++
5 -0.59 0.88 -0.92 0.22 -0.42 2.3 -0.3 -0.076 -0.19 -0.5 8.3e+03 0.007 0.61 -1 -
6 -0.6 0.85 -1 0.085 -0.69 1.7 -0.36 -0.26 -0.26 -0.64 8.3e+03 0.0078 6.1 1 ++
7 -0.61 0.98 -1.1 0.017 -0.74 1.6 -0.3 -0.47 -0.29 -0.65 8.2e+03 0.0014 61 1.1 ++
8 -0.63 1 -1.1 -0.0072 -0.77 1.5 -0.29 -0.56 -0.3 -0.67 8.2e+03 0.00032 6.1e+02 1 ++
9 -0.63 1 -1.1 -0.0072 -0.77 1.5 -0.29 -0.56 -0.3 -0.67 8.2e+03 1.2e-06 6.1e+02 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000024
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di lambda_travel_t b_cost_train b_time_swissmet b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_cost_car Function Relgrad Radius Rho
0 -1 0.3 -0.72 -0.12 1.6 -0.55 -0.99 -0.17 -0.6 -0.33 -0.45 -0.76 -0.098 -0.58 8.8e+03 0.039 10 0.9 ++
1 -1 0.3 -0.72 -0.12 1.6 -0.55 -0.99 -0.17 -0.6 -0.33 -0.45 -0.76 -0.098 -0.58 8.8e+03 0.039 5 -4.1e+04 -
2 -1 0.3 -0.72 -0.12 1.6 -0.55 -0.99 -0.17 -0.6 -0.33 -0.45 -0.76 -0.098 -0.58 8.8e+03 0.039 2.5 -21 -
3 -1 0.3 -0.72 -0.12 1.6 -0.55 -0.99 -0.17 -0.6 -0.33 -0.45 -0.76 -0.098 -0.58 8.8e+03 0.039 1.2 -1.5 -
4 -0.82 1.5 -0.95 -0.29 0.98 -1.2 -1.4 0.0057 -0.8 -0.29 -0.88 -1.2 -0.093 -0.47 8.3e+03 0.017 12 0.96 ++
5 -0.82 1.5 -0.95 -0.29 0.98 -1.2 -1.4 0.0057 -0.8 -0.29 -0.88 -1.2 -0.093 -0.47 8.3e+03 0.017 1.4 -2.2 -
6 -0.82 1.5 -0.95 -0.29 0.98 -1.2 -1.4 0.0057 -0.8 -0.29 -0.88 -1.2 -0.093 -0.47 8.3e+03 0.017 0.68 -0.11 -
7 -0.63 1.4 -1.6 -0.5 0.49 -0.93 -1.6 -0.3 -0.71 -0.032 -0.93 -1.4 -0.099 -0.57 8.2e+03 0.012 6.8 1.2 ++
8 -0.37 1.3 -2.2 -0.83 0.12 -1 -1.7 -0.86 -0.72 0.16 -1 -1.6 -0.3 -0.72 8.2e+03 0.0057 68 0.97 ++
9 -0.37 1.3 -2.3 -0.9 0.13 -1.1 -1.6 -0.73 -0.72 0.17 -1 -1.5 -0.29 -0.75 8.2e+03 0.00012 6.8e+02 1 ++
10 -0.37 1.3 -2.3 -0.9 0.13 -1.1 -1.6 -0.73 -0.72 0.17 -1 -1.5 -0.29 -0.75 8.2e+03 7e-08 6.8e+02 1 ++
Considering neighbor 1/20 for current solution
Attempt 19/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000025
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di b_cost_train mu_public b_time_swissmet b_time_swissmet b_cost_swissmet asc_car b_time_car_ref b_time_car_diff b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 1 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.31 -
1 -0.26 -0.42 -0.18 -0.24 1.5 0.18 0.062 0.2 -0.1 -0.25 -0.15 -0.14 9.9e+03 0.23 0.5 0.35 +
2 -0.19 -0.38 -0.18 -0.34 1.6 -0.22 -0.25 -0.3 -0.17 -0.35 -0.077 -0.18 9.1e+03 0.14 0.5 0.62 +
3 -0.16 -0.49 -0.35 -0.84 2 -0.62 -0.36 -0.4 -0.33 -0.58 -0.34 -0.33 8.6e+03 0.035 5 0.98 ++
4 -0.042 -0.63 -0.45 -1.5 2.1 -0.7 -0.67 -0.9 -0.76 -0.57 -0.65 -0.49 8.4e+03 0.0053 50 1.1 ++
5 -0.042 -0.63 -0.45 -1.5 2.1 -0.7 -0.67 -0.9 -0.76 -0.57 -0.65 -0.49 8.4e+03 0.0053 0.54 -4.4 -
6 -0.015 -0.8 -0.51 -1.7 1.5 -0.85 -0.74 -1 -0.81 -0.59 -0.79 -0.59 8.4e+03 0.022 0.54 0.72 +
7 -0.046 -0.88 -0.56 -1.7 1.4 -0.92 -0.81 -0.95 -0.77 -0.65 -0.76 -0.6 8.4e+03 0.0049 5.4 1.2 ++
8 -0.046 -0.88 -0.56 -1.7 1.4 -0.92 -0.81 -0.95 -0.77 -0.65 -0.76 -0.6 8.4e+03 0.0049 0.18 0.068 -
9 -0.079 -0.92 -0.58 -1.7 1.2 -0.93 -0.82 -0.92 -0.76 -0.64 -0.75 -0.59 8.4e+03 0.0054 1.8 1.1 ++
10 -0.066 -1.1 -0.63 -1.8 1.1 -1 -0.86 -0.91 -0.72 -0.68 -0.78 -0.63 8.4e+03 0.0054 18 1.2 ++
11 -0.07 -1.1 -0.64 -1.9 1 -1 -0.87 -0.89 -0.69 -0.68 -0.79 -0.62 8.4e+03 0.0018 1.8e+02 1.3 ++
12 -0.072 -1.1 -0.65 -1.9 1 -1 -0.87 -0.89 -0.69 -0.68 -0.79 -0.62 8.4e+03 0.00039 1.8e+03 1 ++
13 -0.072 -1.1 -0.65 -1.9 1 -1 -0.87 -0.89 -0.69 -0.68 -0.79 -0.62 8.4e+03 2.8e-06 1.8e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 20/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000026
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train lambda_travel_t b_cost mu_public b_time_swissmet asc_car_ref asc_car_diff_GA b_time_car Function Relgrad Radius Rho
0 -1 0.064 -0.79 1.1 -0.26 1.5 -0.34 -0.2 -0.14 -0.31 9.1e+03 0.077 1 0.62 +
1 -0.72 1.1 -0.84 1.2 -0.91 1.5 -0.96 -0.4 -0.47 -0.6 8.4e+03 0.013 10 0.94 ++
2 -0.48 1.3 -1.8 0.13 -0.76 1.1 -1.9 0.061 -0.95 -1.3 8.3e+03 0.039 10 0.56 +
3 -0.41 1.3 -2.1 0.26 -0.73 1.2 -1.6 0.054 -1.1 -1.5 8.2e+03 0.0041 10 0.88 +
4 -0.61 1.4 -2.2 0.29 -0.71 1 -1.7 0.1 -1.1 -1.5 8.2e+03 0.0055 1e+02 0.91 ++
5 -0.66 1.5 -2.2 0.25 -0.76 1 -1.7 0.1 -1.1 -1.4 8.2e+03 0.0028 1e+03 1 ++
6 -0.66 1.5 -2.3 0.22 -0.74 1 -1.7 0.12 -1 -1.5 8.2e+03 0.00011 1e+04 1 ++
7 -0.66 1.5 -2.3 0.22 -0.74 1 -1.7 0.12 -1 -1.5 8.2e+03 1.3e-07 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 21/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000027
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time square_tt_coef cube_tt_coef b_cost_train mu_existing asc_car b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.5 -2.6 -
1 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.25 -0.11 -
2 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 2 2.5 1 ++
3 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 2 1.2 1 -
4 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 2 0.62 1 -
5 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 2 0.31 -2.2 -
6 -0.25 -0.25 0 0 -0.25 1.2 0.25 -0.024 0.25 9.3e+03 2 0.16 -0.21 -
7 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.16 0.32 +
8 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.078 -0.5 -
9 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.039 -0.4 -
10 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.02 -0.35 -
11 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.0098 -0.32 -
12 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.0049 -0.31 -
13 -0.32 -0.41 0.11 -0.0029 -0.33 1.3 0.22 -0.051 0.25 9.2e+03 11 0.0024 0.093 -
14 -0.32 -0.41 0.11 -0.00046 -0.33 1.3 0.22 -0.048 0.25 9e+03 5.3 0.0024 0.69 +
15 -0.32 -0.41 0.11 -0.00046 -0.33 1.3 0.22 -0.048 0.25 9e+03 5.3 0.0012 -1.2 -
16 -0.32 -0.41 0.11 -0.00046 -0.33 1.3 0.22 -0.048 0.25 9e+03 5.3 0.00061 -0.57 -
17 -0.32 -0.41 0.11 -0.00046 -0.33 1.3 0.22 -0.048 0.25 9e+03 5.3 0.00031 -0.014 -
18 -0.32 -0.41 0.11 -0.00076 -0.33 1.3 0.22 -0.049 0.25 9e+03 2.5 0.00031 0.58 +
19 -0.32 -0.41 0.11 -0.00066 -0.33 1.3 0.22 -0.049 0.25 9e+03 2.5 0.00031 0.43 +
20 -0.32 -0.41 0.11 -0.00071 -0.33 1.3 0.22 -0.049 0.25 9e+03 0.18 0.0031 0.96 ++
21 -0.32 -0.41 0.11 -0.00071 -0.33 1.3 0.22 -0.049 0.24 9e+03 0.065 0.031 1 ++
22 -0.32 -0.43 0.12 -0.00077 -0.34 1.3 0.22 -0.049 0.21 9e+03 0.18 0.31 1 ++
23 -0.33 -0.63 0.24 -0.0012 -0.44 1.5 0.17 -0.065 -0.092 8.7e+03 0.083 3.1 0.91 ++
24 -0.33 -0.63 0.24 -0.0012 -0.44 1.5 0.17 -0.065 -0.092 8.7e+03 0.083 1.5 0.91 -
25 -0.33 -0.63 0.24 -0.0012 -0.44 1.5 0.17 -0.065 -0.092 8.7e+03 0.083 0.76 -26 -
26 -0.33 -0.63 0.24 -0.0012 -0.44 1.5 0.17 -0.065 -0.092 8.7e+03 0.083 0.38 -0.89 -
27 -0.18 -0.76 0.027 -0.00036 -0.68 1.7 -0.22 -0.3 -0.41 8.5e+03 0.27 0.38 0.69 +
28 -0.16 -1.1 -0.089 0.00012 -1 2 -0.28 -0.28 -0.58 8.3e+03 3.3 3.8 1 ++
29 0.1 -1.6 -0.092 0.00013 -1.1 2 -0.19 -0.25 -0.6 8.3e+03 3.9 38 1.1 ++
30 0.2 -2 -0.12 0.00025 -1.2 1.9 -0.18 -0.22 -0.62 8.3e+03 11 38 0.3 +
31 0.18 -1.9 -0.11 0.00021 -1.2 1.8 -0.18 -0.27 -0.65 8.3e+03 0.43 3.8e+02 1.1 ++
32 0.18 -1.9 -0.11 0.0002 -1.3 1.8 -0.18 -0.28 -0.65 8.3e+03 0.36 3.8e+03 1 ++
33 0.19 -1.9 -0.11 0.0002 -1.3 1.8 -0.18 -0.27 -0.66 8.3e+03 0.0037 3.8e+04 1 ++
34 0.19 -1.9 -0.11 0.0002 -1.3 1.8 -0.18 -0.27 -0.66 8.3e+03 5.4e-06 3.8e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 22/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000028
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost_train mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.39 0.41 0.02 -0.94 -0.6 -1 1.8 0.19 -0.27 -0.059 -0.14 -0.9 8.8e+03 0.14 1 0.77 +
1 -0.39 0.41 0.02 -0.94 -0.6 -1 1.8 0.19 -0.27 -0.059 -0.14 -0.9 8.8e+03 0.14 0.5 -0.15 -
2 -0.31 0.28 0.11 -0.66 -0.42 -1 2 -0.31 -0.028 -0.18 -0.31 -0.57 8.3e+03 0.025 0.5 0.84 +
3 -0.44 0.4 0.18 -0.81 -0.52 -1.1 1.8 -0.34 -0.046 -0.43 -0.27 -0.7 8.3e+03 0.0059 5 1.1 ++
4 -0.5 0.48 0.27 -0.87 -0.55 -1.2 1.6 -0.35 -0.058 -0.48 -0.28 -0.74 8.3e+03 0.0016 50 1.1 ++
5 -0.52 0.5 0.3 -0.87 -0.55 -1.2 1.6 -0.35 -0.06 -0.49 -0.28 -0.75 8.3e+03 3.9e-05 5e+02 1 ++
6 -0.52 0.5 0.3 -0.87 -0.55 -1.2 1.6 -0.35 -0.06 -0.49 -0.28 -0.75 8.3e+03 1.7e-07 5e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 23/100
Biogeme parameters read from biogeme.toml.
Model with 7 unknown parameters [max: 50]
*** Estimate b07everything_000029
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time b_cost mu_public asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.82 0.041 -1 -0.19 1.3 -0.026 -0.095 8.9e+03 0.066 1 0.69 +
1 -0.56 1 -1.2 -0.95 1.5 -0.14 -0.47 8.4e+03 0.014 1 0.88 +
2 -0.71 1.1 -1.1 -0.68 1.4 -0.073 -1.2 8.3e+03 0.0019 10 1 ++
3 -0.88 1.3 -1.1 -0.71 1.2 -0.029 -1.3 8.3e+03 0.0041 10 0.85 +
4 -0.92 1.3 -1.1 -0.7 1.1 -0.026 -1.3 8.3e+03 9e-05 1e+02 1 ++
5 -0.94 1.3 -1.2 -0.7 1.1 -0.023 -1.3 8.3e+03 3.2e-05 1e+03 1 ++
6 -0.94 1.3 -1.2 -0.7 1.1 -0.023 -1.3 8.3e+03 8.2e-09 1e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 24/100
Biogeme parameters read from biogeme.toml.
Model with 8 unknown parameters [max: 50]
*** Estimate b07everything_000030
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time b_cost asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -1 0.36 0.096 -0.76 -0.7 -0.3 -0.0053 -0.13 8.7e+03 0.041 10 1.1 ++
1 -1.2 0.76 0.77 -1.2 -0.77 0.028 -0.08 -0.51 8.6e+03 0.0081 1e+02 1.1 ++
2 -1.4 0.94 0.93 -1.3 -0.78 0.044 -0.079 -0.53 8.6e+03 0.0005 1e+03 1 ++
3 -1.4 0.94 0.93 -1.3 -0.78 0.044 -0.079 -0.53 8.6e+03 3.6e-06 1e+03 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 5 unknown parameters [max: 50]
*** Estimate b07everything_000031
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time b_cost mu_existing asc_car Function Relgrad Radius Rho
0 -0.7 -0.85 -1 1.6 0.34 8.9e+03 0.12 1 0.79 +
1 -0.7 -0.85 -1 1.6 0.34 8.9e+03 0.12 0.5 -0.8 -
2 -0.39 -0.99 -0.5 1.9 -0.088 8.6e+03 0.031 0.5 0.78 +
3 -0.37 -0.93 -0.62 2.1 -0.0038 8.5e+03 0.0021 5 0.96 ++
4 -0.37 -0.96 -0.63 2 -0.00094 8.5e+03 0.00013 50 0.97 ++
5 -0.37 -0.96 -0.63 2 -0.00094 8.5e+03 6.7e-07 50 1 ++
Considering neighbor 1/20 for current solution
*** New pareto solution:
asc:no_seg;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:nested existing;train_tt_catalog:linear [8526.88989706996, 5]
Attempt 25/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000032
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train b_cost_train mu_public b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.27 -
1 -0.27 -0.096 -0.0052 -0.46 -0.28 1.5 0.19 0.22 -0.099 -0.089 -0.0065 -0.25 -0.14 9.9e+03 0.22 0.5 0.36 +
2 -0.16 0.17 0.0067 -0.38 -0.36 1.6 -0.23 -0.28 -0.16 -0.17 -0.021 -0.36 -0.19 9.2e+03 0.24 0.5 0.53 +
3 -0.3 0.28 0.031 -0.6 -0.76 2.1 -0.57 -0.38 -0.2 -0.19 -0.043 -0.51 -0.26 8.6e+03 0.073 5 0.94 ++
4 -0.3 0.28 0.031 -0.6 -0.76 2.1 -0.57 -0.38 -0.2 -0.19 -0.043 -0.51 -0.26 8.6e+03 0.073 2.5 -72 -
5 -0.3 0.28 0.031 -0.6 -0.76 2.1 -0.57 -0.38 -0.2 -0.19 -0.043 -0.51 -0.26 8.6e+03 0.073 1.2 -14 -
6 -0.3 0.28 0.031 -0.6 -0.76 2.1 -0.57 -0.38 -0.2 -0.19 -0.043 -0.51 -0.26 8.6e+03 0.073 0.62 -0.94 -
7 -0.36 0.35 0.61 -0.65 -1.3 2.8 -0.94 -0.8 -0.75 -0.11 -0.41 -0.74 -0.51 8.5e+03 0.09 0.62 0.67 +
8 -0.16 0.19 0.084 -0.52 -1.3 3.3 -0.62 -0.88 -0.52 -0.15 -0.68 -0.78 -0.47 8.4e+03 0.013 0.62 0.7 +
9 -0.28 0.28 0.32 -0.6 -1.4 2.6 -0.74 -0.89 -0.56 -0.13 -0.64 -0.82 -0.51 8.4e+03 0.017 6.2 1.1 ++
10 -0.28 0.28 0.32 -0.6 -1.4 2.6 -0.74 -0.89 -0.56 -0.13 -0.64 -0.82 -0.51 8.4e+03 0.017 0.81 -6 -
11 -0.29 0.34 0.21 -0.85 -1.5 1.8 -1 -0.87 -0.57 -0.14 -0.6 -0.92 -0.56 8.4e+03 0.039 0.81 0.83 +
12 -0.38 0.43 0.35 -1 -1.5 1.6 -1.2 -0.85 -0.59 -0.13 -0.56 -0.97 -0.59 8.4e+03 0.01 8.1 1.2 ++
13 -0.38 0.43 0.35 -1 -1.5 1.6 -1.2 -0.85 -0.59 -0.13 -0.56 -0.97 -0.59 8.4e+03 0.01 0.32 -1 -
14 -0.44 0.53 0.38 -1.1 -1.6 1.3 -1.2 -0.82 -0.59 -0.14 -0.56 -0.96 -0.59 8.4e+03 0.014 3.2 1.1 ++
15 -0.56 0.65 0.54 -1.3 -1.6 1.1 -1.4 -0.8 -0.57 -0.11 -0.53 -1 -0.63 8.4e+03 0.01 32 1.2 ++
16 -0.61 0.72 0.55 -1.4 -1.7 1 -1.4 -0.78 -0.55 -0.11 -0.53 -1 -0.63 8.4e+03 0.0057 3.2e+02 1.3 ++
17 -0.62 0.72 0.55 -1.4 -1.7 1 -1.4 -0.78 -0.54 -0.1 -0.53 -1 -0.63 8.4e+03 0.00072 3.2e+03 1 ++
18 -0.67 0.77 0.67 -1.4 -1.7 1 -1.5 -0.78 -0.55 -0.099 -0.51 -1.1 -0.64 8.4e+03 5.1e-05 3.2e+04 1 ++
19 -0.67 0.77 0.67 -1.4 -1.7 1 -1.5 -0.78 -0.55 -0.099 -0.51 -1.1 -0.64 8.4e+03 8.9e-08 3.2e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 26/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000033
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost mu_public asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.84 0.06 -1 -0.57 1.2 -0.24 1.6 -0.03 -0.11 9.3e+03 0.12 1 0.42 +
1 -0.42 1.1 -0.8 -0.45 0.92 -1.2 1.7 -0.36 -0.54 8.4e+03 0.069 1 0.69 +
2 -0.42 1.1 -0.8 -0.45 0.92 -1.2 1.7 -0.36 -0.54 8.4e+03 0.069 0.5 -0.014 -
3 -0.54 0.97 -0.81 -0.52 0.58 -0.69 1.7 -0.16 -0.61 8.2e+03 0.009 5 0.92 ++
4 -0.54 0.97 -0.81 -0.52 0.58 -0.69 1.7 -0.16 -0.61 8.2e+03 0.009 0.37 0.092 -
5 -0.45 1.1 -1.2 -0.55 0.45 -0.79 1.5 -0.035 -0.9 8.2e+03 0.01 3.7 1 ++
6 -0.61 1.3 -1.2 -0.56 0.42 -0.78 1.3 0.086 -1.2 8.2e+03 0.0048 37 1.1 ++
7 -0.73 1.4 -1.3 -0.57 0.4 -0.78 1.2 0.11 -1.2 8.2e+03 0.0014 3.7e+02 1.2 ++
8 -0.79 1.5 -1.3 -0.58 0.4 -0.78 1.1 0.13 -1.2 8.2e+03 0.00043 3.7e+03 1.1 ++
9 -0.81 1.5 -1.3 -0.59 0.4 -0.78 1.1 0.13 -1.2 8.2e+03 2.1e-05 3.7e+04 1 ++
10 -0.81 1.5 -1.3 -0.59 0.4 -0.78 1.1 0.13 -1.2 8.2e+03 1.3e-07 3.7e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 27/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000034
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st b_cost_train b_cost_swissmet asc_car_ref asc_car_diff_GA b_cost_car Function Relgrad Radius Rho
0 -1 0.86 -0.56 -0.42 -0.63 -0.73 -0.4 -0.56 -0.6 8.5e+03 0.05 10 1.1 ++
1 -1 1.4 -0.9 -0.62 -0.82 -0.83 -0.41 -0.94 -0.36 8.2e+03 0.011 1e+02 1.1 ++
2 -1 1.4 -0.96 -0.69 -0.99 -0.87 -0.45 -1 -0.33 8.2e+03 0.001 1e+03 1.1 ++
3 -1 1.4 -0.96 -0.69 -1 -0.87 -0.45 -1 -0.33 8.2e+03 1.5e-05 1e+04 1 ++
4 -1 1.4 -0.96 -0.69 -1 -0.87 -0.45 -1 -0.33 8.2e+03 3.7e-09 1e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000035
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di b_cost_train mu_public b_time_swissmet b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.3 -
1 -0.26 0.042 -0.43 -0.18 -0.25 1.5 0.18 0.062 0.2 -0.099 -0.067 -0.25 -0.15 -0.14 9.9e+03 0.23 0.5 0.36 +
2 -0.21 0.28 -0.4 -0.18 -0.33 1.7 -0.21 -0.24 -0.3 -0.16 -0.22 -0.33 -0.074 -0.17 8.9e+03 0.13 0.5 0.65 +
3 -0.33 0.78 -0.57 -0.37 -0.77 2.1 -0.65 -0.37 -0.51 -0.33 -0.48 -0.64 -0.4 -0.35 8.4e+03 0.037 0.5 0.89 +
4 -0.38 0.45 -0.56 -0.39 -1.1 2.4 -0.69 -0.56 -0.89 -0.72 -0.98 -0.6 -0.6 -0.46 8.2e+03 0.015 0.5 0.82 +
5 -0.47 0.62 -0.6 -0.52 -1.1 1.9 -0.72 -0.71 -0.87 -0.52 -1.2 -0.69 -0.65 -0.52 8.2e+03 0.016 5 1 ++
6 -0.6 0.83 -0.77 -0.6 -1.1 1.5 -0.9 -0.78 -0.86 -0.64 -1.1 -0.68 -0.71 -0.55 8.2e+03 0.019 50 1.1 ++
7 -0.69 0.97 -0.85 -0.63 -1.1 1.4 -0.96 -0.79 -0.85 -0.64 -1.1 -0.7 -0.72 -0.57 8.2e+03 0.0046 5e+02 1.2 ++
8 -0.84 1.2 -0.97 -0.7 -1 1.1 -1.1 -0.82 -0.84 -0.64 -1 -0.72 -0.74 -0.59 8.2e+03 0.01 5e+02 0.7 +
9 -0.9 1.3 -1 -0.72 -0.99 1.1 -1.1 -0.83 -0.84 -0.62 -1 -0.73 -0.74 -0.59 8.2e+03 0.0009 5e+03 1.1 ++
10 -0.92 1.3 -1.1 -0.74 -1 1 -1.1 -0.84 -0.83 -0.6 -1 -0.73 -0.75 -0.59 8.2e+03 0.00095 5e+04 1.1 ++
11 -0.92 1.3 -1.1 -0.75 -0.99 1 -1.1 -0.83 -0.84 -0.6 -1 -0.73 -0.75 -0.59 8.2e+03 0.00073 5e+05 1 ++
12 -0.96 1.4 -1.1 -0.75 -0.97 1 -1.1 -0.84 -0.83 -0.61 -0.98 -0.73 -0.75 -0.6 8.2e+03 6.2e-06 5e+06 1 ++
13 -0.96 1.4 -1.1 -0.75 -0.97 1 -1.1 -0.84 -0.83 -0.61 -0.98 -0.73 -0.75 -0.6 8.2e+03 1.7e-09 5e+06 1 ++
Considering neighbor 1/20 for current solution
Attempt 28/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000036
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di lambda_travel_t b_cost mu_existing asc_car b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.91 -0.72 -0.34 1.8 -1 1.8 0.06 -0.51 -0.39 -0.62 -0.35 9e+03 0.081 1 0.61 +
1 -0.91 -0.72 -0.34 1.8 -1 1.8 0.06 -0.51 -0.39 -0.62 -0.35 9e+03 0.081 0.5 -0.82 -
2 -0.41 -0.71 -0.37 1.4 -0.64 1.9 -0.31 -0.22 -0.46 -0.66 -0.45 8.5e+03 0.041 0.5 0.83 +
3 -0.42 -0.77 -0.46 0.93 -0.73 2.1 -0.12 -0.33 -0.61 -0.69 -0.54 8.4e+03 0.0091 5 0.96 ++
4 -0.42 -0.77 -0.46 0.93 -0.73 2.1 -0.12 -0.33 -0.61 -0.69 -0.54 8.4e+03 0.0091 0.62 -0.44 -
5 0.059 -1.3 -0.7 0.31 -0.64 2.4 0.1 -0.54 -0.83 -1.1 -0.63 8.3e+03 0.021 0.62 0.86 +
6 0.018 -1.5 -0.64 0.19 -0.68 2.3 0.089 -0.72 -0.74 -1.2 -0.27 8.3e+03 0.0029 6.2 1 ++
7 0.017 -1.6 -0.65 0.19 -0.69 2.2 0.098 -0.76 -0.74 -1.3 -0.29 8.3e+03 0.00035 62 1 ++
8 0.017 -1.6 -0.65 0.19 -0.69 2.2 0.098 -0.76 -0.74 -1.3 -0.29 8.3e+03 7.8e-07 62 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000037
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_1st lambda_travel_t b_cost_train mu_existing asc_car b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.67 -0.97 -0.49 1.6 -0.54 2 0.3 0.18 -0.83 1.1e+04 0.27 1 0.16 +
1 -0.67 -0.97 -0.49 1.6 -0.54 2 0.3 0.18 -0.83 1.1e+04 0.27 0.5 -0.88 -
2 -0.42 -0.99 -0.55 1.5 -0.45 1.8 -0.2 -0.25 -0.5 8.8e+03 0.075 5 0.9 ++
3 -0.42 -0.99 -0.55 1.5 -0.45 1.8 -0.2 -0.25 -0.5 8.8e+03 0.075 2.5 -28 -
4 -0.42 -0.99 -0.55 1.5 -0.45 1.8 -0.2 -0.25 -0.5 8.8e+03 0.075 1.2 -2.1 -
5 0.0096 -0.62 -0.47 0.98 -1.2 3.1 -0.59 -0.25 -0.83 8.6e+03 0.081 1.2 0.43 +
6 0.0096 -0.62 -0.47 0.98 -1.2 3.1 -0.59 -0.25 -0.83 8.6e+03 0.081 0.62 -0.4 -
7 0.032 -0.97 -0.43 0.35 -0.69 3 -0.23 -0.1 -0.48 8.4e+03 0.012 6.2 0.92 ++
8 0.032 -0.97 -0.43 0.35 -0.69 3 -0.23 -0.1 -0.48 8.4e+03 0.012 0.99 -1.7 -
9 0.033 -1.1 -0.47 0.54 -1 2 -0.18 -0.31 -0.66 8.3e+03 0.014 9.9 0.95 ++
10 0.14 -1.2 -0.48 0.42 -1.2 1.8 -0.16 -0.32 -0.68 8.3e+03 0.0048 99 1.1 ++
11 0.15 -1.2 -0.49 0.43 -1.3 1.7 -0.17 -0.33 -0.7 8.3e+03 0.0006 9.9e+02 1.1 ++
12 0.15 -1.2 -0.49 0.43 -1.3 1.7 -0.17 -0.34 -0.7 8.3e+03 1e-05 9.9e+03 1 ++
13 0.15 -1.2 -0.49 0.43 -1.3 1.7 -0.17 -0.34 -0.7 8.3e+03 2.9e-09 9.9e+03 1 ++
Considering neighbor 1/20 for current solution
Attempt 29/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000038
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car b_time_swissmet Function Relgrad Radius Rho
0 -0.83 0.0079 -0.0092 -0.84 1.6 -1 1.7 0.03 -0.22 -0.029 -0.5 -0.57 8.8e+03 0.066 1 0.73 +
1 -0.83 0.0079 -0.0092 -0.84 1.6 -1 1.7 0.03 -0.22 -0.029 -0.5 -0.57 8.8e+03 0.066 0.5 -0.39 -
2 -0.61 0.35 0.032 -0.85 1.2 -0.5 1.9 -0.16 -0.18 -0.077 -0.37 -0.78 8.5e+03 0.036 0.5 0.77 +
3 -0.57 0.54 0.15 -1.2 0.66 -0.72 2.4 -0.066 0.097 -0.2 -0.72 -1.1 8.3e+03 0.02 5 0.97 ++
4 -0.19 0.4 0.2 -1.7 0.053 -0.54 2.7 0.083 -0.0048 -0.42 -1 -1.4 8.3e+03 0.012 5 0.75 +
5 -0.26 0.46 0.23 -1.9 0.17 -0.61 2.2 0.093 -0.015 -0.44 -1.1 -1.4 8.2e+03 0.0041 50 1 ++
6 -0.29 0.47 0.24 -1.9 0.17 -0.62 2.3 0.085 -0.012 -0.43 -1.1 -1.4 8.2e+03 6.4e-05 5e+02 1 ++
7 -0.29 0.47 0.24 -1.9 0.17 -0.62 2.3 0.085 -0.012 -0.43 -1.1 -1.4 8.2e+03 2.4e-07 5e+02 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000039
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train b_cost_train mu_existing asc_car b_time_car b_cost_car b_time_swissmet b_cost_swissmet Function Relgrad Radius Rho
0 -0.46 -0.78 -1 1.9 0.083 -0.73 -0.35 -0.83 -0.79 9.2e+03 0.26 1 0.67 +
1 -0.46 -0.78 -1 1.9 0.083 -0.73 -0.35 -0.83 -0.79 9.2e+03 0.26 0.5 -0.74 -
2 -0.045 -0.74 -1 2.3 -0.42 -0.65 -0.43 -1 -0.31 8.5e+03 0.11 0.5 0.69 +
3 -0.18 -0.96 -0.8 2.5 -0.45 -0.68 -0.51 -1.1 -0.48 8.4e+03 0.0058 5 0.96 ++
4 -0.18 -0.96 -0.8 2.5 -0.45 -0.68 -0.51 -1.1 -0.48 8.4e+03 0.0058 0.77 -3.5 -
5 -0.075 -1.2 -1.1 1.8 -0.48 -0.85 -0.55 -1.3 -0.59 8.4e+03 0.014 0.77 0.79 +
6 -0.061 -1.2 -1.1 1.8 -0.46 -0.86 -0.6 -1.3 -0.61 8.4e+03 0.00033 7.7 1 ++
7 -0.058 -1.2 -1.2 1.8 -0.46 -0.87 -0.6 -1.3 -0.61 8.4e+03 6.9e-06 77 1 ++
8 -0.058 -1.2 -1.2 1.8 -0.46 -0.87 -0.6 -1.3 -0.61 8.4e+03 8.6e-10 77 1 ++
Considering neighbor 1/20 for current solution
Attempt 30/100
Biogeme parameters read from biogeme.toml.
Model with 17 unknown parameters [max: 50]
*** Estimate b07everything_000040
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 9.7e+03 0.14 1 0.33 +
1 9.3e+03 0.24 1 0.17 +
2 9.3e+03 0.24 0.5 -0.28 -
3 8.8e+03 0.12 0.5 0.37 +
4 8.6e+03 0.14 0.5 0.32 +
5 8.4e+03 0.035 0.5 0.66 +
6 8.3e+03 0.0049 5 1.1 ++
7 8.3e+03 0.0049 0.86 -1.8 -
8 8.3e+03 0.025 0.86 0.86 +
9 8.2e+03 0.016 8.6 1.3 ++
10 8.2e+03 0.013 86 1.3 ++
11 8.1e+03 0.0056 8.6e+02 1.3 ++
12 8.1e+03 0.0024 8.6e+03 1 ++
13 8.1e+03 0.00013 8.6e+04 1 ++
14 8.1e+03 1.7e-07 8.6e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 31/100
Biogeme parameters read from biogeme.toml.
Model with 18 unknown parameters [max: 50]
*** Estimate b07everything_000041
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.44 -
1 9.9e+03 1.6 0.5 0.37 +
2 9.9e+03 1.6 0.25 0.37 -
3 9.9e+03 1.6 0.12 0.37 -
4 9.9e+03 1.6 0.062 0.37 -
5 9.9e+03 1.6 0.031 -3.5 -
6 9.3e+03 0.68 0.31 0.95 ++
7 9.3e+03 0.68 0.16 -1.5 -
8 9.3e+03 0.68 0.078 -0.55 -
9 9.3e+03 0.68 0.039 -0.93 -
10 9.3e+03 0.68 0.02 -1.8 -
11 9.3e+03 0.68 0.0098 -3.2 -
12 9.3e+03 0.68 0.0049 -5 -
13 9.3e+03 0.68 0.0024 -3.6 -
14 9.2e+03 2 0.0024 0.75 +
15 9.2e+03 0.19 0.024 1 ++
16 9.2e+03 0.061 0.24 1 ++
17 8.9e+03 2.7 0.24 0.89 +
18 8.8e+03 12 0.24 0.34 +
19 8.8e+03 12 0.12 -0.22 -
20 8.7e+03 4.7 0.12 0.17 +
21 8.7e+03 4.7 0.061 0.17 -
22 8.7e+03 4.7 0.031 0.17 -
23 8.7e+03 4.7 0.015 0.17 -
24 8.7e+03 4.7 0.0076 -2.7 -
25 8.7e+03 4.7 0.0038 -1.1 -
26 8.5e+03 4.9 0.0038 0.82 +
27 8.5e+03 4.9 0.0019 0.026 -
28 8.5e+03 4.9 0.00095 -0.11 -
29 8.5e+03 4.9 0.00048 -0.2 -
30 8.5e+03 3.9 0.00048 0.64 +
31 8.5e+03 3.9 0.00024 -0.43 -
32 8.5e+03 3.6 0.00024 0.11 +
33 8.5e+03 3.9 0.00024 0.11 +
34 8.5e+03 3.6 0.00024 0.13 +
35 8.5e+03 3.6 0.00012 0.085 -
36 8.5e+03 0.049 0.00012 0.79 +
37 8.5e+03 0.17 0.0012 1 ++
38 8.5e+03 0.045 0.012 1 ++
39 8.5e+03 0.13 0.12 1 ++
40 8.4e+03 0.053 1.2 0.93 ++
41 8.4e+03 0.053 0.6 -66 -
42 8.2e+03 0.15 0.6 0.56 +
43 8.2e+03 0.15 0.3 -10 -
44 8.2e+03 6.9 0.3 0.47 +
45 8.1e+03 6.9 0.3 0.77 +
46 8.1e+03 6.9 0.15 -1.6 -
47 8.1e+03 6.9 0.075 -1.1 -
48 8.1e+03 6.9 0.037 -0.88 -
49 8.1e+03 6.9 0.019 -0.84 -
50 8.1e+03 6.9 0.0093 -0.6 -
51 8.1e+03 6.9 0.0047 -0.66 -
52 8.1e+03 6.9 0.0023 -0.76 -
53 8.1e+03 6.9 0.0012 -0.86 -
54 8.1e+03 6.9 0.00058 -0.91 -
55 8.1e+03 6.9 0.00029 -0.95 -
56 8.1e+03 6.9 0.00015 -0.97 -
57 8.1e+03 4.8 0.00015 0.72 +
58 8.1e+03 0.46 0.0015 1 ++
59 8.1e+03 0.038 0.015 1 ++
60 8.1e+03 0.16 0.15 0.99 ++
61 8.1e+03 1.9 0.15 0.85 +
62 8.1e+03 0.34 1.5 1.1 ++
63 8.1e+03 0.34 0.35 -0.044 -
64 8.1e+03 5.9 3.5 0.92 ++
65 8e+03 0.056 35 1.1 ++
66 8e+03 0.12 3.5e+02 1 ++
67 8e+03 0.032 3.5e+03 1 ++
68 8e+03 8.1e-05 3.5e+04 1 ++
69 8e+03 2.9e-07 3.5e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 32/100
Biogeme parameters read from biogeme.toml.
Model with 8 unknown parameters [max: 50]
*** Estimate b07everything_000042
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.7 0.37 -0.93 -0.57 2 -0.85 -0.29 -0.31 9.2e+03 0.12 1 0.54 +
1 -1.4 1.4 -0.25 -0.47 1.9 -0.66 -0.033 -0.71 8.5e+03 0.032 1 0.87 +
2 -1.6 1.5 -0.59 -0.68 0.88 -0.94 -0.17 -0.89 8.3e+03 0.026 10 0.94 ++
3 -0.88 1.6 -1.4 -0.63 -0.011 -0.75 0.2 -1.2 8.2e+03 0.0062 10 0.56 +
4 -0.86 1.6 -1.5 -0.6 0.35 -0.78 0.22 -1.2 8.2e+03 0.0074 1e+02 0.98 ++
5 -0.94 1.6 -1.3 -0.61 0.38 -0.78 0.16 -1.2 8.2e+03 0.0002 1e+03 0.99 ++
6 -0.94 1.6 -1.3 -0.61 0.38 -0.78 0.16 -1.2 8.2e+03 6.6e-07 1e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 33/100
Biogeme parameters read from biogeme.toml.
Model with 7 unknown parameters [max: 50]
*** Estimate b07everything_000043
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_com lambda_travel_t b_cost mu_public asc_car Function Relgrad Radius Rho
0 -0.83 -1 -0.12 1.1 -0.2 1.4 -0.029 9e+03 0.073 1 0.65 +
1 -0.068 -1.7 -0.24 0.092 -0.68 1.4 0.046 8.7e+03 0.02 1 0.71 +
2 -0.2 -1.8 -0.49 0.43 -0.79 1 0.23 8.6e+03 0.011 10 0.96 ++
3 -0.37 -1.7 -0.44 0.5 -0.78 1 0.22 8.6e+03 0.0044 1e+02 1 ++
4 -0.4 -1.7 -0.43 0.5 -0.78 1 0.18 8.6e+03 0.0022 1e+03 1 ++
5 -0.42 -1.6 -0.42 0.5 -0.78 1 0.18 8.6e+03 0.0017 1e+04 1 ++
6 -0.46 -1.6 -0.36 0.52 -0.78 1 0.15 8.6e+03 3.9e-05 1e+05 1 ++
7 -0.46 -1.6 -0.36 0.52 -0.78 1 0.15 8.6e+03 2.6e-08 1e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 34/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000044
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.27 -
1 9.9e+03 0.22 0.5 0.36 +
2 9.2e+03 0.25 0.5 0.52 +
3 8.6e+03 0.059 5 0.93 ++
4 8.6e+03 0.059 2.5 -1e+02 -
5 8.6e+03 0.059 1.2 -15 -
6 8.6e+03 0.059 0.62 -0.6 -
7 8.3e+03 0.012 6.2 1.1 ++
8 8.3e+03 0.012 0.64 -1.2 -
9 8.3e+03 0.029 6.4 0.97 ++
10 8.3e+03 0.03 64 1.2 ++
11 8.2e+03 0.012 6.4e+02 1.3 ++
12 8.2e+03 0.0034 6.4e+03 1.1 ++
13 8.2e+03 0.00019 6.4e+04 1 ++
14 8.2e+03 2.2e-07 6.4e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 35/100
Biogeme parameters read from biogeme.toml.
Model with 8 unknown parameters [max: 50]
*** Estimate b07everything_000045
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_1st square_tt_coef cube_tt_coef b_cost mu_public asc_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 1.1e+04 0.26 0.5 -0.18 -
1 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 5 1.1 ++
2 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 2.5 1.1 -
3 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 1.2 1.1 -
4 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.62 1.1 -
5 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.31 -4.7 -
6 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.16 -3.1 -
7 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.078 -2.3 -
8 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.039 -2.6 -
9 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.02 -3.4 -
10 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.0098 -4.3 -
11 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.0049 -5.1 -
12 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.0024 -4.4 -
13 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.0012 -2.6 -
14 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.00061 -1.3 -
15 -0.5 -0.5 -0.5 0 0 -0.5 1 0.034 8.9e+03 4.3 0.00031 -0.2 -
16 -0.5 -0.5 -0.5 0.00031 -0.00031 -0.5 1 0.034 8.9e+03 2.8 0.00031 0.65 +
17 -0.5 -0.5 -0.5 0.00061 -0.00023 -0.5 1 0.034 8.9e+03 1.2 0.00031 0.81 +
18 -0.5 -0.5 -0.5 0.00092 -0.00026 -0.5 1 0.034 8.9e+03 0.15 0.0031 0.99 ++
19 -0.5 -0.5 -0.5 0.004 -0.00026 -0.5 1 0.033 8.9e+03 0.32 0.031 1 ++
20 -0.51 -0.52 -0.51 0.034 -0.00041 -0.5 1 0.031 8.8e+03 0.23 0.31 1 ++
21 -0.59 -0.77 -0.53 0.054 -0.00049 -0.81 1.2 -0.1 8.6e+03 0.37 0.31 0.89 +
22 -0.59 -0.77 -0.53 0.054 -0.00049 -0.81 1.2 -0.1 8.6e+03 0.37 0.15 -1.4 -
23 -0.58 -0.92 -0.63 -0.065 1e-05 -0.83 1.2 -0.099 8.6e+03 1.8 0.15 0.38 +
24 -0.49 -1.1 -0.71 -0.051 -1.6e-05 -0.83 1.2 -0.077 8.6e+03 7.3 1.5 0.97 ++
25 -0.49 -1.1 -0.71 -0.051 -1.6e-05 -0.83 1.2 -0.077 8.6e+03 7.3 0.41 -6.2 -
26 -0.49 -1.1 -0.71 -0.051 -1.6e-05 -0.83 1.2 -0.077 8.6e+03 7.3 0.2 -0.058 -
27 -0.48 -1.3 -0.77 -0.084 7.9e-05 -0.84 1.2 0.017 8.5e+03 9.8 0.2 0.76 +
28 -0.46 -1.5 -0.81 -0.092 0.00016 -0.85 1.1 0.055 8.5e+03 8 0.2 0.82 +
29 -0.5 -1.6 -0.77 -0.093 0.00012 -0.87 1 0.13 8.5e+03 12 0.2 0.58 +
30 -0.51 -1.7 -0.79 -0.095 0.00016 -0.86 1 0.14 8.5e+03 2.5 0.2 0.79 +
31 -0.51 -1.6 -0.78 -0.094 0.00015 -0.87 1 0.14 8.5e+03 0.21 2 0.95 ++
32 -0.51 -1.6 -0.79 -0.094 0.00015 -0.86 1 0.14 8.5e+03 0.0022 20 1 ++
33 -0.51 -1.6 -0.79 -0.094 0.00015 -0.86 1 0.14 8.5e+03 0.0001 2e+02 1 ++
34 -0.51 -1.6 -0.79 -0.094 0.00015 -0.86 1 0.14 8.5e+03 0.00021 2e+03 1 ++
35 -0.51 -1.6 -0.79 -0.094 0.00015 -0.86 1 0.14 8.5e+03 2e-06 2e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 36/100
Biogeme parameters read from biogeme.toml.
Model with 18 unknown parameters [max: 50]
*** Estimate b07everything_000046
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.26 -
1 9.6e+03 1 0.5 0.65 +
2 9.6e+03 1 0.25 0.65 -
3 9.6e+03 1 0.12 0.65 -
4 9.6e+03 1 0.062 -13 -
5 9.6e+03 1 0.031 -19 -
6 9.6e+03 1 0.016 -2.5 -
7 9.4e+03 0.44 0.16 0.97 ++
8 9.4e+03 0.44 0.078 -13 -
9 9.4e+03 0.44 0.039 -11 -
10 9.4e+03 0.44 0.02 -10 -
11 9.4e+03 0.44 0.0098 -11 -
12 9.4e+03 0.44 0.0049 -4.7 -
13 9.4e+03 0.44 0.0024 0.036 -
14 9.4e+03 0.24 0.024 0.96 ++
15 9.4e+03 0.24 0.012 -0.14 -
16 9.4e+03 0.24 0.0061 -0.009 -
17 9.4e+03 0.24 0.0031 -0.096 -
18 9.4e+03 0.24 0.0015 -0.39 -
19 9.4e+03 0.84 0.0015 0.75 +
20 9.4e+03 0.27 0.015 1.1 ++
21 9.3e+03 0.073 0.15 1 ++
22 9.2e+03 2.4 0.15 0.85 +
23 9.2e+03 2.4 0.076 -7.1 -
24 9.2e+03 2.4 0.038 -7.4 -
25 9.2e+03 2.4 0.019 -7.8 -
26 9.2e+03 2.4 0.0095 -8.1 -
27 9.2e+03 2.4 0.0048 -5.1 -
28 9.2e+03 2.4 0.0024 -2.8 -
29 9.2e+03 2.4 0.0012 -1 -
30 9.2e+03 2.4 0.0006 0.053 -
31 9.2e+03 0.77 0.0006 0.74 +
32 9.2e+03 0.19 0.006 0.96 ++
33 9.1e+03 0.076 0.06 1 ++
34 9.1e+03 0.11 0.6 1 ++
35 8.6e+03 4.8 0.6 0.71 +
36 8.6e+03 4.8 0.3 -1.6 -
37 8.5e+03 4.8 0.3 0.22 +
38 8.5e+03 4.8 0.15 0.22 -
39 8.5e+03 4.8 0.075 -2.4 -
40 8.5e+03 4.8 0.037 -2.1 -
41 8.5e+03 4.8 0.019 -1.8 -
42 8.5e+03 4.8 0.0093 -1.6 -
43 8.5e+03 4.8 0.0047 -1.4 -
44 8.5e+03 4.8 0.0023 -1.1 -
45 8.5e+03 4.8 0.0012 -0.7 -
46 8.5e+03 8.3 0.0012 0.13 +
47 8.5e+03 8.3 0.00058 0.0094 -
48 8.5e+03 4.8 0.00058 0.53 +
49 8.5e+03 4.8 0.00029 -0.74 -
50 8.5e+03 4.8 0.00015 0.068 -
51 8.5e+03 3 0.0015 0.95 ++
52 8.5e+03 2 0.015 0.91 ++
53 8.5e+03 0.11 0.15 1 ++
54 8.3e+03 0.052 1.5 1.1 ++
55 8.3e+03 0.052 0.73 -15 -
56 8.2e+03 0.69 0.73 0.63 +
57 8.1e+03 0.97 7.3 0.95 ++
58 8.1e+03 0.015 73 1.1 ++
59 8.1e+03 0.0035 7.3e+02 1 ++
60 8.1e+03 0.0035 3.6e+02 1 -
61 8.1e+03 0.0035 1.8e+02 1 -
62 8.1e+03 0.0035 91 1 -
63 8.1e+03 0.0035 45 1 -
64 8.1e+03 0.0035 23 1 -
65 8.1e+03 0.0035 11 1 -
66 8.1e+03 0.0035 5.7 1 -
67 8.1e+03 0.0035 2.8 -9.3e+02 -
68 8.1e+03 0.0035 1.4 -3.1e+02 -
69 8.1e+03 0.0035 0.71 -49 -
70 8.1e+03 0.0035 0.36 -3.5 -
71 8.1e+03 0.46 0.36 0.54 +
72 8.1e+03 0.46 3.6 1.1 ++
73 8.1e+03 0.46 0.72 -22 -
74 8.1e+03 0.46 0.36 -2.8 -
75 8.1e+03 8 0.36 0.53 +
76 8.1e+03 4 3.6 0.96 ++
77 8.1e+03 1.2 36 0.95 ++
78 8.1e+03 0.0079 3.6e+02 1 ++
79 8.1e+03 2.7e-05 3.6e+03 1 ++
80 8.1e+03 1.8e-06 3.6e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 37/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000047
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train square_tt_coef cube_tt_coef b_cost mu_public b_time_swissmet asc_car b_time_car Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 1.1e+04 0.4 0.5 -0.16 -
1 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.5 0.81 +
2 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.25 0.81 -
3 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.12 0.81 -
4 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.062 -12 -
5 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.031 -16 -
6 -0.27 -0.5 0.0013 0.012 -0.039 1 0.2 0.0074 -0.021 9.5e+03 0.72 0.016 -5.7 -
7 -0.29 -0.52 0.017 -0.0033 -0.054 1 0.19 -0.0082 -0.036 9.5e+03 6.3 0.016 0.13 +
8 -0.29 -0.52 0.017 0.0054 -0.059 1 0.19 -0.011 -0.052 9.4e+03 0.86 0.016 0.25 +
9 -0.29 -0.52 0.017 0.0054 -0.059 1 0.19 -0.011 -0.052 9.4e+03 0.86 0.0078 -3.5 -
10 -0.3 -0.53 0.025 -0.0024 -0.066 1 0.18 -0.019 -0.06 9.4e+03 5.2 0.0078 0.18 +
11 -0.3 -0.54 0.026 -0.00026 -0.072 1 0.18 -0.022 -0.068 9.3e+03 0.25 0.0078 0.86 +
12 -0.3 -0.54 0.029 -0.00055 -0.078 1 0.18 -0.026 -0.075 9.3e+03 0.16 0.078 0.99 ++
13 -0.31 -0.57 0.061 -0.00035 -0.15 1 0.16 -0.059 -0.15 9.2e+03 1.1 0.78 0.96 ++
14 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.78 0.83 +
15 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.16 -0.59 -
16 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.081 -0.69 -
17 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.041 -0.88 -
18 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.02 -1 -
19 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.01 -1.3 -
20 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.0051 -1.7 -
21 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.0025 -2.1 -
22 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.0013 -2.4 -
23 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.00063 -1.3 -
24 -0.35 -0.79 0.16 -0.0013 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.8 0.00032 0.021 -
25 -0.35 -0.79 0.16 -0.001 -0.93 1.1 -0.54 -0.13 -0.51 8.7e+03 2.3 0.0032 1 ++
26 -0.35 -0.79 0.16 -0.00082 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 5.1 0.0032 0.26 +
27 -0.35 -0.79 0.16 -0.00082 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 5.1 0.0016 0.085 -
28 -0.35 -0.79 0.16 -0.00082 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 5.1 0.00079 -0.055 -
29 -0.35 -0.79 0.16 -0.00082 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 5.1 0.0004 -0.15 -
30 -0.35 -0.79 0.16 -0.00082 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 5.1 0.0002 -0.2 -
31 -0.35 -0.79 0.16 -0.001 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 2.4 0.0002 0.35 +
32 -0.35 -0.79 0.16 -0.001 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 2.4 9.9e-05 -0.68 -
33 -0.35 -0.79 0.16 -0.00092 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 1.1 9.9e-05 0.63 +
34 -0.35 -0.79 0.16 -0.00094 -0.92 1.1 -0.54 -0.13 -0.51 8.7e+03 0.044 0.00099 1 ++
35 -0.35 -0.8 0.16 -0.00095 -0.92 1.1 -0.54 -0.13 -0.52 8.7e+03 0.12 0.0099 1 ++
36 -0.35 -0.8 0.17 -0.00098 -0.92 1.1 -0.54 -0.14 -0.53 8.7e+03 0.04 0.099 1 ++
37 -0.36 -0.83 0.22 -0.0012 -0.82 1 -0.63 -0.22 -0.57 8.7e+03 0.057 0.99 0.99 ++
38 -0.39 -0.9 0.2 -0.0011 -0.78 1 -0.67 -0.27 -0.56 8.6e+03 0.013 9.9 1 ++
39 -0.39 -0.9 0.2 -0.0011 -0.78 1 -0.67 -0.27 -0.56 8.6e+03 0.013 0.78 -1.3e+02 -
40 -0.39 -0.9 0.2 -0.0011 -0.78 1 -0.67 -0.27 -0.56 8.6e+03 0.013 0.39 -2.8 -
41 -0.49 -1.3 -0.031 -0.00016 -0.65 1 -1.1 -0.65 -0.69 8.6e+03 1.2 0.39 0.33 +
42 -0.48 -1.3 0.026 -0.0004 -0.7 1 -1.1 -0.61 -0.69 8.6e+03 0.92 3.9 1 ++
43 -0.48 -1.3 0.026 -0.0004 -0.7 1 -1.1 -0.61 -0.69 8.6e+03 0.92 0.4 -0.55 -
44 -0.35 -1.7 -0.054 -3.6e-06 -0.87 1 -1.4 -0.47 -1 8.6e+03 8.1 4 1 ++
45 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 4 0.32 +
46 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.11 -0.3 -
47 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.054 -0.27 -
48 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.027 -0.28 -
49 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.013 -0.22 -
50 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.0067 -0.2 -
51 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.0034 -0.2 -
52 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.0017 -0.25 -
53 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.00084 -0.28 -
54 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.00042 -0.29 -
55 0.11 -2.7 -0.12 0.0002 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 42 0.00021 -0.14 -
56 0.11 -2.7 -0.12 0.00041 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 13 0.00021 0.26 +
57 0.11 -2.7 -0.12 0.00041 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 13 0.00011 -1.1 -
58 0.11 -2.7 -0.12 0.0003 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 2.1 0.00011 0.73 +
59 0.11 -2.7 -0.12 0.00031 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 0.19 0.0011 1 ++
60 0.11 -2.7 -0.12 0.00031 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 1.3 0.011 1 ++
61 0.11 -2.7 -0.11 0.00021 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 8.6 0.11 0.94 ++
62 0.11 -2.7 -0.099 0.00016 -0.79 1 -2.2 -0.58 -1.6 8.5e+03 1.2 1.1 1.1 ++
63 0.31 -2.9 -0.1 0.0002 -0.79 1 -2.3 -0.45 -1.7 8.5e+03 0.44 11 1 ++
64 0.31 -2.9 -0.11 0.0002 -0.8 1 -2.3 -0.51 -1.7 8.5e+03 0.03 1.1e+02 1 ++
65 0.32 -3 -0.11 0.0002 -0.8 1 -2.3 -0.5 -1.7 8.5e+03 0.016 1.1e+03 1 ++
66 0.33 -3 -0.11 0.0002 -0.8 1 -2.4 -0.5 -1.7 8.5e+03 0.00053 1.1e+04 1 ++
67 0.33 -3 -0.11 0.0002 -0.8 1 -2.4 -0.5 -1.7 8.5e+03 0.00046 1.1e+05 1 ++
68 0.33 -3 -0.11 0.0002 -0.8 1 -2.4 -0.5 -1.7 8.5e+03 1.8e-05 1.1e+06 1 ++
69 0.33 -3 -0.11 0.0002 -0.8 1 -2.4 -0.5 -1.7 8.5e+03 1.3e-05 1.1e+07 1 ++
70 0.33 -3 -0.11 0.0002 -0.8 1 -2.4 -0.5 -1.7 8.5e+03 1.9e-06 1.1e+07 1 ++
Considering neighbor 0/20 for current solution
Attempt 38/100
Considering neighbor 0/20 for current solution
Attempt 39/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000048
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.57 -
1 1.1e+04 0.4 0.25 0.064 -
2 9.4e+03 1 2.5 1.1 ++
3 9.4e+03 1 1.2 1.1 -
4 9.4e+03 1 0.62 1.1 -
5 9.4e+03 1 0.31 1.1 -
6 9.4e+03 1 0.16 1.1 -
7 9.4e+03 1 0.078 1.1 -
8 9.4e+03 1 0.039 -9.7 -
9 9.4e+03 1 0.02 -10 -
10 9.4e+03 1 0.0098 -3.5 -
11 9.4e+03 1 0.0049 -0.69 -
12 9.4e+03 0.59 0.049 0.95 ++
13 9.3e+03 3.1 0.049 0.7 +
14 9.2e+03 0.39 0.49 0.93 ++
15 8.5e+03 8.5 0.49 0.86 +
16 8.5e+03 8.5 0.24 -0.31 -
17 8.5e+03 10 0.24 0.16 +
18 8.5e+03 10 0.12 0.16 -
19 8.5e+03 10 0.061 0.16 -
20 8.5e+03 10 0.031 0.16 -
21 8.5e+03 10 0.015 0.16 -
22 8.5e+03 10 0.0076 0.16 -
23 8.5e+03 10 0.0038 -1.6 -
24 8.5e+03 10 0.0019 -0.53 -
25 8.3e+03 7.4 0.0019 0.67 +
26 8.3e+03 7.4 0.00095 -0.91 -
27 8.3e+03 7.4 0.00048 -0.65 -
28 8.3e+03 9.7 0.00048 0.66 +
29 8.3e+03 9.7 0.00024 -0.41 -
30 8.3e+03 9.7 0.00012 -0.015 -
31 8.3e+03 3.2 0.00012 0.57 +
32 8.3e+03 1.1 0.00012 0.83 +
33 8.3e+03 0.04 0.0012 1 ++
34 8.3e+03 0.16 0.012 1 ++
35 8.3e+03 0.019 0.12 1 ++
36 8.2e+03 0.047 1.2 1 ++
37 8.2e+03 0.047 0.6 -74 -
38 8.2e+03 0.047 0.3 -18 -
39 8.2e+03 0.047 0.15 -0.97 -
40 8.2e+03 0.84 0.15 0.68 +
41 8.2e+03 0.57 1.5 0.97 ++
42 8.2e+03 0.57 0.75 -59 -
43 8.2e+03 0.57 0.37 -5.2 -
44 8.2e+03 0.57 0.19 -1.6 -
45 8.1e+03 6.7 0.19 0.42 +
46 8.1e+03 5.8 1.9 0.92 ++
47 8.1e+03 5.8 0.54 -6.3 -
48 8.1e+03 5.8 0.27 -0.29 -
49 8.1e+03 6.9 0.27 0.88 +
50 8.1e+03 7.6 2.7 1 ++
51 8.1e+03 0.19 27 0.99 ++
52 8.1e+03 0.17 2.7e+02 1 ++
53 8.1e+03 0.00065 2.7e+03 1 ++
54 8.1e+03 0.0035 2.7e+04 1 ++
55 8.1e+03 0.0026 2.7e+05 1 ++
56 8.1e+03 3.4e-07 2.7e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 40/100
Considering neighbor 0/20 for current solution
Attempt 41/100
Biogeme parameters read from biogeme.toml.
Model with 8 unknown parameters [max: 50]
*** Estimate b07everything_000049
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st b_cost mu_public asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.84 0.065 -1 -0.58 -0.25 1.6 -0.034 -0.11 9.3e+03 0.13 1 0.43 +
1 -0.37 1.1 -0.76 -0.44 -1.1 1.7 -0.34 -0.52 8.5e+03 0.086 1 0.61 +
2 -0.49 0.54 -0.54 -0.42 -0.62 2.2 -0.25 -1.5 8.3e+03 0.038 1 0.59 +
3 -0.68 0.87 -0.85 -0.35 -0.78 1.2 -0.16 -1.4 8.3e+03 0.023 1 0.23 +
4 -0.81 1.2 -0.79 -0.54 -0.77 1.3 -0.085 -1.3 8.3e+03 0.0021 10 1 ++
5 -0.89 1.2 -0.83 -0.58 -0.78 1.2 -0.051 -1.3 8.3e+03 0.0012 1e+02 1 ++
6 -0.91 1.2 -0.83 -0.58 -0.78 1.2 -0.048 -1.3 8.3e+03 2.1e-05 1e+03 1 ++
7 -0.91 1.2 -0.83 -0.58 -0.78 1.2 -0.048 -1.3 8.3e+03 4.7e-07 1e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 42/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000050
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di b_cost mu_existing asc_car b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.45 -0.68 -0.063 -1 1.9 0.1 -0.23 -0.22 -0.45 0.12 9.3e+03 0.27 1 0.67 +
1 -0.1 -0.79 -0.25 0 2.4 -0.4 -0.63 -0.14 -0.89 0.29 9e+03 0.25 1 0.23 +
2 -0.27 -0.87 -0.067 -0.61 3.4 -0.34 -0.58 -0.16 -0.95 0.51 8.4e+03 0.058 1 0.65 +
3 -0.36 -1 0.69 -0.52 3 -0.58 -0.67 0.81 -1.2 1.5 8.4e+03 0.03 1 0.61 +
4 -0.23 -1.1 0.32 -0.55 2.9 -0.49 -0.77 0.32 -1.3 1.1 8.3e+03 0.0067 1 0.42 +
5 -0.16 -1.4 0.53 -0.66 2 -0.48 -0.92 0.63 -1.5 1.6 8.3e+03 0.021 1 0.58 +
6 -0.18 -1.3 0.54 -0.64 2.2 -0.51 -0.88 0.69 -1.5 1.6 8.3e+03 0.0015 10 1.1 ++
7 -0.19 -1.3 0.53 -0.62 2.3 -0.51 -0.87 0.67 -1.5 1.6 8.3e+03 0.00054 1e+02 1.1 ++
8 -0.19 -1.3 0.53 -0.62 2.3 -0.51 -0.87 0.67 -1.5 1.6 8.3e+03 3.5e-06 1e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 43/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000051
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time b_cost mu_existing asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.63 0.13 -0.0019 -0.93 -1 1.7 0.27 -0.093 -0.025 8.7e+03 0.073 1 0.87 +
1 -0.63 0.13 -0.0019 -0.93 -1 1.7 0.27 -0.093 -0.025 8.7e+03 0.073 0.5 -0.32 -
2 -0.56 0.39 0.047 -1 -0.5 1.9 0.1 -0.12 -0.081 8.5e+03 0.015 0.5 0.82 +
3 -0.73 0.5 0.44 -0.96 -0.61 2 0.00048 -0.0041 -0.46 8.5e+03 0.0011 5 0.93 ++
4 -0.75 0.52 0.38 -0.99 -0.63 1.9 0.0062 -0.0077 -0.44 8.5e+03 0.00016 50 1 ++
5 -0.75 0.52 0.38 -0.99 -0.63 1.9 0.0062 -0.0077 -0.44 8.5e+03 1.2e-07 50 1 ++
Considering neighbor 0/20 for current solution
Attempt 44/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000052
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_1st square_tt_coef cube_tt_coef b_cost_train b_cost_swissmet asc_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.5 -1.5 -
1 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.25 -0.055 -
2 -0.25 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 9.4e+03 1.4 2.5 1 ++
3 -0.25 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 9.4e+03 1.4 1.2 -5.9 -
4 -0.25 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 9.4e+03 1.4 0.62 -3.1 -
5 -0.25 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 9.4e+03 1.4 0.31 -1.4 -
6 -0.25 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 9.4e+03 1.4 0.16 0.00089 -
7 -0.36 -0.41 -0.26 0.15 -0.0031 -0.36 0.21 0.041 0.022 9.2e+03 9.1 0.16 0.53 +
8 -0.36 -0.41 -0.26 0.15 -0.0031 -0.36 0.21 0.041 0.022 9.2e+03 9.1 0.078 0.056 -
9 -0.38 -0.48 -0.27 0.12 0.0023 -0.38 0.13 0.058 0.041 9.1e+03 5.4 0.078 0.14 +
10 -0.38 -0.48 -0.27 0.12 0.0023 -0.38 0.13 0.058 0.041 9.1e+03 5.4 0.039 -4.2 -
11 -0.38 -0.48 -0.27 0.12 0.0023 -0.38 0.13 0.058 0.041 9.1e+03 5.4 0.02 -2.8 -
12 -0.38 -0.48 -0.27 0.12 0.0023 -0.38 0.13 0.058 0.041 9.1e+03 5.4 0.0098 -2 -
13 -0.38 -0.48 -0.27 0.12 0.0023 -0.38 0.13 0.058 0.041 9.1e+03 5.4 0.0049 -1.2 -
14 -0.38 -0.48 -0.28 0.11 -0.0026 -0.39 0.13 0.059 0.044 9.1e+03 11 0.0049 0.14 +
15 -0.39 -0.48 -0.28 0.11 0.0012 -0.39 0.12 0.06 0.044 9e+03 5.3 0.0049 0.14 +
16 -0.39 -0.48 -0.28 0.11 0.0012 -0.39 0.12 0.06 0.044 9e+03 5.3 0.0024 -0.6 -
17 -0.39 -0.49 -0.28 0.11 -0.0012 -0.39 0.12 0.062 0.047 8.9e+03 4.2 0.0024 0.65 +
18 -0.39 -0.49 -0.28 0.11 -0.00081 -0.39 0.12 0.062 0.047 8.9e+03 2.3 0.024 1.4 ++
19 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.024 0.65 +
20 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.012 -2.2 -
21 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.0061 -2.5 -
22 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.0031 -2.6 -
23 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.0015 -2.7 -
24 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.00076 -0.96 -
25 -0.39 -0.5 -0.28 0.12 -0.00056 -0.4 0.093 0.062 0.048 8.9e+03 5.4 0.00038 -0.21 -
26 -0.39 -0.5 -0.28 0.12 -0.00094 -0.4 0.092 0.062 0.049 8.9e+03 2.7 0.00038 0.2 +
27 -0.39 -0.5 -0.28 0.12 -0.00094 -0.4 0.092 0.062 0.049 8.9e+03 2.7 0.00019 -0.29 -
28 -0.39 -0.5 -0.29 0.12 -0.00075 -0.4 0.092 0.061 0.049 8.9e+03 0.054 0.00019 0.82 +
29 -0.39 -0.5 -0.29 0.12 -0.00077 -0.4 0.092 0.061 0.049 8.9e+03 0.57 0.0019 1 ++
30 -0.39 -0.5 -0.29 0.12 -0.00076 -0.4 0.09 0.061 0.049 8.9e+03 0.062 0.019 1 ++
31 -0.4 -0.51 -0.29 0.12 -0.00078 -0.41 0.071 0.06 0.049 8.9e+03 0.075 0.19 1 ++
32 -0.44 -0.61 -0.32 0.18 -0.00099 -0.49 -0.12 0.044 0.048 8.8e+03 0.038 1.9 0.99 ++
33 -0.44 -0.61 -0.32 0.18 -0.00099 -0.49 -0.12 0.044 0.048 8.8e+03 0.038 0.95 -48 -
34 -0.44 -0.61 -0.32 0.18 -0.00099 -0.49 -0.12 0.044 0.048 8.8e+03 0.038 0.48 -1.2 -
35 -0.43 -0.81 -0.41 -0.0077 -0.00024 -0.85 -0.6 -0.37 -0.24 8.6e+03 0.63 0.48 0.86 +
36 -0.35 -1.1 -0.61 -0.04 -9.6e-05 -1.3 -0.77 -0.44 -0.26 8.4e+03 0.48 4.8 1.2 ++
37 -0.35 -1.1 -0.61 -0.04 -9.6e-05 -1.3 -0.77 -0.44 -0.26 8.4e+03 0.48 0.5 -4.5 -
38 -0.081 -1.5 -0.82 -0.13 0.00029 -1.8 -0.86 -0.46 -0.33 8.4e+03 26 0.5 0.21 +
39 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.5 0.46 +
40 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.11 -0.4 -
41 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.057 -0.26 -
42 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.029 -0.31 -
43 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.014 -0.41 -
44 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.0072 -0.57 -
45 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.0036 -0.83 -
46 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.0018 -1.1 -
47 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.0009 -1.4 -
48 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.00045 -1.5 -
49 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.00022 -1.6 -
50 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 0.00011 -1.6 -
51 0.16 -2 -0.88 -0.095 0.00018 -1.9 -0.96 -0.37 -0.29 8.3e+03 20 5.6e-05 -0.79 -
52 0.16 -2 -0.88 -0.095 0.00012 -1.9 -0.96 -0.37 -0.29 8.3e+03 18 5.6e-05 0.28 +
53 0.16 -2 -0.88 -0.095 0.00016 -1.9 -0.96 -0.37 -0.29 8.3e+03 15 5.6e-05 0.2 +
54 0.16 -2 -0.88 -0.095 0.00013 -1.9 -0.96 -0.37 -0.29 8.3e+03 14 5.6e-05 0.24 +
55 0.16 -2 -0.88 -0.095 0.00015 -1.9 -0.96 -0.37 -0.29 8.3e+03 5.7 5.6e-05 0.69 +
56 0.16 -2 -0.88 -0.095 0.00014 -1.9 -0.96 -0.37 -0.29 8.3e+03 0.39 0.00056 0.97 ++
57 0.16 -2 -0.88 -0.096 0.00014 -1.9 -0.96 -0.37 -0.29 8.3e+03 0.13 0.0056 1 ++
58 0.16 -2 -0.88 -0.1 0.00017 -1.9 -0.96 -0.37 -0.29 8.3e+03 0.68 0.056 0.99 ++
59 0.13 -2 -0.82 -0.11 0.00023 -1.9 -0.9 -0.36 -0.3 8.3e+03 2.3 0.56 0.98 ++
60 0.12 -1.9 -0.67 -0.11 0.0002 -2 -0.91 -0.36 -0.35 8.3e+03 0.24 5.6 0.99 ++
61 0.12 -1.9 -0.67 -0.11 0.0002 -2 -0.91 -0.36 -0.36 8.3e+03 0.018 56 1 ++
62 0.12 -1.9 -0.67 -0.11 0.0002 -2 -0.91 -0.36 -0.36 8.3e+03 0.0059 5.6e+02 1 ++
63 0.12 -1.9 -0.67 -0.11 0.0002 -2 -0.91 -0.36 -0.36 8.3e+03 0.00021 5.6e+03 1 ++
64 0.12 -1.9 -0.67 -0.11 0.0002 -2 -0.91 -0.36 -0.36 8.3e+03 1.6e-06 5.6e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 45/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000053
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com b_cost mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.66 0.49 0.1 -0.0046 -0.96 0.06 -1 1.8 0.22 -0.33 -0.11 -0.024 8.5e+03 0.054 10 0.9 ++
1 -0.71 0.74 0.29 0.2 -0.9 0.098 -0.37 2.1 0.0043 -0.54 -0.041 -0.46 8.3e+03 0.017 10 0.77 +
2 -0.93 0.94 0.38 0.32 -1.1 -0.029 -0.57 1.4 0.049 -0.72 -0.033 -0.45 8.3e+03 0.014 10 0.72 +
3 -1 1 0.39 0.33 -1.1 -0.033 -0.62 1.5 0.035 -0.73 -0.02 -0.38 8.2e+03 0.00074 1e+02 1 ++
4 -1 1 0.38 0.32 -1.1 -0.028 -0.61 1.5 0.031 -0.71 -0.022 -0.39 8.2e+03 4.6e-05 1e+03 1 ++
5 -1 1 0.38 0.32 -1.1 -0.028 -0.61 1.5 0.031 -0.71 -0.022 -0.39 8.2e+03 6.2e-08 1e+03 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000054
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -1 0.97 0.12 0.035 -0.55 -0.41 -0.66 -0.29 -0.4 -0.0026 -0.12 8.5e+03 0.042 10 1.1 ++
1 -1.3 1.3 0.35 0.36 -0.83 -0.56 -0.75 0.02 -1 -0.057 -0.49 8.2e+03 0.01 1e+02 1.1 ++
2 -1.5 1.3 0.5 0.54 -0.87 -0.6 -0.78 0.034 -1.2 -0.056 -0.54 8.2e+03 0.00076 1e+03 1 ++
3 -1.5 1.4 0.52 0.56 -0.87 -0.6 -0.78 0.035 -1.2 -0.056 -0.54 8.2e+03 6.1e-06 1e+04 1 ++
4 -1.5 1.4 0.52 0.56 -0.87 -0.6 -0.78 0.035 -1.2 -0.056 -0.54 8.2e+03 5.1e-10 1e+04 1 ++
Considering neighbor 1/20 for current solution
Attempt 46/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000055
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.26 0.5 0 -
1 1.1e+04 0.26 0.25 -0.38 -
2 9.5e+03 2.1 2.5 1 ++
3 9.5e+03 2.1 1.2 1 -
4 9.5e+03 2.1 0.62 -4.2 -
5 9.5e+03 2.1 0.31 -2.6 -
6 9.5e+03 2.1 0.16 -0.34 -
7 9.4e+03 11 0.16 0.2 +
8 9.4e+03 11 0.078 -0.8 -
9 9.4e+03 11 0.039 -0.7 -
10 9.4e+03 11 0.02 -0.64 -
11 9.4e+03 11 0.0098 -0.59 -
12 9.4e+03 11 0.0049 -0.11 -
13 9.2e+03 5.2 0.0049 0.32 +
14 9.2e+03 5.2 0.0024 -0.5 -
15 9.1e+03 4.1 0.0024 0.65 +
16 9.1e+03 2 0.024 1.4 ++
17 9e+03 2.7 0.24 0.97 ++
18 8.8e+03 2.5 2.4 0.96 ++
19 8.8e+03 2.5 1.2 0.96 -
20 8.8e+03 2.5 0.61 -14 -
21 8.4e+03 11 6.1 0.93 ++
22 8.4e+03 11 0.64 -32 -
23 8.4e+03 11 0.32 -6.6 -
24 8.4e+03 11 0.16 -1.5 -
25 8.4e+03 11 0.08 0.012 -
26 8.3e+03 11 0.08 0.52 +
27 8.3e+03 13 0.08 0.64 +
28 8.3e+03 13 0.04 -3.1 -
29 8.3e+03 13 0.02 -3.1 -
30 8.3e+03 13 0.01 -3.3 -
31 8.3e+03 13 0.005 -3.5 -
32 8.3e+03 13 0.0025 -3.7 -
33 8.3e+03 13 0.0012 -3.8 -
34 8.3e+03 13 0.00062 -2.2 -
35 8.3e+03 13 0.00031 -1.2 -
36 8.3e+03 13 0.00016 -0.4 -
37 8.3e+03 8.7 0.00016 0.27 +
38 8.3e+03 8.7 7.8e-05 -0.55 -
39 8.3e+03 5.1 7.8e-05 0.64 +
40 8.3e+03 0.28 0.00078 0.96 ++
41 8.3e+03 0.052 0.0078 1 ++
42 8.3e+03 0.21 0.078 1 ++
43 8.2e+03 0.044 0.78 0.99 ++
44 8.2e+03 0.044 0.39 -6.8 -
45 8.2e+03 0.044 0.19 -1.2 -
46 8.2e+03 12 0.19 0.57 +
47 8.2e+03 4 1.9 0.96 ++
48 8.1e+03 19 1.9 0.39 +
49 8.1e+03 9.6 19 0.95 ++
50 8.1e+03 0.76 1.9e+02 1 ++
51 8.1e+03 0.035 1.9e+03 1 ++
52 8.1e+03 6.5e-06 1.9e+04 1 ++
53 8.1e+03 0.00019 1.9e+05 1 ++
54 8.1e+03 2.7e-08 1.9e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 47/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000056
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.26 0.5 0 -
1 1.1e+04 0.26 0.25 -0.22 -
2 9.4e+03 1.4 2.5 1 ++
3 9.4e+03 1.4 1.2 -5.6 -
4 9.4e+03 1.4 0.62 -3.1 -
5 9.4e+03 1.4 0.31 -1.4 -
6 9.4e+03 1.4 0.16 -0.32 -
7 9.1e+03 9 0.16 0.49 +
8 9.1e+03 5.5 0.16 0.11 +
9 9.1e+03 5.5 0.078 0.11 -
10 9.1e+03 5.5 0.039 -4 -
11 9.1e+03 5.5 0.02 -2.8 -
12 9.1e+03 5.5 0.0098 -1.9 -
13 9.1e+03 5.5 0.0049 -0.92 -
14 8.9e+03 9.6 0.0049 0.56 +
15 8.9e+03 5.4 0.0049 0.33 +
16 8.9e+03 5.4 0.0024 -1.5 -
17 8.9e+03 5.4 0.0012 -0.64 -
18 8.9e+03 5.3 0.0012 0.34 +
19 8.8e+03 1 0.012 1.3 ++
20 8.8e+03 0.19 0.12 1 ++
21 8.7e+03 0.33 1.2 0.93 ++
22 8.7e+03 0.33 0.61 -13 -
23 8.3e+03 0.53 0.61 0.76 +
24 8.2e+03 1.4 6.1 0.95 ++
25 8.2e+03 1.4 0.45 -1.5 -
26 8.1e+03 8.4 0.45 0.48 +
27 8.1e+03 2.8 4.5 0.95 ++
28 8.1e+03 0.62 45 1.1 ++
29 8.1e+03 0.0056 4.5e+02 1 ++
30 8.1e+03 0.0079 4.5e+03 1 ++
31 8.1e+03 0.0022 4.5e+04 1 ++
32 8.1e+03 0.00054 4.5e+05 1 ++
33 8.1e+03 0.0003 4.5e+06 1 ++
34 8.1e+03 3.8e-08 4.5e+06 1 ++
Considering neighbor 0/20 for current solution
Considering neighbor 1/20 for current solution
Attempt 48/100
Considering neighbor 0/20 for current solution
Attempt 49/100
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000057
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time lambda_travel_t b_cost_train mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.54 0.24 -0.0091 -0.0083 -1 1.3 -0.5 1.9 0.16 -0.27 -0.079 -0.019 0.049 -0.58 9.1e+03 0.17 1 0.64 +
1 -0.54 0.24 -0.0091 -0.0083 -1 1.3 -0.5 1.9 0.16 -0.27 -0.079 -0.019 0.049 -0.58 9.1e+03 0.17 0.5 0.07 -
2 -0.36 0.48 0.23 0.014 -0.78 0.84 -0.56 2.2 -0.16 -0.37 -0.22 -0.054 -0.21 -0.39 8.4e+03 0.084 0.5 0.67 +
3 -0.47 0.68 0.29 0.062 -1.2 0.34 -0.58 2.6 -0.18 -0.37 0.0036 -0.14 -0.25 -0.56 8.2e+03 0.0098 5 0.97 ++
4 -0.47 0.68 0.29 0.062 -1.2 0.34 -0.58 2.6 -0.18 -0.37 0.0036 -0.14 -0.25 -0.56 8.2e+03 0.0098 0.78 -1.4 -
5 -0.42 0.89 0.3 0.13 -1.5 0.35 -0.69 1.8 -0.11 -0.19 -0.097 -0.25 -0.17 -0.56 8.1e+03 0.01 0.78 0.8 +
6 -0.54 0.93 0.34 0.18 -1.5 0.36 -0.78 1.7 -0.078 -0.39 -0.059 -0.36 -0.31 -0.63 8.1e+03 0.0014 7.8 1.1 ++
7 -0.57 0.96 0.36 0.22 -1.6 0.36 -0.81 1.6 -0.062 -0.46 -0.058 -0.38 -0.33 -0.64 8.1e+03 0.0003 78 1 ++
8 -0.57 0.96 0.36 0.22 -1.6 0.36 -0.81 1.6 -0.062 -0.46 -0.058 -0.38 -0.33 -0.64 8.1e+03 8.5e-07 78 1 ++
Considering neighbor 0/20 for current solution
Attempt 50/100
Biogeme parameters read from biogeme.toml.
Model with 8 unknown parameters [max: 50]
*** Estimate b07everything_000058
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train b_cost_train b_time_swissmet b_cost_swissmet asc_car b_time_car b_cost_car Function Relgrad Radius Rho
0 -0.65 -0.79 -0.93 -1 -0.63 -0.47 -0.73 -0.68 8.7e+03 0.08 10 1.1 ++
1 -0.26 -1.3 -1.5 -1.4 -0.76 -0.56 -1 -0.64 8.5e+03 0.026 1e+02 1.2 ++
2 -0.048 -1.4 -1.8 -1.5 -0.78 -0.59 -1.1 -0.66 8.4e+03 0.0041 1e+03 1.1 ++
3 -0.02 -1.4 -1.9 -1.5 -0.79 -0.59 -1.1 -0.66 8.4e+03 0.00011 1e+04 1 ++
4 -0.02 -1.4 -1.9 -1.5 -0.79 -0.59 -1.1 -0.66 8.4e+03 7.9e-08 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 51/100
Considering neighbor 0/20 for current solution
Attempt 52/100
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000059
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com square_tt_coef cube_tt_coef b_cost_train b_cost_swissmet asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.5 -2.3 -
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.25 -0.41 -
2 -0.25 -0.00017 -0.15 -0.0057 -0.25 -0.048 0 0 -0.25 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 2.1 2.5 1.1 ++
3 -0.25 -0.00017 -0.15 -0.0057 -0.25 -0.048 0 0 -0.25 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 2.1 1.2 -6.2 -
4 -0.25 -0.00017 -0.15 -0.0057 -0.25 -0.048 0 0 -0.25 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 2.1 0.62 -4.8 -
5 -0.25 -0.00017 -0.15 -0.0057 -0.25 -0.048 0 0 -0.25 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 2.1 0.31 -1.6 -
6 -0.25 -0.00017 -0.15 -0.0057 -0.25 -0.048 0 0 -0.25 0.25 0.0078 -0.023 -0.0062 -0.0018 -0.0062 9.5e+03 2.1 0.16 -0.23 -
7 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.16 0.17 +
8 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.078 -0.79 -
9 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.039 -0.7 -
10 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.02 -0.64 -
11 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.0098 -0.58 -
12 -0.34 0.021 -0.17 -0.0075 -0.41 -0.09 0.11 -0.0037 -0.35 0.23 0.025 -0.05 -0.011 -0.0038 0.0051 9.4e+03 11 0.0049 -0.11 -
13 -0.35 0.026 -0.17 -0.012 -0.41 -0.085 0.12 0.0012 -0.35 0.22 0.03 -0.055 -0.016 -0.0087 0.01 9.2e+03 5.2 0.0049 0.32 +
14 -0.35 0.026 -0.17 -0.012 -0.41 -0.085 0.12 0.0012 -0.35 0.22 0.03 -0.055 -0.016 -0.0087 0.01 9.2e+03 5.2 0.0024 -0.49 -
15 -0.35 0.028 -0.16 -0.015 -0.41 -0.083 0.12 -0.0013 -0.35 0.22 0.032 -0.057 -0.018 -0.011 0.012 9.1e+03 4.1 0.0024 0.66 +
16 -0.35 0.029 -0.16 -0.015 -0.42 -0.083 0.12 -0.0008 -0.36 0.22 0.033 -0.058 -0.019 -0.011 0.013 9.1e+03 1.5 0.024 1.4 ++
17 -0.36 0.037 -0.16 -0.015 -0.44 -0.086 0.13 -0.0008 -0.37 0.19 0.037 -0.065 -0.02 -0.012 0.017 9.1e+03 0.89 0.24 1 ++
18 -0.43 0.12 -0.12 -0.014 -0.63 -0.11 0.25 -0.0013 -0.49 -0.05 0.071 -0.14 -0.041 -0.018 0.053 8.8e+03 1.1 2.4 0.94 ++
19 -0.43 0.12 -0.12 -0.014 -0.63 -0.11 0.25 -0.0013 -0.49 -0.05 0.071 -0.14 -0.041 -0.018 0.053 8.8e+03 1.1 1.2 -60 -
20 -0.43 0.12 -0.12 -0.014 -0.63 -0.11 0.25 -0.0013 -0.49 -0.05 0.071 -0.14 -0.041 -0.018 0.053 8.8e+03 1.1 0.61 -8.1 -
21 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.61 0.88 +
22 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.31 -5.8 -
23 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.15 -4.3 -
24 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.076 -4 -
25 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.038 -4.1 -
26 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.019 -4.4 -
27 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0095 -3.7 -
28 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0048 -2.6 -
29 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0024 -2 -
30 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0012 -1.5 -
31 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0006 -0.89 -
32 -0.56 0.67 0.23 0.0013 -1 -0.1 0.025 -0.00023 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 12 0.0003 -0.31 -
33 -0.56 0.67 0.23 0.0016 -1 -0.1 0.026 -0.00053 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 6.2 0.0003 0.13 +
34 -0.56 0.67 0.23 0.0016 -1 -0.1 0.026 -0.00053 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 6.2 0.00015 -0.16 -
35 -0.56 0.67 0.23 0.0018 -1 -0.1 0.026 -0.00038 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 3.2 0.0015 0.97 ++
36 -0.56 0.67 0.23 0.0018 -1 -0.1 0.027 -0.00037 -1 -0.66 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 1.4 0.015 0.97 ++
37 -0.57 0.67 0.22 0.0018 -1 -0.1 0.042 -0.00044 -1 -0.65 -0.19 -0.53 -0.32 -0.06 -0.14 8.4e+03 0.05 0.15 1 ++
38 -0.71 0.73 0.18 0.01 -1.2 -0.14 -0.027 -0.00015 -1.1 -0.57 -0.2 -0.56 -0.25 -0.073 -0.18 8.3e+03 0.75 1.5 1.1 ++
39 -0.71 0.73 0.18 0.01 -1.2 -0.14 -0.027 -0.00015 -1.1 -0.57 -0.2 -0.56 -0.25 -0.073 -0.18 8.3e+03 0.75 0.66 -11 -
40 -0.79 1.1 0.43 0.069 -1.8 -0.37 -0.12 0.00025 -1.3 -0.84 -0.27 -0.74 -0.015 -0.14 -0.41 8.2e+03 23 0.66 0.64 +
41 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.66 0.67 +
42 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.33 -3.2 -
43 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.16 -1.6 -
44 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.082 -0.89 -
45 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.041 -0.62 -
46 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.02 -0.46 -
47 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.01 -0.48 -
48 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.0051 -0.62 -
49 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.0026 -0.87 -
50 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.0013 -1.1 -
51 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.00064 -1.3 -
52 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.00032 -1.4 -
53 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 0.00016 -1.4 -
54 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 8e-05 -1.5 -
55 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 4e-05 -0.93 -
56 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00016 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 33 2e-05 0.094 -
57 -0.76 1.2 0.46 0.32 -2.3 -1 -0.093 0.00014 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 3.2 2e-05 0.78 +
58 -0.76 1.2 0.46 0.32 -2.3 -1 -0.094 0.00014 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 0.15 0.0002 1 ++
59 -0.76 1.2 0.46 0.32 -2.3 -1 -0.094 0.00014 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 3.2 0.002 1 ++
60 -0.76 1.2 0.46 0.32 -2.3 -1 -0.096 0.00015 -1.1 -0.77 -0.14 -0.93 -0.049 -0.29 -0.29 8.1e+03 0.25 0.02 1 ++
61 -0.77 1.2 0.45 0.32 -2.3 -1 -0.11 0.00022 -1.1 -0.75 -0.15 -0.93 -0.057 -0.29 -0.3 8.1e+03 8 0.02 0.8 +
62 -0.79 1.2 0.44 0.32 -2.3 -1 -0.11 0.00021 -1.1 -0.75 -0.14 -0.94 -0.061 -0.29 -0.29 8.1e+03 0.16 0.2 1 ++
63 -0.93 1.2 0.55 0.52 -2.1 -1.2 -0.11 0.00021 -1.1 -0.76 -0.13 -1 -0.081 -0.46 -0.35 8.1e+03 0.27 2 1 ++
64 -0.93 1.2 0.55 0.53 -2.1 -1.2 -0.11 0.00021 -1.1 -0.76 -0.13 -1 -0.083 -0.5 -0.36 8.1e+03 0.011 20 1 ++
65 -0.93 1.2 0.55 0.52 -2.1 -1.2 -0.11 0.00021 -1.1 -0.76 -0.13 -1 -0.083 -0.51 -0.36 8.1e+03 0.0089 2e+02 1 ++
66 -0.93 1.2 0.55 0.52 -2.1 -1.2 -0.11 0.00021 -1.1 -0.76 -0.13 -1 -0.083 -0.51 -0.36 8.1e+03 1.3e-06 2e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 53/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000060
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com b_cost asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -1 0.98 0.16 0.076 -0.83 0.32 -0.65 -0.3 -0.39 0.025 -0.11 8.5e+03 0.041 10 1.1 ++
1 -1.3 1.3 0.4 0.45 -1.1 0.0035 -0.69 0.0048 -1.1 -0.028 -0.43 8.3e+03 0.0098 1e+02 1.1 ++
2 -1.5 1.4 0.54 0.62 -1.2 -0.16 -0.7 0.029 -1.2 -0.03 -0.46 8.3e+03 0.00076 1e+03 1 ++
3 -1.5 1.4 0.56 0.64 -1.2 -0.17 -0.7 0.03 -1.2 -0.031 -0.46 8.3e+03 6.1e-06 1e+04 1 ++
4 -1.5 1.4 0.56 0.64 -1.2 -0.17 -0.7 0.03 -1.2 -0.031 -0.46 8.3e+03 4.8e-10 1e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000061
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com b_cost_train mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.54 0.3 0.03 -0.0061 -1 -0.058 -0.56 1.9 0.19 -0.3 -0.082 -0.023 0.05 -0.64 9.1e+03 0.19 1 0.69 +
1 -0.54 0.3 0.03 -0.0061 -1 -0.058 -0.56 1.9 0.19 -0.3 -0.082 -0.023 0.05 -0.64 9.1e+03 0.19 0.5 -0.39 -
2 -0.23 0.63 0.39 0.031 -0.75 0.027 -0.57 2.4 -0.18 -0.4 -0.17 -0.077 -0.22 -0.44 8.8e+03 0.17 0.5 0.33 +
3 -0.6 0.4 0.16 0.043 -0.79 0.08 -0.38 2.9 -0.17 -0.23 -0.027 -0.12 -0.25 -0.49 8.3e+03 0.038 0.5 0.77 +
4 -0.67 0.66 0.26 0.11 -0.99 0.3 -0.5 2.4 -0.38 -0.061 -0.036 -0.25 -0.12 -0.56 8.3e+03 0.0057 5 1.1 ++
5 -0.67 0.66 0.26 0.11 -0.99 0.3 -0.5 2.4 -0.38 -0.061 -0.036 -0.25 -0.12 -0.56 8.3e+03 0.0057 0.71 -2.1 -
6 -0.82 0.87 0.31 0.13 -1.1 -0.013 -0.62 1.7 -0.24 -0.28 -0.098 -0.3 -0.3 -0.65 8.2e+03 0.01 7.1 1.1 ++
7 -0.86 0.9 0.37 0.27 -1.1 0.0016 -0.73 1.6 -0.28 -0.47 -0.035 -0.33 -0.29 -0.66 8.2e+03 0.0021 71 1.1 ++
8 -0.88 0.92 0.38 0.3 -1.1 -0.014 -0.78 1.5 -0.28 -0.54 -0.033 -0.35 -0.29 -0.67 8.2e+03 0.0003 7.1e+02 1.1 ++
9 -0.88 0.92 0.38 0.3 -1.1 -0.014 -0.78 1.5 -0.28 -0.54 -0.033 -0.35 -0.29 -0.67 8.2e+03 2.3e-06 7.1e+02 1 ++
Considering neighbor 1/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000062
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.65 0.44 0.061 -0.0075 -0.85 -0.54 1.8 -1 1.9 0.22 -0.32 -0.11 -0.022 9e+03 0.11 1 0.56 +
1 -0.8 1.1 0.34 0.071 -0.1 -0.29 1.8 0 2.2 -0.048 -0.54 -0.044 -0.17 8.8e+03 0.08 1 0.29 +
2 -0.78 0.26 0.37 0.091 -0.41 -0.37 0.81 -0.42 2.4 -0.13 -0.19 0.077 -0.26 8.4e+03 0.038 10 0.91 ++
3 -0.59 0.76 0.23 0.0044 -0.88 -0.42 0.29 -0.5 2.3 0.07 -0.21 -0.05 -0.41 8.2e+03 0.013 1e+02 1.2 ++
4 -0.76 1.1 0.33 0.18 -1.2 -0.53 0.41 -0.68 1.2 0.21 -0.45 -0.079 -0.45 8.2e+03 0.019 1e+02 0.16 +
5 -0.87 1.2 0.36 0.26 -1.3 -0.52 0.34 -0.68 1.4 0.23 -0.73 -0.074 -0.49 8.1e+03 0.0024 1e+03 1 ++
6 -0.8 1.1 0.34 0.21 -1.3 -0.51 0.34 -0.67 1.5 0.22 -0.65 -0.075 -0.48 8.1e+03 0.00086 1e+04 1.1 ++
7 -0.8 1.1 0.34 0.21 -1.3 -0.51 0.34 -0.66 1.5 0.22 -0.65 -0.075 -0.48 8.1e+03 1.7e-05 1e+05 1 ++
8 -0.8 1.1 0.34 0.21 -1.3 -0.51 0.34 -0.66 1.5 0.22 -0.65 -0.075 -0.48 8.1e+03 6.4e-08 1e+05 1 ++
Considering neighbor 2/20 for current solution
Attempt 54/100
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000063
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train_re b_time_train_di b_cost_train b_time_swissmet b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car_ref b_time_car_diff b_cost_car Function Relgrad Radius Rho
0 -0.7 0.21 0.017 -0.74 -0.11 -0.98 -1 0.29 -0.58 -0.26 -0.26 -0.072 -0.74 -0.083 -0.61 8.6e+03 0.088 10 1.1 ++
1 -0.71 0.6 0.51 -1.3 0.69 -1.5 -1.6 2.2 -0.76 -0.44 -0.11 -0.4 -1.2 0.93 -0.64 8.3e+03 0.03 1e+02 1 ++
2 -0.65 0.74 0.63 -1.5 0.11 -1.7 -1.8 1.1 -0.79 -0.56 -0.13 -0.51 -1.2 0.36 -0.7 8.3e+03 0.014 1e+02 0.47 +
3 -0.65 0.74 0.63 -1.5 0.11 -1.7 -1.8 1.1 -0.79 -0.56 -0.13 -0.51 -1.2 0.36 -0.7 8.3e+03 0.014 0.61 0.091 -
4 -0.58 0.75 0.67 -1.4 0.32 -1.7 -1.5 1.7 -0.79 -0.41 -0.13 -0.51 -1.1 0.63 -0.64 8.3e+03 0.0098 0.61 0.41 +
5 -0.62 0.77 0.66 -1.5 0.29 -1.7 -1.8 1.5 -0.8 -0.52 -0.13 -0.51 -1.2 0.55 -0.68 8.2e+03 0.0032 0.61 0.77 +
6 -0.62 0.77 0.67 -1.5 0.36 -1.7 -1.8 1.6 -0.8 -0.51 -0.13 -0.51 -1.2 0.63 -0.68 8.2e+03 3.3e-05 6.1 0.98 ++
7 -0.62 0.77 0.67 -1.5 0.36 -1.7 -1.8 1.6 -0.8 -0.51 -0.13 -0.51 -1.2 0.63 -0.68 8.2e+03 8.4e-08 6.1 1 ++
Considering neighbor 0/20 for current solution
Attempt 55/100
Biogeme parameters read from biogeme.toml.
Model with 17 unknown parameters [max: 50]
*** Estimate b07everything_000064
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.48 -
1 1e+04 1.4 0.5 0.2 +
2 1e+04 1.4 0.25 -5.5 -
3 1e+04 1.4 0.12 -6.3 -
4 1e+04 1.4 0.062 -3.9 -
5 9.6e+03 6.2 0.062 0.87 +
6 9.6e+03 6.2 0.031 -0.071 -
7 9.6e+03 6.2 0.016 -0.071 -
8 9.6e+03 6.2 0.0078 -0.077 -
9 9.5e+03 1.7 0.0078 0.19 +
10 9.5e+03 1.7 0.0039 -0.016 -
11 9.4e+03 1 0.039 0.96 ++
12 9.4e+03 0.063 0.39 1 ++
13 9e+03 2 3.9 0.93 ++
14 9e+03 2 2 -13 -
15 9e+03 2 0.98 -4.4 -
16 9e+03 2 0.49 -0.6 -
17 8.6e+03 2.7 0.49 0.51 +
18 8.4e+03 2.8 4.9 0.92 ++
19 8.4e+03 2.8 0.58 -49 -
20 8.3e+03 0.35 0.58 0.6 +
21 8.3e+03 0.35 0.29 -0.26 -
22 8.3e+03 0.4 0.29 0.44 +
23 8.3e+03 1.8 0.29 0.5 +
24 8.3e+03 0.063 0.29 0.61 +
25 8.2e+03 0.062 2.9 1 ++
26 8.2e+03 0.28 29 1.3 ++
27 8.2e+03 0.6 2.9e+02 1.4 ++
28 8.2e+03 9.8 2.9e+02 0.52 +
29 8.2e+03 3.3 2.9e+02 0.89 +
30 8.2e+03 0.11 2.9e+03 1 ++
31 8.2e+03 0.0012 2.9e+04 1 ++
32 8.2e+03 7.4e-06 2.9e+05 1 ++
33 8.2e+03 4.2e-07 2.9e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 56/100
Biogeme parameters read from biogeme.toml.
Model with 7 unknown parameters [max: 50]
*** Estimate b07everything_000065
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time lambda_travel_t b_cost_train b_cost_swissmet asc_car b_cost_car Function Relgrad Radius Rho
0 -0.53 -1 1.4 -0.36 -0.34 -0.11 -0.2 8.8e+03 0.05 10 0.95 ++
1 0.3 -2.2 -0.018 -1.4 -0.79 -0.19 -0.18 8.6e+03 0.027 10 0.66 +
2 0.34 -1.8 0.2 -2 -0.78 -0.081 -0.51 8.4e+03 0.0086 1e+02 1.1 ++
3 0.29 -1.7 0.37 -2 -0.81 -0.16 -0.49 8.4e+03 0.0016 1e+03 1.1 ++
4 0.27 -1.7 0.39 -2.1 -0.81 -0.17 -0.49 8.4e+03 2.9e-05 1e+04 1 ++
5 0.27 -1.7 0.39 -2.1 -0.81 -0.17 -0.49 8.4e+03 2.4e-08 1e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000066
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_com lambda_travel_t b_cost_train b_cost_swissmet asc_car_ref asc_car_diff_GA b_cost_car Function Relgrad Radius Rho
0 -0.54 0.18 -1 -0.089 1.4 -0.36 -0.35 -0.11 -0.25 -0.2 8.8e+03 0.049 10 0.96 ++
1 -0.54 0.18 -1 -0.089 1.4 -0.36 -0.35 -0.11 -0.25 -0.2 8.8e+03 0.049 5 -1.7e+06 -
2 -0.54 0.18 -1 -0.089 1.4 -0.36 -0.35 -0.11 -0.25 -0.2 8.8e+03 0.049 2.5 -59 -
3 -0.54 0.18 -1 -0.089 1.4 -0.36 -0.35 -0.11 -0.25 -0.2 8.8e+03 0.049 1.2 -2.1 -
4 -0.54 1.4 -1.8 -0.55 0.29 -1 -0.86 -0.3 -0.74 -0.3 8.2e+03 0.021 12 0.9 ++
5 -0.54 1.4 -1.7 -0.58 0.34 -1.1 -0.73 -0.036 -1.1 -0.49 8.2e+03 0.00098 1.2e+02 1 ++
6 -0.52 1.3 -1.6 -0.57 0.35 -1.2 -0.74 -0.046 -1.1 -0.49 8.2e+03 1.7e-05 1.2e+03 1 ++
7 -0.52 1.3 -1.6 -0.57 0.35 -1.2 -0.74 -0.046 -1.1 -0.49 8.2e+03 4.9e-09 1.2e+03 1 ++
Considering neighbor 1/20 for current solution
Attempt 57/100
Biogeme parameters read from biogeme.toml.
Model with 20 unknown parameters [max: 50]
*** Estimate b07everything_000067
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.59 -
1 1.1e+04 0.4 0.25 0.01 -
2 9.6e+03 1.1 0.25 0.79 +
3 9.6e+03 1.1 0.12 0.79 -
4 9.6e+03 1.1 0.062 0.79 -
5 9.6e+03 1.1 0.031 -14 -
6 9.6e+03 1.1 0.016 -1.6 -
7 9.4e+03 0.54 0.16 0.97 ++
8 9.1e+03 0.11 1.6 0.99 ++
9 9.1e+03 0.11 0.78 -2.7 -
10 9.1e+03 0.11 0.39 -0.77 -
11 8.9e+03 6.4 0.39 0.25 +
12 8.9e+03 6.4 0.2 0.25 -
13 8.9e+03 6.4 0.098 0.25 -
14 8.9e+03 6.4 0.049 0.25 -
15 8.9e+03 6.4 0.024 0.25 -
16 8.9e+03 6.4 0.012 0.25 -
17 8.9e+03 6.4 0.0061 -1.1 -
18 8.8e+03 14 0.0061 0.28 +
19 8.7e+03 6.2 0.0061 0.14 +
20 8.7e+03 6.2 0.0031 -0.51 -
21 8.5e+03 4.7 0.0031 0.79 +
22 8.5e+03 4.7 0.0015 -1.3 -
23 8.5e+03 4.7 0.00076 -0.6 -
24 8.5e+03 4.7 0.00038 0.099 -
25 8.5e+03 1.8 0.0038 0.97 ++
26 8.5e+03 0.35 0.038 1 ++
27 8.4e+03 0.041 0.38 0.99 ++
28 8.2e+03 0.28 3.8 0.91 ++
29 8.2e+03 0.28 1.9 0.91 -
30 8.2e+03 0.28 0.95 -99 -
31 8.2e+03 0.28 0.48 -40 -
32 8.2e+03 0.28 0.24 -7.3 -
33 8.2e+03 0.76 0.24 0.25 +
34 8.1e+03 1.5 2.4 0.97 ++
35 8.1e+03 1.5 1.2 -1.3e+02 -
36 8.1e+03 1.5 0.6 -21 -
37 8.1e+03 1.5 0.3 -3.2 -
38 8.1e+03 11 0.3 0.26 +
39 8e+03 0.3 3 0.96 ++
40 8e+03 3.9 30 0.94 ++
41 8e+03 0.11 3e+02 1 ++
42 8e+03 7.7e-05 3e+03 1 ++
43 8e+03 2.2e-06 3e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 58/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000068
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_com lambda_travel_t b_cost_train mu_public b_cost_swissmet asc_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 1 0 1 0 0 0 1.1e+04 0.26 0.5 0.02 -
1 -0.4 -0.5 -0.069 1 -0.39 1.2 0.3 0.00038 -0.025 9.2e+03 0.11 0.5 0.79 +
2 -0.39 -0.77 -0.12 1 -0.5 1.3 -0.2 -0.056 -0.069 8.8e+03 0.038 5 0.93 ++
3 -0.39 -0.77 -0.12 1 -0.5 1.3 -0.2 -0.056 -0.069 8.8e+03 0.038 2.5 0.93 -
4 -0.39 -0.77 -0.12 1 -0.5 1.3 -0.2 -0.056 -0.069 8.8e+03 0.038 1.2 -15 -
5 -0.39 -0.77 -0.12 1 -0.5 1.3 -0.2 -0.056 -0.069 8.8e+03 0.038 0.62 0.042 -
6 -0.2 -1.3 -0.19 0.8 -1.1 1.3 -0.74 -0.4 -0.32 8.5e+03 0.016 6.2 1.1 ++
7 -0.2 -1.3 -0.19 0.8 -1.1 1.3 -0.74 -0.4 -0.32 8.5e+03 0.016 3.1 -74 -
8 -0.2 -1.3 -0.19 0.8 -1.1 1.3 -0.74 -0.4 -0.32 8.5e+03 0.016 1.6 -37 -
9 -0.2 -1.3 -0.19 0.8 -1.1 1.3 -0.74 -0.4 -0.32 8.5e+03 0.016 0.78 -4.6 -
10 0.58 -1.6 -0.44 0.33 -1.9 1.6 -0.92 -0.4 -0.51 8.4e+03 0.017 0.78 0.63 +
11 0.41 -1.5 -0.49 0.39 -1.8 1.3 -0.84 -0.26 -0.54 8.4e+03 0.0074 7.8 1.1 ++
12 0.36 -1.6 -0.51 0.38 -1.9 1.1 -0.82 -0.2 -0.52 8.4e+03 0.0057 78 1.2 ++
13 0.33 -1.6 -0.53 0.36 -2 1 -0.8 -0.15 -0.51 8.4e+03 0.0025 7.8e+02 1.3 ++
14 0.3 -1.6 -0.53 0.36 -2.1 1 -0.79 -0.14 -0.5 8.4e+03 0.0009 7.8e+03 1.1 ++
15 0.31 -1.6 -0.54 0.36 -2.1 1 -0.8 -0.14 -0.51 8.4e+03 8.4e-06 7.8e+04 1 ++
16 0.31 -1.6 -0.54 0.36 -2.1 1 -0.8 -0.14 -0.51 8.4e+03 5.1e-10 7.8e+04 1 ++
Considering neighbor 0/20 for current solution
Considering neighbor 1/20 for current solution
Attempt 59/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000069
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st square_tt_coef cube_tt_coef b_cost_train b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.5 -1.6 -
1 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.25 -0.24 -
2 -0.25 -0.15 -0.0057 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 -0.0018 -0.0062 9.4e+03 1.4 2.5 1.1 ++
3 -0.25 -0.15 -0.0057 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 -0.0018 -0.0062 9.4e+03 1.4 1.2 -5.9 -
4 -0.25 -0.15 -0.0057 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 -0.0018 -0.0062 9.4e+03 1.4 0.62 -3.2 -
5 -0.25 -0.15 -0.0057 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 -0.0018 -0.0062 9.4e+03 1.4 0.31 -1.5 -
6 -0.25 -0.15 -0.0057 -0.25 -0.19 0 0 -0.25 0.25 0.0078 -0.0062 -0.0018 -0.0062 9.4e+03 1.4 0.16 -0.075 -
7 -0.35 -0.17 -0.0076 -0.41 -0.26 0.15 -0.003 -0.36 0.19 0.038 -0.0079 -0.0042 0.02 9.2e+03 9 0.16 0.49 +
8 -0.35 -0.17 -0.0076 -0.41 -0.26 0.15 -0.003 -0.36 0.19 0.038 -0.0079 -0.0042 0.02 9.2e+03 9 0.078 0.058 -
9 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.078 0.14 +
10 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.039 -4.3 -
11 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.02 -2.8 -
12 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.0098 -2 -
13 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.0049 -1.2 -
14 -0.36 -0.16 -0.0074 -0.47 -0.27 0.11 0.0022 -0.37 0.11 0.051 -0.011 -0.0056 0.036 9.1e+03 5.3 0.0024 0.091 -
15 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.024 1 ++
16 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.012 -2.9 -
17 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.0061 -2.3 -
18 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.0031 -1.8 -
19 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.0015 -1.1 -
20 -0.36 -0.15 -0.005 -0.47 -0.27 0.11 -0.00025 -0.38 0.11 0.054 -0.014 -0.008 0.038 9e+03 5.1 0.00076 -0.26 -
21 -0.36 -0.15 -0.0042 -0.47 -0.27 0.11 -0.001 -0.38 0.11 0.055 -0.015 -0.0088 0.039 9e+03 2.7 0.00076 0.41 +
22 -0.36 -0.15 -0.0042 -0.47 -0.27 0.11 -0.001 -0.38 0.11 0.055 -0.015 -0.0088 0.039 9e+03 2.7 0.00038 -0.86 -
23 -0.36 -0.15 -0.0039 -0.47 -0.27 0.11 -0.00063 -0.38 0.11 0.054 -0.015 -0.0092 0.039 9e+03 4.3 0.00038 0.45 +
24 -0.36 -0.15 -0.0039 -0.47 -0.27 0.11 -0.00084 -0.38 0.11 0.054 -0.015 -0.0092 0.039 9e+03 2.4 0.00038 0.21 +
25 -0.36 -0.15 -0.0039 -0.47 -0.27 0.11 -0.00084 -0.38 0.11 0.054 -0.015 -0.0092 0.039 9e+03 2.4 0.00019 -1.3 -
26 -0.36 -0.15 -0.0037 -0.47 -0.28 0.11 -0.00065 -0.38 0.11 0.054 -0.015 -0.0094 0.039 9e+03 3.7 0.00019 0.15 +
27 -0.36 -0.15 -0.0037 -0.47 -0.28 0.11 -0.00077 -0.38 0.11 0.054 -0.015 -0.0094 0.039 8.9e+03 1.4 0.00019 0.62 +
28 -0.36 -0.15 -0.0037 -0.47 -0.28 0.11 -0.00072 -0.38 0.11 0.054 -0.015 -0.0094 0.04 8.9e+03 0.72 0.00019 0.77 +
29 -0.36 -0.15 -0.0037 -0.47 -0.28 0.11 -0.00073 -0.38 0.11 0.054 -0.015 -0.0094 0.04 8.9e+03 0.058 0.0019 1 ++
30 -0.36 -0.15 -0.0037 -0.47 -0.28 0.11 -0.00074 -0.38 0.11 0.054 -0.016 -0.0094 0.04 8.9e+03 0.26 0.019 1 ++
31 -0.37 -0.15 -0.0036 -0.48 -0.28 0.12 -0.00076 -0.39 0.089 0.054 -0.019 -0.01 0.041 8.9e+03 0.056 0.19 1 ++
32 -0.39 -0.095 -0.0027 -0.57 -0.32 0.18 -0.001 -0.46 -0.1 0.049 -0.06 -0.016 0.048 8.8e+03 0.18 1.9 0.99 ++
33 -0.39 -0.095 -0.0027 -0.57 -0.32 0.18 -0.001 -0.46 -0.1 0.049 -0.06 -0.016 0.048 8.8e+03 0.18 0.95 -61 -
34 -0.39 -0.095 -0.0027 -0.57 -0.32 0.18 -0.001 -0.46 -0.1 0.049 -0.06 -0.016 0.048 8.8e+03 0.18 0.48 0.042 -
35 -0.44 0.18 0.0063 -0.77 -0.4 0.073 -0.00057 -0.81 -0.58 -0.2 -0.34 -0.048 -0.11 8.5e+03 0.041 4.8 0.98 ++
36 -0.75 0.65 0.5 -1 -0.52 -0.045 -8.6e-05 -1.5 -0.84 -0.44 -0.097 -0.45 -0.31 8.3e+03 1.6 48 1.2 ++
37 -0.61 0.73 0.6 -1.5 -0.61 -0.091 0.00013 -1.7 -0.88 -0.34 -0.13 -0.55 -0.35 8.3e+03 4.2 4.8e+02 1.2 ++
38 -0.51 0.75 0.61 -1.9 -0.65 -0.11 0.0002 -1.8 -0.89 -0.29 -0.14 -0.59 -0.34 8.2e+03 6.7 4.8e+03 1 ++
39 -0.49 0.74 0.6 -1.9 -0.66 -0.11 0.0002 -1.8 -0.9 -0.28 -0.15 -0.62 -0.34 8.2e+03 0.059 4.8e+04 0.99 ++
40 -0.49 0.74 0.59 -1.9 -0.67 -0.11 0.0002 -1.8 -0.9 -0.28 -0.15 -0.65 -0.34 8.2e+03 0.00035 4.8e+05 1 ++
41 -0.49 0.74 0.59 -1.9 -0.67 -0.11 0.0002 -1.8 -0.9 -0.28 -0.15 -0.65 -0.34 8.2e+03 0.0056 4.8e+06 1 ++
42 -0.49 0.74 0.59 -1.9 -0.67 -0.11 0.0002 -1.8 -0.9 -0.28 -0.15 -0.65 -0.34 8.2e+03 1.6e-06 4.8e+06 1 ++
Considering neighbor 0/20 for current solution
Attempt 60/100
Biogeme parameters read from biogeme.toml.
Model with 18 unknown parameters [max: 50]
*** Estimate b07everything_000070
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.56 -
1 1e+04 1.5 0.5 0.2 +
2 1e+04 1.5 0.25 0.2 -
3 1e+04 1.5 0.12 0.2 -
4 1e+04 1.5 0.062 -4.2 -
5 9.9e+03 7.1 0.062 0.49 +
6 9.9e+03 7.1 0.031 -0.0058 -
7 9.7e+03 1.2 0.031 0.11 +
8 9.7e+03 1.2 0.016 -0.28 -
9 9.4e+03 0.58 0.16 0.92 ++
10 9.4e+03 0.58 0.078 0.92 -
11 9.4e+03 0.58 0.039 -15 -
12 9.4e+03 0.58 0.02 -16 -
13 9.4e+03 0.58 0.0098 -6.8 -
14 9.3e+03 3.2 0.0098 0.63 +
15 9.3e+03 0.11 0.0098 0.87 +
16 9.3e+03 0.32 0.098 0.98 ++
17 9.1e+03 0.036 0.98 1 ++
18 9.1e+03 0.036 0.49 -1.3 -
19 9e+03 12 0.49 0.18 +
20 8.6e+03 14 0.49 0.42 +
21 8.6e+03 14 0.24 0.42 -
22 8.6e+03 14 0.12 0.42 -
23 8.6e+03 14 0.061 0.42 -
24 8.6e+03 14 0.031 0.42 -
25 8.6e+03 14 0.015 0.42 -
26 8.6e+03 14 0.0076 0.42 -
27 8.6e+03 14 0.0038 0.42 -
28 8.6e+03 14 0.0019 -1.6 -
29 8.6e+03 14 0.00095 -1.1 -
30 8.6e+03 14 0.00048 -0.63 -
31 8.6e+03 14 0.00024 -0.42 -
32 8.6e+03 14 0.00012 -0.062 -
33 8.6e+03 7.8 0.00012 0.58 +
34 8.6e+03 8.5 0.00012 0.45 +
35 8.6e+03 1.7 0.00012 0.89 +
36 8.6e+03 0.3 0.0012 1 ++
37 8.6e+03 0.74 0.012 1 ++
38 8.5e+03 0.25 0.12 1 ++
39 8.3e+03 0.63 1.2 1 ++
40 8.3e+03 0.63 0.6 -91 -
41 8.3e+03 0.63 0.3 -1.6 -
42 8.2e+03 0.14 3 1.1 ++
43 8.2e+03 0.14 1.5 1.1 -
44 8.2e+03 0.14 0.75 -1.9e+02 -
45 8.2e+03 0.14 0.37 -7.8 -
46 8.2e+03 0.29 3.7 1.1 ++
47 8.2e+03 0.29 0.32 -3.2 -
48 8.2e+03 0.91 3.2 1.2 ++
49 8.2e+03 0.91 0.4 -5.7 -
50 8.1e+03 0.86 4 1.1 ++
51 8.1e+03 2.3 40 1.1 ++
52 8.1e+03 0.21 4e+02 1 ++
53 8.1e+03 0.0077 4e+03 1 ++
54 8.1e+03 0.0044 4e+04 1 ++
55 8.1e+03 0.00029 4e+05 1 ++
56 8.1e+03 2.2e-05 4e+06 1 ++
57 8.1e+03 7.3e-08 4e+06 1 ++
Considering neighbor 0/20 for current solution
Considering neighbor 1/20 for current solution
Attempt 61/100
Considering neighbor 0/20 for current solution
Attempt 62/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000071
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train lambda_travel_t b_cost_train b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car b_cost_car Function Relgrad Radius Rho
0 -0.95 -0.025 -0.021 -0.78 1.6 -0.61 -1 -0.68 -0.28 -0.4 -0.043 -0.75 -0.54 8.9e+03 0.043 1 0.89 +
1 -0.68 0.79 0.15 -1.1 0.87 -1.6 -1.5 -0.82 -0.29 0.0089 -0.18 -1.2 -0.51 8.4e+03 0.023 10 1.1 ++
2 -0.38 0.76 0.7 -1.7 0.46 -1.7 -1.7 -0.77 0.016 -0.12 -0.53 -1.4 -0.67 8.3e+03 0.014 1e+02 1.2 ++
3 -0.25 0.75 0.59 -2.2 0.24 -1.7 -1.7 -0.77 0.12 -0.13 -0.57 -1.5 -0.75 8.3e+03 0.0038 1e+03 1.1 ++
4 -0.23 0.75 0.57 -2.3 0.17 -1.7 -1.7 -0.77 0.15 -0.13 -0.58 -1.5 -0.78 8.3e+03 0.00023 1e+04 1 ++
5 -0.23 0.75 0.57 -2.3 0.17 -1.7 -1.7 -0.77 0.15 -0.13 -0.58 -1.5 -0.78 8.3e+03 7.4e-07 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 63/100
Considering neighbor 0/20 for current solution
Attempt 64/100
Biogeme parameters read from biogeme.toml.
Model with 6 unknown parameters [max: 50]
*** Estimate b07everything_000072
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_com lambda_travel_t b_cost asc_car Function Relgrad Radius Rho
0 -0.68 -1 0.016 1.6 -0.62 -0.3 8.9e+03 0.046 1 0.81 +
1 -0.64 -1.6 -0.05 0.6 -0.93 -0.062 8.7e+03 0.027 1 0.89 +
2 -0.46 -1.6 -0.36 0.53 -0.77 0.15 8.6e+03 0.0011 10 0.97 ++
3 -0.46 -1.6 -0.36 0.53 -0.77 0.15 8.6e+03 3.8e-06 10 1 ++
Considering neighbor 0/20 for current solution
Attempt 65/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000073
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train b_cost_train b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_GA b_time_car b_cost_car Function Relgrad Radius Rho
0 -0.89 0.79 -0.8 -0.73 -1 -0.61 -0.38 -0.57 -0.76 -0.68 8.5e+03 0.083 10 1.1 ++
1 -1 1.3 -1.2 -0.9 -1.4 -0.72 -0.49 -0.93 -1.1 -0.6 8.3e+03 0.022 1e+02 1.1 ++
2 -0.88 1.3 -1.4 -0.99 -1.5 -0.73 -0.5 -1 -1.1 -0.62 8.3e+03 0.0023 1e+03 1.1 ++
3 -0.86 1.3 -1.4 -1 -1.5 -0.73 -0.51 -1.1 -1.1 -0.62 8.3e+03 2.9e-05 1e+04 1 ++
4 -0.86 1.3 -1.4 -1 -1.5 -0.73 -0.51 -1.1 -1.1 -0.62 8.3e+03 5.9e-09 1e+04 1 ++
Considering neighbor 0/20 for current solution
Considering neighbor 1/20 for current solution
Attempt 66/100
Biogeme parameters read from biogeme.toml.
Model with 17 unknown parameters [max: 50]
*** Estimate b07everything_000074
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 9.6e+03 0.22 1 0.51 +
1 9.6e+03 0.22 0.5 -1.7 -
2 9.6e+03 0.22 0.25 -0.011 -
3 8.5e+03 0.057 0.25 0.89 +
4 8.3e+03 0.018 2.5 1.1 ++
5 8.3e+03 0.018 1.2 -7.3 -
6 8.3e+03 0.048 1.2 0.16 +
7 8.2e+03 0.005 12 0.98 ++
8 8.2e+03 0.0016 1.2e+02 1 ++
9 8.2e+03 1.2e-05 1.2e+03 1 ++
10 8.2e+03 2.1e-08 1.2e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 67/100
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000075
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st square_tt_coef cube_tt_coef b_cost mu_public asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 -0.54 -
1 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 5 1.1 ++
2 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 2.5 1.1 -
3 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 1.2 1.1 -
4 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.62 -5 -
5 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.31 -4.8 -
6 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.16 -4.4 -
7 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.078 -3 -
8 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.039 -3.1 -
9 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.02 -3.7 -
10 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.0098 -4.4 -
11 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.0049 -4.9 -
12 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.0024 -3.9 -
13 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.0012 -2.3 -
14 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.00061 -1.1 -
15 -0.5 -0.00046 -0.39 -0.015 -0.5 -0.5 0 0 -0.11 1 0.021 -0.061 -0.017 -0.0049 9e+03 4.7 0.00031 -0.12 -
16 -0.5 -0.00016 -0.39 -0.016 -0.5 -0.5 0.00031 -0.00031 -0.11 1 0.021 -0.061 -0.017 -0.0052 9e+03 2.4 0.00031 0.67 +
17 -0.5 -4.7e-05 -0.39 -0.016 -0.5 -0.5 0.00061 -0.00024 -0.11 1 0.021 -0.061 -0.017 -0.0053 9e+03 1.1 0.00031 0.81 +
18 -0.5 6.4e-05 -0.39 -0.016 -0.5 -0.5 0.00092 -0.00026 -0.11 1 0.021 -0.061 -0.017 -0.0053 9e+03 0.087 0.0031 1 ++
19 -0.5 0.0012 -0.39 -0.016 -0.5 -0.5 0.004 -0.00027 -0.11 1 0.02 -0.062 -0.018 -0.0053 9e+03 0.39 0.031 1 ++
20 -0.51 0.013 -0.38 -0.016 -0.52 -0.51 0.034 -0.00041 -0.13 1 0.018 -0.069 -0.024 -0.0059 8.9e+03 0.16 0.31 1 ++
21 -0.54 0.2 -0.25 -0.015 -0.64 -0.54 0.13 -0.00082 -0.43 1.1 0.027 -0.17 -0.086 -0.014 8.7e+03 0.71 3.1 0.98 ++
22 -0.54 0.2 -0.25 -0.015 -0.64 -0.54 0.13 -0.00082 -0.43 1.1 0.027 -0.17 -0.086 -0.014 8.7e+03 0.71 1.5 -57 -
23 -0.54 0.2 -0.25 -0.015 -0.64 -0.54 0.13 -0.00082 -0.43 1.1 0.027 -0.17 -0.086 -0.014 8.7e+03 0.71 0.76 -9.8 -
24 -0.54 0.2 -0.25 -0.015 -0.64 -0.54 0.13 -0.00082 -0.43 1.1 0.027 -0.17 -0.086 -0.014 8.7e+03 0.71 0.38 0.032 -
25 -0.64 0.58 0.0034 -0.012 -0.78 -0.56 -0.047 -5.8e-05 -0.81 1.3 0.088 -0.34 -0.15 -0.033 8.4e+03 0.11 0.38 0.79 +
26 -0.72 0.96 0.21 0.011 -1.1 -0.68 -0.082 8.6e-05 -0.77 1.5 -0.044 -0.47 -0.21 -0.063 8.2e+03 2.3 3.8 0.98 ++
27 -0.95 1.2 0.37 0.29 -1.5 -0.71 -0.11 0.00022 -0.77 1.1 0.13 -1.1 -0.086 -0.41 8.2e+03 0.65 38 0.98 ++
28 -1.1 1.3 0.45 0.45 -1.6 -0.65 -0.1 0.00018 -0.77 1.1 0.17 -1.2 -0.09 -0.51 8.2e+03 1.4 3.8e+02 1.1 ++
29 -1.3 1.4 0.47 0.47 -1.7 -0.67 -0.1 0.00019 -0.77 1 0.2 -1.2 -0.082 -0.54 8.1e+03 0.059 3.8e+03 1 ++
30 -1.3 1.4 0.5 0.48 -1.7 -0.66 -0.1 0.00019 -0.77 1 0.2 -1.2 -0.09 -0.54 8.1e+03 1.3 3.8e+04 1 ++
31 -1.3 1.4 0.52 0.54 -1.7 -0.67 -0.1 0.00019 -0.77 1 0.19 -1.2 -0.083 -0.56 8.1e+03 0.06 3.8e+05 1 ++
32 -1.3 1.4 0.52 0.54 -1.7 -0.67 -0.1 0.00019 -0.77 1 0.19 -1.2 -0.084 -0.56 8.1e+03 0.00016 3.8e+06 1 ++
33 -1.3 1.4 0.52 0.54 -1.7 -0.67 -0.1 0.00019 -0.77 1 0.19 -1.2 -0.084 -0.56 8.1e+03 0.00026 3.8e+07 1 ++
34 -1.3 1.4 0.52 0.54 -1.7 -0.67 -0.1 0.00019 -0.77 1 0.19 -1.2 -0.084 -0.56 8.1e+03 1.6e-07 3.8e+07 1 ++
Considering neighbor 0/20 for current solution
Considering neighbor 1/20 for current solution
Attempt 68/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000076
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train b_cost_train mu_public b_time_swissmet b_cost_swissmet asc_car_ref asc_car_diff_GA b_time_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.19 -
1 -0.28 0.044 -0.48 -0.28 1.5 0.2 0.22 -0.093 -0.069 -0.24 -0.13 9.8e+03 0.21 0.5 0.39 +
2 -0.17 0.3 -0.36 -0.33 1.6 -0.22 -0.28 -0.18 -0.22 -0.41 -0.22 9.1e+03 0.24 0.5 0.56 +
3 -0.34 0.56 -0.59 -0.64 2.1 -0.53 -0.42 -0.26 -0.39 -0.58 -0.3 8.5e+03 0.038 5 0.92 ++
4 -0.34 0.56 -0.59 -0.64 2.1 -0.53 -0.42 -0.26 -0.39 -0.58 -0.3 8.5e+03 0.038 2.5 -1.9e+02 -
5 -0.34 0.56 -0.59 -0.64 2.1 -0.53 -0.42 -0.26 -0.39 -0.58 -0.3 8.5e+03 0.038 1.2 -28 -
6 -0.34 0.56 -0.59 -0.64 2.1 -0.53 -0.42 -0.26 -0.39 -0.58 -0.3 8.5e+03 0.038 0.62 -0.87 -
7 -0.36 0.5 -0.7 -0.97 2.5 -0.94 -0.74 -0.47 -1 -0.9 -0.5 8.3e+03 0.043 0.62 0.9 +
8 -0.42 0.63 -0.86 -1 1.9 -1.1 -0.76 -0.5 -1.3 -0.96 -0.55 8.3e+03 0.035 6.2 1.1 ++
9 -0.49 0.75 -0.98 -1 1.7 -1.2 -0.77 -0.53 -1.2 -0.99 -0.56 8.3e+03 0.012 62 1.3 ++
10 -0.63 0.96 -1.2 -1 1.3 -1.4 -0.75 -0.54 -1.1 -1.1 -0.6 8.3e+03 0.022 62 0.76 +
11 -0.7 1.1 -1.2 -1 1.2 -1.4 -0.75 -0.53 -1.1 -1.1 -0.6 8.3e+03 0.0024 6.2e+02 1.1 ++
12 -0.83 1.3 -1.4 -1 1 -1.5 -0.74 -0.52 -1.1 -1.1 -0.62 8.3e+03 0.0094 6.2e+02 0.5 +
13 -0.85 1.3 -1.4 -1 1 -1.5 -0.73 -0.51 -1.1 -1.1 -0.62 8.3e+03 0.00037 6.2e+03 1 ++
14 -0.86 1.3 -1.4 -1 1 -1.5 -0.73 -0.51 -1.1 -1.1 -0.62 8.3e+03 8.7e-05 6.2e+04 1 ++
15 -0.86 1.3 -1.4 -1 1 -1.5 -0.73 -0.51 -1.1 -1.1 -0.62 8.3e+03 9.2e-08 6.2e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 69/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000077
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.51 -
1 1.1e+04 0.4 0.25 0.07 -
2 9.5e+03 0.97 2.5 1.1 ++
3 9.5e+03 0.97 1.2 1.1 -
4 9.5e+03 0.97 0.62 1.1 -
5 9.5e+03 0.97 0.31 1.1 -
6 9.5e+03 0.97 0.16 1.1 -
7 9.5e+03 0.97 0.078 -8.4 -
8 1.4e+04 6.1 0.78 21 ++
9 1.4e+04 6.1 0.39 21 -
10 1.4e+04 6.1 0.2 21 -
11 1.4e+04 6.1 0.098 0.055 -
12 9.5e+03 0.66 0.098 0.25 +
13 9.5e+03 0.66 0.049 -7.1 -
14 9.5e+03 0.66 0.024 -3.1 -
15 9.3e+03 0.19 0.24 0.99 ++
16 9.3e+03 0.19 0.12 -11 -
17 9.3e+03 0.19 0.061 -11 -
18 9.3e+03 0.19 0.031 -11 -
19 9.3e+03 0.19 0.015 -12 -
20 9.3e+03 0.19 0.0076 -4.4 -
21 9.3e+03 0.19 0.0038 -0.63 -
22 9.3e+03 0.13 0.038 0.92 ++
23 9.2e+03 0.34 0.38 0.98 ++
24 9.2e+03 0.34 0.19 -0.05 -
25 8.9e+03 6.7 0.19 0.55 +
26 8.9e+03 6.7 0.095 -0.27 -
27 8.9e+03 6.7 0.048 0.1 -
28 8.9e+03 2.8 0.048 0.21 +
29 8.9e+03 2.8 0.024 -4.5 -
30 8.9e+03 2.8 0.012 -3 -
31 8.9e+03 2.8 0.006 -1.5 -
32 8.8e+03 6.4 0.006 0.22 +
33 8.8e+03 2.7 0.006 0.31 +
34 8.8e+03 2.7 0.003 -1.2 -
35 8.8e+03 4.3 0.003 0.13 +
36 8.8e+03 2.7 0.003 0.49 +
37 8.8e+03 2.7 0.0015 -0.81 -
38 8.8e+03 2.7 0.00075 0.072 -
39 8.7e+03 0.9 0.00075 0.82 +
40 8.7e+03 0.21 0.0075 0.96 ++
41 8.7e+03 0.032 0.075 1 ++
42 8.6e+03 0.11 0.75 1 ++
43 8.3e+03 2.8 7.5 1 ++
44 8.3e+03 2.8 3.7 1 -
45 8.3e+03 2.8 1.9 1 -
46 8.3e+03 2.8 0.93 -5e+02 -
47 8.3e+03 2.8 0.47 -94 -
48 8.3e+03 2.8 0.23 -3.3 -
49 8.2e+03 1.7 2.3 0.91 ++
50 8.2e+03 1.7 0.37 -6 -
51 8.2e+03 7 0.37 0.31 +
52 8.2e+03 7 0.18 -2.3 -
53 8.2e+03 7 0.091 -1.4 -
54 8.2e+03 7 0.046 -1.2 -
55 8.2e+03 7 0.023 -1 -
56 8.2e+03 7 0.011 -1.2 -
57 8.2e+03 7 0.0057 -1.7 -
58 8.2e+03 7 0.0029 -2.2 -
59 8.2e+03 7 0.0014 -2.6 -
60 8.2e+03 7 0.00071 -2.9 -
61 8.2e+03 7 0.00036 -3.1 -
62 8.2e+03 7 0.00018 -0.86 -
63 8.2e+03 7.7 0.00018 0.28 +
64 8.2e+03 5.8 0.00018 0.25 +
65 8.2e+03 5.8 8.9e-05 -0.34 -
66 8.2e+03 4.7 8.9e-05 0.39 +
67 8.2e+03 1.1 8.9e-05 0.83 +
68 8.2e+03 0.11 0.00089 0.99 ++
69 8.2e+03 0.28 0.0089 1 ++
70 8.2e+03 0.11 0.089 1 ++
71 8.2e+03 0.54 0.89 1 ++
72 8.2e+03 0.54 0.45 -6.9 -
73 8.2e+03 1.6 0.45 0.88 +
74 8.1e+03 0.72 4.5 1.2 ++
75 8.1e+03 0.42 45 1.1 ++
76 8.1e+03 0.023 4.5e+02 1 ++
77 8.1e+03 0.68 4.5e+03 0.98 ++
78 8.1e+03 0.019 4.5e+04 1 ++
79 8.1e+03 0.00059 4.5e+05 1 ++
80 8.1e+03 1.1e-05 4.5e+06 1 ++
81 8.1e+03 1.3e-06 4.5e+06 1 ++
Considering neighbor 0/20 for current solution
Attempt 70/100
Considering neighbor 0/20 for current solution
Attempt 71/100
Considering neighbor 0/20 for current solution
Attempt 72/100
Considering neighbor 0/20 for current solution
Attempt 73/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000078
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st square_tt_coef cube_tt_coef b_cost mu_existing asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 1 0 0 1.1e+04 0.26 0.5 -0.47 -
1 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 5 0.99 ++
2 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 2.5 0.99 -
3 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 1.2 0.99 -
4 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.62 0.99 -
5 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.31 0.99 -
6 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.16 0.99 -
7 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.078 0.99 -
8 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.039 0.99 -
9 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.02 0.99 -
10 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.0098 0.99 -
11 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.0049 -3.7 -
12 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.0024 -2.8 -
13 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.0012 -2 -
14 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.00061 -1.1 -
15 -0.5 0.0056 -0.5 -0.5 0 0 -0.17 1.5 0.11 -0.089 8.7e+03 7 0.00031 -0.16 -
16 -0.5 0.006 -0.5 -0.5 0.00031 -0.00031 -0.17 1.5 0.11 -0.089 8.7e+03 4.3 0.00031 0.62 +
17 -0.5 0.0061 -0.5 -0.5 0.00061 -0.00019 -0.17 1.5 0.11 -0.089 8.7e+03 5 0.00031 0.22 +
18 -0.5 0.0063 -0.5 -0.5 0.00092 -0.00027 -0.17 1.5 0.11 -0.089 8.7e+03 2.3 0.00031 0.66 +
19 -0.5 0.0064 -0.5 -0.5 0.0012 -0.00024 -0.17 1.5 0.11 -0.09 8.7e+03 0.51 0.0031 0.94 ++
20 -0.5 0.008 -0.5 -0.5 0.0043 -0.00026 -0.18 1.5 0.11 -0.091 8.7e+03 0.06 0.031 1 ++
21 -0.51 0.025 -0.52 -0.51 0.035 -0.00039 -0.2 1.5 0.1 -0.1 8.6e+03 0.31 0.31 1 ++
22 -0.52 0.23 -0.64 -0.53 0.097 -0.00065 -0.51 1.6 0.04 -0.24 8.4e+03 0.75 3.1 1 ++
23 -0.52 0.23 -0.64 -0.53 0.097 -0.00065 -0.51 1.6 0.04 -0.24 8.4e+03 0.75 1.5 1 -
24 -0.52 0.23 -0.64 -0.53 0.097 -0.00065 -0.51 1.6 0.04 -0.24 8.4e+03 0.75 0.76 -25 -
25 -0.52 0.23 -0.64 -0.53 0.097 -0.00065 -0.51 1.6 0.04 -0.24 8.4e+03 0.75 0.38 -2.3 -
26 -0.59 0.61 -0.85 -0.57 -0.11 0.00024 -0.74 1.8 0.043 -0.46 8.3e+03 12 0.38 0.45 +
27 -0.5 0.87 -1.2 -0.7 -0.08 9.7e-05 -0.58 1.9 0.1 -0.53 8.2e+03 5.4 0.38 0.82 +
28 -0.5 0.87 -1.2 -0.7 -0.08 9.7e-05 -0.58 1.9 0.1 -0.53 8.2e+03 5.4 0.19 -0.49 -
29 -0.48 0.94 -1.4 -0.67 -0.11 0.00024 -0.63 1.8 0.086 -0.56 8.2e+03 16 0.19 0.31 +
30 -0.5 1 -1.6 -0.54 -0.1 0.00019 -0.63 1.6 0.15 -0.62 8.1e+03 0.33 1.9 1 ++
31 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.6 0.16 -0.7 8.1e+03 0.46 19 1.1 ++
32 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.5 0.16 -0.72 8.1e+03 0.0036 1.9e+02 1 ++
33 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.5 0.16 -0.72 8.1e+03 0.034 1.9e+03 1 ++
34 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.5 0.16 -0.72 8.1e+03 1.4e-05 1.9e+04 1 ++
35 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.5 0.16 -0.72 8.1e+03 0.00015 1.9e+05 1 ++
36 -0.56 1.1 -1.6 -0.56 -0.1 0.00019 -0.65 1.5 0.16 -0.72 8.1e+03 1e-07 1.9e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 74/100
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000079
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost_train mu_public b_cost_swissmet asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.26 0.5 0.044 -
1 -0.39 0.025 -0.17 -0.0081 -0.5 -0.28 -0.38 1.4 0.25 -0.0077 -0.057 -0.035 -0.0047 -0.034 9.2e+03 0.14 0.5 0.65 +
2 -0.31 0.24 0.048 -0.0023 -0.67 -0.36 -0.43 1.3 -0.25 -0.076 -0.2 -0.14 -0.018 -0.079 8.6e+03 0.045 5 0.9 ++
3 -0.76 1.1 0.3 0.35 -0.72 -0.45 -0.81 1.9 -0.79 -0.6 -0.5 -0.07 -0.34 -0.36 8.3e+03 0.029 5 0.77 +
4 -0.92 1.3 0.32 0.33 -0.98 -0.58 -1 1 -0.94 -0.41 -1.1 -0.028 -0.45 -0.49 8.3e+03 0.034 5 0.32 +
5 -1.1 1.1 0.42 0.44 -0.92 -0.64 -1 1.1 -0.85 -0.43 -0.99 -0.081 -0.51 -0.34 8.2e+03 0.0023 50 0.96 ++
6 -1.3 1.2 0.49 0.48 -0.95 -0.68 -1 1 -0.87 -0.4 -1 -0.075 -0.52 -0.34 8.2e+03 0.0011 5e+02 0.95 ++
7 -1.3 1.2 0.51 0.53 -0.96 -0.68 -1 1 -0.87 -0.41 -0.96 -0.076 -0.51 -0.33 8.2e+03 3.3e-05 5e+03 1 ++
8 -1.3 1.2 0.51 0.53 -0.96 -0.68 -1 1 -0.87 -0.41 -0.96 -0.076 -0.51 -0.33 8.2e+03 4.8e-08 5e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 75/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000080
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.38 -
1 9.6e+03 0.17 0.5 0.49 +
2 8.7e+03 0.093 0.5 0.78 +
3 8.3e+03 0.02 5 1 ++
4 8.2e+03 0.048 5 0.55 +
5 8.2e+03 0.002 50 0.99 ++
6 8.2e+03 0.0029 5e+02 1 ++
7 8.2e+03 0.0013 5e+03 1 ++
8 8.2e+03 4e-05 5e+04 1 ++
9 8.2e+03 1.4e-07 5e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 76/100
Considering neighbor 0/20 for current solution
Attempt 77/100
Biogeme parameters read from biogeme.toml.
Model with 20 unknown parameters [max: 50]
*** Estimate b07everything_000081
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.56 -
1 1e+04 1.5 0.5 0.2 +
2 1e+04 1.5 0.25 0.2 -
3 1e+04 1.5 0.12 0.2 -
4 1e+04 1.5 0.062 -4.2 -
5 9.9e+03 7.1 0.062 0.48 +
6 9.9e+03 7.1 0.031 0.0017 -
7 9.6e+03 1.2 0.031 0.12 +
8 9.6e+03 1.2 0.016 -0.32 -
9 9.3e+03 0.58 0.16 0.92 ++
10 9.3e+03 0.58 0.078 0.92 -
11 9.3e+03 0.58 0.039 -15 -
12 9.3e+03 0.58 0.02 -16 -
13 9.3e+03 0.58 0.0098 -6.7 -
14 9.3e+03 3.5 0.0098 0.56 +
15 9.3e+03 0.11 0.0098 0.88 +
16 9.2e+03 0.44 0.098 0.97 ++
17 9.1e+03 0.41 0.98 1 ++
18 9.1e+03 0.41 0.49 -0.77 -
19 8.7e+03 10 0.49 0.45 +
20 8.7e+03 10 0.24 0.45 -
21 8.7e+03 10 0.12 0.45 -
22 8.7e+03 10 0.061 0.45 -
23 8.7e+03 10 0.031 0.45 -
24 8.7e+03 10 0.015 0.45 -
25 8.7e+03 10 0.0076 0.45 -
26 8.7e+03 10 0.0038 -1.7 -
27 8.7e+03 10 0.0019 -1.1 -
28 8.7e+03 10 0.00095 -0.63 -
29 8.7e+03 10 0.00048 -0.36 -
30 8.7e+03 10 0.00024 -0.065 -
31 8.7e+03 6.6 0.00024 0.51 +
32 8.7e+03 7.8 0.00024 0.3 +
33 8.7e+03 1.4 0.00024 0.85 +
34 8.7e+03 0.19 0.0024 1 ++
35 8.7e+03 1.2 0.024 1 ++
36 8.6e+03 0.16 0.24 1 ++
37 8.3e+03 1.1 0.24 0.62 +
38 8.2e+03 0.15 2.4 0.98 ++
39 8.1e+03 0.11 24 1.1 ++
40 8.1e+03 0.86 24 0.67 +
41 8e+03 0.55 2.4e+02 1.1 ++
42 8e+03 0.55 1.2e+02 1.1 -
43 8e+03 0.55 60 1.1 -
44 8e+03 0.55 30 1.1 -
45 8e+03 0.55 15 1.1 -
46 8e+03 0.55 7.5 1.1 -
47 8e+03 0.55 3.7 1.1 -
48 8e+03 0.55 1.9 -6e+02 -
49 8e+03 0.55 0.93 -1.6e+02 -
50 8e+03 0.55 0.47 -19 -
51 8e+03 0.55 0.23 -1.5 -
52 8e+03 2.7 0.23 0.68 +
53 8e+03 1.5 2.3 1 ++
54 8e+03 1.5 0.41 -5.1 -
55 8e+03 1.5 0.21 0.0037 -
56 8e+03 3.2 2.1 0.91 ++
57 8e+03 0.89 21 1.1 ++
58 8e+03 0.16 2.1e+02 1 ++
59 8e+03 0.00021 2.1e+03 1 ++
60 8e+03 1.8e-05 2.1e+04 1 ++
61 8e+03 1.5e-06 2.1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 78/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000082
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train_re b_time_train_di b_cost mu_existing asc_car b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.5 -0.68 -0.17 -1 2 0.1 -0.23 -0.17 -0.42 -0.38 9.5e+03 0.3 1 0.6 +
1 -0.5 -0.68 -0.17 -1 2 0.1 -0.23 -0.17 -0.42 -0.38 9.5e+03 0.3 0.5 0.065 -
2 -0.3 -0.67 -0.34 -0.5 2.2 -0.24 -0.42 -0.46 -0.49 -0.24 8.5e+03 0.076 0.5 0.8 +
3 -0.2 -0.81 -0.53 -0.61 2.7 -0.54 -0.32 -0.6 -0.75 -0.65 8.4e+03 0.0074 5 0.97 ++
4 -0.2 -0.93 -0.63 -0.69 2.1 -0.54 -0.4 -0.7 -0.85 -0.77 8.3e+03 0.0081 5 0.84 +
5 -0.22 -0.92 -0.63 -0.68 2.2 -0.53 -0.4 -0.7 -0.84 -0.77 8.3e+03 0.00021 50 1 ++
6 -0.22 -0.91 -0.62 -0.68 2.2 -0.53 -0.4 -0.69 -0.84 -0.77 8.3e+03 6.6e-06 5e+02 1 ++
7 -0.22 -0.91 -0.62 -0.68 2.2 -0.53 -0.4 -0.69 -0.84 -0.77 8.3e+03 7.5e-09 5e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 79/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000083
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost_train mu_public b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 1 0 0 0 0 0 1.1e+04 0.26 0.5 0.0093 -
1 -0.39 -0.17 -0.0081 -0.5 -0.28 1.1 -0.38 1.4 0.25 -0.008 -0.035 -0.0047 -0.034 9.2e+03 0.14 0.5 0.64 +
2 -0.3 0.062 -0.0017 -0.66 -0.36 1 -0.43 1.3 -0.25 -0.087 -0.15 -0.019 -0.085 8.7e+03 0.047 0.5 0.89 +
3 -0.37 0.36 0.022 -0.95 -0.51 0.91 -0.93 1.5 -0.64 -0.22 -0.27 -0.056 -0.15 8.4e+03 0.02 5 1.1 ++
4 -0.39 0.62 0.44 -1.5 -0.53 0.37 -1.5 1 -0.88 -0.19 -0.17 -0.6 -0.39 8.3e+03 0.026 5 0.85 +
5 -0.4 0.69 0.55 -1.4 -0.53 0.45 -1.8 1.1 -0.87 -0.21 -0.15 -0.65 -0.44 8.3e+03 0.0026 50 1 ++
6 -0.43 0.69 0.54 -1.4 -0.54 0.47 -1.8 1 -0.86 -0.19 -0.14 -0.65 -0.42 8.3e+03 0.0014 5e+02 1.1 ++
7 -0.44 0.7 0.54 -1.4 -0.55 0.45 -1.8 1 -0.86 -0.19 -0.15 -0.65 -0.42 8.3e+03 0.00086 5e+03 1 ++
8 -0.46 0.74 0.58 -1.4 -0.56 0.45 -1.9 1 -0.88 -0.19 -0.14 -0.65 -0.43 8.3e+03 1.6e-05 5e+04 1 ++
9 -0.46 0.74 0.58 -1.4 -0.56 0.45 -1.9 1 -0.88 -0.19 -0.14 -0.65 -0.43 8.3e+03 1.5e-07 5e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 15 unknown parameters [max: 50]
*** Estimate b07everything_000084
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com lambda_travel_t b_cost_train mu_existing asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.55 0.25 -0.0037 -0.0084 -1 -0.088 1.4 -0.51 2 0.16 -0.28 -0.08 -0.02 0.051 -0.61 9.2e+03 0.18 1 0.62 +
1 -0.55 0.25 -0.0037 -0.0084 -1 -0.088 1.4 -0.51 2 0.16 -0.28 -0.08 -0.02 0.051 -0.61 9.2e+03 0.18 0.5 0.076 -
2 -0.36 0.47 0.23 0.013 -0.78 0.019 0.86 -0.55 2.2 -0.17 -0.36 -0.22 -0.054 -0.22 -0.38 8.4e+03 0.086 0.5 0.68 +
3 -0.47 0.67 0.27 0.06 -1.2 -0.049 0.36 -0.57 2.6 -0.18 -0.37 0.0052 -0.14 -0.25 -0.56 8.2e+03 0.011 5 0.96 ++
4 -0.47 0.67 0.27 0.06 -1.2 -0.049 0.36 -0.57 2.6 -0.18 -0.37 0.0052 -0.14 -0.25 -0.56 8.2e+03 0.011 0.79 -1.1 -
5 -0.39 0.93 0.34 0.13 -1.5 -0.33 0.29 -0.73 1.8 -0.099 -0.19 -0.12 -0.25 -0.14 -0.54 8.1e+03 0.011 7.9 0.91 ++
6 -0.53 0.95 0.36 0.18 -1.5 -0.41 0.33 -0.81 1.6 -0.053 -0.43 -0.065 -0.37 -0.32 -0.63 8.1e+03 0.0022 79 1.1 ++
7 -0.56 0.99 0.37 0.22 -1.5 -0.44 0.33 -0.85 1.5 -0.031 -0.5 -0.06 -0.41 -0.36 -0.64 8.1e+03 0.00025 7.9e+02 1.1 ++
8 -0.56 0.99 0.37 0.22 -1.5 -0.44 0.33 -0.85 1.5 -0.031 -0.5 -0.06 -0.41 -0.36 -0.64 8.1e+03 2.8e-06 7.9e+02 1 ++
Considering neighbor 1/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000085
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st b_cost_train b_cost_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_cost_car Function Relgrad Radius Rho
0 -0.88 0.32 0.24 -0.57 -0.43 -0.85 -0.74 -0.48 -0.0062 -0.4 -0.53 8.6e+03 0.054 10 1.1 ++
1 -0.77 0.61 0.5 -0.94 -0.55 -1.4 -0.86 -0.41 -0.11 -0.58 -0.36 8.4e+03 0.021 1e+02 1.2 ++
2 -0.77 0.73 0.62 -0.99 -0.61 -1.7 -0.91 -0.45 -0.12 -0.61 -0.34 8.3e+03 0.0037 1e+03 1.1 ++
3 -0.77 0.75 0.63 -0.99 -0.62 -1.8 -0.91 -0.45 -0.12 -0.61 -0.34 8.3e+03 0.00011 1e+04 1 ++
4 -0.77 0.75 0.63 -0.99 -0.62 -1.8 -0.91 -0.45 -0.12 -0.61 -0.34 8.3e+03 1e-07 1e+04 1 ++
Considering neighbor 2/20 for current solution
Attempt 80/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000086
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost_train mu_existing asc_car_ref asc_car_diff_GA b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 -0.69 0.23 -0.97 -0.49 1.5 -0.55 2 0.31 -0.29 0.2 -0.82 1e+04 0.27 1 0.2 +
1 -0.69 0.23 -0.97 -0.49 1.5 -0.55 2 0.31 -0.29 0.2 -0.82 1e+04 0.27 0.5 -1 -
2 -0.43 0.34 -0.97 -0.54 1.4 -0.44 1.8 -0.19 -0.36 -0.24 -0.5 8.5e+03 0.062 0.5 0.9 +
3 -0.48 0.82 -0.94 -0.55 0.92 -0.68 2.1 -0.34 -0.52 -0.21 -0.71 8.2e+03 0.0062 5 1 ++
4 -0.48 0.82 -0.94 -0.55 0.92 -0.68 2.1 -0.34 -0.52 -0.21 -0.71 8.2e+03 0.0062 0.56 -0.77 -
5 -0.42 1 -1.3 -0.69 0.35 -0.6 1.7 -0.19 -0.37 -0.21 -0.69 8.1e+03 0.0081 0.56 0.81 +
6 -0.46 1.1 -1.3 -0.57 0.4 -0.75 1.6 -0.19 -0.43 -0.3 -0.71 8.1e+03 0.0014 5.6 1.1 ++
7 -0.47 1.1 -1.3 -0.58 0.41 -0.79 1.6 -0.19 -0.49 -0.32 -0.73 8.1e+03 0.00019 56 1 ++
8 -0.47 1.1 -1.3 -0.58 0.41 -0.79 1.6 -0.19 -0.49 -0.32 -0.73 8.1e+03 5.1e-07 56 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000087
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di b_cost mu_public b_time_swissmet b_time_swissmet asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.3 -
1 -0.3 0.045 -0.5 -0.23 -0.15 1.4 0.24 0.1 -0.11 -0.064 -0.27 -0.16 9.4e+03 0.14 0.5 0.57 +
2 -0.3 0.42 -0.56 -0.31 -0.65 1.5 -0.26 -0.23 -0.17 -0.24 -0.37 -0.14 8.6e+03 0.05 0.5 0.85 +
3 -0.42 0.92 -0.73 -0.43 -0.7 1.7 -0.72 -0.36 -0.32 -0.42 -0.57 -0.48 8.3e+03 0.046 5 0.97 ++
4 -0.67 0.95 -0.77 -0.6 -0.77 1.6 -0.88 -0.7 -0.53 -1 -0.56 -0.62 8.2e+03 0.0049 50 1.1 ++
5 -0.67 0.95 -0.77 -0.6 -0.77 1.6 -0.88 -0.7 -0.53 -1 -0.56 -0.62 8.2e+03 0.0049 0.32 -0.7 -
6 -0.75 1 -0.86 -0.63 -0.82 1.3 -0.91 -0.75 -0.58 -1.1 -0.57 -0.63 8.2e+03 0.013 0.32 0.75 +
7 -0.88 1.2 -0.97 -0.71 -0.8 1.2 -1 -0.82 -0.57 -1.1 -0.61 -0.7 8.2e+03 0.0054 3.2 1.2 ++
8 -0.96 1.4 -1.1 -0.75 -0.79 1 -1.1 -0.83 -0.54 -1.1 -0.63 -0.71 8.2e+03 0.006 32 1.1 ++
9 -0.98 1.4 -1.1 -0.78 -0.79 1 -1.1 -0.83 -0.53 -1.1 -0.64 -0.73 8.2e+03 0.00079 3.2e+02 1 ++
10 -1 1.5 -1.1 -0.78 -0.8 1 -1.1 -0.84 -0.55 -1 -0.64 -0.73 8.2e+03 1e-05 3.2e+03 1 ++
11 -1 1.5 -1.1 -0.78 -0.8 1 -1.1 -0.84 -0.55 -1 -0.64 -0.73 8.2e+03 1.1e-08 3.2e+03 1 ++
Considering neighbor 1/20 for current solution
Attempt 81/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000088
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time b_cost_train mu_public b_cost_swissmet asc_car_ref asc_car_diff_GA b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 0.046 -
1 -0.4 0.013 -0.5 -0.39 1.2 0.3 0.00083 -0.048 -0.024 9.1e+03 0.11 0.5 0.81 +
2 -0.41 0.2 -0.77 -0.5 1.3 -0.2 -0.033 -0.2 -0.049 8.7e+03 0.048 5 0.94 ++
3 -0.41 0.2 -0.77 -0.5 1.3 -0.2 -0.033 -0.2 -0.049 8.7e+03 0.048 2.5 -1.1e+02 -
4 -0.41 0.2 -0.77 -0.5 1.3 -0.2 -0.033 -0.2 -0.049 8.7e+03 0.048 1.2 -15 -
5 -0.41 0.2 -0.77 -0.5 1.3 -0.2 -0.033 -0.2 -0.049 8.7e+03 0.048 0.62 -0.65 -
6 -0.35 0.83 -1.2 -0.88 1.4 -0.71 -0.36 -0.55 -0.32 8.3e+03 0.0091 6.2 1 ++
7 -0.53 0.98 -1.2 -1 1.3 -0.76 -0.38 -1 -0.39 8.3e+03 0.0035 62 1.1 ++
8 -0.64 1.1 -1.2 -1 1.2 -0.76 -0.36 -1.1 -0.38 8.3e+03 0.0016 6.2e+02 1.1 ++
9 -0.69 1.1 -1.2 -1 1.1 -0.76 -0.35 -1.1 -0.37 8.3e+03 0.00032 6.2e+03 1.1 ++
10 -0.71 1.2 -1.2 -1 1.1 -0.76 -0.35 -1.1 -0.37 8.3e+03 3.5e-05 6.2e+04 1 ++
11 -0.71 1.2 -1.2 -1 1.1 -0.76 -0.35 -1.1 -0.37 8.3e+03 1.5e-07 6.2e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000089
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_train_re b_time_train_di b_cost mu_public b_time_swissmet b_time_swissmet asc_car_ref asc_car_diff_on asc_car_diff_se b_time_car_ref b_time_car_diff Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.28 -
1 -0.28 -0.12 -0.0055 -0.5 -0.073 -0.11 1.3 0.22 0.065 -0.073 -0.065 -0.0048 -0.18 -0.06 9.3e+03 0.072 0.5 0.77 +
2 -0.3 0.13 0.0064 -0.67 -0.15 -0.61 1.3 -0.21 0.14 -0.11 -0.14 -0.021 -0.32 -0.17 8.8e+03 0.039 5 0.97 ++
3 -0.68 0.69 0.81 -1.2 0.34 -0.66 1.7 -1.3 1.2 -0.55 -0.1 -0.37 -0.88 0.36 8.5e+03 0.04 5 0.89 +
4 -0.68 0.76 0.67 -1.5 0.28 -0.78 1 -1.5 1.2 -0.47 -0.14 -0.39 -0.96 0.34 8.4e+03 0.083 5 0.62 +
5 -0.79 0.77 0.68 -1.7 0.24 -0.76 1 -1.6 1.3 -0.44 -0.09 -0.4 -1.1 0.39 8.4e+03 0.011 50 1.1 ++
6 -0.87 0.91 0.86 -1.8 0.44 -0.8 1 -1.8 1.7 -0.48 -0.1 -0.45 -1.2 0.64 8.4e+03 0.00085 5e+02 1 ++
7 -0.87 0.91 0.86 -1.8 0.44 -0.8 1 -1.8 1.7 -0.48 -0.1 -0.45 -1.2 0.64 8.4e+03 5.4e-06 5e+02 1 ++
Considering neighbor 1/20 for current solution
Attempt 82/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000090
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time b_cost asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -1 0.96 0.16 0.013 -0.76 -0.6 -0.18 -0.44 -0.13 -0.065 8.5e+03 0.044 10 1.1 ++
1 -1.3 1.3 0.42 0.47 -1.1 -0.69 0.0072 -1.1 -0.026 -0.38 8.3e+03 0.0099 1e+02 1.1 ++
2 -1.5 1.4 0.55 0.63 -1.2 -0.7 0.027 -1.2 -0.03 -0.45 8.3e+03 0.00067 1e+03 1 ++
3 -1.5 1.4 0.55 0.63 -1.2 -0.7 0.027 -1.2 -0.03 -0.45 8.3e+03 4.4e-06 1e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 83/100
Considering neighbor 0/20 for current solution
Attempt 84/100
Biogeme parameters read from biogeme.toml.
Model with 19 unknown parameters [max: 50]
*** Estimate b07everything_000091
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.53 -
1 1.1e+04 0.4 0.25 0.019 -
2 9.7e+03 1.1 0.25 0.73 +
3 9.7e+03 1.1 0.12 -8.5 -
4 1.7e+04 5.5 1.2 7.7 ++
5 1.7e+04 5.5 0.62 -0.48 -
6 1.7e+04 5.5 0.31 -0.34 -
7 1.5e+04 3.5 0.31 0.14 +
8 1.3e+04 1.8 0.31 0.11 +
9 1.3e+04 1.8 0.16 -1.3 -
10 9.5e+03 0.36 1.6 1 ++
11 9.5e+03 0.36 0.78 -11 -
12 9.5e+03 0.36 0.39 -12 -
13 9.5e+03 0.36 0.2 -12 -
14 9.5e+03 0.36 0.098 -12 -
15 9.5e+03 0.36 0.049 -9.7 -
16 9.5e+03 0.36 0.024 -3.6 -
17 9.3e+03 0.083 0.24 1.1 ++
18 9.3e+03 0.083 0.12 -13 -
19 9.3e+03 0.083 0.061 -7.9 -
20 9.3e+03 0.083 0.031 -5.6 -
21 9.3e+03 0.083 0.015 -4.4 -
22 9.3e+03 0.083 0.0076 -3.2 -
23 9.3e+03 0.083 0.076 0.97 ++
24 9.1e+03 0.09 0.76 0.97 ++
25 9.1e+03 0.09 0.38 -5.4 -
26 9.1e+03 0.09 0.19 -2.2 -
27 9.1e+03 0.09 0.095 -0.82 -
28 9.1e+03 0.09 0.048 -0.2 -
29 9.1e+03 4.4 0.048 0.13 +
30 9e+03 0.69 0.048 0.79 +
31 9e+03 0.69 0.024 -6.1 -
32 9e+03 0.69 0.012 -7.4 -
33 9e+03 0.69 0.006 -8.8 -
34 9e+03 0.69 0.003 -4.4 -
35 9e+03 0.69 0.0015 -0.99 -
36 9e+03 1.1 0.0015 0.6 +
37 9e+03 0.3 0.0015 0.83 +
38 9e+03 0.17 0.015 0.96 ++
39 8.9e+03 0.055 0.15 1 ++
40 8.7e+03 1.2 1.5 0.96 ++
41 8.3e+03 3.6 1.5 0.81 +
42 8.3e+03 3.6 0.75 -18 -
43 8.3e+03 3.6 0.37 -7.4 -
44 8.3e+03 3.6 0.19 -3.3 -
45 8.3e+03 3.6 0.093 -1.3 -
46 8.3e+03 3.6 0.047 -0.57 -
47 8.3e+03 3.6 0.023 -0.06 -
48 8.3e+03 3.6 0.012 -0.3 -
49 8.3e+03 3.6 0.0058 -0.56 -
50 8.3e+03 3.6 0.0029 -0.75 -
51 8.3e+03 3.6 0.0015 -0.58 -
52 8.3e+03 3.6 0.00073 -0.048 -
53 8.3e+03 1.3 0.00073 0.19 +
54 8.3e+03 1.3 0.00036 0.031 -
55 8.3e+03 0.85 0.0036 0.96 ++
56 8.3e+03 0.92 0.036 0.95 ++
57 8.3e+03 0.18 0.36 1 ++
58 8.2e+03 0.36 0.36 0.68 +
59 8.2e+03 3.5 3.6 1.2 ++
60 8.2e+03 3.5 0.48 -9 -
61 8.2e+03 14 0.48 0.12 +
62 8.1e+03 15 0.48 0.53 +
63 8.1e+03 15 0.24 -4.4 -
64 8.1e+03 15 0.12 -4.7 -
65 8.1e+03 15 0.06 -4.7 -
66 8.1e+03 15 0.03 -4.4 -
67 8.1e+03 15 0.015 -4.3 -
68 8.1e+03 15 0.0075 -4.3 -
69 8.1e+03 15 0.0037 -4.4 -
70 8.1e+03 15 0.0019 -4.4 -
71 8.1e+03 15 0.00094 -3.6 -
72 8.1e+03 15 0.00047 -2.1 -
73 8.1e+03 15 0.00023 -0.87 -
74 8.1e+03 21 0.00023 0.39 +
75 8.1e+03 21 0.00012 -0.062 -
76 8.1e+03 13 0.00012 0.25 +
77 8.1e+03 13 5.9e-05 -0.33 -
78 8.1e+03 2.8 5.9e-05 0.71 +
79 8.1e+03 0.031 0.00059 1 ++
80 8.1e+03 0.0054 0.0059 1 ++
81 8.1e+03 0.034 0.059 1 ++
82 8.1e+03 2.9 0.59 1 ++
83 8.1e+03 1.1 5.9 1 ++
84 8.1e+03 0.063 59 1 ++
85 8.1e+03 5.7e-05 5.9e+02 1 ++
86 8.1e+03 0.00096 5.9e+03 1 ++
87 8.1e+03 2.7e-08 5.9e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 85/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000092
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time lambda_travel_t b_cost mu_public asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.77 -0.33 -0.016 -1 1.1 -0.23 1.5 -0.071 -0.1 -0.0094 9.4e+03 0.11 1 0.45 +
1 -0.45 0.67 0.015 -1.2 0.97 -1.1 1.6 -0.2 -0.33 -0.051 8.9e+03 0.085 1 0.56 +
2 -0.43 0.48 0.67 -1.3 0.5 -0.57 1.8 0.038 -0.13 -0.61 8.6e+03 0.012 1 0.81 +
3 -0.77 0.58 0.5 -1.4 0.69 -0.79 1 0.11 -0.12 -0.6 8.6e+03 0.028 1 0.21 +
4 -1 0.85 0.84 -1.6 0.48 -0.77 1.1 0.16 -0.1 -0.57 8.5e+03 0.0015 10 1 ++
5 -1.1 0.87 0.84 -1.6 0.54 -0.78 1 0.19 -0.11 -0.57 8.5e+03 0.0016 1e+02 0.98 ++
6 -1.1 0.88 0.84 -1.6 0.52 -0.78 1 0.2 -0.11 -0.57 8.5e+03 0.00083 1e+03 1 ++
7 -1.2 0.97 0.95 -1.6 0.51 -0.78 1 0.19 -0.099 -0.57 8.5e+03 6e-05 1e+04 1 ++
8 -1.2 0.97 0.95 -1.6 0.51 -0.78 1 0.19 -0.099 -0.57 8.5e+03 5.5e-08 1e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 86/100
Considering neighbor 0/20 for current solution
Attempt 87/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000093
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st b_cost_train mu_public b_cost_swissmet asc_car_ref asc_car_diff_GA b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 0.072 -
1 -0.4 0.017 -0.5 -0.28 -0.39 1.3 0.27 0.0023 -0.053 -0.023 9.1e+03 0.13 0.5 0.72 +
2 -0.36 0.21 -0.67 -0.36 -0.44 1.3 -0.23 -0.056 -0.2 -0.058 8.6e+03 0.04 5 0.93 ++
3 -0.36 0.21 -0.67 -0.36 -0.44 1.3 -0.23 -0.056 -0.2 -0.058 8.6e+03 0.04 0.76 -1.8 -
4 -0.38 0.97 -0.96 -0.5 -0.95 1.6 -0.76 -0.43 -0.59 -0.29 8.3e+03 0.01 7.6 0.95 ++
5 -0.7 1.2 -1 -0.61 -1 1 -0.85 -0.42 -1.1 -0.34 8.2e+03 0.021 7.6 0.4 +
6 -0.9 1.3 -0.93 -0.67 -1 1.1 -0.87 -0.47 -1.1 -0.34 8.2e+03 0.00079 76 0.98 ++
7 -0.87 1.3 -0.94 -0.66 -1 1.1 -0.87 -0.46 -1.1 -0.34 8.2e+03 5.7e-05 7.6e+02 0.98 ++
8 -0.87 1.3 -0.94 -0.66 -1 1.1 -0.87 -0.46 -1.1 -0.34 8.2e+03 3.8e-07 7.6e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 88/100
Biogeme parameters read from biogeme.toml.
Model with 12 unknown parameters [max: 50]
*** Estimate b07everything_000094
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com b_cost mu_public asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.78 0.077 -0.33 -0.016 -1 -0.11 -0.24 1.5 -0.074 -0.11 -0.1 -0.0096 9.4e+03 0.12 1 0.46 +
1 -0.41 1.1 0.62 0.013 -1.1 -0.14 -1 1.8 -0.16 -0.46 -0.27 -0.047 9e+03 0.18 1 0.19 +
2 -0.41 1.1 0.62 0.013 -1.1 -0.14 -1 1.8 -0.16 -0.46 -0.27 -0.047 9e+03 0.18 0.5 -0.13 -
3 -0.66 0.58 0.17 0.087 -0.74 -0.17 -0.75 2.1 -0.039 -0.5 -0.11 -0.07 8.4e+03 0.049 0.5 0.68 +
4 -0.62 0.76 0.21 0.32 -0.86 -0.33 -0.68 1.9 -0.19 -1 -0.024 -0.2 8.3e+03 0.0041 5 1.1 ++
5 -0.62 0.76 0.21 0.32 -0.86 -0.33 -0.68 1.9 -0.19 -1 -0.024 -0.2 8.3e+03 0.0041 0.45 -1.3 -
6 -0.83 0.95 0.31 0.3 -1 -0.22 -0.71 1.5 -0.043 -1.2 -0.11 -0.28 8.3e+03 0.0087 4.5 0.98 ++
7 -1 1.1 0.39 0.45 -1.1 -0.23 -0.7 1.3 -0.033 -1.3 -0.046 -0.47 8.3e+03 0.0037 45 1.2 ++
8 -1.2 1.2 0.45 0.52 -1.1 -0.22 -0.7 1.2 -0.0091 -1.3 -0.041 -0.47 8.3e+03 0.002 4.5e+02 1.2 ++
9 -1.3 1.2 0.49 0.56 -1.1 -0.2 -0.7 1.1 0.0013 -1.3 -0.038 -0.47 8.3e+03 0.00044 4.5e+03 1.1 ++
10 -1.3 1.3 0.5 0.57 -1.1 -0.2 -0.7 1.1 0.0047 -1.3 -0.037 -0.47 8.3e+03 4.6e-05 4.5e+04 1.1 ++
11 -1.3 1.3 0.5 0.57 -1.1 -0.2 -0.7 1.1 0.0047 -1.3 -0.037 -0.47 8.3e+03 3.1e-07 4.5e+04 1 ++
Considering neighbor 0/20 for current solution
Attempt 89/100
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000095
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time square_tt_coef cube_tt_coef b_cost asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 0 1.1e+04 0.26 0.5 -0.55 -
1 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 5 1.1 ++
2 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 2.5 -11 -
3 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 1.2 -9 -
4 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.62 -7.4 -
5 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.31 -3.4 -
6 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.16 -1.8 -
7 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.078 -1.6 -
8 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.039 -1.9 -
9 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.02 -2.6 -
10 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.0098 -3.3 -
11 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.0049 -4 -
12 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.0024 -4.9 -
13 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.0012 -2.3 -
14 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.00061 -1.2 -
15 -0.5 -0.5 -0.02 -0.5 0 0 -0.14 0.027 -0.021 -0.0063 9.3e+03 4.3 0.00031 -0.23 -
16 -0.5 -0.5 -0.02 -0.5 0.00031 -0.00031 -0.14 0.026 -0.022 -0.0066 9.2e+03 2.9 0.00031 0.64 +
17 -0.5 -0.5 -0.02 -0.5 0.00061 -0.00023 -0.14 0.026 -0.022 -0.0066 9.2e+03 1.4 0.00031 0.77 +
18 -0.5 -0.5 -0.02 -0.5 0.00092 -0.00026 -0.14 0.026 -0.022 -0.0066 9.2e+03 0.14 0.0031 0.99 ++
19 -0.5 -0.5 -0.02 -0.5 0.004 -0.00026 -0.14 0.026 -0.022 -0.0067 9.2e+03 0.18 0.031 1 ++
20 -0.51 -0.49 -0.02 -0.53 0.034 -0.0004 -0.15 0.018 -0.03 -0.0071 9.2e+03 0.27 0.31 1 ++
21 -0.55 -0.31 -0.019 -0.82 0.23 -0.0012 -0.45 0.0065 -0.11 -0.016 8.9e+03 2.2 0.31 0.74 +
22 -0.61 -0.0073 -0.012 -0.97 0.031 -0.00035 -0.76 0.076 -0.16 -0.033 8.7e+03 6.8 0.31 0.77 +
23 -0.83 0.22 0.0059 -1.3 -0.026 -0.00018 -0.76 0.1 -0.19 -0.06 8.6e+03 6.3 3.1 1.1 ++
24 -0.83 0.22 0.0059 -1.3 -0.026 -0.00018 -0.76 0.1 -0.19 -0.06 8.6e+03 6.3 0.62 -5.9 -
25 -0.83 0.22 0.0059 -1.3 -0.026 -0.00018 -0.76 0.1 -0.19 -0.06 8.6e+03 6.3 0.31 0.0075 -
26 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.31 0.46 +
27 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.15 -4.1 -
28 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.077 -4 -
29 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.038 -3.8 -
30 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.019 -3.8 -
31 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0096 -4 -
32 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0048 -4.2 -
33 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0024 -4.3 -
34 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0012 -3 -
35 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0006 -2 -
36 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.0003 -1.2 -
37 -0.88 0.52 0.049 -1.6 -0.073 0.00018 -0.75 0.056 -0.2 -0.099 8.6e+03 16 0.00015 -0.21 -
38 -0.88 0.52 0.049 -1.6 -0.073 3.4e-05 -0.76 0.056 -0.2 -0.099 8.5e+03 8 0.00015 0.75 +
39 -0.88 0.52 0.049 -1.6 -0.073 5.7e-05 -0.76 0.056 -0.2 -0.099 8.5e+03 4.3 0.00015 0.64 +
40 -0.88 0.52 0.049 -1.6 -0.073 4.9e-05 -0.76 0.056 -0.2 -0.099 8.5e+03 0.11 0.0015 0.99 ++
41 -0.88 0.52 0.049 -1.6 -0.072 4.2e-05 -0.76 0.057 -0.2 -0.099 8.5e+03 0.028 0.015 1 ++
42 -0.9 0.52 0.051 -1.6 -0.061 -5.6e-06 -0.76 0.072 -0.18 -0.1 8.5e+03 0.4 0.15 1 ++
43 -0.99 0.58 0.09 -1.7 -0.085 9.7e-05 -0.77 0.14 -0.13 -0.13 8.5e+03 5.6 1.5 0.95 ++
44 -1.1 0.88 0.95 -2.1 -0.1 0.00018 -0.8 0.22 -0.15 -0.57 8.5e+03 1.6 15 0.99 ++
45 -1.2 0.95 0.92 -2.1 -0.099 0.00017 -0.79 0.2 -0.11 -0.57 8.5e+03 0.63 1.5e+02 1 ++
46 -1.2 0.95 0.92 -2.1 -0.099 0.00017 -0.79 0.2 -0.11 -0.57 8.5e+03 0.0098 1.5e+03 1 ++
47 -1.2 0.95 0.93 -2.1 -0.099 0.00017 -0.79 0.2 -0.11 -0.58 8.5e+03 3.2e-05 1.5e+04 1 ++
48 -1.2 0.95 0.92 -2.1 -0.099 0.00017 -0.79 0.2 -0.11 -0.58 8.5e+03 0.013 1.5e+05 1 ++
49 -1.2 0.95 0.92 -2.1 -0.099 0.00017 -0.79 0.2 -0.11 -0.58 8.5e+03 4e-06 1.5e+05 1 ++
Considering neighbor 0/20 for current solution
Attempt 90/100
Biogeme parameters read from biogeme.toml.
Model with 9 unknown parameters [max: 50]
*** Estimate b07everything_000096
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_train b_cost_train mu_public b_time_swissmet b_cost_swissmet asc_car b_time_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 1 0 0 0 0 0 1.1e+04 0.4 0.5 -0.21 -
1 -0.28 -0.48 -0.28 1.5 0.2 0.22 -0.094 -0.24 -0.13 9.8e+03 0.21 0.5 0.39 +
2 -0.14 -0.34 -0.34 1.6 -0.23 -0.28 -0.2 -0.42 -0.23 9.3e+03 0.25 0.5 0.49 +
3 -0.22 -0.53 -0.76 2.1 -0.57 -0.37 -0.29 -0.58 -0.31 8.7e+03 0.026 5 0.91 ++
4 -0.22 -0.53 -0.76 2.1 -0.57 -0.37 -0.29 -0.58 -0.31 8.7e+03 0.026 2.5 -78 -
5 -0.22 -0.53 -0.76 2.1 -0.57 -0.37 -0.29 -0.58 -0.31 8.7e+03 0.026 1.2 -13 -
6 -0.22 -0.53 -0.76 2.1 -0.57 -0.37 -0.29 -0.58 -0.31 8.7e+03 0.026 0.62 -0.65 -
7 0.059 -0.83 -1.4 2.2 -0.93 -0.8 -0.59 -0.89 -0.49 8.5e+03 0.012 6.2 1 ++
8 0.059 -0.83 -1.4 2.2 -0.93 -0.8 -0.59 -0.89 -0.49 8.5e+03 0.012 0.59 -3.4 -
9 0.042 -1 -1.6 1.6 -1.2 -0.89 -0.71 -0.93 -0.66 8.5e+03 0.027 0.59 0.83 +
10 0.0019 -1.1 -1.6 1.4 -1.3 -0.84 -0.66 -1 -0.63 8.4e+03 0.0086 5.9 1.2 ++
11 -0.013 -1.3 -1.8 1 -1.5 -0.8 -0.63 -1.1 -0.66 8.4e+03 0.026 5.9 0.18 +
12 -0.025 -1.4 -1.8 1 -1.5 -0.79 -0.6 -1.1 -0.66 8.4e+03 0.0019 59 1.1 ++
13 -0.032 -1.4 -1.8 1 -1.5 -0.78 -0.6 -1 -0.65 8.4e+03 0.0014 5.9e+02 1 ++
14 -0.032 -1.4 -1.8 1 -1.5 -0.78 -0.6 -1 -0.65 8.4e+03 3.7e-06 5.9e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 91/100
Biogeme parameters read from biogeme.toml.
Model with 14 unknown parameters [max: 50]
*** Estimate b07everything_000097
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_com square_tt_coef cube_tt_coef b_cost mu_public asc_car_ref asc_car_diff_GA asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 -0.68 -
1 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 5 1.1 ++
2 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 2.5 1.1 -
3 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 1.2 1.1 -
4 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.62 1.1 -
5 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.31 1.1 -
6 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.16 -2.9 -
7 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.078 -2.9 -
8 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.039 -3.2 -
9 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.02 -3.7 -
10 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.0098 -4.2 -
11 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.0049 -3.6 -
12 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.0024 -2.5 -
13 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.0012 -1.7 -
14 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.00061 -0.96 -
15 -0.5 -0.00059 -0.5 -0.02 -0.5 -0.16 0 0 -0.14 1 0.027 -0.077 -0.021 -0.0063 9.2e+03 6.2 0.00031 -0.12 -
16 -0.5 -0.00028 -0.5 -0.02 -0.5 -0.16 0.00031 -0.00031 -0.14 1 0.026 -0.078 -0.022 -0.0066 9.2e+03 3.8 0.00031 0.68 +
17 -0.5 -0.00019 -0.5 -0.02 -0.5 -0.16 0.00061 -0.00021 -0.14 1 0.026 -0.078 -0.022 -0.0066 9.2e+03 4 0.00031 0.36 +
18 -0.5 -0.0001 -0.5 -0.02 -0.5 -0.16 0.00092 -0.00028 -0.14 1 0.026 -0.078 -0.022 -0.0066 9.2e+03 1.8 0.00031 0.76 +
19 -0.5 -1.1e-05 -0.5 -0.02 -0.5 -0.16 0.0012 -0.00026 -0.14 1 0.026 -0.078 -0.022 -0.0066 9.2e+03 0.26 0.0031 0.98 ++
20 -0.5 0.00091 -0.5 -0.02 -0.5 -0.16 0.0043 -0.00027 -0.14 1 0.025 -0.079 -0.023 -0.0067 9.2e+03 0.11 0.031 1 ++
21 -0.51 0.01 -0.49 -0.02 -0.53 -0.17 0.035 -0.0004 -0.15 1 0.018 -0.084 -0.031 -0.0072 9.1e+03 0.1 0.31 1 ++
22 -0.53 0.25 -0.29 -0.019 -0.82 -0.18 0.22 -0.0012 -0.45 1 -0.011 -0.2 -0.12 -0.017 8.8e+03 1.7 0.31 0.79 +
23 -0.62 0.55 -0.072 -0.015 -0.92 -0.16 -0.036 -0.0001 -0.69 1.3 0.1 -0.32 -0.11 -0.029 8.5e+03 0.41 0.31 0.71 +
24 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 3.1 0.97 ++
25 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 1.5 -81 -
26 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.76 -29 -
27 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.38 -5.7 -
28 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.19 -0.8 -
29 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.095 -0.37 -
30 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.048 -0.54 -
31 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.024 -0.58 -
32 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.012 -1.6 -
33 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.006 -1.7 -
34 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.003 -2 -
35 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.0015 -2.2 -
36 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.00075 -2.4 -
37 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.00037 -2.5 -
38 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 0.00019 -2.6 -
39 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 9.3e-05 -1.5 -
40 -0.63 0.86 0.16 0.0021 -1.2 -0.21 -0.038 -0.00015 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 7.9 4.7e-05 -0.14 -
41 -0.63 0.86 0.16 0.0022 -1.2 -0.21 -0.038 -0.0001 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 1.4 4.7e-05 0.83 +
42 -0.63 0.86 0.16 0.0022 -1.2 -0.21 -0.038 -9.9e-05 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 0.085 0.00047 0.98 ++
43 -0.63 0.86 0.16 0.0022 -1.2 -0.21 -0.038 -9.7e-05 -0.69 1.4 -0.061 -0.43 -0.21 -0.049 8.3e+03 0.027 0.0047 1 ++
44 -0.63 0.86 0.16 0.0025 -1.2 -0.22 -0.043 -7.8e-05 -0.69 1.4 -0.059 -0.43 -0.2 -0.05 8.3e+03 0.058 0.047 1 ++
45 -0.68 0.88 0.15 0.008 -1.2 -0.23 -0.076 6.1e-05 -0.7 1.5 -0.025 -0.45 -0.17 -0.054 8.3e+03 1.6 0.47 0.92 ++
46 -0.72 1.1 0.32 0.18 -1.7 -0.63 -0.11 0.00022 -0.77 1.4 0.021 -0.79 -0.0095 -0.15 8.2e+03 6.1 4.7 1.1 ++
47 -0.99 1.3 0.45 0.4 -1.9 -0.99 -0.1 0.00019 -0.72 1.1 0.16 -1.2 -0.064 -0.36 8.2e+03 1.9 47 1 ++
48 -1.2 1.4 0.53 0.53 -2 -1.1 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.069 -0.47 8.1e+03 0.45 4.7e+02 1.1 ++
49 -1.2 1.4 0.52 0.53 -2 -1.1 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.063 -0.48 8.1e+03 0.011 4.7e+03 1 ++
50 -1.2 1.5 0.54 0.54 -2 -1.1 -0.11 0.0002 -0.71 1 0.21 -1.2 -0.067 -0.48 8.1e+03 0.085 4.7e+04 1 ++
51 -1.3 1.5 0.55 0.59 -2 -1.2 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.066 -0.51 8.1e+03 0.01 4.7e+05 1 ++
52 -1.3 1.5 0.55 0.58 -2 -1.2 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.067 -0.52 8.1e+03 2.8e-05 4.7e+06 1 ++
53 -1.3 1.5 0.55 0.58 -2 -1.2 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.067 -0.52 8.1e+03 8.5e-05 4.7e+07 1 ++
54 -1.3 1.5 0.55 0.58 -2 -1.2 -0.11 0.0002 -0.71 1 0.2 -1.2 -0.067 -0.52 8.1e+03 1.7e-06 4.7e+07 1 ++
Considering neighbor 0/20 for current solution
Attempt 92/100
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000098
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.26 0.5 -3 -
1 1.1e+04 0.26 0.25 -0.53 -
2 9.3e+03 3.3 2.5 1 ++
3 9.3e+03 3.3 1.2 1 -
4 9.3e+03 3.3 0.62 1 -
5 9.3e+03 3.3 0.31 1 -
6 9.3e+03 3.3 0.16 -1.4 -
7 9.3e+03 3.3 0.078 -0.91 -
8 9.3e+03 3.3 0.039 -0.91 -
9 9.3e+03 3.3 0.02 -1.2 -
10 9.3e+03 3.3 0.0098 -1.8 -
11 9.3e+03 3.3 0.0049 -2.4 -
12 9.3e+03 3.3 0.0024 -3 -
13 9.3e+03 3.3 0.0012 -2.6 -
14 9.3e+03 3.3 0.00061 -1.2 -
15 9.3e+03 3.3 0.00031 -0.26 -
16 9.3e+03 2.2 0.00031 0.6 +
17 9.3e+03 0.48 0.0031 0.91 ++
18 9.3e+03 0.081 0.031 1 ++
19 9.2e+03 0.26 0.31 1 ++
20 8.8e+03 5.1 0.31 0.69 +
21 8.6e+03 12 0.31 0.61 +
22 8.6e+03 12 0.15 0.61 -
23 8.6e+03 12 0.076 0.61 -
24 8.6e+03 12 0.038 0.61 -
25 8.6e+03 12 0.019 0.61 -
26 8.6e+03 12 0.0095 0.61 -
27 8.6e+03 12 0.0048 -1.9 -
28 8.6e+03 12 0.0024 -1.5 -
29 8.6e+03 12 0.0012 -0.97 -
30 8.6e+03 12 0.0006 -0.38 -
31 8.6e+03 7.1 0.0006 0.1 +
32 8.6e+03 7.1 0.0003 -0.055 -
33 8.5e+03 5.6 0.003 0.99 ++
34 8.5e+03 9.5 0.003 0.69 +
35 8.5e+03 5.4 0.003 0.77 +
36 8.5e+03 8.7 0.003 0.74 +
37 8.5e+03 3.3 0.03 0.91 ++
38 8.4e+03 1.3 0.3 1 ++
39 8.3e+03 11 0.3 0.56 +
40 8.2e+03 16 0.3 0.77 +
41 8.2e+03 16 0.15 -2.3 -
42 8.2e+03 16 0.075 -1.5 -
43 8.2e+03 16 0.037 -1.5 -
44 8.2e+03 16 0.019 -1.5 -
45 8.2e+03 16 0.0093 -1.6 -
46 8.2e+03 16 0.0047 -1.8 -
47 8.2e+03 16 0.0023 -1.9 -
48 8.2e+03 16 0.0012 -2.1 -
49 8.2e+03 16 0.00058 -2.1 -
50 8.2e+03 16 0.00029 -2.1 -
51 8.2e+03 16 0.00015 -1.1 -
52 8.2e+03 16 7.3e-05 -0.17 -
53 8.2e+03 3.1 7.3e-05 0.89 +
54 8.2e+03 0.29 0.00073 0.97 ++
55 8.2e+03 0.051 0.0073 1 ++
56 8.2e+03 0.21 0.073 1 ++
57 8.2e+03 14 0.73 0.96 ++
58 8.2e+03 14 0.36 -2.8 -
59 8.2e+03 14 0.18 -0.15 -
60 8.1e+03 30 0.18 0.59 +
61 8.1e+03 19 1.8 0.91 ++
62 8.1e+03 27 1.8 0.79 +
63 8.1e+03 2.1 18 0.98 ++
64 8.1e+03 0.046 1.8e+02 1 ++
65 8.1e+03 8.7e-06 1.8e+03 1 ++
66 8.1e+03 6.5e-07 1.8e+03 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 16 unknown parameters [max: 50]
*** Estimate b07everything_000099
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.25 -
1 9.3e+03 0.07 0.5 0.78 +
2 8.7e+03 0.048 5 0.96 ++
3 8.7e+03 0.048 0.61 -0.46 -
4 8.3e+03 0.044 0.61 0.87 +
5 8.2e+03 0.0043 6.1 0.98 ++
6 8.2e+03 0.0043 0.36 0.079 -
7 8.2e+03 0.015 3.6 1 ++
8 8.1e+03 0.026 36 1 ++
9 8.1e+03 0.0025 3.6e+02 1 ++
10 8.1e+03 0.0001 3.6e+03 1 ++
11 8.1e+03 1.3e-07 3.6e+03 1 ++
Considering neighbor 1/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 10 unknown parameters [max: 50]
*** Estimate b07everything_000100
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_com square_tt_coef cube_tt_coef b_cost_train mu_public b_cost_swissmet asc_car b_cost_car Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.5 0 -
1 0 0 0 0 0 0 1 0 0 0 1.1e+04 0.26 0.25 -0.1 -
2 -0.25 -0.25 -0.048 0 0 -0.25 1 0.25 0.0078 -0.0062 9.5e+03 2 2.5 1 ++
3 -0.25 -0.25 -0.048 0 0 -0.25 1 0.25 0.0078 -0.0062 9.5e+03 2 1.2 1 -
4 -0.25 -0.25 -0.048 0 0 -0.25 1 0.25 0.0078 -0.0062 9.5e+03 2 0.62 -4.1 -
5 -0.25 -0.25 -0.048 0 0 -0.25 1 0.25 0.0078 -0.0062 9.5e+03 2 0.31 -2.5 -
6 -0.25 -0.25 -0.048 0 0 -0.25 1 0.25 0.0078 -0.0062 9.5e+03 2 0.16 -0.25 -
7 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.16 0.26 +
8 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.078 -0.8 -
9 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.039 -0.71 -
10 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.02 -0.65 -
11 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.0098 -0.55 -
12 -0.35 -0.41 -0.089 0.11 -0.0038 -0.35 1.1 0.24 0.027 0.0072 9.4e+03 11 0.0049 -0.098 -
13 -0.36 -0.41 -0.084 0.12 0.0011 -0.36 1.1 0.23 0.032 0.012 9.2e+03 5.2 0.0049 0.33 +
14 -0.36 -0.41 -0.084 0.12 0.0011 -0.36 1.1 0.23 0.032 0.012 9.2e+03 5.2 0.0024 -0.54 -
15 -0.36 -0.41 -0.081 0.12 -0.0013 -0.36 1.1 0.23 0.033 0.014 9.1e+03 4.7 0.0024 0.61 +
16 -0.36 -0.42 -0.082 0.12 -0.00087 -0.36 1.1 0.23 0.033 0.014 9.1e+03 2.7 0.024 1.3 ++
17 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.024 0.26 +
18 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.012 -2.4 -
19 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.0061 -2 -
20 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.0031 -1.6 -
21 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.0015 -0.97 -
22 -0.37 -0.43 -0.085 0.13 -0.00031 -0.37 1.1 0.21 0.035 0.016 9.1e+03 5.5 0.00076 -0.23 -
23 -0.37 -0.43 -0.086 0.13 -0.0011 -0.37 1.1 0.2 0.036 0.017 9.1e+03 3 0.00076 0.43 +
24 -0.37 -0.43 -0.086 0.13 -0.0011 -0.37 1.1 0.2 0.036 0.017 9.1e+03 3 0.00038 -0.75 -
25 -0.37 -0.43 -0.087 0.13 -0.00069 -0.37 1.1 0.2 0.036 0.017 9.1e+03 5 0.00038 0.38 +
26 -0.37 -0.43 -0.087 0.13 -0.00069 -0.37 1.1 0.2 0.036 0.017 9.1e+03 5 0.00019 -0.2 -
27 -0.37 -0.44 -0.087 0.13 -0.00088 -0.37 1.1 0.2 0.036 0.017 9e+03 2.6 0.00019 0.33 +
28 -0.37 -0.44 -0.087 0.13 -0.00088 -0.37 1.1 0.2 0.036 0.017 9e+03 2.6 9.5e-05 -0.52 -
29 -0.37 -0.44 -0.087 0.13 -0.00079 -0.37 1.1 0.2 0.036 0.017 9e+03 0.96 9.5e-05 0.66 +
30 -0.37 -0.44 -0.087 0.13 -0.0008 -0.37 1.1 0.2 0.036 0.017 9e+03 0.064 0.00095 1 ++
31 -0.37 -0.44 -0.087 0.13 -0.00081 -0.37 1.1 0.2 0.036 0.017 9e+03 0.29 0.0095 1 ++
32 -0.37 -0.44 -0.088 0.13 -0.00082 -0.37 1.1 0.19 0.037 0.018 9e+03 0.063 0.095 1 ++
33 -0.38 -0.51 -0.097 0.17 -0.00097 -0.41 1.1 0.098 0.036 0.02 8.9e+03 0.18 0.95 0.99 ++
34 -0.28 -0.94 -0.13 -0.17 0.00042 -1.4 1.3 -0.77 -0.57 -0.37 8.7e+03 17 0.95 0.44 +
35 -0.28 -0.94 -0.13 -0.17 0.00042 -1.4 1.3 -0.77 -0.57 -0.37 8.7e+03 17 0.48 -0.59 -
36 -0.086 -1.4 -0.25 0.039 -0.00037 -1.3 1.4 -0.84 -0.56 -0.39 8.6e+03 20 0.48 0.17 +
37 -0.086 -1.4 -0.25 0.039 -0.00037 -1.3 1.4 -0.84 -0.56 -0.39 8.6e+03 20 0.24 -5.3 -
38 -0.086 -1.4 -0.25 0.039 -0.00037 -1.3 1.4 -0.84 -0.56 -0.39 8.6e+03 20 0.12 -0.64 -
39 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.12 0.45 +
40 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.06 -0.88 -
41 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.03 -0.83 -
42 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.015 -0.52 -
43 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.0075 -0.4 -
44 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.0037 -0.35 -
45 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.0019 -0.33 -
46 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.00093 -0.32 -
47 -0.07 -1.4 -0.25 -0.08 -0.00023 -1.3 1.4 -0.86 -0.55 -0.37 8.5e+03 33 0.00047 -0.18 -
48 -0.07 -1.4 -0.25 -0.08 0.00024 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 17 0.00047 0.42 +
49 -0.07 -1.4 -0.25 -0.08 0.00024 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 17 0.00023 -0.67 -
50 -0.071 -1.4 -0.25 -0.08 3.3e-06 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 19 0.00023 0.39 +
51 -0.071 -1.4 -0.25 -0.08 3.3e-06 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 19 0.00012 -0.025 -
52 -0.071 -1.4 -0.25 -0.08 0.00012 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 15 0.00012 0.33 +
53 -0.071 -1.4 -0.25 -0.08 0.00012 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 15 5.8e-05 -0.3 -
54 -0.071 -1.4 -0.25 -0.08 6.1e-05 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 7.9 5.8e-05 0.52 +
55 -0.071 -1.4 -0.25 -0.08 7.8e-05 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 2.7 5.8e-05 0.77 +
56 -0.071 -1.4 -0.25 -0.08 7.4e-05 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 0.058 0.00058 1 ++
57 -0.071 -1.4 -0.25 -0.079 7.2e-05 -1.3 1.4 -0.86 -0.55 -0.37 8.4e+03 0.2 0.0058 1 ++
58 -0.071 -1.4 -0.25 -0.073 4.6e-05 -1.3 1.4 -0.86 -0.55 -0.38 8.4e+03 0.16 0.058 1 ++
59 -0.068 -1.4 -0.26 -0.083 8.8e-05 -1.4 1.4 -0.8 -0.55 -0.38 8.4e+03 0.44 0.58 1 ++
60 0.35 -2 -0.85 -0.13 0.00032 -1.7 1.4 -0.85 -0.36 -0.46 8.4e+03 18 0.58 0.38 +
61 0.37 -2.2 -1 -0.098 0.00018 -1.8 1 -0.86 -0.31 -0.32 8.3e+03 30 0.58 0.47 +
62 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.58 0.23 +
63 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.29 -1.5 -
64 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.15 -1.2 -
65 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.073 -0.99 -
66 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.036 -0.93 -
67 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.018 -0.83 -
68 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.0091 -0.75 -
69 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.0045 -0.71 -
70 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.0023 -0.72 -
71 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.0011 -0.73 -
72 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.00057 -0.74 -
73 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.00028 -0.75 -
74 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 0.00014 -0.59 -
75 0.27 -2.2 -1.1 -0.11 0.0002 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 59 7.1e-05 -0.1 -
76 0.27 -2.2 -1.1 -0.11 0.00027 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 17 7.1e-05 0.35 +
77 0.27 -2.2 -1.1 -0.11 0.00023 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 2.7 0.00071 0.95 ++
78 0.27 -2.2 -1.1 -0.11 0.00023 -1.9 1 -0.81 -0.27 -0.34 8.3e+03 0.074 0.0071 1 ++
79 0.27 -2.2 -1.1 -0.11 0.00021 -1.9 1 -0.82 -0.27 -0.33 8.3e+03 1.8 0.071 0.96 ++
80 0.28 -2.2 -1.1 -0.11 0.00021 -2 1 -0.81 -0.26 -0.36 8.3e+03 0.031 0.71 1 ++
81 0.26 -2.1 -1.1 -0.11 0.00021 -2 1 -0.82 -0.26 -0.39 8.3e+03 0.0054 7.1 1 ++
82 0.26 -2.1 -1.1 -0.11 0.00021 -2 1 -0.82 -0.26 -0.39 8.3e+03 0.013 71 1 ++
83 0.26 -2.1 -1.1 -0.11 0.00021 -2 1 -0.82 -0.26 -0.39 8.3e+03 0.0004 7.1e+02 1 ++
84 0.26 -2.1 -1.1 -0.11 0.00021 -2 1 -0.82 -0.26 -0.39 8.3e+03 0.0032 7.1e+03 1 ++
85 0.26 -2.1 -1.1 -0.11 0.00021 -2 1 -0.82 -0.26 -0.39 8.3e+03 4.7e-06 7.1e+03 1 ++
Considering neighbor 2/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 17 unknown parameters [max: 50]
*** Estimate b07everything_000101
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.26 -
1 9.6e+03 1 0.5 0.65 +
2 9.6e+03 1 0.25 -8.2 -
3 9.6e+03 1 0.12 -10 -
4 9.6e+03 1 0.062 -13 -
5 9.6e+03 1 0.031 -28 -
6 9.6e+03 1 0.016 -2.3 -
7 9.4e+03 0.46 0.16 0.97 ++
8 9.4e+03 0.46 0.078 -14 -
9 9.4e+03 0.46 0.039 -12 -
10 9.4e+03 0.46 0.02 -12 -
11 9.4e+03 0.46 0.0098 -12 -
12 9.4e+03 0.46 0.0049 -3.8 -
13 9.4e+03 2.5 0.0049 0.64 +
14 9.4e+03 0.33 0.049 0.99 ++
15 9.3e+03 0.053 0.49 1 ++
16 8.9e+03 5.2 0.49 0.67 +
17 8.9e+03 5.2 0.24 -7 -
18 8.9e+03 5.2 0.12 -7.7 -
19 8.9e+03 5.2 0.061 -14 -
20 8.9e+03 5.2 0.031 -5.8 -
21 8.9e+03 5.2 0.015 -3.9 -
22 8.9e+03 5.2 0.0076 -2.9 -
23 8.9e+03 5.2 0.0038 -2.1 -
24 8.9e+03 5.2 0.0019 -1.1 -
25 8.9e+03 5.2 0.00095 -0.19 -
26 8.8e+03 4.4 0.00095 0.52 +
27 8.8e+03 4.4 0.00048 -0.36 -
28 8.8e+03 5.1 0.00048 0.2 +
29 8.8e+03 5.1 0.00024 0.025 -
30 8.8e+03 2.5 0.00024 0.68 +
31 8.8e+03 1 0.00024 0.87 +
32 8.8e+03 0.15 0.0024 1 ++
33 8.8e+03 0.76 0.024 1 ++
34 8.7e+03 0.12 0.24 1 ++
35 8.5e+03 0.48 0.24 0.84 +
36 8.4e+03 0.41 0.24 0.84 +
37 8.3e+03 0.27 2.4 1 ++
38 8.2e+03 0.25 2.4 0.84 +
39 8.2e+03 0.25 0.22 -1.4 -
40 8.1e+03 0.75 2.2 1 ++
41 8.1e+03 0.94 22 1.2 ++
42 8.1e+03 0.94 0.5 -42 -
43 8.1e+03 0.94 0.25 -2.4 -
44 8.1e+03 1.9 2.5 1 ++
45 8.1e+03 3.7 25 1.1 ++
46 8.1e+03 16 2.5e+02 1 ++
47 8.1e+03 16 0.75 -1.9 -
48 8.1e+03 16 0.38 -0.94 -
49 8.1e+03 16 0.19 -0.33 -
50 8.1e+03 16 0.094 0.095 -
51 8.1e+03 12 0.094 0.26 +
52 8.1e+03 12 0.047 -2.1 -
53 8.1e+03 12 0.024 -2 -
54 8.1e+03 12 0.012 -1.9 -
55 8.1e+03 12 0.0059 -1.8 -
56 8.1e+03 12 0.0029 -1.8 -
57 8.1e+03 12 0.0015 -1.8 -
58 8.1e+03 12 0.00074 -1.8 -
59 8.1e+03 12 0.00037 -1.8 -
60 8.1e+03 12 0.00018 -1.9 -
61 8.1e+03 12 9.2e-05 -1.9 -
62 8.1e+03 12 4.6e-05 -0.88 -
63 8.1e+03 6.6 4.6e-05 0.58 +
64 8.1e+03 0.12 0.00046 1 ++
65 8.1e+03 0.016 0.0046 1 ++
66 8.1e+03 0.13 0.046 1 ++
67 8.1e+03 0.0063 0.46 1 ++
68 8.1e+03 1.5 0.46 0.89 +
69 8.1e+03 0.11 4.6 1 ++
70 8.1e+03 0.049 46 1 ++
71 8.1e+03 0.00014 4.6e+02 1 ++
72 8.1e+03 3.4e-06 4.6e+02 1 ++
Considering neighbor 3/20 for current solution
Attempt 93/100
Biogeme parameters read from biogeme.toml.
Model with 11 unknown parameters [max: 50]
*** Estimate b07everything_000102
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost mu_public asc_car_ref asc_car_diff_on asc_car_diff_se Function Relgrad Radius Rho
0 -0.79 -0.32 -0.016 -1 -0.58 1.2 -0.28 1.7 -0.074 -0.11 -0.011 1e+04 0.16 1 0.22 +
1 -0.79 -0.32 -0.016 -1 -0.58 1.2 -0.28 1.7 -0.074 -0.11 -0.011 1e+04 0.16 0.5 0.019 -
2 -0.31 0.18 0.0019 -0.63 -0.43 1 -0.57 1.4 -0.08 -0.16 -0.021 8.8e+03 0.081 0.5 0.74 +
3 -0.66 0.47 0.14 -0.87 -0.47 0.55 -0.76 1.7 -0.13 -0.17 -0.12 8.5e+03 0.015 0.5 0.86 +
4 -0.64 0.47 0.36 -1.2 -0.57 0.7 -0.84 1.2 0.069 -0.14 -0.22 8.5e+03 0.012 0.5 0.76 +
5 -0.91 0.73 0.67 -1.2 -0.62 0.54 -0.83 1.1 0.17 -0.15 -0.64 8.5e+03 0.0025 5 1.1 ++
6 -1.1 0.77 0.67 -1.3 -0.64 0.55 -0.84 1 0.21 -0.14 -0.64 8.5e+03 0.0026 50 1 ++
7 -1.1 0.88 0.71 -1.3 -0.66 0.52 -0.83 1 0.21 -0.12 -0.65 8.5e+03 0.00095 5e+02 1 ++
8 -1.2 0.91 0.86 -1.3 -0.66 0.53 -0.84 1 0.19 -0.13 -0.65 8.5e+03 3e-05 5e+03 1 ++
9 -1.2 0.91 0.86 -1.3 -0.66 0.53 -0.84 1 0.19 -0.13 -0.65 8.5e+03 1.4e-08 5e+03 1 ++
Considering neighbor 0/20 for current solution
Attempt 94/100
Biogeme parameters read from biogeme.toml.
Model with 6 unknown parameters [max: 50]
*** Estimate b07everything_000103
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time lambda_travel_t b_cost mu_public asc_car Function Relgrad Radius Rho
0 -0.82 -1 1.1 -0.19 1.3 -0.025 9e+03 0.066 1 0.68 +
1 0.18 -1.9 0.13 -0.67 1.4 0.25 8.8e+03 0.015 1 0.59 +
2 -0.14 -1.7 0.39 -0.77 1.2 0.15 8.6e+03 0.0084 10 1.2 ++
3 -0.36 -1.6 0.53 -0.78 1.1 0.12 8.6e+03 0.0026 1e+02 1.1 ++
4 -0.47 -1.6 0.55 -0.79 1 0.13 8.6e+03 0.001 1e+03 1.1 ++
5 -0.47 -1.6 0.55 -0.79 1 0.14 8.6e+03 0.00021 1e+04 1 ++
6 -0.47 -1.6 0.55 -0.79 1 0.14 8.6e+03 2.2e-07 1e+04 1 ++
Considering neighbor 0/20 for current solution
Biogeme parameters read from biogeme.toml.
Model with 5 unknown parameters [max: 50]
*** Estimate b07everything_000104
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time b_cost mu_public asc_car Function Relgrad Radius Rho
0 -0.82 -1 -0.19 1.4 -0.028 9e+03 0.068 1 0.68 +
1 0.18 -1.4 -0.61 1.6 0.11 8.8e+03 0.058 1 0.47 +
2 -0.29 -0.94 -0.69 1.8 -0.23 8.7e+03 0.0096 1 0.81 +
3 -0.29 -0.94 -0.69 1.8 -0.23 8.7e+03 0.0096 0.41 -0.11 -
4 -0.23 -1.2 -0.71 1.4 -0.07 8.7e+03 0.011 0.41 0.87 +
5 -0.41 -1.2 -0.77 1.2 -0.045 8.7e+03 0.0057 4.1 1.2 ++
6 -0.51 -1.2 -0.78 1.1 -0.024 8.7e+03 0.0017 41 1.2 ++
7 -0.56 -1.3 -0.78 1.1 -0.012 8.7e+03 0.00034 4.1e+02 1.1 ++
8 -0.57 -1.3 -0.78 1.1 -0.0098 8.7e+03 1.2e-05 4.1e+03 1 ++
9 -0.57 -1.3 -0.78 1.1 -0.0098 8.7e+03 2.1e-08 4.1e+03 1 ++
Considering neighbor 1/20 for current solution
Attempt 95/100
Biogeme parameters read from biogeme.toml.
Model with 7 unknown parameters [max: 50]
*** Estimate b07everything_000105
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_1st lambda_travel_t b_cost mu_existing asc_car Function Relgrad Radius Rho
0 -0.81 -0.78 -0.48 1.9 -1 1.7 0.39 9.5e+03 0.11 1 0.43 +
1 -0.81 -0.78 -0.48 1.9 -1 1.7 0.39 9.5e+03 0.11 0.5 -0.87 -
2 -0.48 -0.53 -0.47 1.6 -0.88 1.5 -0.11 8.7e+03 0.033 5 0.94 ++
3 -0.48 -0.53 -0.47 1.6 -0.88 1.5 -0.11 8.7e+03 0.033 2.5 -57 -
4 -0.48 -0.53 -0.47 1.6 -0.88 1.5 -0.11 8.7e+03 0.033 1.2 -2.4 -
5 -0.066 -1.1 -0.65 0.37 -0.66 2.3 0.25 8.5e+03 0.016 1.2 0.79 +
6 -0.24 -1.1 -0.56 0.5 -0.7 1.8 0.15 8.4e+03 0.0039 1.2 0.81 +
7 -0.25 -1 -0.54 0.51 -0.68 1.9 0.12 8.4e+03 0.0013 12 1.1 ++
8 -0.25 -1 -0.54 0.51 -0.67 2 0.12 8.4e+03 7.2e-05 1.2e+02 1 ++
9 -0.25 -1 -0.54 0.51 -0.67 2 0.12 8.4e+03 1.7e-07 1.2e+02 1 ++
Considering neighbor 0/20 for current solution
Attempt 96/100
Considering neighbor 0/20 for current solution
Attempt 97/100
Biogeme parameters read from biogeme.toml.
Model with 13 unknown parameters [max: 50]
*** Estimate b07everything_000106
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.95 0.39 -0.73 -0.35 1.8 -1 1.8 0.064 -0.33 -0.53 -0.41 -0.63 -0.36 8.8e+03 0.074 1 0.62 +
1 -0.95 0.39 -0.73 -0.35 1.8 -1 1.8 0.064 -0.33 -0.53 -0.41 -0.63 -0.36 8.8e+03 0.074 0.5 -0.081 -
2 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 5 0.9 ++
3 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 2.5 -1e+02 -
4 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 1.2 -5.7 -
5 -0.39 1.1 -1.2 -0.68 0.18 -0.6 2.1 0.016 -0.38 -0.66 -0.79 -1.3 -0.69 8.1e+03 0.018 1.2 0.71 +
6 -0.35 1.2 -1.7 -0.75 0.2 -0.73 1.4 0.14 -0.59 -0.95 -0.82 -1.5 -0.26 8.1e+03 0.011 1.2 0.73 +
7 -0.3 1.1 -1.8 -0.72 0.16 -0.72 1.6 0.14 -0.43 -0.95 -0.81 -1.5 -0.25 8.1e+03 0.0012 12 1.1 ++
8 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.39 -0.93 -0.79 -1.5 -0.25 8.1e+03 0.00084 1.2e+02 1.1 ++
9 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.38 -0.93 -0.79 -1.5 -0.25 8.1e+03 2.3e-05 1.2e+03 1 ++
10 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.38 -0.93 -0.79 -1.5 -0.25 8.1e+03 3.2e-08 1.2e+03 1 ++
Considering neighbor 0/20 for current solution
*** New pareto solution:
asc:GA;b_cost_gen_altspec:generic;b_time:FIRST;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:boxcox [8069.988245762366, 13]
Attempt 98/100
Biogeme parameters read from biogeme.toml.
Model with 6 unknown parameters [max: 50]
*** Estimate b07everything_000107
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time_ref b_time_diff_1st b_cost mu_existing asc_car Function Relgrad Radius Rho
0 -0.71 -0.66 -0.41 -1 1.6 0.39 8.9e+03 0.13 1 0.77 +
1 -0.71 -0.66 -0.41 -1 1.6 0.39 8.9e+03 0.13 0.5 -0.96 -
2 -0.42 -0.75 -0.57 -0.5 2 -0.067 8.5e+03 0.026 0.5 0.81 +
3 -0.4 -0.69 -0.52 -0.66 2.1 -0.00045 8.5e+03 0.0014 5 0.98 ++
4 -0.41 -0.72 -0.54 -0.68 2 0.0087 8.5e+03 0.00037 50 0.95 ++
5 -0.41 -0.72 -0.54 -0.68 2 0.0087 8.5e+03 2.8e-06 50 1 ++
Considering neighbor 0/20 for current solution
Attempt 99/100
Considering neighbor 0/20 for current solution
Pareto file has been updated: b07everything_assisted.pareto
Before the algorithm: 310 models, with 13 Pareto.
After the algorithm: 338 models, with 14 Pareto.
VNS algorithm completed. Postprocessing of the Pareto optimal solutions
Pareto set initialized from file with 338 elements [14 Pareto] and 0 invalid elements.
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000000.iter
Cannot read file __b07everything_000000.iter. Statement is ignored.
Starting values for the algorithm: {}
As the model is not too complex, we activate the calculation of second derivatives. To change this behavior, modify the algorithm to "simple_bounds" in the TOML file.
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time b_cost mu_existing asc_car Function Relgrad Radius Rho
0 -0.7 -0.85 -1 1.6 0.34 8.9e+03 0.12 1 0.79 +
1 -0.7 -0.85 -1 1.6 0.34 8.9e+03 0.12 0.5 -0.8 -
2 -0.39 -0.99 -0.5 1.9 -0.088 8.6e+03 0.031 0.5 0.78 +
3 -0.37 -0.93 -0.62 2.1 -0.0038 8.5e+03 0.0021 5 0.96 ++
4 -0.37 -0.96 -0.63 2 -0.00094 8.5e+03 0.00013 50 0.97 ++
5 -0.37 -0.96 -0.63 2 -0.00094 8.5e+03 6.7e-07 50 1 ++
Optimization algorithm has converged.
Relative gradient: 6.680761256984458e-07
Cause of termination: Relative gradient = 6.7e-07 <= 6.1e-06
Number of function evaluations: 17
Number of gradient evaluations: 11
Number of hessian evaluations: 5
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 6
Proportion of Hessian calculation: 5/5 = 100.0%
Optimization time: 0:00:02.373392
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000001.iter
Cannot read file __b07everything_000001.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time b_cost asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.96 1 -0.72 -0.64 -0.31 -0.48 8.5e+03 0.043 10 1.1 ++
1 -1.1 1.4 -1.1 -0.69 -0.0034 -1.1 8.3e+03 0.0087 1e+02 1.1 ++
2 -1.1 1.5 -1.2 -0.7 0.014 -1.3 8.3e+03 0.0003 1e+03 1 ++
3 -1.1 1.5 -1.2 -0.7 0.014 -1.3 8.3e+03 5.2e-07 1e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 5.196762190323789e-07
Cause of termination: Relative gradient = 5.2e-07 <= 6.1e-06
Number of function evaluations: 13
Number of gradient evaluations: 9
Number of hessian evaluations: 4
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 4
Proportion of Hessian calculation: 4/4 = 100.0%
Optimization time: 0:00:00.602024
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000002.iter
Cannot read file __b07everything_000002.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA b_time_car b_time_swissmet Function Relgrad Radius Rho
0 -0.95 0.41 -0.8 1.7 -1 1.8 -0.012 -0.34 -0.58 -0.63 8.8e+03 0.077 1 0.69 +
1 -0.95 0.41 -0.8 1.7 -1 1.8 -0.012 -0.34 -0.58 -0.63 8.8e+03 0.077 0.5 0.085 -
2 -0.65 0.69 -0.77 1.3 -0.5 1.9 -0.28 -0.39 -0.46 -0.79 8.3e+03 0.025 5 0.91 ++
3 -0.11 0.93 -1.8 -0.18 -0.57 2.1 0.19 -0.23 -1.3 -1.9 8.3e+03 0.078 5 0.18 +
4 -0.15 0.97 -2.1 -0.17 -0.58 2 0.095 -0.25 -1.3 -1.3 8.1e+03 0.0062 50 0.95 ++
5 -0.2 1 -2 0.19 -0.62 1.8 0.13 -0.35 -1.3 -1.6 8.1e+03 0.0024 5e+02 0.92 ++
6 -0.23 1 -2 0.16 -0.62 1.8 0.12 -0.35 -1.3 -1.6 8.1e+03 7.1e-05 5e+03 1 ++
7 -0.23 1 -2 0.16 -0.62 1.8 0.12 -0.35 -1.3 -1.6 8.1e+03 8.5e-08 5e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 8.523714902895187e-08
Cause of termination: Relative gradient = 8.5e-08 <= 6.1e-06
Number of function evaluations: 23
Number of gradient evaluations: 15
Number of hessian evaluations: 7
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 8
Proportion of Hessian calculation: 7/7 = 100.0%
Optimization time: 0:00:26.892462
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000003.iter
Cannot read file __b07everything_000003.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di b_cost mu_existing asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.47 0.41 -0.7 -0.067 -1 1.9 0.11 -0.3 -0.23 -0.22 -0.44 0.12 9.1e+03 0.26 1 0.69 +
1 -0.3 0.72 -0.78 -0.27 0 2.2 -0.27 -0.35 -0.65 -0.13 -0.83 0.28 8.5e+03 0.13 1 0.53 +
2 -0.53 0.59 -0.88 0.025 -0.48 3.2 -0.51 -0.17 -0.64 0.22 -1.2 0.88 8.2e+03 0.035 1 0.82 +
3 -0.55 0.89 -1 0.57 -0.54 2.2 -0.5 0.067 -0.77 0.82 -1.3 1.6 8.1e+03 0.021 1 0.6 +
4 -0.61 0.94 -1.2 0.44 -0.58 2.1 -0.56 -0.17 -0.92 0.64 -1.6 1.5 8.1e+03 0.004 10 0.95 ++
5 -0.64 1.1 -1.4 0.43 -0.64 1.7 -0.52 -0.34 -1 0.68 -1.6 1.6 8.1e+03 0.0071 10 0.82 +
6 -0.65 1.1 -1.3 0.43 -0.64 1.7 -0.52 -0.38 -1 0.68 -1.6 1.6 8.1e+03 0.00015 1e+02 1 ++
7 -0.65 1.1 -1.3 0.43 -0.64 1.7 -0.52 -0.38 -1 0.68 -1.6 1.6 8.1e+03 4e-06 1e+02 1 ++
Optimization algorithm has converged.
Relative gradient: 3.989255826908538e-06
Cause of termination: Relative gradient = 4e-06 <= 6.1e-06
Number of function evaluations: 25
Number of gradient evaluations: 17
Number of hessian evaluations: 8
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 8
Proportion of Hessian calculation: 8/8 = 100.0%
Optimization time: 0:00:03.466709
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000004.iter
Cannot read file __b07everything_000004.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 -0.95 0.39 -0.73 -0.35 1.8 -1 1.8 0.064 -0.33 -0.53 -0.41 -0.63 -0.36 8.8e+03 0.074 1 0.62 +
1 -0.95 0.39 -0.73 -0.35 1.8 -1 1.8 0.064 -0.33 -0.53 -0.41 -0.63 -0.36 8.8e+03 0.074 0.5 -0.081 -
2 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 5 0.9 ++
3 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 2.5 -1e+02 -
4 -0.59 0.73 -0.67 -0.34 1.4 -0.5 1.9 -0.25 -0.39 -0.28 -0.49 -0.71 -0.47 8.3e+03 0.032 1.2 -5.7 -
5 -0.39 1.1 -1.2 -0.68 0.18 -0.6 2.1 0.016 -0.38 -0.66 -0.79 -1.3 -0.69 8.1e+03 0.018 1.2 0.71 +
6 -0.35 1.2 -1.7 -0.75 0.2 -0.73 1.4 0.14 -0.59 -0.95 -0.82 -1.5 -0.26 8.1e+03 0.011 1.2 0.73 +
7 -0.3 1.1 -1.8 -0.72 0.16 -0.72 1.6 0.14 -0.43 -0.95 -0.81 -1.5 -0.25 8.1e+03 0.0012 12 1.1 ++
8 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.39 -0.93 -0.79 -1.5 -0.25 8.1e+03 0.00084 1.2e+02 1.1 ++
9 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.38 -0.93 -0.79 -1.5 -0.25 8.1e+03 2.3e-05 1.2e+03 1 ++
10 -0.26 1.1 -1.7 -0.69 0.15 -0.7 1.7 0.13 -0.38 -0.93 -0.79 -1.5 -0.25 8.1e+03 3.2e-08 1.2e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 3.1703634066222935e-08
Cause of termination: Relative gradient = 3.2e-08 <= 6.1e-06
Number of function evaluations: 28
Number of gradient evaluations: 17
Number of hessian evaluations: 8
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 11
Proportion of Hessian calculation: 8/8 = 100.0%
Optimization time: 0:00:28.405540
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000005.iter
Cannot read file __b07everything_000005.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_ref b_time_diff_1st lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.84 0.39 -0.81 -0.5 1.9 -1 1.7 0.4 -0.3 9.3e+03 0.1 1 0.45 +
1 -0.59 0.95 -0.13 -0.46 1.6 1.1e-16 2.5 -0.41 -0.45 9e+03 0.16 1 0.27 +
2 -0.57 0.24 -0.39 -0.27 0.85 -0.47 3.5 -0.12 -0.11 8.5e+03 0.066 1 0.61 +
3 -0.34 0.73 -1 -0.12 0.092 -0.46 2.5 0.084 -0.039 8.3e+03 0.013 10 1.1 ++
4 -0.44 1 -1.3 -0.44 0.47 -0.64 1.4 0.18 -0.26 8.2e+03 0.016 10 0.68 +
5 -0.56 1.2 -1.2 -0.51 0.35 -0.65 1.5 0.18 -0.64 8.2e+03 0.002 1e+02 1 ++
6 -0.56 1.2 -1.2 -0.52 0.35 -0.66 1.5 0.18 -0.69 8.2e+03 2.6e-05 1e+03 1 ++
7 -0.56 1.2 -1.2 -0.52 0.35 -0.66 1.5 0.18 -0.69 8.2e+03 2.3e-08 1e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 2.2826884322294084e-08
Cause of termination: Relative gradient = 2.3e-08 <= 6.1e-06
Number of function evaluations: 25
Number of gradient evaluations: 17
Number of hessian evaluations: 8
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 8
Proportion of Hessian calculation: 8/8 = 100.0%
Optimization time: 0:00:28.560944
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000006.iter
Cannot read file __b07everything_000006.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time lambda_travel_t b_cost mu_existing asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.85 0.43 -0.99 1.8 -1 1.6 0.36 -0.32 9.1e+03 0.1 1 0.54 +
1 -0.39 1.1 -0.78 1 0 2.6 -0.27 -0.52 8.8e+03 0.15 1 0.28 +
2 -0.15 0.13 -1.1 0.1 -0.35 3.5 0.19 0.11 8.6e+03 0.093 1 0.28 +
3 -0.15 0.13 -1.1 0.1 -0.35 3.5 0.19 0.11 8.6e+03 0.093 0.5 0.057 -
4 -0.16 0.63 -1 0.21 -0.44 3.5 0.11 -0.29 8.3e+03 0.023 0.5 0.85 +
5 -0.27 0.69 -0.97 0.34 -0.33 3 0.058 -0.22 8.3e+03 0.013 5 1 ++
6 -0.27 0.69 -0.97 0.34 -0.33 3 0.058 -0.22 8.3e+03 0.013 1 -1.5 -
7 -0.23 1 -1.4 0.23 -0.51 2 0.22 -0.37 8.2e+03 0.019 10 1 ++
8 -0.43 1.1 -1.5 0.33 -0.59 1.6 0.17 -0.55 8.2e+03 0.006 1e+02 1.1 ++
9 -0.5 1.2 -1.5 0.33 -0.6 1.6 0.18 -0.62 8.2e+03 0.00046 1e+03 1.1 ++
10 -0.51 1.2 -1.5 0.33 -0.61 1.6 0.18 -0.64 8.2e+03 1.8e-05 1e+04 1 ++
11 -0.51 1.2 -1.5 0.33 -0.61 1.6 0.18 -0.64 8.2e+03 2.8e-09 1e+04 1 ++
Optimization algorithm has converged.
Relative gradient: 2.7525596636599818e-09
Cause of termination: Relative gradient = 2.8e-09 <= 6.1e-06
Number of function evaluations: 33
Number of gradient evaluations: 21
Number of hessian evaluations: 10
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 12
Proportion of Hessian calculation: 10/10 = 100.0%
Optimization time: 0:00:17.862492
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000007.iter
Cannot read file __b07everything_000007.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.56 -
1 1e+04 1.5 0.5 0.2 +
2 1e+04 1.5 0.25 0.2 -
3 1e+04 1.5 0.12 0.2 -
4 1e+04 1.5 0.062 -4.2 -
5 9.9e+03 7.1 0.062 0.48 +
6 9.9e+03 7.1 0.031 0.0017 -
7 9.6e+03 1.2 0.031 0.12 +
8 9.6e+03 1.2 0.016 -0.32 -
9 9.3e+03 0.58 0.16 0.92 ++
10 9.3e+03 0.58 0.078 0.92 -
11 9.3e+03 0.58 0.039 -15 -
12 9.3e+03 0.58 0.02 -16 -
13 9.3e+03 0.58 0.0098 -6.7 -
14 9.3e+03 3.5 0.0098 0.56 +
15 9.3e+03 0.11 0.0098 0.88 +
16 9.2e+03 0.44 0.098 0.97 ++
17 9.1e+03 0.41 0.98 1 ++
18 9.1e+03 0.41 0.49 -0.77 -
19 8.7e+03 10 0.49 0.45 +
20 8.7e+03 10 0.24 0.45 -
21 8.7e+03 10 0.12 0.45 -
22 8.7e+03 10 0.061 0.45 -
23 8.7e+03 10 0.031 0.45 -
24 8.7e+03 10 0.015 0.45 -
25 8.7e+03 10 0.0076 0.45 -
26 8.7e+03 10 0.0038 -1.7 -
27 8.7e+03 10 0.0019 -1.1 -
28 8.7e+03 10 0.00095 -0.63 -
29 8.7e+03 10 0.00048 -0.36 -
30 8.7e+03 10 0.00024 -0.065 -
31 8.7e+03 6.6 0.00024 0.51 +
32 8.7e+03 7.8 0.00024 0.3 +
33 8.7e+03 1.4 0.00024 0.85 +
34 8.7e+03 0.19 0.0024 1 ++
35 8.7e+03 1.2 0.024 1 ++
36 8.6e+03 0.16 0.24 1 ++
37 8.3e+03 1.1 0.24 0.62 +
38 8.2e+03 0.15 2.4 0.98 ++
39 8.1e+03 0.11 24 1.1 ++
40 8.1e+03 0.86 24 0.67 +
41 8e+03 0.55 2.4e+02 1.1 ++
42 8e+03 0.55 1.2e+02 1.1 -
43 8e+03 0.55 60 1.1 -
44 8e+03 0.55 30 1.1 -
45 8e+03 0.55 15 1.1 -
46 8e+03 0.55 7.5 1.1 -
47 8e+03 0.55 3.7 1.1 -
48 8e+03 0.55 1.9 -6e+02 -
49 8e+03 0.55 0.93 -1.6e+02 -
50 8e+03 0.55 0.47 -19 -
51 8e+03 0.55 0.23 -1.5 -
52 8e+03 2.7 0.23 0.68 +
53 8e+03 1.5 2.3 1 ++
54 8e+03 1.5 0.41 -5.1 -
55 8e+03 1.5 0.21 0.0037 -
56 8e+03 3.2 2.1 0.91 ++
57 8e+03 0.89 21 1.1 ++
58 8e+03 0.16 2.1e+02 1 ++
59 8e+03 0.00021 2.1e+03 1 ++
60 8e+03 1.8e-05 2.1e+04 1 ++
61 8e+03 1.5e-06 2.1e+04 1 ++
Optimization algorithm has converged.
Relative gradient: 1.5087061857226408e-06
Cause of termination: Relative gradient = 1.5e-06 <= 6.1e-06
Number of function evaluations: 119
Number of gradient evaluations: 57
Number of hessian evaluations: 28
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 62
Proportion of Hessian calculation: 28/28 = 100.0%
Optimization time: 0:00:09.860294
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000008.iter
Cannot read file __b07everything_000008.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time_train_re b_time_train_di square_tt_coef cube_tt_coef b_cost mu_existing asc_car_ref asc_car_diff_GA b_time_car_ref b_time_car_diff b_time_swissmet b_time_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1.1e+04 0.4 0.5 -0.26 -
1 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.5 0.85 +
2 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.25 0.85 -
3 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.12 0.85 -
4 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.062 0.85 -
5 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.031 -32 -
6 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.016 -7.4 -
7 -0.27 -0.00011 -0.5 -0.071 0.0008 0.0079 -0.039 1.2 0.0075 -0.022 -0.02 -0.021 0.2 0.046 9.4e+03 1 0.0078 -2.2 -
8 -0.27 0.0077 -0.51 -0.079 -0.007 0.00013 -0.046 1.2 -0.0003 -0.03 -0.028 -0.014 0.19 0.054 9.3e+03 0.31 0.078 0.94 ++
9 -0.27 0.039 -0.53 -0.086 0.016 -0.0016 -0.11 1.2 -0.036 -0.053 -0.11 -0.039 0.19 0.067 9.2e+03 6 0.078 0.68 +
10 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.078 0.62 +
11 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.039 0.62 -
12 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.02 0.62 -
13 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.0098 -6.1 -
14 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.0049 -4 -
15 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.0024 -2.3 -
16 -0.27 0.079 -0.56 -0.097 0.00019 0.001 -0.19 1.3 -0.046 -0.079 -0.16 -0.079 0.14 0.081 9e+03 2.6 0.0012 -0.28 -
17 -0.28 0.081 -0.56 -0.099 0.0014 -0.00019 -0.19 1.3 -0.045 -0.08 -0.16 -0.079 0.14 0.082 9e+03 1.1 0.012 0.96 ++
18 -0.28 0.088 -0.57 -0.1 0.0068 -0.00029 -0.2 1.3 -0.045 -0.085 -0.17 -0.082 0.13 0.083 9e+03 0.32 0.12 0.99 ++
19 -0.28 0.16 -0.61 -0.11 0.057 -0.00047 -0.32 1.4 -0.045 -0.13 -0.2 -0.11 0.028 0.099 8.8e+03 0.23 1.2 0.99 ++
20 -0.28 0.16 -0.61 -0.11 0.057 -0.00047 -0.32 1.4 -0.045 -0.13 -0.2 -0.11 0.028 0.099 8.8e+03 0.23 0.61 -0.95 -
21 -0.18 0.54 -0.57 -0.16 0.24 -0.0012 -0.76 1.7 -0.15 -0.34 -0.56 -0.24 -0.58 0.16 8.6e+03 1.6 0.61 0.29 +
22 -0.18 0.54 -0.57 -0.16 0.24 -0.0012 -0.76 1.7 -0.15 -0.34 -0.56 -0.24 -0.58 0.16 8.6e+03 1.6 0.31 -0.7 -
23 -0.31 0.64 -0.58 -0.22 0.48 -0.0021 -0.58 2 -0.17 -0.38 -0.35 -0.16 -0.67 0.34 8.4e+03 9.1 0.31 0.55 +
24 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.31 0.87 +
25 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.15 -1.4 -
26 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.076 -0.52 -
27 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.038 -0.52 -
28 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.019 -0.65 -
29 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0095 -0.79 -
30 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0048 -0.82 -
31 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0024 -0.87 -
32 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0012 -0.92 -
33 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0006 -0.94 -
34 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.0003 -0.96 -
35 -0.48 0.77 -0.56 -0.096 0.29 -0.0016 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 5.7 0.00015 0.012 -
36 -0.48 0.77 -0.56 -0.096 0.29 -0.0014 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 0.96 0.00015 0.79 +
37 -0.48 0.77 -0.56 -0.096 0.29 -0.0014 -0.52 2.1 -0.35 -0.44 -0.36 -0.019 -0.63 0.65 8.2e+03 0.12 0.0015 0.95 ++
38 -0.49 0.77 -0.56 -0.096 0.29 -0.0014 -0.52 2.1 -0.35 -0.44 -0.37 -0.018 -0.63 0.65 8.2e+03 0.015 0.015 1 ++
39 -0.49 0.77 -0.56 -0.094 0.29 -0.0014 -0.52 2.1 -0.35 -0.44 -0.38 -0.0076 -0.64 0.64 8.2e+03 0.12 0.15 1 ++
40 -0.64 0.82 -0.61 0.024 0.23 -0.0012 -0.57 2 -0.38 -0.43 -0.46 0.14 -0.76 0.66 8.1e+03 0.12 1.5 1 ++
41 -0.64 0.82 -0.61 0.024 0.23 -0.0012 -0.57 2 -0.38 -0.43 -0.46 0.14 -0.76 0.66 8.1e+03 0.12 0.75 -3e+02 -
42 -0.64 0.82 -0.61 0.024 0.23 -0.0012 -0.57 2 -0.38 -0.43 -0.46 0.14 -0.76 0.66 8.1e+03 0.12 0.37 -16 -
43 -0.78 1 -0.79 0.097 0.13 -0.00077 -0.6 1.8 -0.51 -0.39 -0.61 0.33 -1.1 1 8.1e+03 0.094 3.7 1.2 ++
44 -0.78 1 -0.79 0.097 0.13 -0.00077 -0.6 1.8 -0.51 -0.39 -0.61 0.33 -1.1 1 8.1e+03 0.094 0.29 -3.5 -
45 -0.73 1 -1.1 0.18 -0.0007 -0.00026 -0.6 1.8 -0.44 -0.35 -0.85 0.32 -1.4 1.1 8.1e+03 2.3 2.9 1 ++
46 -0.55 1 -1.5 0.22 -0.056 1.4e-05 -0.61 1.8 -0.45 -0.33 -1.1 0.33 -1.7 1.3 8.1e+03 6.6 29 1.3 ++
47 -0.55 1 -1.5 0.22 -0.056 1.4e-05 -0.61 1.8 -0.45 -0.33 -1.1 0.33 -1.7 1.3 8.1e+03 6.6 0.52 -21 -
48 -0.55 1 -1.5 0.22 -0.056 1.4e-05 -0.61 1.8 -0.45 -0.33 -1.1 0.33 -1.7 1.3 8.1e+03 6.6 0.26 -1.3 -
49 -0.46 1.1 -1.7 0.23 -0.087 0.0001 -0.6 1.9 -0.44 -0.33 -1.3 0.27 -1.9 1.2 8.1e+03 11 0.26 0.85 +
50 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.26 0.77 +
51 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.13 -0.1 -
52 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.065 0.018 -
53 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.033 -0.046 -
54 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.016 -0.14 -
55 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.0082 -0.31 -
56 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.0041 -0.31 -
57 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.002 -0.38 -
58 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.001 -0.25 -
59 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.00051 -0.22 -
60 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.00025 -0.22 -
61 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 0.00013 -0.23 -
62 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 6.4e-05 -0.23 -
63 -0.34 0.98 -2 0.13 -0.099 0.00019 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 3.2e-05 -0.23 -
64 -0.34 0.98 -2 0.13 -0.099 0.00016 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 13 3.2e-05 0.2 +
65 -0.34 0.98 -2 0.13 -0.099 0.00018 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 2.3 3.2e-05 0.87 +
66 -0.34 0.98 -2 0.13 -0.099 0.00017 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 0.059 0.00032 0.98 ++
67 -0.34 0.98 -2 0.13 -0.098 0.00017 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 0.012 0.0032 1 ++
68 -0.34 0.98 -2 0.13 -0.097 0.00016 -0.64 1.9 -0.41 -0.29 -1.5 0.17 -2.2 1.1 8e+03 0.04 0.032 1 ++
69 -0.33 1 -2 0.13 -0.098 0.00017 -0.61 1.9 -0.42 -0.29 -1.5 0.17 -2.2 1.1 8e+03 0.037 0.32 0.99 ++
70 -0.28 1 -2.2 -0.021 -0.1 0.00019 -0.62 1.8 -0.38 -0.37 -1.6 0.013 -2.2 0.87 8e+03 1 3.2 0.98 ++
71 -0.29 1 -2.1 -0.082 -0.1 0.00018 -0.62 1.8 -0.39 -0.34 -1.5 -0.085 -2.2 0.75 8e+03 0.19 32 1 ++
72 -0.28 1 -2.1 -0.11 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.11 -2.2 0.71 8e+03 0.026 3.2e+02 1 ++
73 -0.28 1 -2.1 -0.13 -0.1 0.00018 -0.62 1.8 -0.39 -0.36 -1.5 -0.14 -2.2 0.68 8e+03 0.0045 3.2e+03 1 ++
74 -0.28 1 -2.1 -0.13 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.14 -2.2 0.66 8e+03 0.0022 3.2e+04 1 ++
75 -0.28 1 -2.1 -0.14 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.15 -2.2 0.66 8e+03 0.00032 3.2e+05 1 ++
76 -0.28 1 -2.1 -0.14 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.15 -2.2 0.65 8e+03 8.2e-05 3.2e+06 1 ++
77 -0.28 1 -2.1 -0.14 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.15 -2.2 0.65 8e+03 1.8e-05 3.2e+07 1 ++
78 -0.28 1 -2.1 -0.14 -0.1 0.00019 -0.62 1.8 -0.39 -0.36 -1.6 -0.15 -2.2 0.65 8e+03 2.7e-06 3.2e+07 1 ++
Optimization algorithm has converged.
Relative gradient: 2.741228079022708e-06
Cause of termination: Relative gradient = 2.7e-06 <= 6.1e-06
Number of function evaluations: 150
Number of gradient evaluations: 71
Number of hessian evaluations: 35
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 79
Proportion of Hessian calculation: 35/35 = 100.0%
Optimization time: 0:00:07.588204
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000009.iter
Cannot read file __b07everything_000009.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.53 -
1 1e+04 1.4 0.5 0.28 +
2 1e+04 1.4 0.25 0.28 -
3 1e+04 1.4 0.12 0.28 -
4 1e+04 1.4 0.062 -5.6 -
5 1e+04 1.4 0.031 -0.69 -
6 9.5e+03 1.1 0.031 0.88 +
7 9.5e+03 1.1 0.016 -9.8 -
8 9.3e+03 0.71 0.16 0.94 ++
9 9.1e+03 0.66 1.6 1 ++
10 9.1e+03 0.66 0.78 -3.1 -
11 9.1e+03 0.66 0.39 -0.55 -
12 8.8e+03 8.3 0.39 0.43 +
13 8.8e+03 8.3 0.2 0.43 -
14 8.8e+03 8.3 0.098 0.43 -
15 8.8e+03 8.3 0.049 0.43 -
16 8.8e+03 8.3 0.024 0.43 -
17 8.8e+03 8.3 0.012 0.43 -
18 8.8e+03 8.3 0.0061 -2 -
19 8.8e+03 8.3 0.0031 -1.2 -
20 8.8e+03 8.3 0.0015 -0.12 -
21 8.7e+03 7.2 0.0015 0.87 +
22 8.7e+03 7.2 0.00076 -1.1 -
23 8.7e+03 7.2 0.00038 -1.1 -
24 8.7e+03 7.2 0.00019 -0.44 -
25 8.7e+03 7.5 0.00019 0.28 +
26 8.7e+03 7.5 9.5e-05 -0.12 -
27 8.7e+03 2.5 9.5e-05 0.58 +
28 8.7e+03 0.22 0.00095 0.98 ++
29 8.7e+03 0.29 0.0095 1 ++
30 8.6e+03 0.19 0.095 1 ++
31 8.4e+03 0.089 0.95 0.99 ++
32 8.4e+03 0.089 0.48 -2.7 -
33 8.3e+03 0.16 0.48 0.47 +
34 8.2e+03 0.21 0.48 0.79 +
35 8.1e+03 1.6 0.48 0.28 +
36 8.1e+03 0.36 0.48 0.9 +
37 8.1e+03 0.36 0.24 -5 -
38 8.1e+03 5.5 0.24 0.22 +
39 8.1e+03 5.1 2.4 0.93 ++
40 8.1e+03 5.1 0.54 -16 -
41 8.1e+03 5.1 0.27 -1.7 -
42 8e+03 8.3 0.27 0.63 +
43 8e+03 1.5 2.7 0.99 ++
44 8e+03 0.22 27 1 ++
45 8e+03 0.0044 2.7e+02 1 ++
46 8e+03 0.039 2.7e+03 1 ++
47 8e+03 9.7e-05 2.7e+04 1 ++
48 8e+03 8.8e-07 2.7e+04 1 ++
Optimization algorithm has converged.
Relative gradient: 8.776345793655821e-07
Cause of termination: Relative gradient = 8.8e-07 <= 6.1e-06
Number of function evaluations: 100
Number of gradient evaluations: 51
Number of hessian evaluations: 25
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 49
Proportion of Hessian calculation: 25/25 = 100.0%
Optimization time: 0:00:08.130542
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000010.iter
Cannot read file __b07everything_000010.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time square_tt_coef cube_tt_coef b_cost_train mu_existing asc_car_ref asc_car_diff_GA b_cost_car b_cost_swissmet Function Relgrad Radius Rho
0 0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.5 -2.6 -
1 0 0 0 0 0 0 1 0 0 0 0 1.1e+04 0.26 0.25 -0.1 -
2 -0.25 -0.0082 -0.25 0 0 -0.25 1.2 0.25 -0.25 -0.025 0.25 9.3e+03 2 2.5 1 ++
3 -0.25 -0.0082 -0.25 0 0 -0.25 1.2 0.25 -0.25 -0.025 0.25 9.3e+03 2 1.2 1 -
4 -0.25 -0.0082 -0.25 0 0 -0.25 1.2 0.25 -0.25 -0.025 0.25 9.3e+03 2 0.62 1 -
5 -0.25 -0.0082 -0.25 0 0 -0.25 1.2 0.25 -0.25 -0.025 0.25 9.3e+03 2 0.31 -2.2 -
6 -0.25 -0.0082 -0.25 0 0 -0.25 1.2 0.25 -0.25 -0.025 0.25 9.3e+03 2 0.16 -0.16 -
7 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.16 0.34 +
8 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.078 -0.49 -
9 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.039 -0.39 -
10 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.02 -0.34 -
11 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.0098 -0.32 -
12 -0.32 0.013 -0.41 0.11 -0.0029 -0.33 1.3 0.23 -0.28 -0.047 0.25 9.1e+03 11 0.0049 -0.31 -
13 -0.32 0.018 -0.41 0.11 0.002 -0.33 1.3 0.22 -0.28 -0.042 0.25 9.1e+03 5.5 0.0049 0.1 +
14 -0.32 0.018 -0.41 0.11 0.002 -0.33 1.3 0.22 -0.28 -0.042 0.25 9.1e+03 5.5 0.0024 -0.062 -
15 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.024 1 ++
16 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.012 -4.2 -
17 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.0061 -3.1 -
18 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.0031 -2.1 -
19 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.0015 -1.4 -
20 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.00076 -0.73 -
21 -0.33 0.02 -0.41 0.11 -0.00046 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 5.4 0.00038 -0.15 -
22 -0.33 0.021 -0.41 0.11 -0.00085 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 3.4 0.00038 0.38 +
23 -0.33 0.021 -0.41 0.11 -0.00085 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 3.4 0.00019 -0.63 -
24 -0.33 0.021 -0.41 0.11 -0.00066 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 3.3 0.00019 0.43 +
25 -0.33 0.021 -0.41 0.11 -0.00073 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 0.67 0.00019 0.85 +
26 -0.33 0.021 -0.41 0.11 -0.00071 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 0.065 0.0019 0.99 ++
27 -0.33 0.022 -0.42 0.11 -0.00072 -0.34 1.3 0.22 -0.29 -0.039 0.24 8.9e+03 0.16 0.019 1 ++
28 -0.33 0.028 -0.43 0.12 -0.00075 -0.34 1.4 0.22 -0.29 -0.039 0.22 8.9e+03 0.067 0.19 1 ++
29 -0.34 0.098 -0.56 0.2 -0.0011 -0.4 1.4 0.2 -0.36 -0.044 0.03 8.7e+03 0.41 1.9 0.97 ++
30 -0.34 0.098 -0.56 0.2 -0.0011 -0.4 1.4 0.2 -0.36 -0.044 0.03 8.7e+03 0.41 0.95 -76 -
31 -0.34 0.098 -0.56 0.2 -0.0011 -0.4 1.4 0.2 -0.36 -0.044 0.03 8.7e+03 0.41 0.48 -14 -
32 -0.22 0.41 -0.75 0.13 -0.00077 -0.54 1.7 -0.095 -0.6 -0.24 -0.45 8.4e+03 1.3 0.48 0.87 +
33 -0.22 0.41 -0.75 0.13 -0.00077 -0.54 1.7 -0.095 -0.6 -0.24 -0.45 8.4e+03 1.3 0.24 -1.6 -
34 -0.41 0.56 -0.97 -0.097 0.00015 -0.73 1.9 -0.17 -0.67 -0.28 -0.46 8.3e+03 10 0.24 0.77 +
35 -0.42 0.59 -1.2 -0.063 1.7e-05 -0.71 1.9 -0.19 -0.66 -0.3 -0.52 8.2e+03 0.24 2.4 0.91 ++
36 -0.42 0.59 -1.2 -0.063 1.7e-05 -0.71 1.9 -0.19 -0.66 -0.3 -0.52 8.2e+03 0.24 0.79 -20 -
37 -0.42 0.59 -1.2 -0.063 1.7e-05 -0.71 1.9 -0.19 -0.66 -0.3 -0.52 8.2e+03 0.24 0.4 -2 -
38 -0.34 0.77 -1.6 -0.1 0.00018 -0.68 1.9 -0.19 -0.63 -0.27 -0.64 8.1e+03 18 0.4 0.75 +
39 -0.34 0.94 -1.9 -0.1 0.00019 -0.75 1.7 -0.2 -0.45 -0.25 -0.65 8.1e+03 4.1 4 1.1 ++
40 -0.36 0.99 -2 -0.11 0.0002 -0.78 1.6 -0.2 -0.48 -0.25 -0.66 8.1e+03 0.21 40 1 ++
41 -0.37 0.99 -2 -0.11 0.0002 -0.78 1.6 -0.2 -0.49 -0.25 -0.66 8.1e+03 0.00069 4e+02 1 ++
42 -0.37 0.99 -2 -0.11 0.0002 -0.78 1.6 -0.2 -0.49 -0.25 -0.66 8.1e+03 7.1e-07 4e+02 1 ++
Optimization algorithm has converged.
Relative gradient: 7.134790856934879e-07
Cause of termination: Relative gradient = 7.1e-07 <= 6.1e-06
Number of function evaluations: 82
Number of gradient evaluations: 39
Number of hessian evaluations: 19
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 43
Proportion of Hessian calculation: 19/19 = 100.0%
Optimization time: 0:00:09.831923
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000011.iter
Cannot read file __b07everything_000011.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train_ref asc_train_diff_ b_time lambda_travel_t b_cost asc_car_ref asc_car_diff_GA Function Relgrad Radius Rho
0 -0.68 0.25 -1 1.5 -0.54 -0.26 -0.22 8.8e+03 0.044 1 0.86 +
1 -1.1 1.2 -1.3 0.78 -0.82 -0.027 -0.62 8.3e+03 0.014 10 1.1 ++
2 -0.83 1.7 -1.8 0.26 -0.72 0.22 -1.1 8.2e+03 0.007 10 0.87 +
3 -0.9 1.7 -1.7 0.35 -0.72 0.17 -1.2 8.2e+03 0.00063 1e+02 1.1 ++
4 -0.9 1.7 -1.7 0.37 -0.72 0.17 -1.2 8.2e+03 1.1e-05 1e+03 1 ++
5 -0.9 1.7 -1.7 0.37 -0.72 0.17 -1.2 8.2e+03 2e-09 1e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 2.014992458385678e-09
Cause of termination: Relative gradient = 2e-09 <= 6.1e-06
Number of function evaluations: 19
Number of gradient evaluations: 13
Number of hessian evaluations: 6
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 6
Proportion of Hessian calculation: 6/6 = 100.0%
Optimization time: 0:00:01.527962
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000012.iter
Cannot read file __b07everything_000012.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. asc_train b_time b_cost asc_car Function Relgrad Radius Rho
0 -0.76 -0.77 -0.7 -0.29 8.8e+03 0.04 10 1.1 ++
1 -0.66 -1.2 -0.77 -0.0015 8.7e+03 0.0064 1e+02 1.1 ++
2 -0.65 -1.3 -0.79 0.016 8.7e+03 0.00012 1e+03 1 ++
3 -0.65 -1.3 -0.79 0.016 8.7e+03 4e-08 1e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 3.954408094627241e-08
Cause of termination: Relative gradient = 4e-08 <= 6.1e-06
Number of function evaluations: 13
Number of gradient evaluations: 9
Number of hessian evaluations: 4
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 4
Proportion of Hessian calculation: 4/4 = 100.0%
Optimization time: 0:00:00.549522
Calculate second derivatives and BHHH
Biogeme parameters provided by the user.
*** Initial values of the parameters are obtained from the file __b07everything_000013.iter
Cannot read file __b07everything_000013.iter. Statement is ignored.
Starting values for the algorithm: {}
Optimization algorithm: hybrid Newton/BFGS with simple bounds [simple_bounds]
** Optimization: Newton with trust region for simple bounds
Iter. Function Relgrad Radius Rho
0 1.1e+04 0.4 0.5 -0.33 -
1 9.5e+03 1.1 0.5 0.7 +
2 9.5e+03 1.1 0.25 0.7 -
3 9.5e+03 1.1 0.12 0.7 -
4 9.5e+03 1.1 0.062 0.7 -
5 9.5e+03 1.1 0.031 -36 -
6 9.5e+03 1.1 0.016 -4 -
7 9.3e+03 3.9 0.016 0.77 +
8 9.3e+03 0.073 0.16 0.9 ++
9 9.1e+03 2.7 1.6 0.9 ++
10 9.1e+03 2.7 0.78 0.9 -
11 9.1e+03 2.7 0.39 0.9 -
12 9.1e+03 2.7 0.2 0.9 -
13 9.1e+03 2.7 0.098 0.9 -
14 9.1e+03 2.7 0.049 -5.8 -
15 9.1e+03 2.7 0.024 -6.3 -
16 9.1e+03 2.7 0.012 -6.8 -
17 9.1e+03 2.7 0.0061 -7.2 -
18 9.1e+03 2.7 0.0031 -4.1 -
19 9.1e+03 2.7 0.0015 -2.1 -
20 9.1e+03 2.7 0.00076 -0.59 -
21 9e+03 2.9 0.00076 0.32 +
22 9e+03 2.9 0.00038 -0.13 -
23 9e+03 1.4 0.00038 0.63 +
24 9e+03 0.31 0.0038 0.92 ++
25 9e+03 0.069 0.038 1 ++
26 9e+03 0.24 0.38 1 ++
27 8.7e+03 2.3 0.38 0.65 +
28 8.7e+03 2.3 0.19 -0.28 -
29 8.4e+03 5.9 0.19 0.86 +
30 8.4e+03 5.9 0.095 -0.41 -
31 8.4e+03 5.9 0.048 -0.4 -
32 8.4e+03 5.9 0.024 -0.66 -
33 8.4e+03 5.9 0.012 -0.98 -
34 8.4e+03 5.9 0.006 -1.2 -
35 8.4e+03 5.9 0.003 -1.4 -
36 8.4e+03 5.9 0.0015 -1.5 -
37 8.4e+03 5.9 0.00075 -1.4 -
38 8.4e+03 5.9 0.00037 -0.7 -
39 8.4e+03 5.9 0.00019 -0.13 -
40 8.4e+03 2 0.00019 0.64 +
41 8.4e+03 0.049 0.0019 0.99 ++
42 8.4e+03 0.31 0.019 1 ++
43 8.4e+03 0.041 0.19 1 ++
44 8.3e+03 0.6 0.19 0.9 +
45 8.2e+03 0.22 0.19 0.83 +
46 8.2e+03 0.34 0.19 0.89 +
47 8.1e+03 5.9 1.9 0.91 ++
48 8.1e+03 5.9 0.93 -2.4e+02 -
49 8.1e+03 5.9 0.47 -32 -
50 8.1e+03 1.1 0.47 0.89 +
51 8e+03 0.47 4.7 1.1 ++
52 8e+03 0.47 2.3 -4.3e+02 -
53 8e+03 0.47 1.2 -1.7e+02 -
54 8e+03 0.47 0.58 -41 -
55 8e+03 0.47 0.29 -4.7 -
56 8e+03 5.3 0.29 0.5 +
57 8e+03 4.9 2.9 1 ++
58 8e+03 4.9 0.27 -0.97 -
59 8e+03 7.5 0.27 0.74 +
60 8e+03 0.76 2.7 1 ++
61 8e+03 0.086 27 1 ++
62 8e+03 0.0047 2.7e+02 1 ++
63 8e+03 0.099 2.7e+03 1 ++
64 8e+03 3.8e-06 2.7e+03 1 ++
Optimization algorithm has converged.
Relative gradient: 3.831700555231886e-06
Cause of termination: Relative gradient = 3.8e-06 <= 6.1e-06
Number of function evaluations: 124
Number of gradient evaluations: 59
Number of hessian evaluations: 29
Algorithm: Newton with trust region for simple bound constraints
Number of iterations: 65
Proportion of Hessian calculation: 29/29 = 100.0%
Optimization time: 0:00:10.204360
Calculate second derivatives and BHHH
Pareto: 14
Considered: 338
Removed: 20
print(f'A total of {len(non_dominated_models)} models have been generated.')
A total of 14 models have been generated.
compiled_results, specs = compile_estimation_results(
non_dominated_models, use_short_names=True
)
display(compiled_results)
Model_000000 ... Model_000013
Number of estimated parameters 5 ... 18
Sample size 10719 ... 10719
Final log likelihood -8526.89 ... -8011.344
Akaike Information Criterion 17063.78 ... 16058.69
Bayesian Information Criterion 17100.18 ... 16189.72
asc_train (t-test) -0.373 (-7.17) ...
b_time (t-test) -0.958 (-14.7) ...
b_cost (t-test) -0.629 (-14.8) ... -0.62 (-13.6)
mu_existing (t-test) 2.05 (15.8) ... 1.79 (17.5)
asc_car (t-test) -0.00131 (-0.0383) ...
asc_train_ref (t-test) ... -0.475 (-4.63)
asc_train_diff_GA (t-test) ... 0.95 (12.3)
asc_car_ref (t-test) ... -0.358 (-4.7)
asc_car_diff_GA (t-test) ... -0.287 (-2.42)
b_time_train (t-test) ...
lambda_travel_time (t-test) ...
b_time_car (t-test) ...
b_time_swissmetro (t-test) ...
b_time_train_ref (t-test) ... -2.13 (-21.7)
b_time_train_diff_commuters (t-test) ... -0.131 (-0.822)
b_time_car_ref (t-test) ... -1.55 (-20.5)
b_time_car_diff_commuters (t-test) ... -0.161 (-0.882)
b_time_swissmetro_ref (t-test) ... -2.21 (-24.4)
b_time_swissmetro_diff_commuters (t-test) ... 0.657 (2.74)
b_time_train_diff_1st_class (t-test) ...
b_time_car_diff_1st_class (t-test) ...
b_time_swissmetro_diff_1st_class (t-test) ...
b_time_ref (t-test) ...
b_time_diff_1st_class (t-test) ...
asc_train_diff_one_lugg (t-test) ... 0.312 (4.8)
asc_train_diff_several_lugg (t-test) ... 0.159 (1.03)
square_tt_coef (t-test) ... -0.102 (-25.2)
cube_tt_coef (t-test) ... 0.000184 (8.29)
b_cost_train (t-test) ...
asc_car_diff_one_lugg (t-test) ... -0.0856 (-1.81)
asc_car_diff_several_lugg (t-test) ... -0.388 (-2.21)
b_cost_car (t-test) ...
b_cost_swissmetro (t-test) ...
[38 rows x 14 columns]
Glossary
for short_name, spec in specs.items():
print(f'{short_name}\t{spec}')
Model_000000 asc:no_seg;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:nested existing;train_tt_catalog:linear
Model_000001 asc:GA;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:logit;train_tt_catalog:linear
Model_000002 asc:GA;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:boxcox
Model_000003 asc:GA;b_cost_gen_altspec:generic;b_time:COMMUTERS;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:linear
Model_000004 asc:GA;b_cost_gen_altspec:generic;b_time:FIRST;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:boxcox
Model_000005 asc:GA;b_cost_gen_altspec:generic;b_time:FIRST;b_time_gen_altspec:generic;model_catalog:nested existing;train_tt_catalog:boxcox
Model_000006 asc:GA;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:nested existing;train_tt_catalog:boxcox
Model_000007 asc:GA-LUGGAGE;b_cost_gen_altspec:altspec;b_time:COMMUTERS;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:power
Model_000008 asc:GA;b_cost_gen_altspec:generic;b_time:COMMUTERS;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:power
Model_000009 asc:GA;b_cost_gen_altspec:altspec;b_time:COMMUTERS;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:power
Model_000010 asc:GA;b_cost_gen_altspec:altspec;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:nested existing;train_tt_catalog:power
Model_000011 asc:GA;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:logit;train_tt_catalog:boxcox
Model_000012 asc:no_seg;b_cost_gen_altspec:generic;b_time:no_seg;b_time_gen_altspec:generic;model_catalog:logit;train_tt_catalog:linear
Model_000013 asc:GA-LUGGAGE;b_cost_gen_altspec:generic;b_time:COMMUTERS;b_time_gen_altspec:altspec;model_catalog:nested existing;train_tt_catalog:power
Total running time of the script: (21 minutes 21.651 seconds)