Combine many specifications: exception is raised

We combine many specifications, defined in Combination of many specifications. This leads to a total of 432 specifications. When the total number of specifications exceeds 100, Biogeme raises an ValueOutOfRange exception when the estimate_catalog is called. See Bierlaire and Ortelli (2023).

author:

Michel Bierlaire, EPFL

date:

Fri Jul 14 09:55:33 2023

import biogeme.biogeme as bio
from biogeme.exceptions import BiogemeError

See Combination of many specifications.

from everything_spec import model_catalog, database

Create the Biogeme object.

the_biogeme = bio.BIOGEME(database, model_catalog)
the_biogeme.modelName = 'b06everything'
the_biogeme.generate_html = False
the_biogeme.generate_pickle = False

Estimate the parameters. It does not work as there are two many specifications

try:
    dict_of_results = the_biogeme.estimate_catalog()
except BiogemeError as e:
    print(e)
There are too many [432] different specifications for the log likelihood function. This is above the maximum number: 100. Simplify the specification, change the value of the parameter maximum_number_catalog_expressions, or consider using the AssistedSpecification object in the "biogeme.assisted" module.

Total running time of the script: (0 minutes 0.025 seconds)

Gallery generated by Sphinx-Gallery