Skip to content

Commit 46d0937

Browse files
authored
Merge pull request #15 from FlagAI-Open/master
merge master
2 parents 9967b3c + 0c8a542 commit 46d0937

Some content is hidden

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

58 files changed

+859
-434
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: "Bug Report"
2+
description: Submit a bug report to help us improve FlagAI
3+
labels: [ "bug" ]
4+
body:
5+
- type: textarea
6+
id: system-info
7+
attributes:
8+
label: System Info
9+
description: Important! Please share your system info with us.
10+
placeholder: FlagAI version, platform, python version, ...
11+
validations:
12+
required: true
13+
14+
- type: checkboxes
15+
id: information-scripts-examples
16+
attributes:
17+
label: Information
18+
description: 'The problem arises when using:'
19+
options:
20+
- label: "The official example scripts"
21+
- label: "My own modified scripts"
22+
23+
- type: checkboxes
24+
id: information-tasks
25+
attributes:
26+
label: Tasks
27+
description: "The tasks I am working on are:"
28+
options:
29+
- label: "An officially supported task in the `examples` folder (such as T5/AltCLIP, ...)"
30+
- label: "My own task or dataset (give details below)"
31+
32+
- type: textarea
33+
id: reproduction
34+
validations:
35+
required: true
36+
attributes:
37+
label: Reproduction
38+
description: |
39+
Please provide a code sample that reproduces the problem you ran into. It can be a Colab link or just a code snippet.
40+
If you have code snippets, error messages, stack traces please provide them here as well.
41+
Important! Use code tags to correctly format your code. See https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting
42+
Do not use screenshots, as they are hard to read and (more importantly) don't allow others to copy-and-paste your code.
43+
44+
placeholder: |
45+
Steps to reproduce the behavior:
46+
47+
1.
48+
2.
49+
3.
50+
51+
52+
- type: textarea
53+
id: expected-behavior
54+
validations:
55+
required: true
56+
attributes:
57+
label: Expected behavior
58+
description: "A clear and concise description of what you would expect to happen."

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Feature Request"
2+
description: Submit a proposal/request for a new FlagAI feature
3+
labels: [ "feature" ]
4+
body:
5+
- type: textarea
6+
id: feature-request
7+
validations:
8+
required: true
9+
attributes:
10+
label: Feature request
11+
description: |
12+
A clear and concise description of the feature proposal. Please provide a link to the paper and code in case they exist.
13+
14+
- type: textarea
15+
id: motivation
16+
validations:
17+
required: true
18+
attributes:
19+
label: Motivation
20+
description: |
21+
Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too.
22+
23+
24+
- type: textarea
25+
id: contribution
26+
validations:
27+
required: true
28+
attributes:
29+
label: Your contribution
30+
description: |
31+
Is there any way that you could help, e.g. by submitting a PR? Make sure to read the CONTRIBUTING.MD [readme](https://github.com/FlagAI-Open/FlagAI/blob/master/CONTRIBUTING.md)

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "New model addition"
2+
description: Submit a proposal/request to implement a new model
3+
labels: [ "New model" ]
4+
5+
body:
6+
- type: textarea
7+
id: description-request
8+
validations:
9+
required: true
10+
attributes:
11+
label: Model description
12+
description: |
13+
Put any and all important information relative to the model
14+
15+
- type: checkboxes
16+
id: information-tasks
17+
attributes:
18+
label: Open source status
19+
description: |
20+
Please note that if the model implementation isn't available or if the weights aren't open-source, we are less likely to implement it in FlagAI
21+
options:
22+
- label: "The model implementation is available"
23+
- label: "The model weights are available"
24+
25+
- type: textarea
26+
id: additional-info
27+
attributes:
28+
label: Provide useful links for the implementation
29+
description: |
30+
Please provide information regarding the implementation, the weights, and the authors.
31+
Please mention the authors by @gh-username if you're aware of their usernames.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Question
2+
description: Ask a question about FlagAI and discuss with community members.
3+
title: "[Question]: "
4+
labels: [question]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
This template will help us get your point.
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Description
14+
description: A clear and concise description of what the question is.
15+
placeholder: Description
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: alternatives
20+
attributes:
21+
label: Alternatives
22+
description: |
23+
Please provide some alternative information here, if any.
24+
placeholder: Alternatives
25+
validations:
26+
required: false
27+
- type: markdown
28+
attributes:
29+
value: |
30+
We are always willing to answer your questions!

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ datasets
2727
qqp
2828
glm_large_qqp_pytorch
2929
wandb
30-
clip_benchmark_datasets/
30+
clip_benchmark_datasets

0 commit comments

Comments
 (0)