Initial commit
This commit is contained in:
74
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
74
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
name: 🐞 Bug Report
|
||||
description: Something unexpected happened, errors or badcases
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
**We appreciate your time and effort in filing this report. ❤**
|
||||
|
||||
Issues are a vital part of open-source collaboration. They help identify and resolve real-world problems, improve the project for everyone, and create a transparent, well-documented knowledge base that benefits the entire community. **By reporting an issue, you're not just solving a problem for yourself --- you're helping others who may encounter the same challenge.**
|
||||
|
||||
To ensure your issue is addressed efficiently and effectively, please follow these guidelines when submitting:
|
||||
|
||||
1. **Use English**
|
||||
Please write your issue in English. This ensures the widest possible audience can understand and contribute. Most translation tools also work best with English, making your report more accessible globally.
|
||||
|
||||
2. **Choose a clear and descriptive title**
|
||||
Your title should summarize the issue clearly and include relevant details such as the model ID (e.g., `Qwen3-ASR-1.7B`) and the framework or environment (e.g., `qwen-asr`, `vllm`).
|
||||
Example: `Qwen3-ASR-1.7B generates errors with vllm under CUDA 12.8`
|
||||
|
||||
3. **Provide reproducible steps**
|
||||
Help us help you: include a minimal, self-contained code snippet and clear instructions to reproduce the issue. Be sure to specify:
|
||||
- Your environment (OS, Python version, package versions)
|
||||
- The exact commands or code used; the prompts and the sampling parameters in terms of badcases
|
||||
- Expected vs. actual behavior
|
||||
|
||||
4. **Be precise and concise**
|
||||
- Focus on **one issue per report**. If you have multiple bugs, please open separate issues.
|
||||
- Include only the context and code necessary to understand and reproduce the problem.
|
||||
- Think of your issue as a future reference for others --- aim to make it a helpful documentation entry.
|
||||
|
||||
|
||||
Also keep in mind that this repository is dedicated to the open-weight versions of the **Qwen ASR**.
|
||||
- For **Qwen API services** or closed-source variants, please contact Alibaba Cloud support directly.
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Description
|
||||
description: |
|
||||
Please describe the problem you have encountered.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Reproduction
|
||||
description: |
|
||||
Please provide minimal reproducible code.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Logs
|
||||
description: |
|
||||
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
||||
If the log is too long, feel free to put it in a public gist and link it in the issue: https://gist.github.com.
|
||||
render: shell
|
||||
validations:
|
||||
required: false
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Environment Information
|
||||
description: |
|
||||
Please provide information about you environment, e.g., the software versions and the information on the OS, GPUs, CUDA, and NVIDIA Driver if GPUs are used.
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Known Issue
|
||||
options:
|
||||
- label: The issue hasn't been already addressed in Documentation, Issues, and Discussions.
|
||||
|
||||
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: 🚀 Feature Request
|
||||
url: https://github.com/QwenLM/Qwen3-ASR/discussions/categories/polls
|
||||
about: Create a poll and see if others are interested in a new feature as well
|
||||
- name: 🙏 Question
|
||||
url: https://github.com/QwenLM/Qwen3-ASR/discussions/categories/q-a
|
||||
about: Quick question, what/when/where/why/how ...
|
||||
- name: 💬 General Discussion
|
||||
url: https://github.com/QwenLM/Qwen3-ASR/discussions/categories/general
|
||||
about: Discuss in general
|
||||
40
.github/workflows/inactive.yaml
vendored
Normal file
40
.github/workflows/inactive.yaml
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
name: Close and lock inactive threads
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 8 * * *"
|
||||
jobs:
|
||||
manage-inactive:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
days-before-issue-stale: 45
|
||||
days-before-issue-close: 30
|
||||
stale-issue-label: inactive
|
||||
stale-issue-message: >
|
||||
This issue has been automatically marked as inactive
|
||||
due to lack of recent activity.
|
||||
Should you believe it remains unresolved and warrants attention,
|
||||
kindly leave a comment on this thread.
|
||||
exempt-issue-labels: enhancement,discussion
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
operations-per-run: 128
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- uses: dessant/lock-threads@v5
|
||||
with:
|
||||
issue-inactive-days: 60
|
||||
issue-comment: >
|
||||
This issue has been automatically locked since there
|
||||
has not been any recent activity after it was closed.
|
||||
Please open a new issue for related bugs.
|
||||
pr-inactive-days: 90
|
||||
pr-comment: >
|
||||
This pull request has been automatically locked since there
|
||||
has not been any recent activity after it was closed.
|
||||
Please open a new issue for related bugs.
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
26
.github/workflows/translate.yaml
vendored
Normal file
26
.github/workflows/translate.yaml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: 'translator'
|
||||
on:
|
||||
issues:
|
||||
types: [opened, edited]
|
||||
issue_comment:
|
||||
types: [created, edited]
|
||||
discussion:
|
||||
types: [created, edited]
|
||||
discussion_comment:
|
||||
types: [created, edited]
|
||||
|
||||
jobs:
|
||||
translate:
|
||||
permissions:
|
||||
issues: write
|
||||
discussions: write
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: lizheming/github-translate-action
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
IS_MODIFY_TITLE: true
|
||||
APPEND_TRANSLATION: true
|
||||
Reference in New Issue
Block a user