You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Hyperparameters with spaces get passed as separate command line tokens
To reproduce
Create a hyperparameter like "key" set it to "a b". Toolkit will invoke user script with "--key a b" instead of "--key 'a b'".
Expected behavior
Expect hyperparameters to be passed to script as arguments. Requiring hyperparameters to already be shlex quoted seems unexpected. The commands are correctly passed to Popen but differently parsed when asyncio is used.
Screenshots or logs
If applicable, add screenshots or logs to help explain your problem.
System information
A description of your system.
Include the version of SageMaker Training Toolkit you are using.
Describe the bug
Hyperparameters with spaces get passed as separate command line tokens
To reproduce
Create a hyperparameter like "key" set it to "a b". Toolkit will invoke user script with "--key a b" instead of "--key 'a b'".
Expected behavior
Expect hyperparameters to be passed to script as arguments. Requiring hyperparameters to already be shlex quoted seems unexpected. The commands are correctly passed to Popen but differently parsed when asyncio is used.
Screenshots or logs
If applicable, add screenshots or logs to help explain your problem.
System information
A description of your system.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: