Skip to content

How to classify randomly generated data sequence in River #976

Answered by MaxHalford
Emmy-Obasi asked this question in Q&A
Discussion options

You must be logged in to vote

Hello there.

The output class is either 1 or 0 depending on the pattern of inputs.

Is there a relationship between the inputs and the outputs? What kind of data is this?

How can I achieve this without a training set?

Well if you don't have training data, you can't train a supervised model. That includes Gaussian Naive Bayes (see River's GaussianNB).

Without a supervised model, you have two options:

  1. Start with a rule-based system, which boils down to classifying data with if/else rules. You can get sophisticated and use those rules to generate labels that you can then feed into a supervised model. There's a whole literature on the topic revolving around pseudo labeling, self-supervise…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by MaxHalford
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants