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
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
I just attempted to serialize my random forest like this:
Serializer.Save<RandomForest>(forest, fileName); // forest is the obj, fileName is the pathThrows a RT error that it is not marked as serializable. Then I tried this:
using (FileStream fs = new FileStream(fileName, FileMode.Create)) { new BinaryFormatter().Serialize(fs, forest); }I checked the definition and apparently it is 'ParallelOptions' breaking this. Not sure how to fix this (yet).