Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

online training behaviour for missclassification #47

Closed
calebebrim opened this issue Jan 3, 2017 · 2 comments
Closed

online training behaviour for missclassification #47

calebebrim opened this issue Jan 3, 2017 · 2 comments

Comments

@calebebrim
Copy link

calebebrim commented Jan 3, 2017

I'm making a simple search where the user can evaluate the result as useful or not.
Each time an result is evaluated I "onlineTrain" on server. If the user change its mind, is possible to change the evaluation.

The problem is that sometimes the classify function return an empty value...
Why this happend ? It looks like the online classifier is confused... ( just guessing)

Like:

birdClassifier.trainOnline({'wings': 1, 'flight': 1, 'beak': 1, 'eagle': 1}, 1); 
birdClassifier.trainOnline({'wings': 0, 'flight': 0, 'beak': 0, 'dog': 1}, 0); 

Then:

birdClassifier.trainOnline({'wings': 1, 'flight': 1, 'beak': 1, 'eagle': 1},0); 
birdClassifier.trainOnline({'wings': 0, 'flight': 0, 'beak': 0, 'dog': 1}, 1);  

It starts to being confused, obviously, and some times it does not return nothing on "classify" ...
I want to know why?

@erelsgl
Copy link
Owner

erelsgl commented Jan 3, 2017 via email

@erelsgl
Copy link
Owner

erelsgl commented Jan 30, 2017

Dear calebebrim,
sorry for the delay. Can you upload a complete, minimal working code example, that I can run on my computer and reproduce the problem that you mention?

@erelsgl erelsgl closed this as completed Apr 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants