Skip to content

Commit

Permalink
Fix experiments-count cli parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Dome-GER committed Dec 6, 2016
1 parent 07cadf1 commit 179076a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

# Run specified number of experiments
evaluation_data = []
experiments_count = args.experiments_count
for i in range(1, experiments_count):
experiments_count = int(args.experiments_count)
for i in range(0, experiments_count):
tp, tn, fp, fn = run_pipeline(status_updates, args.classifier_type)
evaluation_data.append([i, tp, tn, fp, fn, (tp + tn) / (tp + tn + fp + fn), tp / (tp + fp), tp / (tp + fn)])

Expand Down

0 comments on commit 179076a

Please sign in to comment.