Skip to content

Commit

Permalink
Merge pull request #1 from claudiofahey/dsws
Browse files Browse the repository at this point in the history
Minor update to testgen.py for single workstation
  • Loading branch information
Claudio Fahey authored Mar 20, 2020
2 parents 5c022b9 + cb0eb6e commit ca7f5d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def add_test():
# Full test suite
for repeat in range(3):
for storage_type in ['isilon']: # 'isilon','filestore'
for cached in [True]:
for model in ['resnet50']: # 'vgg16','resnet152','inception3','inception4'
for cached in [True] if storage_type=='local' else [False,True]:
for model in ['resnet50','vgg16','resnet152','inception3','inception4']:
for batch_group_size in [10]:
for batch_size in [64]:
for data_dir_template_count in [1 if cached or storage_type=='filestore' else 4]:
Expand Down

0 comments on commit ca7f5d2

Please sign in to comment.