This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datasets import load_dataset | |
import torch | |
import sacrebleu | |
import json | |
from transformers import AutoModelForCausalLM, AutoProcessor, GenerationConfig | |
import soundfile as sf | |
from jiwer import cer | |
from whisper_normalizer.basic import BasicTextNormalizer | |
from tqdm.auto import tqdm | |
import re |