File size: 216 Bytes
b897eec
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
def transcribe(audio):
    text = trans(audio)["text"]
    return text

def clasificacion(text):
    return clasificador(text)[0]["label"]


def clasifica_imagen(img):
    class_img = imagen(img)
    return class_img