Replies: 1 comment
-
if you mean, while logging, then there is an option for it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I'm not sure about the best place for this rather it should be an issue or discussion. If I'm not missing anything, currently there is no way to remove
DATALOADER_SUFFIX
from the logger without changing the ResultCollection class when multiple data loaders are used in validation/testing. The reason for that is _forked_name method is called unconditionally and it appendsDATALOADER_SUFFIX
ifresult_metric.meta.dataloader_idx
is not none. Although I mapped the names accordingly with their ids when I'm logging this suffix appended no matter what. It is a minor issue since it might be ignored easily. But I found it harder to track from ids alone. The easiest way I can think is to add an extra parameter to append theDATALOADER_SUFFIX
that defaults to true. A little trickier but what I believe is a more convenient way can be allowing data loader dictonaries. This way indexes can be somewhat more meaningful.If there is any other way I can prevent it from appending the
DATALOADER_SUFFIX
please let me know.Thanks,
Beta Was this translation helpful? Give feedback.
All reactions