-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* new: add PR template, decouple bug template with new model request * new: add feature request, model request
- Loading branch information
Showing
5 changed files
with
84 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Feature | ||
description: New functionality request | ||
title: "[Feature]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this report! | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: What feature would you like to request? | ||
description: Please provide the description of the feature you would like to request. | ||
placeholder: <Description> | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Is there any additional information you would like to provide? | ||
description: Please provide any additional information that you think might be useful. | ||
placeholder: <Info> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Model | ||
description: Request a new model | ||
title: "[Model]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this report! | ||
- type: textarea | ||
id: model-name | ||
attributes: | ||
label: Which model would you like to support? | ||
description: Please provide the name of the model you would like to see supported. | ||
placeholder: Link to the model (e.g. on HuggingFace) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: What are the main advantages of this model? | ||
description: Please describe the main advantages of this model comparing to the existing ones and provide links to benchmarks if there are any. | ||
placeholder: <Description> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### All Submissions: | ||
|
||
* [ ] Have you followed the guidelines in our Contributing document? | ||
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same update/change? | ||
|
||
<!-- You can erase any parts of this template not applicable to your Pull Request. --> | ||
|
||
### New Feature Submissions: | ||
|
||
* [ ] Does your submission pass the existing tests? | ||
* [ ] Have you added tests for your feature? | ||
* [ ] Have you installed `pre-commit` with `pip3 install pre-commit` and set up hooks with `pre-commit install`? | ||
|
||
### New models submission: | ||
|
||
* [ ] Have you added an explanation of why it's important to include this model? | ||
* [ ] Have you added tests for the new model? Were canonical values for tests computed via the original model? | ||
* [ ] Have you added the code snippet for how canonical values were computed? | ||
* [ ] Have you successfully ran tests with your changes locally? |