Skip to content

Commit

Permalink
increased default verbosity for gkmSVM
Browse files Browse the repository at this point in the history
  • Loading branch information
jisraeli committed Jul 19, 2016
1 parent 8ec8534 commit dc9de98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dragonn/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,15 +274,15 @@ def predict(self, X):
class gkmSVM(Model):

def __init__(self, prefix='./gkmSVM', word_length=11, mismatches=3, C=1,
threads=1, cache_memory=100):
threads=1, cache_memory=100, verbosity=4):
self.word_length = word_length
self.mismatches = mismatches
self.C = C
self.threads = threads
self.prefix = '_'.join(map(str, (prefix, word_length, mismatches, C)))
options_list = zip(
['-l', '-d', '-c', '-T', '-m'],
map(str, (word_length, mismatches, C, threads, cache_memory)))
['-l', '-d', '-c', '-T', '-m', '-v'],
map(str, (word_length, mismatches, C, threads, cache_memory, verbosity)))
self.options = ' '.join([' '.join(option) for option in options_list])

@property
Expand Down

0 comments on commit dc9de98

Please sign in to comment.