Skip to content

Commit

Permalink
distributed dataset for pde-cl
Browse files Browse the repository at this point in the history
  • Loading branch information
vganapati committed Jun 20, 2023
1 parent 3301feb commit 21679ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ def get_args():

# set the training region
parser.add_argument('--train_x_start', action='store', dest='training_data_x_start',
help='training data x start', nargs='+', default = [-7,-7])
help='training data x start', nargs='+', default = [-3.5,-3.5])
parser.add_argument('--train_x_end', action='store', dest='training_data_x_end',
help='training data x end', nargs='+', default = [7,7])
help='training data x end', nargs='+', default = [3.5,3.5])
parser.add_argument('--train_x_step', action='store', dest='training_data_x_step',
help='training data x step', nargs='+', default = [0.15,0.15])
help='training data x step', nargs='+', default = [0.075,0.075])

# set the test region
parser.add_argument('--test_x_start', action='store', dest='test_data_x_start',
Expand Down

0 comments on commit 21679ac

Please sign in to comment.