0xalfroz commited on
Commit
a0d3427
·
verified ·
1 Parent(s): 87c5008

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -11
app.py CHANGED
@@ -8,26 +8,21 @@ model = AutoModel.from_pretrained(model_name)
8
  tokenizer = AutoTokenizer.from_pretrained(model_name)
9
 
10
  def text_to_vector(texts):
11
- # Tokenize the input array of sentences
12
  inputs = tokenizer(texts, return_tensors="pt", padding=True, truncation=True)
13
  outputs = model(**inputs)
14
  vectors = outputs.pooler_output.detach().numpy()
15
 
16
- # Convert each vector to a string representation and create an object
17
- result = [
18
- {"sentence": sentence, "vector": ", ".join(map(str, vector))}
19
- for sentence, vector in zip(texts, vectors)
20
- ]
21
-
22
- return result
23
 
24
  demo = gr.Interface(
25
  fn=text_to_vector,
26
  inputs=gr.Textbox(label="Enter JSON array", placeholder="Enter an array of sentences as a JSON string"),
27
- outputs=gr.JSON(label="Sentence and Vector Pairs"),
28
  title="Batch Text to Vector",
29
- description="This demo converts an array of sentences to vectors and returns objects with sentence and vector."
30
  )
31
 
32
  demo.launch()
33
-
 
8
  tokenizer = AutoTokenizer.from_pretrained(model_name)
9
 
10
  def text_to_vector(texts):
11
+ # Expect texts to be an array of sentences
12
  inputs = tokenizer(texts, return_tensors="pt", padding=True, truncation=True)
13
  outputs = model(**inputs)
14
  vectors = outputs.pooler_output.detach().numpy()
15
 
16
+ # Convert each vector to a string representation
17
+ vector_strings = [", ".join(map(str, vector)) for vector in vectors]
18
+ return vector_strings
 
 
 
 
19
 
20
  demo = gr.Interface(
21
  fn=text_to_vector,
22
  inputs=gr.Textbox(label="Enter JSON array", placeholder="Enter an array of sentences as a JSON string"),
23
+ outputs=gr.Textbox(label="Text Vectors", lines=10),
24
  title="Batch Text to Vector",
25
+ description="This demo converts an array of sentences to vectors."
26
  )
27
 
28
  demo.launch()