File size: 1,072 Bytes
06aae6f
ae53f18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
06aae6f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ae53f18
 
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
import gradio as gr

from transformers import pipeline

sentiment = pipeline("sentiment-analysis")

def get_sentiment(input_text):
  return sentiment(input_text)

iface = gr.Interface(fn = get_sentiment, 
                     inputs = "text", 
                     outputs = ['text'],
                     title = 'Sentiment Analysis', 
                     description="Get Sentiment Negative/Positive for the given input")
                     
iface.launch(inline = False)
"""
import gradio as gr
from sentence_transformers import SentenceTransformer

model_Q = SentenceTransformer('flax-sentence-embeddings/multi-QA_v1-mpnet-asymmetric-Q')

def getVectors(sentences):
            vectors = []
            splitSentences = sentences.split('/*/')
            for sentence in sentences:
                        vectors.append(model_Q.encode(sentence))
            return vectors
            
interface = gr.Interface(fn = getVectors,
inputs = "text",
outputs = ['text'],
title = 'get vectors',
description = 'get vectors for search')

interface.launch(inline = False)
"""