Skip to main content

Community Resources

Join the ClearML Conversation

For feature requests or bug reports, see ClearML GitHub issues.

If you have any questions, post on the ClearML Slack channel.

Or, tag your questions on stackoverflow with the clearml tag.

You can always find us at [email protected].

Additional ClearML Resources

Read the ClearML Blog.

Subscribe to the ClearML YouTube Channel and view the tutorials, presentations, and discussions.

Join us on Twitter @clearmlapp for ClearML announcements and community discussions.

Follow ClearML on LinkedIn.

Guidelines for Contributing

Firstly, thank you for taking the time to contribute!

Contributions come in many forms:

The list above is primarily guidelines, not rules. Use your best judgment and feel free to propose changes to this document in a pull request.

Reporting Issues

By following these guidelines, you help maintainers and the community understand your report, reproduce the behavior, and find related reports.

Before reporting an issue, please check whether it already appears here. If it does, join the ongoing discussion instead.

note

If you find a Closed issue that may be the same issue that you are currently experiencing, then open a New issue and include a link to the original (Closed) issue in the body of your new one.

When reporting an issue, please include as much detail as possible; explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem.
  • Describe the exact steps necessary to reproduce the problem in as much detail as possible. Please do not just summarize what you did. Make sure to explain how you did it.
  • Provide the specific environment setup. Include the pip freeze output, specific environment variables, Python version, and other relevant information.
  • Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy / paste snippets which you use in those examples.
  • If you are reporting any ClearML crash, include a crash report with a stack trace from the operating system. Make sure to add the crash report in the issue and place it in a code block, a file attachment, or put it in a gist (and provide a link to that gist).
  • Describe the behavior you observed after following the steps and the exact problem with that behavior.
  • Explain which behavior you expected to see and why.
  • For WebApp (UI) issues, please include screenshots and animated GIFs that recreate the described steps and clearly demonstrate the problem. You can use LICEcap to record GIFs on macOS and Windows, and silentcast or byzanz on Linux.

Suggesting New Features and Enhancements

By following these guidelines, you help maintainers and the community understand your suggestion and find related suggestions.

Enhancement suggestions are tracked as GitHub issues. After you determine which repository your enhancement suggestion is related to, create an issue on that repository and provide the following:

  • A clear and descriptive title for the issue to identify the suggestion.
  • A step-by-step description of the suggested enhancement in as much detail as possible.
  • Specific examples to demonstrate the steps. Include copy / pasteable snippets which you use in those examples as Markdown code blocks.
  • Describe the current behavior and explain which behavior you expected to see instead and why.
  • Include screenshots or animated GIFs that help you demonstrate the steps or point out the part of ClearML which the suggestion is related to. You can use LICEcap to record GIFs on macOS and Windows, and silentcast or byzanz on Linux.

Pull Requests

Before you submit a new PR:

  • Verify that the work you plan to merge addresses an existing issue (if not, open a new one)

  • Check related discussions in the ClearML slack community (or start your own discussion on the #clearml-dev channel)

  • Make sure your code conforms to the ClearML coding standards by running:

    flake8 --max-line-length=120 --statistics --show-source --extend-ignore=E501 ./clearml*

In your PR include:

  • A reference to the issue it addresses
  • A brief description of your implementation approach