Skip to content

Commit

Permalink
Modif path
Browse files Browse the repository at this point in the history
  • Loading branch information
louisPoulain committed Sep 10, 2024
1 parent bb6e408 commit 6ce8518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_model_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def __post_init__(self):
self.station_split = {"train": 0.7, "val": 0.3, "test": self.stations[-5:]}
self.station_split_method = "random"
elif self.station == "cloud_mixed":
with open("./stations_cloud.json", "r") as f:
with open(".stations_cloud.json", "r") as f:
self.stations = json.load(f)
with open("./stations_cloud.yaml", "r") as f:
with open(".stations_cloud.yaml", "r") as f:
self.station_split = yaml.safe_load(f)
self.station_split_method = "random"

Expand Down

0 comments on commit 6ce8518

Please sign in to comment.