File size: 467 Bytes
f2e6b5a 33273c7 7722c06 33273c7 7722c06 33273c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import torch
from transformers import pipeline
# ArticMonkey:19.03.24:1700 example of version name in plaintext will be convert into hex using this site -> https://magictool.ai/tool/text-to-hex-converter/
# Here ArticMonkey is name of version and rest of all is data and time
device = 0 if torch.cuda.is_available() else "cpu"
checkpoint = "openai/whisper-base"
pipe = pipeline(
task="automatic-speech-recognition",
model=checkpoint,
device=device,
) |