Questions tagged [creme]

creme is a library for online machine learning, also known as incremental learning. Online learning is a machine learning regime where a model learns one observation at a time.

creme is a library for online machine learning, also known as incremental learning. Online learning is a machine learning regime where a model learns one observation at a time.

This is in contrast to batch learning where all the data is processed in one go. Incremental learning is desirable when the data is too big to fit in memory, or simply when you want to handle streaming data. In addition to many online machine learning algorithms, creme provides utilities for extracting features from a stream of data.

3 questions
4
votes
1 answer

How to implement incremental learning in NLP

We are building a system wherein, we would have a initial very small amount of trained data to start with. The job is to Classify the incoming data(Document, for our case) into 2 categories: Category A & B. Data is document , so the user needs to…
1
vote
0 answers

TextBlob incremental/continuous/online learning using spacy

I've done some sentiment analysis using the the spacytextblob library, getting the polarity of the text, but I want to apply incremental learning to the model. I've been looking at creme or riverml.xyz to develop this incremental model but I…
Abid Abdul Gafoor
  • 462
  • 1
  • 6
  • 18
0
votes
1 answer

Blind Position Online Prediction

new here. I'm currently working on my MSc thesis that consists of developing a set of blinds/shutters that predict the user's behavior and set the position automatically, according to the user's habits and likes. I'm using Online Learning to solve…