forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT Uses GitHub's issue forms (scikit-learn#20744)
Co-authored-by: Olivier Grisel <[email protected]>
- Loading branch information
1 parent
3e7c04f
commit ed8adec
Showing
7 changed files
with
120 additions
and
114 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,77 @@ | ||
name: Bug Report | ||
description: Create a report to help us reproduce and correct the bug | ||
labels: ['Bug: triage'] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
#### Before submitting a bug, please make sure the issue hasn't been already | ||
addressed by searching through [the past issues](https://github.com/scikit-learn/scikit-learn/issues). | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: > | ||
A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps/Code to Reproduce | ||
description: | | ||
Please add a minimal example that we can reproduce the error by running the code. Be as succinct as possible, do not depend on external data. In short, we are going to copy-paste your code and we expect to get the same result as you. Example: | ||
```python | ||
from sklearn.feature_extraction.text import CountVectorizer | ||
from sklearn.decomposition import LatentDirichletAllocation | ||
docs = ["Help I have a bug" for i in range(1000)] | ||
vectorizer = CountVectorizer(input=docs, analyzer='word') | ||
lda_features = vectorizer.fit_transform(docs) | ||
lda_model = LatentDirichletAllocation( | ||
n_topics=10, | ||
learning_method='online', | ||
evaluate_every=10, | ||
n_jobs=4, | ||
) | ||
model = lda_model.fit(lda_features) | ||
``` | ||
If the code is too long, feel free to put it in a public gist and link it in the issue: https://gist.github.com. | ||
placeholder: | | ||
``` | ||
Sample code to reproduce the problem | ||
``` | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Results | ||
description: > | ||
Please paste or describe the expected results. | ||
placeholder: > | ||
Example: No error is thrown. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual Results | ||
description: > | ||
Please paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. | ||
placeholder: > | ||
Please paste or specifically describe the actual output or traceback. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Versions | ||
description: | | ||
Please run the following and paste the output below. | ||
```python | ||
import sklearn; sklearn.show_versions() | ||
``` | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for contributing 🎉! |
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 was deleted.
Oops, something went wrong.
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,17 @@ | ||
name: Documentation improvement | ||
description: Create a report to help us improve the documentation. Alternatively you can just open a pull request with the suggested change. | ||
labels: [Documentation] | ||
|
||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the issue linked to the documentation | ||
description: > | ||
Tell us about the confusion introduced in the documentation. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Suggest a potential alternative/fix | ||
description: > | ||
Tell us how we could improve the documentation in this regard. |
This file was deleted.
Oops, something went wrong.
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,25 @@ | ||
name: Feature request | ||
description: Suggest a new algorithm, enhancement to an existing algorithm, etc. | ||
labels: ['New Feature'] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
#### If you want to propose a new algorithm, please refer first to the [scikit-learn inclusion criterion](https://scikit-learn.org/stable/faq.html#what-are-the-inclusion-criteria-for-new-algorithms). | ||
- type: textarea | ||
attributes: | ||
label: Describe the workflow you want to enable | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe your proposed solution | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered, if relevant | ||
- type: textarea | ||
attributes: | ||
label: Additional context |