import requests API_URL = "https://api-inference.huggingface.co/models/jkang/espnet2_librispeech_100_conformer_word" headers = {"Authorization": f"Bearer {API_TOKEN}"} def query(filename): with open(filename, "rb") as f: data = f.read() response = requests.post(API_URL, headers=headers, data=data) return response.json() output = query("sample1.flac")

#4
by Kirkawin - opened