Skip to content

Commit 3b10e53

Browse files
committed
Merge branch 'main' of https://github.com/Alpha-Innovator/InternAgent into main
2 parents 9a8d949 + 7801817 commit 3b10e53

2 files changed

Lines changed: 81 additions & 0 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Support for private code/data optimization (please contact via email)
4+
url: mailto:interndiscovery@pjlab.org.cn
5+
about: Requests related to private code/data are not handled through Issues in this repository. Please contact us via email.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
name: "Algorithm Tasks Submit"
2+
description: "Please submit clear and reproducible optimization tasks according to the template (public code + public dataset)"
3+
title: "[Task] "
4+
labels: ["task"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Submission Notes (Read First)
10+
- We only accept **public code** hosted on open-source platforms such as GitHub as the baseline.
11+
- We only accept tasks optimized on **public datasets**.
12+
- For requests involving private code/data optimization, please contact: interndiscovery@pjlab.org.cn
13+
14+
- type: textarea
15+
id: task_desc
16+
attributes:
17+
label: Task Description
18+
description: Please describe in **one paragraph** what you want to optimize, the goal, the success criteria (preferably quantifiable), and any necessary background information.
19+
placeholder: |
20+
Example: On the public dataset X, we want to improve the baseline {metric} from A to B while keeping inference speed no lower than Y. The success criterion is ...
21+
validations:
22+
required: true
23+
24+
- type: input
25+
id: baseline_repo
26+
attributes:
27+
label: Baseline Repository Link (Must be Public)
28+
description: Only public repository links on open-source platforms such as GitHub are accepted.
29+
placeholder: "e.g., https://github.com/<org>/<repo>"
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: baseline_repro
35+
attributes:
36+
label: Baseline reproduction (minimal)
37+
description: "Keep it minimal but reproducible: provide the commit/tag + one key command/step (this is the only 'command' field we keep)."
38+
placeholder: |
39+
commit/tag: <fill in>
40+
run: <one command or minimal steps>
41+
validations:
42+
required: true
43+
44+
- type: input
45+
id: dataset
46+
attributes:
47+
label: Dataset (Must be Public)
48+
description: Dataset name + official link / download instructions.
49+
placeholder: "e.g., COCO 2017 https://cocodataset.org/#download"
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
id: metrics
55+
attributes:
56+
label: Results and Evaluation Metrics
57+
description: Clearly specify metric definitions, evaluation scripts/commands, and data splits (if any).
58+
placeholder: |
59+
Metrics:
60+
Evaluation command/script:
61+
Data split:
62+
validations:
63+
required: true
64+
65+
- type: checkboxes
66+
id: prerequisites
67+
attributes:
68+
label: Preconditions (required)
69+
description: Please confirm that your submission satisfies the following constraints.
70+
options:
71+
- label: The baseline I provide comes from **public code** hosted on an open-source platform such as GitHub.
72+
required: true
73+
- label: The task I use/optimize is based on a **public dataset**.
74+
required: true
75+
- label: If my request involves private code/data, I will contact interndiscovery@pjlab.org.cn by email instead.
76+
required: true

0 commit comments

Comments
 (0)