From 7c524d631e4c0fd0531d02d6a155fc95a3e90810 Mon Sep 17 00:00:00 2001 From: thomwolf Date: Mon, 5 Aug 2019 16:25:54 +0200 Subject: [PATCH] add issue templates --- .github/ISSUE_TEMPLATE/bug-report.md | 36 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 16 +++++++++ .github/ISSUE_TEMPLATE/migration.md | 43 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/question-help.md | 8 +++++ 4 files changed, 103 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/migration.md create mode 100644 .github/ISSUE_TEMPLATE/question-help.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000000..0d9439887b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,36 @@ +--- +name: "\U0001F41B Bug Report" +about: Submit a bug report to help us improve PyTorch Transformers +--- + +## ๐Ÿ› Bug + + + +## To Reproduce + +Steps to reproduce the behavior: + +1. +2. +3. + + + +## Expected behavior + + + +## Environment + +* OS: +* Python version: +* PyTorch version: +* PyTorch Transformers version (or branch): +* Using GPU ? +* Distributed of parallel setup ? +* Any other relevant information: + +## Additional context + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000000..828e3737be --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,16 @@ +--- +name: "\U0001F680 Feature Request" +about: Submit a proposal/request for a new PyTorch Transformers feature +--- + +## ๐Ÿš€ Feature + + + +## Motivation + + + +## Additional context + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/migration.md b/.github/ISSUE_TEMPLATE/migration.md new file mode 100644 index 0000000000..9a8b19dffa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/migration.md @@ -0,0 +1,43 @@ +--- +name: "\U0001F4DA Migration from PyTorch-pretrained-Bert" +about: Report a problem when migrating from PyTorch-pretrained-Bert to PyTorch-Transformers +--- + +## ๐Ÿ“š Migration + + + +Model I am using (Bert, XLNet....): + +The problem arise when using: +* [ ] the official example scripts +* [ ] my own modified scripts + +The tasks I am working on is: +* [ ] an official GLUE/SQUaD task: (give the name) +* [ ] my own task or dataset: (give details) + +Language I am using the model on (English, Chinese....): + +Details of the issue: + + + +## Environment + +* OS: +* Python version: +* PyTorch version: +* PyTorch Transformers version (or branch): +* Using GPU ? +* Distributed of parallel setup ? +* Any other relevant information: + +## Checklist + +- [ ] I have read the migration guide in the readme. +- [ ] I checked if a related official extension example runs on my machine. + +## Additional context + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/question-help.md b/.github/ISSUE_TEMPLATE/question-help.md new file mode 100644 index 0000000000..8c76994b02 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question-help.md @@ -0,0 +1,8 @@ +--- +name: "โ“Questions & Help" +about: Start a general discussion related to PyTorch Transformers +--- + +## โ“ Questions & Help + + \ No newline at end of file