AgitatedDove14 thanks for your reply. Is there a way to retrieve the .py file reported in the SCRIPT PATH, as used by the Experiment?
No, I changed some lines of code (e.g. the project name and the experiment name just to make a test)
Hi ContemplativeCockroach39
Seems like you are running the exact code as in the git repo:
Basically it points you to the exact repository https://github.com/allegroai/clearml and the script examples/reporting/pandas_reporting.py
Specifically:
https://github.com/allegroai/clearml/blob/34c41cfc8c3419e06cd4ac954e4b23034667c4d9/examples/reporting/pandas_reporting.py
Yes, but only with git clone 🙂
It is not stored on ClearML, this way you can work with the experiment manager without explicitly giving away all your code 😉
clearml==0.17.4
Great, and as you pointed changes are detected.
If I make some changes in the original file it gets tracked (picture below)... but what if I use a completely new and git-untracked py script?
Basically it will capture the output of "git diff" so if you have a new file but it is Not added, then no changes will appear.
That said, this is usually the exception, most files that are not added to the git should not be logged, hence the logic.
Anyhow the idea is that the Agent will be able to replicate your entire code base, without you having to worry about constantly committing your code (not that it is bad, but we all tend to forget)
If I make some changes in the original file it gets tracked (picture below)... but what if I use a completely new and git-untracked py script?