Skip to content

Commit f70f1c3

Browse files
authored
adder gpu support and stage paramter in argparser
1 parent 0e42615 commit f70f1c3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Diff for: main.py

-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def q(text = ''): # easy way to exiting the script. useful while debugging
2828

2929
parser = argparse.ArgumentParser(description='Following are the arguments that can be passed form the terminal itself ! Cool huh ? :D')
3030
parser.add_argument('--data_path', type = str, default = 'NIH Chest X-rays', help = 'This is the path of the training data')
31-
# parser.add_argument('--test_path', type = str, default = os.path.join('hack-data-new','Scoring2/') , help = 'This is the path of the testing data')
3231
parser.add_argument('--bs', type = int, default = 128, help = 'batch size')
3332
parser.add_argument('--lr', type = float, default = 1e-5, help = 'Learning Rate for the optimizer')
3433
parser.add_argument('--stage', type = int, default = 1, help = 'Stage, it decides which layers of the Neural Net to train')

0 commit comments

Comments
 (0)