Closed cklyne closed 1 month ago
Implement a save() and a load() method for the estimator classes.
save()
load()
Since the estimator classes are PyTree serializable, this functionality can probably be easily implemented by using tree_flatten() and tree_unflatten().
tree_flatten()
tree_unflatten()
Idea
Implement a
save()
and aload()
method for the estimator classes.Dependencies
Comments
Since the estimator classes are PyTree serializable, this functionality can probably be easily implemented by using
tree_flatten()
andtree_unflatten()
.