-
Notifications
You must be signed in to change notification settings - Fork 123
Description
when I run preprocessing script (python run.py preprocess experiments/spider-bert-run.jsonnet), it gives me the following error:
Traceback (most recent call last):
File "run.py", line 109, in
main()
File "run.py", line 73, in main
preprocess.main(preprocess_config)
File "/app/ratsql/commands/preprocess.py", line 53, in main
preprocessor.preprocess()
File "/app/ratsql/commands/preprocess.py", line 30, in preprocess
data = registry.construct('dataset', self.config['data'][section])
File "/app/ratsql/utils/registry.py", line 32, in construct
return instantiate(
File "/app/ratsql/utils/registry.py", line 44, in instantiate
raise ValueError(f'Unsupported kind for param {name}: {param.kind}')
ValueError: Unsupported kind for param args: VAR_POSITIONAL
the base image ispytorch/pytorch:1.8.0-cuda11.1-cudnn8-devel in the Dockerfile. python == 3.8.8
Any suggestion?