We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e42615 commit f70f1c3Copy full SHA for f70f1c3
main.py
@@ -28,7 +28,6 @@ def q(text = ''): # easy way to exiting the script. useful while debugging
28
29
parser = argparse.ArgumentParser(description='Following are the arguments that can be passed form the terminal itself ! Cool huh ? :D')
30
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')
32
parser.add_argument('--bs', type = int, default = 128, help = 'batch size')
33
parser.add_argument('--lr', type = float, default = 1e-5, help = 'Learning Rate for the optimizer')
34
parser.add_argument('--stage', type = int, default = 1, help = 'Stage, it decides which layers of the Neural Net to train')
0 commit comments