-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Milestone
Description
All meta examples should
- use the generic
put
andget
methods rather than custom getters setters - use factory methods, instead of parametrised constructors, to create new objects, load files, etc (and subsequent put/get calls). Pls use the kwargs feature (see
meta_api/kwargs.sg
- dont use types apart from the base types:
Machine, Kernel, Labels (not RegressionLabels, etc), Features
See https://github.com/shogun-toolbox/shogun/blob/develop/examples/meta/src/binary/kernel_support_vector_machine.sg for a fully ported example
Note that this might involve creating new factory methods.