Skip to content

Commit 752c21c

Browse files
authored
Merge pull request #2280 from open-mmlab/dev-1.x
Dev 1.x
2 parents cf47b71 + c2b526b commit 752c21c

File tree

137 files changed

+3924
-2322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+3924
-2322
lines changed

.circleci/test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
type: string
8484
cuda:
8585
type: enum
86-
enum: ["11.0"]
86+
enum: ["11.0", "11.7"]
8787
cudnn:
8888
type: integer
8989
default: 8
@@ -157,8 +157,8 @@ workflows:
157157
- lint
158158
- build_cpu:
159159
name: maximum_version_cpu
160-
torch: 1.13.0
161-
torchvision: 0.14.0
160+
torch: 2.0.0
161+
torchvision: 0.15.1
162162
python: 3.9.0
163163
requires:
164164
- minimum_version_cpu
@@ -174,6 +174,13 @@ workflows:
174174
cuda: "11.0"
175175
requires:
176176
- hold
177+
- build_cuda:
178+
name: maximum_version_gpu
179+
torch: 2.0.0
180+
cuda: "11.7"
181+
cudnn: 8
182+
requires:
183+
- hold
177184
merge_stage_test:
178185
when:
179186
not:
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
name: "🐞 Bug report"
2+
description: "Create a report to help us reproduce and fix the bug"
3+
labels: bug
4+
title: "\[Bug\] "
5+
6+
body:
7+
8+
- type: markdown
9+
attributes:
10+
value: |
11+
\## Note
12+
For general usage questions or idea discussions, please post it to our [**Forum**](https://github.com/open-mmlab/mmpose/discussions)
13+
Please fill in as **much** of the following form as you're able to. **The clearer the description, the shorter it will take to solve it.**
14+
15+
- type: checkboxes
16+
attributes:
17+
label: Prerequisite
18+
description: Please check the following items before creating a new issue.
19+
options:
20+
21+
- label: I have searched [Issues](https://github.com/open-mmlab/mmpose/issues) and [Discussions](https://github.com/open-mmlab/mmpose/discussions) but cannot get the expected help.
22+
required: true
23+
- label: The bug has not been fixed in the latest version(https://github.com/open-mmlab/mmpose).
24+
required: true
25+
26+
- type: textarea
27+
attributes:
28+
label: Environment
29+
description: |
30+
Please run following commands and and copy-paste it here:
31+
\- `python -c "from mmpose.utils import collect_env; print(collect_env())"` to collect necessary environment information.
32+
\- `pip list | grep mm` to collect repositories related to OpenMMLab.
33+
\- \[Optional\] Other environment variables that may be related (such as `$PATH`, `$LD_LIBRARY_PATH`, `$PYTHONPATH`, etc.)
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
attributes:
39+
label: Reproduces the problem - code sample
40+
description: |
41+
Please provide a code sample that reproduces the problem you ran into. It can be a Colab link or just a code snippet.
42+
placeholder: |
43+
`python # Sample code to reproduce the problem `
44+
validations:
45+
required: true
46+
47+
- type: textarea
48+
attributes:
49+
label: Reproduces the problem - command or script
50+
description: |
51+
What command or script did you run?
52+
placeholder: |
53+
`shell The command or script you run. `
54+
validations:
55+
required: true
56+
57+
- type: textarea
58+
attributes:
59+
label: Reproduces the problem - error message
60+
description: |
61+
Please provide the error message or logs you got, with the full traceback.
62+
63+
```
64+
Tip: You can attach screenshots or log files by dragging them into the text area..
65+
```
66+
67+
placeholder: |
68+
` The error message or logs you got, with the full traceback. `
69+
validations:
70+
required: true
71+
72+
- type: textarea
73+
attributes:
74+
label: Additional information
75+
description: |
76+
Tell us anything else you think we should know.
77+
78+
```
79+
Tip: You can attach screenshots or log files by dragging them into the text area.
80+
```
81+
82+
placeholder: |
83+
1\. What's your expected result?
84+
2\. What dataset did you use?
85+
3\. What do you think might be the reason?
86+
87+
- type: markdown
88+
attributes:
89+
value: |
90+
\## Acknowledgement
91+
Thanks for taking the time to fill out this report.
92+
93+
```
94+
If you have already identified the reason, we strongly appreciate you creating a new PR to fix it [**Here**](https://github.com/open-mmlab/mmpose/pulls)!
95+
Please refer to [**Contribution Guide**](https://mmpose.readthedocs.io/en/latest/contribution_guide.html) for contributing.
96+
```

.github/ISSUE_TEMPLATE/error-report.md

Lines changed: 0 additions & 56 deletions
This file was deleted.
Lines changed: 42 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,42 @@
1-
---
2-
name: Feature request
3-
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
---
8-
9-
Thanks for your feature request and we will review and plan for it when necessary.
10-
If you feel we have helped you, give us a STAR! :satisfied:
11-
12-
**Steps**
13-
14-
1. Check if the feature has been requested in the [meta issue](https://github.com/open-mmlab/mmpose/issues/9), and if so, click thumb up button.
15-
2. Post the feature request in the [meta issue](https://github.com/open-mmlab/mmpose/issues/9), if it is new.
16-
17-
**Describe the feature**
18-
19-
**Motivation**
20-
21-
A clear and concise description of the motivation of the feature.
22-
23-
1. Ex1. It is inconvenient when \[....\].
24-
2. Ex2. There is a recent paper \[....\], which is very helpful for \[....\].
25-
26-
**Related resources**
27-
28-
If there is an official code released or third-party implementations, please also provide the information here, which would be very helpful.
29-
30-
**Additional context**
31-
32-
Add any other context or screenshots about the feature request here.
33-
If you would like to implement the feature and create a PR, please leave a comment here and that would be much appreciated.
1+
name: 🚀 Feature request
2+
description: Suggest an idea for this project
3+
labels: \[feature-request\]
4+
title: "\[Feature\] "
5+
6+
body:
7+
8+
- type: markdown
9+
attributes:
10+
value: |
11+
\## Note
12+
For general usage questions or idea discussions, please post it to our [**Forum**](https://github.com/open-mmlab/mmpose/discussions)
13+
14+
```
15+
Please fill in as **much** of the following form as you're able to. **The clearer the description, the shorter it will take to solve it.**
16+
```
17+
18+
- type: textarea
19+
attributes:
20+
label: What is the feature?
21+
description: Tell us more about the feature and how this feature can help.
22+
placeholder: |
23+
E.g., It is inconvenient when \[....\].
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
attributes:
29+
label: Any other context?
30+
description: |
31+
Have you considered any alternative solutions or features? If so, what are they? Also, feel free to add any other context or screenshots about the feature request here.
32+
33+
- type: markdown
34+
attributes:
35+
value: |
36+
\## Acknowledgement
37+
Thanks for taking the time to fill out this report.
38+
39+
```
40+
We strongly appreciate you creating a new PR to implement it [**Here**](https://github.com/open-mmlab/mmpose/pulls)!
41+
Please refer to [**Contribution Guide**](https://mmpose.readthedocs.io/en/latest/contribution_guide.html) for contributing.
42+
```

.github/ISSUE_TEMPLATE/reimplementation_questions.md

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)