Remove Unused Argument of parser : --var (#408)
Remove Unused Argument of parser : --var
This commit is contained in:
parent
07ffc4e7f9
commit
97edba0b7a
2
train.py
2
train.py
|
@ -350,7 +350,7 @@ if __name__ == '__main__':
|
||||||
parser.add_argument('--evolve', action='store_true', help='evolve hyperparameters')
|
parser.add_argument('--evolve', action='store_true', help='evolve hyperparameters')
|
||||||
parser.add_argument('--bucket', type=str, default='', help='gsutil bucket')
|
parser.add_argument('--bucket', type=str, default='', help='gsutil bucket')
|
||||||
parser.add_argument('--img-weights', action='store_true', help='select training images by weight')
|
parser.add_argument('--img-weights', action='store_true', help='select training images by weight')
|
||||||
parser.add_argument('--var', default=0, type=int, help='debug variable')
|
|
||||||
opt = parser.parse_args()
|
opt = parser.parse_args()
|
||||||
print(opt)
|
print(opt)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue