From af7e67ea6659b1ae05b6b4dc17f1af4597f1ea6a Mon Sep 17 00:00:00 2001 From: David Hensle <51132108+dhensle@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:42:04 -0800 Subject: [PATCH] fixing unit tests, setting parquet edb default --- activitysim/core/estimation.py | 2 +- .../configs/estimation.yaml | 48 ------------------- 2 files changed, 1 insertion(+), 49 deletions(-) diff --git a/activitysim/core/estimation.py b/activitysim/core/estimation.py index 4c10492c9..d320cc931 100644 --- a/activitysim/core/estimation.py +++ b/activitysim/core/estimation.py @@ -118,7 +118,7 @@ class EstimationConfig(PydanticReadable): This is useful for saving disk space and decreasing runtime if you do not care about the estimation output for all models. """ - EDB_FILETYPE: Literal["csv", "parquet", "pkl"] = "csv" + EDB_FILETYPE: Literal["csv", "parquet", "pkl"] = "parquet" DELETE_MP_SUBDIRS: bool = True """Flag to delete the multiprocessing subdirectories after coalescing the results. diff --git a/activitysim/examples/example_estimation/configs/estimation.yaml b/activitysim/examples/example_estimation/configs/estimation.yaml index b6bb5831a..0c86d786d 100644 --- a/activitysim/examples/example_estimation/configs/estimation.yaml +++ b/activitysim/examples/example_estimation/configs/estimation.yaml @@ -49,54 +49,6 @@ survey_tables: file_name: survey_data/override_trips.csv index_col: trip_id -estimation_table_recipes: - - interaction_sample_simulate: - omnibus_tables: - choosers_combined: - - choices - - override_choices - - choosers - alternatives_combined: - - interaction_sample_alternatives - - interaction_expression_values - omnibus_tables_append_columns: [choosers_combined, alternatives_combined] - - interaction_simulate: - omnibus_tables: - choosers_combined: - - choices - - override_choices - - choosers - omnibus_tables_append_columns: [choosers_combined] - - simple_simulate: - omnibus_tables: - values_combined: - - choices - - override_choices - - expression_values - - choosers - omnibus_tables_append_columns: [values_combined] - - cdap_simulate: - omnibus_tables: - values_combined: - - choices - - override_choices - - choosers - omnibus_tables_append_columns: [values_combined] - - simple_probabilistic: - omnibus_tables: - values_combined: - - choices - - override_choices - - choosers - - probs - omnibus_tables_append_columns: [values_combined] - - estimation_table_types: school_location: interaction_sample_simulate workplace_location: interaction_sample_simulate