フィルターのクリア

How do I create a pretrained network for speech dataset

2 ビュー (過去 30 日間)
EHIJAS KV
EHIJAS KV 2022 年 11 月 22 日
コメント済み: EHIJAS KV 2022 年 11 月 29 日
How do i create a pretrained network for speech dataset and save in .mat format. The "audioFeatureExtractor (Audio Toolbox)" object used to train the network, and normalization factors for the features.

回答 (1 件)

Varun Sai Alaparthi
Varun Sai Alaparthi 2022 年 11 月 29 日
Hello Ehijas,
Please refer the following link for training a net on speech dataset
After training the model you can save it as a .mat file using the following command
outputDir = "path_to_dir";
outputFile = fullfile(outputDir, "net.mat");
save(outputFile, "net");
In the case above, net is the name of the network in the MATLAB workspace, and we are saving it to the location path_to_dir/net.mat.
Or you can directly save it with this command
pretrainednet = net;
save pretrainednet;
I hope this information helps and please reach out for any further issues.

カテゴリ

Help Center および File ExchangeAI for Audio についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by