mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-09 11:32:07 +08:00
ddp pickle
This commit is contained in:
@@ -620,11 +620,13 @@ class Trainer(
|
||||
else:
|
||||
return int(x)
|
||||
|
||||
# def arg_default(x):
|
||||
# if ',' in x:
|
||||
# return str(x)
|
||||
# else:
|
||||
# return int(x)
|
||||
def arg_default_fx(x):
|
||||
if ',' in x:
|
||||
return str(x)
|
||||
else:
|
||||
return int(x)
|
||||
|
||||
arg_default = arg_default_fx
|
||||
|
||||
parser.add_argument(
|
||||
f'--{arg}',
|
||||
|
||||
Reference in New Issue
Block a user