File size: 2,684 Bytes
bc8f383
 
 
 
 
 
 
 
 
 
e3dc53e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bc8f383
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width" />
		<title>My static Space</title>
		<link rel="stylesheet" href="style.css" />
	</head>
	<body>
		<div class="card">
			<h1>Hugging Face for Audio: Resources ✨</h1>
            <br>
            <br>            
            <b>Audio transformers course</b>: https://huggingface.co/learn/audio-course/chapter0/introduction#course-structure. This covers the standard tasks (ASR, TTS, audio classification) with notes on using pre-trained models and fine-tuning. See also Unit 7 for a speaker diarization application.
            <br>
            <br>            
            <h2>Using pre-trained models</h2>
              <ul>
                <li>With pipelines: https://www.reddit.com/r/MachineLearning/comments/16xshji/d_the_most_complete_audio_ml_toolkit/</li>
                <li>Transformers docs: https://huggingface.co/docs/transformers/model_doc/audio-spectrogram-transformer</li>
              </ul>
            <br>
            <br>
            <h2>Training</h2>
              <ul>
                <li>Datasets https://huggingface.co/blog/audio-datasets</li>
                <li>Fine-tune Whisper for ASR https://huggingface.co/blog/fine-tune-whisper</li>
                <li>Distil Whisper for ASR https://github.com/huggingface/distil-whisper/tree/main/training</li>
                <li>Fine-tune VITS for TTS https://twitter.com/yoachlacombe/status/1735348885369889264</li>
                <li>Fine-tune Wav2Vec2 for audio class https://github.com/huggingface/transformers/tree/main/examples/pytorch/audio-classification</li>                
              </ul>
            <br>
            <br>
            <h2>Optimisation</h2>
              <ul>
                <li>Whisper JAX for ASR https://github.com/sanchit-gandhi/whisper-jax</li>
                <li>Distil Whisper for ASR https://github.com/huggingface/distil-whisper/tree/main</li>
                <li>Insanely Fast Whisper for ASR https://github.com/Vaibhavs10/insanely-fast-whisper</li>
                <li>Speculative decoding with Whisper for ASR https://huggingface.co/blog/whisper-speculative-decoding</li>
                <li>Bark for TTS https://huggingface.co/blog/optimizing-bark</li>                
              </ul>
            <br>
            <br>
            <h2>Deployment</h2>
              <ul>
                <li>Endpoint https://huggingface.co/blog/run-musicgen-as-an-api</li>
                <li>Gradio client https://www.gradio.app/docs/client (e.g. for Whisper https://huggingface.co/spaces/hf-audio/whisper-large-v3)</li>
              </ul>
		</div>
	</body>
</html>