File size: 189 Bytes
014de59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Aug 1 11:23:30 2024
@author: ysnrfd
"""
import whisper
# بارگذاری مدل
model = whisper.load_model("medium")
|