Aaron D
Results
2
issues of
Aaron D
from_dict() method adds support for instantiating a LTRModelConfig object from a dictionary. Allows users to easily export/import LTRModelConfig objects as json objects. ``` Examples -------- >>> from eland.ml.ltr import LTRModelConfig,...
The `LTRModelConfig` class provides the `to_dict()` method as easy way to export the object as a JSON: ``` with open(, "w") as f: json.dump(ltr_config.to_dict(), f, indent=4) ``` The exported JSON...