speechbrain - 小记
SpeechBrain is an open-source and all-in-one conversational AI toolkit based on PyTorch.
·
文章目录
关于 speechbrain
SpeechBrain is an open-source and all-in-one conversational AI toolkit based on PyTorch.
- 官网
https://speechbrain.github.io/index.html - github
https://github.com/speechbrain/speechbrain - SpeechBrain Tutorials
https://speechbrain.github.io/tutorial_basics.html - huggingface - SpeechBrain
https://huggingface.co/speechbrain
相关教程
- 梁先森-在技术的路上奔跑:一文带大家初了解Speechbrain
https://blog.csdn.net/lzx159951/article/details/118304731
安装
方式一:pip
pip install speechbrain
方式二:源码编译
git clone https://github.com/speechbrain/speechbrain.git
cd speechbrain
pip install -r requirements.txt
pip install --editable .
测试
pytest tests
pytest --doctest-modules speechbrain
运行实验
cd recipes/<dataset>/<task>/
python experiment.py params.yaml
结果将会以yaml文件形式被保存在 output_folder
。
这个文件夹在 experimen.py
中使用sb.core.create_experiment_directory()
被创建。
详细的日志和实验结果都将被保存在这里,对了,会有少量冗长的日志会输出到屏幕上。
有机会再更新
伊织 2022-09-21(三)
更多推荐
所有评论(0)