Skip to content

Instantly share code, notes, and snippets.

@n1chre
Created April 28, 2016 16:28
Show Gist options
  • Save n1chre/c964773ca3dc6f13757eb3a75576087c to your computer and use it in GitHub Desktop.
Save n1chre/c964773ca3dc6f13757eb3a75576087c to your computer and use it in GitHub Desktop.
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