Skip to content

Commit

Permalink
dfdf
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgal committed Apr 2, 2020
1 parent bd6d01a commit ae9d3fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions antrax/classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
from .models import new_model


AMBIG_CLASSES = ['Unknown', '??', 'MultiAnt','Multi','multi']
MULTI_CLASSES = ['MultiAnt','Multi','multi']
AMBIG_CLASSES = ['Unknown', '??', 'MultiAnt', 'Multi', 'multi']
MULTI_CLASSES = ['MultiAnt', 'Multi', 'multi']
NONANT_CLASSES = ['NoAnt', 'FOOD', 'Larva']


Expand Down
2 changes: 1 addition & 1 deletion antrax/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def solve(explist, *, glist: parse_movlist=None, clist: parse_movlist=None, mcr=
Q.stop_workers()


def train(classdir, *, name='classifier', scratch=False, ne=5, unknown_weight: to_float=None, multi_weight: to_float=None,
def train(classdir, *, name='classifier', scratch=False, ne=5, unknown_weight=20, multi_weight=0.1,
target_size: to_int=None, crop_size: to_int=None, hsymmetry=False, hpc=False, hpc_options: parse_hpc_options={}):


Expand Down

0 comments on commit ae9d3fd

Please sign in to comment.