hyperstate icon indicating copy to clipboard operation
hyperstate copied to clipboard

Opinionated library for managing hyperparameters and mutable state of machine learning training systems.

Results 3 hyperstate issues
Sort by recently updated
recently updated
newest added

For example, I wrote a complex dataclass with many members. I don't really remember the name of each member. How can I know the correct way to set a member...

File "/opt/conda/lib/python3.8/site-packages/hyperstate/schema/types.py", line 271, in materialize_type raise ValueError(f"Unsupported type: {clz}") ValueError: Unsupported type: Here is my code, I used list in my config class. ``` @dataclass class Config: optimizer: OptimizerConfig...