Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def process_text(text1,text2,text3,text4):
|
|
12 |
score = util.cos_sim(embeddings,embeddings).numpy()
|
13 |
return {text2 : score[0][1].item(),text3 : score[0][2].item(),text4 : score[0][3].item()}
|
14 |
|
15 |
-
demo = gr.Blocks(title="
|
16 |
def complete_with_gpt(text1,text2,text3):
|
17 |
return text1+text2+text3
|
18 |
|
|
|
12 |
score = util.cos_sim(embeddings,embeddings).numpy()
|
13 |
return {text2 : score[0][1].item(),text3 : score[0][2].item(),text4 : score[0][3].item()}
|
14 |
|
15 |
+
demo = gr.Blocks(title="Uso de AI para la comparación de frases y palabras.")
|
16 |
def complete_with_gpt(text1,text2,text3):
|
17 |
return text1+text2+text3
|
18 |
|