You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SVM(Multi) calculation consumes memory and time, so I want to save the model calculation data for subsequent calls, but it seems that SVM does not support the serde feature. How should I save the SVM model data?
The text was updated successfully, but these errors were encountered:
@coolstudio1678 As a workaround, you could implement your own version of MultiTargetModel with generic types instead of dynamic dispatch and derive serde's traits to it. That's what I've done and it at least works.
SVM(Multi) calculation consumes memory and time, so I want to save the model calculation data for subsequent calls, but it seems that SVM does not support the serde feature. How should I save the SVM model data?
The text was updated successfully, but these errors were encountered: