-
Notifications
You must be signed in to change notification settings - Fork 549
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into manukyutai-patch-1
- Loading branch information
Showing
13 changed files
with
240 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Bug Report | ||
description: You found a bug. | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: dropdown | ||
id: backend | ||
attributes: | ||
label: Backend impacted | ||
description: Which backend is concerned with your bug report? | ||
options: | ||
- The PyTorch implementation | ||
- The MLX implementation | ||
- The Rust implementation | ||
- Other / All | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating system | ||
description: What is your operating system? | ||
options: | ||
- Linux | ||
- Mac OS X | ||
- Windows (unsupported) | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: hardware | ||
attributes: | ||
label: Hardware | ||
description: What hardware are you using? | ||
options: | ||
- CPU | ||
- GPU with CUDA | ||
- Metal with MLX | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Provide a detailed description of your bug. | ||
placeholder: | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: more_info | ||
attributes: | ||
label: Extra information | ||
description: Please provide any other relevant information, such as log extracts, code etc. | ||
placeholder: | ||
value: | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: env | ||
attributes: | ||
label: Environment | ||
description: Please provide any other relevant information, such as log extracts, code etc. | ||
placeholder: | ||
value: | | ||
Fill in the following information on your system. | ||
- Operating system version: | ||
If the backend impacted is PyTorch: | ||
- Python version: | ||
- PyTorch version: | ||
- CUDA version (run `python -c 'import torch; print(torch.version.cuda)'`): | ||
- GPU model and memory: | ||
If the backend is MLX: | ||
- Mac model: | ||
validations: | ||
required: true |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Question | ||
description: You have a question about Moshi/Mimi, this codebase. | ||
labels: ["question", "triage"] | ||
body: | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Due diligence | ||
description: Have you searched the existing issues / Google / asked ChatGPT? | ||
options: | ||
- label: I have done my due diligence in trying to find the answer myself. | ||
required: true | ||
|
||
- type: dropdown | ||
id: backend | ||
attributes: | ||
label: Topic | ||
description: What is your question about? | ||
options: | ||
- The paper | ||
- The PyTorch implementation | ||
- The MLX implementation | ||
- The Rust implementation | ||
- Other / All | ||
default: 0 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: question | ||
attributes: | ||
label: Question | ||
description: What is your question? | ||
placeholder: Your question. Please make sure this is directly related to our codebase. We will not provide support for installing PyTorch, CUDA, Rust etc. | ||
value: | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Checklist | ||
|
||
- [ ] Read CONTRIBUTING.md, and accept the CLA by including the provided snippet. We will not accept PR without this. | ||
- [ ] Run pre-commit hook. | ||
- [ ] If you changed Rust code, run `cargo check`, `cargo clippy`, `cargo test`. | ||
|
||
## PR Description | ||
|
||
<!-- Description for the PR --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.