Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Get target directories
id: get_dirs
run: |
DIRS=$(find . -maxdepth 1 -type d ! -name "." ! -name ".github" | tr '\n' ' ')
DIRS=$(find . -maxdepth 1 -type d ! -name "." ! -name ".github" ! -name ".git" | tr '\n' ' ')

echo "Target directories: $DIRS"

Expand Down
24 changes: 12 additions & 12 deletions audio/README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Audio Applications
## 音频应用

This directory contains ready-to-use Audio application notebooks built with MindSpore. Each notebook demonstrates a complete or partial workflow—training, finetuning, or inference—along with a brief introduction to the model used.
本目录包含基于MindSpore 2.7.1版本+动态图+mint接口构建的即用型音频应用笔记。每个笔记演示了完整或部分工作流程(训练、微调或推理),并简要介绍了所用模型。

## Application List
### 应用列表

| No. | Model | Description |
| :-- | :---- | :-------------------------------- |
| 1 | [WaveNet](./wavenet/) | Includes notebooks for WaveNet training on tasks such as audio synthesis |
| 编号 | Model | 课程描述 |
|------|-----------------|-----------------------------------------------|
| 1 | WaveNet 神经网络 | 包含用于 WaveNet 训练的笔记本,涵盖音频合成等任务 |

## Contributing New Audio Applications
### 贡献新的音频应用

To contribute a new Audio application:
贡献新的音频应用方法:

1. Place your notebook in the corresponding model directory.
2. If the model does not yet have its own directory, create a new one following the existing structure.
3. Follow the notebook writing and naming standards in the [Contributing Guidelines](https://github.com/mindspore-courses/applications/wiki/Contributing-Guidelines).
4. Update the application list in the README if required.
1. 请将您的笔记本放入对应的模型目录中。
2. 若模型尚未拥有独立目录,请按现有结构创建新目录。
3. 遵循贡献指南中的 notebook 编写与命名规范。
4. 如需要,更新 README 中的应用程序列表。
Loading