Yup! That works.from joeynmt.training import train train("transformer_epo_eng_bpe4000.yaml")
And it's tracking stuff successfully. Nice
This seems similar but not quite the thing I'm looking for: https://allegro.ai/clearml/docs/docs/tutorials/tutorial_explicit_reporting.html#step-1-setting-an-output-destination-for-model-checkpoints
It seems to create a folder and put things into it, I was hoping to just observe the tensorboard folder
Hi SmallDeer34
ClearML automagical logging will work on the current python process. But in your example yyour Bash is running another python script (that has nothing to do with the original notebook), hence clearml automagic is not aware of it (i.e. it cannot "patch" the tensorboard calls).
In order to make it work.
you should do something like:from joeynmt import train train.main(...)
Or something similar 🙂
Make sense ?