We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87f12b commit 9e95728Copy full SHA for 9e95728
vali_objects/vali_dataclasses/perf_ledger.py
@@ -150,6 +150,7 @@ def from_dict(cls, x):
150
assert isinstance(x, dict), x
151
x['cps'] = [PerfCheckpoint(**cp) for cp in x['cps']]
152
x.pop('global_worst_mdd', None) # Remove legacy field if present
153
+ x.pop('last_known_prices', None) # Remove legacy field if present
154
instance = cls(**x)
155
return instance
156
0 commit comments