File size: 7,424 Bytes
9e1fe39 51a3039 3f7bb48 51a3039 58dd360 f70c96a 51a3039 f70c96a 51a3039 f70c96a 51a3039 eeddc3d cf075ed f70c96a 51a3039 e2e45fb f70c96a 62a53ea f70c96a 51a3039 3f7bb48 f70c96a e56894f f70c96a 39fbfd3 f70c96a 39fbfd3 f70c96a 39fbfd3 eeddc3d 9895aef cf075ed e2e45fb f70c96a 62a53ea f70c96a 51a3039 f70c96a 51a3039 f70c96a 51a3039 cf075ed 51a3039 62a53ea 51a3039 f70c96a eeddc3d f70c96a 51a3039 3a34b54 f5f3ec4 3a34b54 f5f3ec4 51a3039 1428f37 51a3039 c0deed6 51a3039 fda101c 51a3039 c0deed6 5fc52a4 c0deed6 51a3039 490ef2b f70c96a 51a3039 7adce10 51a3039 |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
import spaces
import os
# os.environ["PYTORCH_CUDA_ALLOC_CONF"] = "expandable_segments:True"
import gc
from functools import partial
import gradio as gr
import torch
from speechbrain.inference.interfaces import Pretrained, foreign_class
from transformers import T5Tokenizer, T5ForConditionalGeneration
import librosa
import whisper_timestamped as whisper
from transformers import AutoModelForSpeechSeq2Seq, AutoProcessor, pipeline, Wav2Vec2ForCTC, AutoProcessor
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
torch.backends.cuda.matmul.allow_tf32 = True
def clean_up_memory():
gc.collect()
torch.cuda.empty_cache()
@spaces.GPU(duration=15)
def recap_sentence(string):
# Restore capitalization and punctuation using the model
inputs = recap_tokenizer(["restore capitalization and punctuation: " + string], return_tensors="pt", padding=True).to(device)
outputs = recap_model.generate(**inputs, max_length=768, num_beams=5, early_stopping=True).squeeze(0)
recap_result = recap_tokenizer.decode(outputs, skip_special_tokens=True)
return recap_result
@spaces.GPU(duration=30)
def return_prediction_whisper_mic(mic=None, progress=gr.Progress(), device=device):
progress(0, desc="Транскриптот се генерира")
if mic is not None:
download_path = mic.split(".")[0] + ".txt"
waveform, sr = librosa.load(mic, sr=16000)
# waveform = waveform[:30*sr]
whisper_result = whisper_classifier.classify_file_whisper_mkd(waveform, device)
else:
return "You must provide a mic recording"
recap_result = ""
progress(0.75, desc=" Пост-процесирање на транскриптот")
for k, segment in enumerate(whisper_result):
recap_result += segment + " "
clean_up_memory()
progress(1.0, desc=" Крај на транскрипцијата")
with open(download_path, "w") as f:
f.write(recap_result)
return recap_result, download_path
@spaces.GPU(duration=60)
def return_prediction_whisper_file(file=None, progress=gr.Progress(), device=device):
whisper_result = []
progress(0, desc=" Транскриптот се генерира")
if file is not None:
download_path = file.split(".")[0] + ".txt"
waveform, sr = librosa.load(file, sr=16000)
# waveform = waveform[:3600*sr]
whisper_result = whisper_classifier.classify_file_whisper_mkd(waveform, device)
else:
return "You must provide a mic recording"
recap_result = ""
progress(0.75, desc=" Пост-процесирање на транскриптот")
for k, segment in enumerate(whisper_result):
recap_result += segment + " "
clean_up_memory()
progress(1.0, desc=" Крај на транскрипцијата")
with open(download_path, "w") as f:
f.write(recap_result)
return recap_result, download_path
# Create a partial function with the device pre-applied
return_prediction_whisper_mic_with_device = partial(return_prediction_whisper_mic, device=device)
return_prediction_whisper_file_with_device = partial(return_prediction_whisper_file, device=device)
# Load the ASR models
whisper_classifier = foreign_class(source="Macedonian-ASR/buki-whisper-capitalised-2.0", pymodule_file="custom_interface_app.py", classname="ASR")
whisper_classifier = whisper_classifier.to(device)
whisper_classifier.eval()
# Load the T5 tokenizer and model for restoring capitalization
recap_model_name = "Macedonian-ASR/mt5-restore-capitalization-macedonian"
recap_tokenizer = T5Tokenizer.from_pretrained(recap_model_name)
recap_model = T5ForConditionalGeneration.from_pretrained(recap_model_name, torch_dtype=torch.float16)
recap_model.to(device)
recap_model.eval()
with gr.Blocks() as mic_transcribe_whisper:
def clear_outputs():
return None, "", None
with gr.Row():
audio_input = gr.Audio(sources="microphone", type="filepath", label="Record Audio")
with gr.Row():
transcribe_button = gr.Button("Transcribe")
clear_button = gr.Button("Clear")
with gr.Row():
output_text = gr.Textbox(label="Transcription")
with gr.Row():
download_file = gr.File(label="Зачувај го транскриптот", file_count="single", height=50)
transcribe_button.click(
fn=return_prediction_whisper_mic_with_device,
inputs=[audio_input],
outputs=[output_text, download_file],
)
clear_button.click(
fn=clear_outputs,
inputs=[],
outputs=[audio_input, output_text, download_file],
)
with gr.Blocks() as file_transcribe_whisper:
def clear_outputs():
return {audio_input: None, output_text: "", download_file: None}
with gr.Row():
audio_input = gr.Audio(sources="upload", type="filepath", label="Upload Audio")
with gr.Row():
transcribe_button = gr.Button("Transcribe")
clear_button = gr.Button("Clear")
with gr.Row():
output_text = gr.Textbox(label="Transcription")
with gr.Row():
download_file = gr.File(label="Зачувај го транскриптот", file_count="single", height=50)
transcribe_button.click(
fn=return_prediction_whisper_file_with_device,
inputs=[audio_input],
outputs=[output_text, download_file],
)
clear_button.click(
fn=clear_outputs,
inputs=[],
outputs=[audio_input, output_text, download_file],
)
project_description = '''
<img src="https://i.ibb.co/hYhkkhg/Buki-logo-1.jpg"
alt="Bookie logo"
style="float: right; width: 150px; height: 150px; margin-left: 10px;" />
## Автори:
1. **Дејан Порјазовски**
2. **Илина Јакимовска**
3. **Ордан Чукалиев**
4. **Никола Стиков**
Оваа колаборација е дел од активностите на **Центарот за напредни интердисциплинарни истражувања ([ЦеНИИс](https://ukim.edu.mk/en/centri/centar-za-napredni-interdisciplinarni-istrazhuvanja-ceniis))** при УКИМ.
'''
# Custom CSS
css = """
.gradio-container {
background-color: #f0f0f0; /* Set your desired background color */
}
.custom-markdown p, .custom-markdown li, .custom-markdown h2, .custom-markdown a, .custom-markdown strong {
font-size: 15px !important;
font-family: Arial, sans-serif !important;
color: black !important;
}
button {
color: orange !important;
}
.gradio-container {
background-color: #f3f3f3 !important;
}
"""
transcriber_app = gr.Blocks(css=css, delete_cache=(60, 120))
with transcriber_app:
state = gr.State()
gr.Markdown(project_description, elem_classes="custom-markdown")
gr.TabbedInterface(
[mic_transcribe_whisper, file_transcribe_whisper],
[" Буки-Whisper транскрипција од микрофон", "Буки-Whisper транскрипција од фајл"],
)
state = gr.State(value=[], delete_callback=lambda v: print("STATE DELETED"))
transcriber_app.unload(return_prediction_whisper_mic)
transcriber_app.unload(return_prediction_whisper_file)
# transcriber_app.launch(debug=True, share=True, ssl_verify=False)
if __name__ == "__main__":
transcriber_app.queue()
transcriber_app.launch(share=True) |