Created
April 28, 2016 16:28
-
-
Save n1chre/c964773ca3dc6f13757eb3a75576087c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
oznaceni_podaci = ... | |
neoznaceni_podaci = ... | |
threshold = 0.05 | |
dok ima neoznacenih podataka: | |
train,test = oznaceni_podaci.split() | |
treniraj model ( train, test ) | |
iskoristi model za neoznacene podatke | |
za podatak u neoznaceni podaci: | |
ako je oznaka < 0 + threshold: | |
oznaci podatak kao false | |
dodaj podatak u oznaceni | |
inace ako je oznaka > 1 - threshold: | |
oznaci podatak kao true | |
dodaj podatak u oznaceni | |
inace ako je 0.5 - threshold < oznaka < 0.5 + threshold: | |
pitaj korisnika za oznaku podatka | |
dodaj podatak u oznaceni | |
inace: | |
dodaj podatak u neodredeni | |
neoznacni_podaci = neodredeni | |
// svi su oznaceni ovdje? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment