Commit af40f8b5 authored by Joaquin Torres's avatar Joaquin Torres

fit final models moved to model building

parent 75e3956d
......@@ -70,7 +70,7 @@ if __name__ == "__main__":
print(f"{group}-{method_names[j]}")
method_name = method_names[j]
model_name = model_choices[method_name]
model_path = f"./output/fitted_models/{group}_{method_names[j]}_{model_name}.pkl"
model_path = f"../model_selection/output/fitted_models/{group}_{method_names[j]}_{model_name}.pkl"
# Load the fitted model from disk
with open(model_path, 'rb') as file:
fitted_model = pickle.load(file)
......
......@@ -70,7 +70,7 @@ if __name__ == "__main__":
print(f"{group}-{method_names[j]}")
method_name = method_names[j]
model_name = model_choices[method_name]
model_path = f"./output/fitted_models/{group}_{method_names[j]}_{model_name}.pkl"
model_path = f"../model_selection/output/fitted_models/{group}_{method_names[j]}_{model_name}.pkl"
# Load the fitted model from disk
with open(model_path, 'rb') as file:
fitted_model = pickle.load(file)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment