From aa02af4f349dc67898e63c9fab14843934e749d5 Mon Sep 17 00:00:00 2001 From: rakow Date: Wed, 15 May 2024 22:52:28 +0200 Subject: [PATCH] update features --- matsim/scenariogen/network/features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matsim/scenariogen/network/features.py b/matsim/scenariogen/network/features.py index 753af5d..14b0b17 100644 --- a/matsim/scenariogen/network/features.py +++ b/matsim/scenariogen/network/features.py @@ -72,7 +72,7 @@ def prepare_dataframe(df, model_type, target): elif model_type == "intersection": df = df[["target", "speed", "num_lanes", "num_to_links", "junction_inc_lanes", "num_conns", "num_response", "num_foes", - "is_secondary_or_higher", "num_left", "num_right", "num_straight", "dir_exclusive"]] + "is_primary_or_higher", "is_secondary_or_higher", "num_left", "num_right", "num_straight"]] else: raise ValueError("Illegal model type:" + model_type)