├── README.md └── .github ├── ISSUE_TEMPLATE ├── feature_request.md ├── how-to-questions.md └── bug-report.md └── workflows └── stale.yml /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Announcement: This repository is no longer active. 3 | 4 | Please direct all support requests as follows: 5 | 6 | * For Opik Issues, please use the [Opik GitHub repository](https://github.com/comet-ml/opik/) 7 | * For Comet Experiment Tracking Issues, please use our [public Slack channel](https://chat.comet.com) 8 | 9 | We're looking forward to chatting! 10 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Is your feature request related to a problem? Please describe. 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | ## Describe the solution you'd like 14 | A clear and concise description of what you want to happen. 15 | 16 | ## Describe alternatives you've considered 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | ## Additional context 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/how-to-questions.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: How To Questions 3 | about: General questions about the Comet Product 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Before Asking: 11 | - [ ] I have searched the Issue Tracker. 12 | - [ ] I have searched the Documentation. 13 | 14 | 15 | 16 | ## What is your question related to? 17 | - [ ] Comet Python SDK 18 | - [ ] Comet UI 19 | - [ ] Third Party Integrations (Huggingface, TensorboardX, Pytorch Lightning etc.) 20 | 21 | ## What is your question? 22 | 23 | ## Code 24 | ``` 25 | Please paste a code snippet if your question requires it! 26 | ``` 27 | 28 | ## What have you tried? 29 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. 2 | # 3 | # You can adjust the behavior by modifying this file. 4 | # For more information, see: 5 | # https://github.com/actions/stale 6 | name: Mark stale issues and pull requests 7 | 8 | on: 9 | schedule: 10 | - cron: '19 21 * * *' 11 | 12 | jobs: 13 | stale: 14 | runs-on: ubuntu-latest 15 | permissions: 16 | issues: write 17 | 18 | steps: 19 | - uses: actions/stale@v8 20 | with: 21 | stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.' 22 | close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' 23 | days-before-stale: 30 24 | days-before-close: 5 25 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug Report 3 | about: Create a report to help us improve Comet 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Describe the Bug 11 | A clear and concise description of what the bug is. 12 | 13 | ## Expected behavior 14 | A clear and concise description of what you expected to happen. 15 | 16 | ## Where is the issue? 17 | - [ ] Comet Python SDK 18 | - [ ] Comet UI 19 | - [ ] Third Party Integrations (Huggingface, TensorboardX, Pytorch Lighting etc) 20 | 21 | ## To Reproduce 22 | Steps to reproduce the behavior: 23 | 1. Go to '...' 24 | 2. Click on '....' 25 | 3. Scroll down to '....' 26 | 4. See error 27 | 28 | ## Stack Trace 29 | If possible please include the full stack trace of your issue here 30 | 31 | ``` 32 | # Paste stack trace here 33 | ``` 34 | 35 | ## Comet Debug Log 36 | If possible, please follow the instructions [here](https://www.comet.ml/docs/python-sdk/advanced/#troubleshooting) to run Comet in debug mode and attach the resulting log file. 37 | 38 | ## Screenshots or GIFs 39 | If applicable, add screenshots/gifs to help explain your problem. 40 | 41 | ## Link to Comet Project/Experiment 42 | If applicable, please provide a link to your Comet Project or Experiment. 43 | 44 | ## Additional context 45 | Add any other context about the problem here. 46 | --------------------------------------------------------------------------------