mirror of
https://github.com/huggingface/trl.git
synced 2025-10-20 10:03:51 +08:00
* Add issue/PR templates, code of conduct & better contributing guide * Apply suggestions from code review Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com> --------- Co-authored-by: Quentin Gallouédec <45557362+qgallouedec@users.noreply.github.com>
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
name: "\U0001F41B Bug Report"
|
|
description: Submit a bug report to help us improve TRL
|
|
labels: [ "bug" ]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report! 🤗
|
|
|
|
Before you submit your bug report:
|
|
|
|
- If it is your first time submitting, be sure to check our [bug report guidelines](https://github.com/huggingface/trl/blob/main/CONTRIBUTING.md#did-you-find-a-bug)
|
|
|
|
- type: textarea
|
|
id: system-info
|
|
attributes:
|
|
label: System Info
|
|
description: Please share your system info with us. You can run the command `transformers-cli env` and copy-paste its output below.
|
|
placeholder: trl version, transformers version, platform, python version, ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: checkboxes
|
|
id: information-scripts-examples
|
|
attributes:
|
|
label: Information
|
|
description: 'The problem arises when using:'
|
|
options:
|
|
- label: "The official example scripts"
|
|
- label: "My own modified scripts"
|
|
|
|
- type: checkboxes
|
|
id: information-tasks
|
|
attributes:
|
|
label: Tasks
|
|
description: "The tasks I am working on are:"
|
|
options:
|
|
- label: "An officially supported task in the `examples` folder"
|
|
- label: "My own task or dataset (give details below)"
|
|
|
|
- type: textarea
|
|
id: reproduction
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Reproduction
|
|
description: |
|
|
Please provide a code sample that reproduces the problem you ran into. It can be a Colab link or just a code snippet.
|
|
If you have code snippets, error messages, stack traces please provide them here as well.
|
|
Important! Use code tags to correctly format your code. See https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting
|
|
Do not use screenshots, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code.
|
|
|
|
placeholder: |
|
|
Steps to reproduce the behavior:
|
|
|
|
1.
|
|
2.
|
|
3.
|
|
|
|
|
|
- type: textarea
|
|
id: expected-behavior
|
|
validations:
|
|
required: true
|
|
attributes:
|
|
label: Expected behavior
|
|
description: "A clear and concise description of what you would expect to happen."
|