Skip to content

Commit

Permalink
Merge pull request #18 from mskcc/hotfix/ensure_coverage_is_numeric
Browse files Browse the repository at this point in the history
Fix coverage param
  • Loading branch information
john-ziegler authored Nov 16, 2020
2 parents cb4395c + 1c1c343 commit c9d8dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/evaluate_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def run_eval(
print("Evaluating Samples, Lets go!!!")
loader_kwargs = {"num_workers": 1, "pin_memory": True} if cuda else {}
eval_loader = data_utils.DataLoader(
MSIBags(vector_location, coverage, False, False),
MSIBags(vector_location, int(coverage), False, False),
batch_size=1,
shuffle=False,
**loader_kwargs
Expand Down

0 comments on commit c9d8dd8

Please sign in to comment.