grofte commited on
Commit
c96e4bb
·
1 Parent(s): 22dc9a5

Labels as Dataframe maybe?

Browse files
Files changed (2) hide show
  1. README.md +3 -1
  2. app.py +4 -3
README.md CHANGED
@@ -6,8 +6,10 @@ colorTo: blue
6
  sdk: gradio
7
  sdk_version: 3.9.1
8
  app_file: app.py
9
- pinned: false
10
  license: mit
 
 
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
6
  sdk: gradio
7
  sdk_version: 3.9.1
8
  app_file: app.py
9
+ pinned: true
10
  license: mit
11
+ models:
12
+ - https://huggingface.co/sentence-transformers/LaBSE
13
  ---
14
 
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -29,7 +29,7 @@ def zero_shot(doc, candidates):
29
  distances = scipy.spatial.distance.cdist([query_embedding], candidate_embeddings, "cosine")[0]
30
  results = zip(given_labels, distances)
31
  results = sorted(results, key=lambda x: x[1], reverse=True)
32
- return dict(results)
33
 
34
  #create input and output objects
35
  #input object1
@@ -37,10 +37,11 @@ input1 = gr.Textbox(label="Text")
37
  #input object 2
38
  input2 = gr.Textbox(label="Labels")
39
  #output object
40
- output = gr.Label(label="Output")
 
41
  #example object
42
  examples = [
43
- ["Poisson", "Jam, Milk, Fish, Eggs, Poison"],
44
  ["TDC A/S provides communications and entertainment solutions in Denmark. It operates through Nuuday and TDC NET segments. The company designs, builds, and operates broadband and mobile networks; and provides technical support to customers and networks. It offers services, such as landline voice, TV and streaming, broadband, Internet and network, mobility, and other services. The company provides its products and services under the YouSee, Hiper, Telmore, Blockbuster, TDC Business, TDC Erhverv, Fullrate, NetDesign, and Relatel brands. It serves consumer and business customers. The company was founded in 1882 and is based in Copenhagen, Denmark. TDC A/S is a subsidiary of DK Telekommunikation ApS.", "Diversified Telecommunication Services, Wireless Telecommunication Services, Media, Entertainment, Interactive Media and Services"],
45
  ["Giddy Inc., doing business as Boxed Wholesale, offers online wholesale and retailing services. The company provides cleaning and laundry, kitchen, paper, skin care, hair care, and grocery products. Additionally, it offers diapers and organic products. Giddy Inc. was founded in 2013 and is based in Edison, New Jersey.", "Food and Staples Retailing, Beverages, Food Products, Household Products, Personal Products, Tobacco"],
46
  ["United Iron And Steel Manufacturing Company (P.L.C.) produces and sells iron and steel products in Jordan. It is also involved in trading scrap iron. The company was incorporated in 1992 and is headquartered in Amman, Jordan. United Iron And Steel Manufacturing Company (P.L.C.) is a subsidiary of Manaseer Group Corporation.", "Chemicals, Construction Materials, Containers and Packaging, Metals and Mining, Paper and Forest Products"]
 
29
  distances = scipy.spatial.distance.cdist([query_embedding], candidate_embeddings, "cosine")[0]
30
  results = zip(given_labels, distances)
31
  results = sorted(results, key=lambda x: x[1], reverse=True)
32
+ return results
33
 
34
  #create input and output objects
35
  #input object1
 
37
  #input object 2
38
  input2 = gr.Textbox(label="Labels")
39
  #output object
40
+ # output = gr.Label(label="Output")
41
+ output = gr.Dataframe(type='array', headers=['Label', 'Distance'], label="Output")
42
  #example object
43
  examples = [
44
+ ["poisson", "jam, milk, fish, eggs, poison"],
45
  ["TDC A/S provides communications and entertainment solutions in Denmark. It operates through Nuuday and TDC NET segments. The company designs, builds, and operates broadband and mobile networks; and provides technical support to customers and networks. It offers services, such as landline voice, TV and streaming, broadband, Internet and network, mobility, and other services. The company provides its products and services under the YouSee, Hiper, Telmore, Blockbuster, TDC Business, TDC Erhverv, Fullrate, NetDesign, and Relatel brands. It serves consumer and business customers. The company was founded in 1882 and is based in Copenhagen, Denmark. TDC A/S is a subsidiary of DK Telekommunikation ApS.", "Diversified Telecommunication Services, Wireless Telecommunication Services, Media, Entertainment, Interactive Media and Services"],
46
  ["Giddy Inc., doing business as Boxed Wholesale, offers online wholesale and retailing services. The company provides cleaning and laundry, kitchen, paper, skin care, hair care, and grocery products. Additionally, it offers diapers and organic products. Giddy Inc. was founded in 2013 and is based in Edison, New Jersey.", "Food and Staples Retailing, Beverages, Food Products, Household Products, Personal Products, Tobacco"],
47
  ["United Iron And Steel Manufacturing Company (P.L.C.) produces and sells iron and steel products in Jordan. It is also involved in trading scrap iron. The company was incorporated in 1992 and is headquartered in Amman, Jordan. United Iron And Steel Manufacturing Company (P.L.C.) is a subsidiary of Manaseer Group Corporation.", "Chemicals, Construction Materials, Containers and Packaging, Metals and Mining, Paper and Forest Products"]