We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lines are incorrectly labeled and colored when created via matplotlib/plotly and reported to clearml.
from matplotlib import pyplot as plt from clearml import Task task = Task.init(project_name='examples', task_name='missing-pyplot-colors') fig = plt.figure() plt.plot([1, 2, 3, 4], color="red", label="red") plt.plot([4, 3, 2, 1], color="blue", label="blue") plt.title("Example Plot") plt.legend() fig.show()
The output chart should have a correct legend and be correctly colored:
Instead, this is what shows up in clearml:
Note that both lines are labeled 'blue', and neither are colored.
The text was updated successfully, but these errors were encountered:
Fix Pyplot/Matplotlib binding reports incorrect line labels and colors (
4945182
#791)
Hi @vultix,
Thanks for reporting this! We've released an RC version that should solve this issue, You can install it by running: pip install clearml==1.7.2rc0
Sorry, something went wrong.
Closing this issue. Please reopen if it's still relevant.
No branches or pull requests
Describe the bug
Lines are incorrectly labeled and colored when created via matplotlib/plotly and reported to clearml.
To reproduce
Expected behaviour
The output chart should have a correct legend and be correctly colored:
Instead, this is what shows up in clearml:
Note that both lines are labeled 'blue', and neither are colored.
Environment
The text was updated successfully, but these errors were encountered: