|
| 1 | +Please try to adhere to the guidelines below as much as possible when |
| 2 | +submitting your issue. |
| 3 | +- Verify that your issue is not being currently addressed by other |
| 4 | +[issues](https://github.com/scikit-learn/scikit-learn/issues?q=) |
| 5 | +or [pull requests](https://github.com/scikit-learn/scikit-learn/pulls?q=). |
| 6 | +- If your issue is a usage question or does not potentially require |
| 7 | +changes to the codebase to be solved, then |
| 8 | +[StackOverflow](http://stackoverflow.com/questions/tagged/scikit-learn) |
| 9 | +(using the`[scikit-learn]` tag) or our |
| 10 | +[mailing list](https://lists.sourceforge.net/lists/listinfo/scikit-learn-general) |
| 11 | +may be a better place to bring it up. For more information, see |
| 12 | +[User Questions](http://scikit-learn.org/stable/support.html#user-questions). |
| 13 | + |
| 14 | +If you are submitting a bug issue: |
| 15 | +- Please include your operating system type and version number, as well |
| 16 | +as your Python, scikit-learn, numpy, and scipy versions. This information |
| 17 | +can be found by runnning the following code snippet: |
| 18 | +``` |
| 19 | +import platform; print(platform.platform()) |
| 20 | +import sys; print("Python", sys.version) |
| 21 | +import numpy; print("NumPy", numpy.__version__) |
| 22 | +import scipy; print("SciPy", scipy.__version__) |
| 23 | +import sklearn; print("Scikit-Learn", sklearn.__version__) |
| 24 | +``` |
| 25 | +- Please be specific about what estimators and/or functions are involved |
| 26 | +and the shape of the data, as appropriate; please include a |
| 27 | +[reproducible](http://stackoverflow.com/help/mcve) code snippet |
| 28 | +or link to a [gist](https://gist.github.com). If an exception is raised, |
| 29 | +please provide the traceback. |
| 30 | +- Please ensure all code snippets and error messages are formatted in |
| 31 | +appropriate code blocks. |
| 32 | +See ["Creating and highlighting code blocks"](https://help.github.com/articles/creating-and-highlighting-code-blocks). |
| 33 | + |
| 34 | +If you are submitting an algorithm or feature request: |
| 35 | +- Please verify that the algorithm fulfills our |
| 36 | +[new algorithm requirements](http://scikit-learn.org/stable/faq.html#can-i-add-this-new-algorithm-that-i-or-someone-else-just-published). |
| 37 | + |
| 38 | +Thanks for contributing! Please delete these guidelines before submitting |
| 39 | +your issue. |
0 commit comments