forked from facebookresearch/detectron2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Pull Request resolved: fairinternal/detectron2#406 Reviewed By: rbgirshick Differential Revision: D21499456 Pulled By: ppwwyyxx fbshipit-source-id: f95c74c9ee126718b46fb439d9c2ee457e98a87b
- Loading branch information
1 parent
1f6ebff
commit 98a8b2d
Showing
21 changed files
with
157 additions
and
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: "Bugs" | ||
about: Report bugs in detectron2 | ||
title: Please read & provide the following | ||
|
||
--- | ||
|
||
## Instructions To Reproduce the Bug: | ||
|
||
1. what changes you made (`git diff`) or what code you wrote | ||
``` | ||
<put diff or code here> | ||
``` | ||
2. what exact command you run: | ||
3. what you observed (including __full logs__): | ||
``` | ||
<put logs here> | ||
``` | ||
4. please simplify the steps as much as possible so they do not require additional resources to | ||
run, such as a private dataset. | ||
|
||
## Expected behavior: | ||
|
||
If there are no obvious error in "what you observed" provided above, | ||
please tell us the expected behavior. | ||
|
||
## Environment: | ||
|
||
Provide your environment information using the following command: | ||
``` | ||
wget -nc -q https://github.com/facebookresearch/detectron2/raw/master/detectron2/utils/collect_env.py && python collect_env.py | ||
``` | ||
|
||
If your issue looks like an installation issue / environment issue, | ||
please first try to solve it yourself with the instructions in | ||
https://detectron2.readthedocs.io/tutorials/install.html#common-installation-issues |
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
# require an issue template to be chosen | ||
blank_issues_enabled: false | ||
|
||
# Unexpected behaviors & bugs are split to two templates. | ||
# When they are one template, users think "it's not a bug" and don't choose the template. | ||
# | ||
# But the file name is still "unexpected-problems-bugs.md" so that old references | ||
# to this issue template still works. | ||
# It's ok since this template should be a superset of "bugs.md" (unexpected behaviors is a superset of bugs) |
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 |
---|---|---|
@@ -1,27 +1,26 @@ | ||
--- | ||
name: "❓How to do something?" | ||
about: How to do X with detectron2? How detectron2 does X? | ||
about: How to do something using detectron2? What does an API do? | ||
|
||
--- | ||
|
||
## ❓ How to do something using detectron2 | ||
|
||
General questions in learning detectron2, like: | ||
|
||
1. How to do X with detectron2? | ||
2. How detectron2 does X? | ||
Describe what you want to do, including: | ||
1. what inputs you will provide, if any: | ||
2. what outputs you are expecting: | ||
|
||
## ❓ What does an API do and how to use it? | ||
Please link to which API or documentation you're asking about from | ||
https://detectron2.readthedocs.io/ | ||
|
||
|
||
NOTE: | ||
|
||
1. Only general answers are provided for how-to questions. | ||
If you want to ask about "why X did not work", | ||
please use the [Unexpected behaviors / Bugs](https://github.com/facebookresearch/detectron2/issues/new?template=unexpected-problems-bugs.md) | ||
issue template. | ||
1. Only general answers are provided. | ||
If you want to ask about "why X did not work", please use the | ||
[Unexpected behaviors](https://github.com/facebookresearch/detectron2/issues/new/choose) issue template. | ||
|
||
2. About how to implement new models / new dataloader / new training logic, etc., check documentation first. | ||
|
||
3. We do not answer general machine learning / computer vision questions that are not specific to | ||
detectron2, such as how a model works, how to improve your training/make it converge, or what algorithm/methods can be | ||
used to achieve X. | ||
3. We do not answer general machine learning / computer vision questions that are not specific to detectron2, such as how a model works, how to improve your training/make it converge, or what algorithm/methods can be used to achieve X. |
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
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
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
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
Oops, something went wrong.