We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 258aa70 commit 4308e9bCopy full SHA for 4308e9b
1 file changed
bin/predict.py
@@ -33,7 +33,7 @@
33
logging.basicConfig(level=logging.INFO, format=logging_format)
34
35
if args.model not in list(string.ascii_lowercase)[:11]:
36
- raise ValueError(f'Model only range from a -- j.')
+ raise ValueError(f'Model only range from a -- k.')
37
38
if args.gpu_id >= 0:
39
os.environ["CUDA_VISIBLE_DEVICES"] = f'{args.gpu_id}'
@@ -46,9 +46,6 @@
46
else:
47
use_multiprocessing = False
48
49
- if args.model not in list(string.ascii_lowercase)[:11]:
50
51
-
52
cands_to_eval = glob.glob(f'{args.data_dir}/*h5')
53
54
if len(cands_to_eval) == 0:
0 commit comments