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
I encountered a problem when cloning a task from the webui where the Hyperparameters contain a list or tuple with scientific notation (such as 2e-6 etc). When running the task the first time, it runs fine but when cloning the task and running again, the numeric value in scientific notation is interpreted as a string. See below for minimal example to reproduce:
Thank you @trbschneider , we were able to reproduce and confirm the issue.
It seems to stem from PyYAML parsing of the text, basically '2.0e-06' will be parsed as float but '2e-06' will be parsed as string. Apparently the scientific-notation is a known PyYAML issue.
Let me see what we can do, I'll update here once there is a working fix.
Description
I encountered a problem when cloning a task from the webui where the Hyperparameters contain a list or tuple with scientific notation (such as 2e-6 etc). When running the task the first time, it runs fine but when cloning the task and running again, the numeric value in scientific notation is interpreted as a string. See below for minimal example to reproduce:
Code
Steps to reproduce
(I reproduced the issue on google collab and with the clearml demoserver)
Output:
Output:
Software versions
clearml==0.17.4
Clearml server version: 0.17.0-67 (https://demoapp.demo.clear.ml/)
The text was updated successfully, but these errors were encountered: