code check
This commit is contained in:
@@ -5,13 +5,15 @@ You may be frequently using Google Assistant or Apple’s Siri or even Amazon Al
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
TLDR Show me the code!
|
## TLDR Show me the code!
|
||||||
|
|
||||||
If you are impatient like me, this is practically the full source code that can be quickly copied, pasted, and executed through a Python file. Make sure to have a file named ‘my-audio.wav’ as your speech input. Also, make sure you have all the libraries installed.
|
If you are impatient like me, this is practically the full source code that can be quickly copied, pasted, and executed through a Python file. Make sure to have a file named ‘my-audio.wav’ as your speech input. Also, make sure you have all the libraries installed.
|
||||||
|
|
||||||
In the later part of the tutorial, we will be discussing what each of the lines is doing.
|
In the later part of the tutorial, we will be discussing what each of the lines is doing.
|
||||||
|
|
||||||
Here’s the code!
|
Here’s the code!
|
||||||
|
|
||||||
|
<pre><code>
|
||||||
import torch
|
import torch
|
||||||
import librosa
|
import librosa
|
||||||
import numpy as np
|
import numpy as np
|
||||||
@@ -19,6 +21,8 @@ import soundfile as sf
|
|||||||
from scipy.io import wavfile
|
from scipy.io import wavfile
|
||||||
from IPython.display import Audio
|
from IPython.display import Audio
|
||||||
from transformers import Wav2Vec2ForCTC, Wav2Vec2Tokenizer
|
from transformers import Wav2Vec2ForCTC, Wav2Vec2Tokenizer
|
||||||
|
</code></pre>
|
||||||
|
|
||||||
tokenizer = Wav2Vec2Tokenizer.from_pretrained("facebook/wav2vec2-base-960h")
|
tokenizer = Wav2Vec2Tokenizer.from_pretrained("facebook/wav2vec2-base-960h")
|
||||||
model = Wav2Vec2ForCTC.from_pretrained("facebook/wav2vec2-base-960h")
|
model = Wav2Vec2ForCTC.from_pretrained("facebook/wav2vec2-base-960h")
|
||||||
file_name = 'my-audio.wav'
|
file_name = 'my-audio.wav'
|
||||||
|
|||||||
Reference in New Issue
Block a user