Instance Selection on River #684
-
Hi, I want to merge my python code of the uniFied Instance Selection metHod (FISH) into river, but I am not sure which base class to useWhich base class do you recommend for this purpose? In general, FISH avoids using all the historical dataset by providing the closest (in time and space) instances to the learning model for training. Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @gintriago12!
We very much appreciate you putting in the effort!
Well it depends: what does your model do? Is it a regressor? A classifier? Or is it here to transform data in some way?
That sounds interesting. But it doesn't per say as online learning. It sounds like some fancy way to do batch learning. Our philosophy with River is to only implement and maintain pure online learning models. Do you have a reference paper where FISH is discussed? |
Beta Was this translation helpful? Give feedback.
Hello @gintriago12!
We very much appreciate you putting in the effort!
Well it depends: what does your model do? Is it a regressor? A classifier? Or is it here to transform data in some way?
That sounds interesting. But it doesn't per say as online learning. It sounds like some fancy way to do batch learning. Our philosophy with River is to only implement and maintain pure online learning models. D…