train_predict: add error message for parrams.json not found

This commit is contained in:
Starbeamrainbowlabs 2022-11-10 19:45:41 +00:00
parent e519b0adb3
commit 0894bd09e8
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -40,6 +40,8 @@ def run(args):
if (not hasattr(args, "params")) or args.params == None:
args.params = find_paramsjson(args.checkpoint)
if args.params == None:
logger.error("Error: Failed to find params.json. Please ensure it's either in the same directory as the checkpoint or 1 level above")
if (not hasattr(args, "read_multiplier")) or args.read_multiplier == None:
args.read_multiplier = 0
if (not hasattr(args, "records_per_file")) or args.records_per_file == None: