Update app.py
Browse files
app.py
CHANGED
@@ -62,6 +62,7 @@ def main():
|
|
62 |
try:
|
63 |
mic = mic_recorder(start_prompt="Record", stop_prompt="Stop", just_once=True, use_container_width=True)
|
64 |
if mic is not None:
|
|
|
65 |
start_time = time.perf_counter()
|
66 |
a2t = A2T(mic["bytes"])
|
67 |
text = a2t.predict()
|
|
|
62 |
try:
|
63 |
mic = mic_recorder(start_prompt="Record", stop_prompt="Stop", just_once=True, use_container_width=True)
|
64 |
if mic is not None:
|
65 |
+
print(f"Checking for execution this part {random.randint(0, 5)}")
|
66 |
start_time = time.perf_counter()
|
67 |
a2t = A2T(mic["bytes"])
|
68 |
text = a2t.predict()
|