Incorrect result

#1
by alpaycli - opened

Tested the model with different audio(.wav) files using the 'usage code' provided in the Model Card,
output is same and incorrect.

Output
Screenshot 2026-03-28 at 19.13.48

LocalDoc org

Tested the model with different audio(.wav) files using the 'usage code' provided in the Model Card,
output is same and incorrect.

Output
Screenshot 2026-03-28 at 19.13.48

Audio must be mono and 16kHz

if sr != 16000:
audio = librosa.resample(audio, orig_sr=sr, target_sr=16000)
Example codedaki bunu

y, sr = librosa.load('IMG_5762.wav', sr=None)
audio = librosa.resample(y, orig_sr=sr, target_sr=16000)

Buna deyishdim, ishledi, if-e girmirmish yeqinki. Tesekkurler

alpaycli changed discussion status to closed

Sign up or log in to comment