The loading of SimulationExperiments from JSON files is broken.
Necessary to update
@classmethod
def from_json(cls, json_info) -> "SimulationExperiment":
"""Load experiment from json path or str"""
# FIXME: update serialization
if isinstance(json_info, Path):
with open(json_info, "r") as f_json:
d = json.load(f_json)
else:
d = json.loads(json_info)
return SimulationExperiment.from_dict(d)
The loading of SimulationExperiments from JSON files is broken. Necessary to update