From 6a9a3d138b04808fc473ad7d579ceb7d049fdb47 Mon Sep 17 00:00:00 2001 From: brjiang Date: Mon, 2 Dec 2024 17:46:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=89=88=E6=9C=AC=E9=85=8D?= =?UTF-8?q?=E5=A5=97=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../built-in/audio/Conformer/README.md | 4 ++-- .../built-in/audio/ConformerOfflineModel/README.md | 14 +++++++------- .../MindIE-Torch/built-in/audio/Whisper/README.md | 2 +- .../built-in/audio/Zipformer-streaming/README.md | 2 +- .../built-in/audio/Zipformer/README.md | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/MindIE/MindIE-Torch/built-in/audio/Conformer/README.md b/MindIE/MindIE-Torch/built-in/audio/Conformer/README.md index 81780a4b16..13ccc59720 100644 --- a/MindIE/MindIE-Torch/built-in/audio/Conformer/README.md +++ b/MindIE/MindIE-Torch/built-in/audio/Conformer/README.md @@ -23,10 +23,10 @@ Conformer模型是一种混合神经网络架构,专门设计用于处理序 | 配套 | 版本 | |---------|---------| - | CANN | 8.0RC1 | + | CANN | 8.0.RC1 | | Python | 3.10.13 | | torch | 2.1.0 | - | mindie | 1.0.RC1 | + | MindIE | 1.0.RC1 | | 支持产品 | Atlas 300I Pro推理卡 | | 处理器架构 | arm64 | diff --git a/MindIE/MindIE-Torch/built-in/audio/ConformerOfflineModel/README.md b/MindIE/MindIE-Torch/built-in/audio/ConformerOfflineModel/README.md index bbfc96d0a2..522f95074f 100644 --- a/MindIE/MindIE-Torch/built-in/audio/ConformerOfflineModel/README.md +++ b/MindIE/MindIE-Torch/built-in/audio/ConformerOfflineModel/README.md @@ -23,7 +23,7 @@ Conformer模型是一种混合神经网络架构,专门设计用于处理序 | 配套 | 版本 | |---------|---------| - | CANN | 8.0RC1 | + | CANN | 8.0.RC1 | | Python | 3.10.13 | | torch | 2.1.0 | | torchaudio | 2.1.0 | @@ -179,10 +179,10 @@ egs/wenetspeech/ASR/ python modify_encoder_onnx.py ./simed_encoder.onnx ``` - 再进行om转换,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(Ascendxxx中的xxx需要通过npu-smi info命令进行查询) + 再进行om转换,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(需要执行npu-smi info命令进行查询,并在查询到的“Name”前增加Ascend字段,例如“Name”对应取值为xxxyy,实际配置的soc_version值为Ascendxxxyy) ```sh - atc --input_shape="x:1,100,80;x_lens:1" --precision_mode=force_fp32 --soc_version=Ascendxxx --framework=5 --output=encoder_py310 --model ./simed_encoder_modified.onnx + atc --input_shape="x:1,100,80;x_lens:1" --precision_mode=force_fp32 --soc_version=Ascendxxxyy --framework=5 --output=encoder_py310 --model ./simed_encoder_modified.onnx ``` 2. 对于decoder,需要先进行改图 @@ -191,16 +191,16 @@ egs/wenetspeech/ASR/ python modify_decoder_onnx.py ./simed_decoder.onnx ``` - 再进行om转换,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(Ascendxxx中的xxx需要通过npu-smi info命令进行查询) + 再进行om转换,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(需要执行npu-smi info命令进行查询,并在查询到的“Name”前增加Ascend字段,例如“Name”对应取值为xxxyy,实际配置的soc_version值为Ascendxxxyy) ```sh - atc --input_shape="y:1,2" --precision_mode=force_fp32 --soc_version=Ascendxxx --framework=5 --output=decoder_py310 --model=simed_decoder_modified.onnx + atc --input_shape="y:1,2" --precision_mode=force_fp32 --soc_version=Ascendxxxyy --framework=5 --output=decoder_py310 --model=simed_decoder_modified.onnx ``` - 3. Joiner模型可以直接转换om,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(Ascendxxx中的xxx需要通过npu-smi info命令进行查询) + 3. Joiner模型可以直接转换om,其中参数soc_version用于指定模型转换时昇腾AI处理器的版本(需要执行npu-smi info命令进行查询,并在查询到的“Name”前增加Ascend字段,例如“Name”对应取值为xxxyy,实际配置的soc_version值为Ascendxxxyy) ```sh - atc --input_shape="encoder_out:1,512;decoder_out:1,512" --soc_version=Ascendxxx --framework=5 --output=joiner_py310 --model=./exp/joiner-epoch-99-avg-1.onnx + atc --input_shape="encoder_out:1,512;decoder_out:1,512" --soc_version=Ascendxxxyy --framework=5 --output=joiner_py310 --model=./exp/joiner-epoch-99-avg-1.onnx ``` 6. 导出ts模型 diff --git a/MindIE/MindIE-Torch/built-in/audio/Whisper/README.md b/MindIE/MindIE-Torch/built-in/audio/Whisper/README.md index a8a3ea6f3e..f2fb006ea3 100644 --- a/MindIE/MindIE-Torch/built-in/audio/Whisper/README.md +++ b/MindIE/MindIE-Torch/built-in/audio/Whisper/README.md @@ -23,7 +23,7 @@ | 配套 | 版本 | |---------| ------- | | 固件与驱动 | Ascend HDK 24.1.RC2(适用于310I Pro/Duo设备,aarch64架构)| - | CANN | 8.0RC2 | + | CANN | 8.0.RC2 | | Python | 3.10.13 | | PyTorch | 2.1.0 | | MindIE | 1.0.RC2 | diff --git a/MindIE/MindIE-Torch/built-in/audio/Zipformer-streaming/README.md b/MindIE/MindIE-Torch/built-in/audio/Zipformer-streaming/README.md index a0959bcb93..28a82590c2 100644 --- a/MindIE/MindIE-Torch/built-in/audio/Zipformer-streaming/README.md +++ b/MindIE/MindIE-Torch/built-in/audio/Zipformer-streaming/README.md @@ -30,7 +30,7 @@ | CANN | 8.0.RC2 | | Python | 3.10.13 | | torch | 2.1.0 | -| MindIE | 1.0.RC2.B071 | +| MindIE | 1.0.RC2 | | 支持设备 | Atlas 300I Pro推理卡 | | 处理器架构 | arm64 | diff --git a/MindIE/MindIE-Torch/built-in/audio/Zipformer/README.md b/MindIE/MindIE-Torch/built-in/audio/Zipformer/README.md index 1dda94ad79..ff386d3e6b 100644 --- a/MindIE/MindIE-Torch/built-in/audio/Zipformer/README.md +++ b/MindIE/MindIE-Torch/built-in/audio/Zipformer/README.md @@ -25,7 +25,7 @@ | 配套 | 版本 | | ----------- | ----------- | -| CANN | 8.0.T5 | +| CANN | 8.0.RC1 | | Python | 3.10.13 | | torch | 2.1.0 | | MindIE | 1.0.RC1 | -- Gitee