尝试运行 ScriptRunConfig 时,使用:
src = ScriptRunConfig(source_directory=project_folder,
script='train.py',
arguments=['--input-data-dir', ds.as_mount(),
'--reg', '0.99'],
run_config=run_config)
run = experiment.submit(config=src)
当我提交作业时,它不起作用并中断:
... lots of things... and then
TypeError: Object of type 'DataReference' is not JSON serializable
但是,如果我使用 Estimator 运行它,它就可以工作。不同之处之一是ScriptRunConfig
我们使用参数列表,而另一个是字典。
感谢您的任何指点!