Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -102,10 +102,12 @@ import numpy as np # for mathematical calculations
|
|
102 |
import gradio as gr # for inferencing.
|
103 |
from transformers import pipeline # used for inferencing.
|
104 |
from scipy.signal import butter, lfilter, wiener
|
|
|
|
|
|
|
105 |
from convert2list import convert_to_list
|
106 |
from processDoubles import process_doubles
|
107 |
from replaceWords import replace_words
|
108 |
-
from text2int import text_to_int
|
109 |
|
110 |
# Initialize ASR model pipeline
|
111 |
asr_model = pipeline("automatic-speech-recognition", model="cdactvm/w2v-bert-punjabi")
|
|
|
102 |
import gradio as gr # for inferencing.
|
103 |
from transformers import pipeline # used for inferencing.
|
104 |
from scipy.signal import butter, lfilter, wiener
|
105 |
+
from text2int import text_to_int
|
106 |
+
from isNumber import is_number
|
107 |
+
from Text2List import text_to_list
|
108 |
from convert2list import convert_to_list
|
109 |
from processDoubles import process_doubles
|
110 |
from replaceWords import replace_words
|
|
|
111 |
|
112 |
# Initialize ASR model pipeline
|
113 |
asr_model = pipeline("automatic-speech-recognition", model="cdactvm/w2v-bert-punjabi")
|