loader_model.py 413 B

12345678910111213141516171819
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. '''
  4. @Contact : liuyuqi.gov@msn.cn
  5. @Time : 2024/09/26 17:33:18
  6. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  7. @Desc : 下载模型,加载模型
  8. ~/.cache/whisper
  9. '''
  10. import whisper
  11. # 加载 medium 模型
  12. model = whisper.load_model("medium")
  13. # 加载成功后模型文件会被保存在本地缓存中
  14. print("模型加载完成")