Skip to content

Commit

Permalink
changed default problem type from data_agnostic to all_scaled
Browse files Browse the repository at this point in the history
  • Loading branch information
jmason42 committed Apr 13, 2018
1 parent 8bdbef1 commit de73453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

parser = argparse.ArgumentParser()
parser.add_argument(
'--problem', type = str, default = 'data_agnostic'
'--problem', type = str, default = 'all_scaled'
)
parser.add_argument(
'--seed', type = int, default = None
Expand Down
2 changes: 1 addition & 1 deletion main_alt.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
)

parser.add_argument(
'--problem', type = str, default = 'data_agnostic'
'--problem', type = str, default = 'all_scaled'
)

args = parser.parse_args()
Expand Down

0 comments on commit de73453

Please sign in to comment.