elshehawy commited on
Commit
2855b18
·
1 Parent(s): 8ad7bc6

add our trained model

Browse files
Files changed (1) hide show
  1. app.py +21 -5
app.py CHANGED
@@ -2,6 +2,18 @@ import gradio as gr
2
  from openai import OpenAI
3
  import os
4
 
 
 
 
 
 
 
 
 
 
 
 
 
5
 
6
  llm_model = 'gpt-3.5-turbo-0125'
7
  # openai.api_key = os.environ['OPENAI_API_KEY']
@@ -20,7 +32,7 @@ def get_completion(prompt, model=llm_model):
20
  )
21
  return response.choices[0].message.content
22
 
23
- def find_orgs(sentence):
24
  prompt = f"""
25
  Find all organizations in the text delimited by triple backticks.
26
 
@@ -30,13 +42,17 @@ def find_orgs(sentence):
30
  ```
31
  You should always start your answer with "Organizations are: "
32
  """
33
- return get_completion(prompt)
 
 
 
 
34
 
35
  example = """
36
  My latest exclusive for The Hill : Conservative frustration over Republican efforts to force a House vote on reauthorizing the Export - Import Bank boiled over Wednesday during a contentious GOP meeting.
37
  """
38
-
39
  textbox = gr.Textbox(label="Enter your text", placeholder="", lines=4)
40
 
41
- iface = gr.Interface(fn=find_orgs, inputs=textbox, outputs="text", examples=[[example]])
42
- iface.launch(share=True)
 
2
  from openai import OpenAI
3
  import os
4
 
5
+ from transformers import pipeline
6
+ # from dotenv import load_dotenv, find_dotenv
7
+ import huggingface_hub
8
+
9
+
10
+
11
+ # _ = load_dotenv(find_dotenv()) # read local .env file
12
+ hf_token= os.environ['HF_TOKEN']
13
+ huggingface_hub.login(hf_token)
14
+
15
+ pipe = pipeline("token-classification", model="elshehawy/finer-ord-transformers", use_auth_token=True)
16
+
17
 
18
  llm_model = 'gpt-3.5-turbo-0125'
19
  # openai.api_key = os.environ['OPENAI_API_KEY']
 
32
  )
33
  return response.choices[0].message.content
34
 
35
+ def find_orgs(sentence, choice):
36
  prompt = f"""
37
  Find all organizations in the text delimited by triple backticks.
38
 
 
42
  ```
43
  You should always start your answer with "Organizations are: "
44
  """
45
+ if choice='GPT':
46
+ return get_completion(prompt)
47
+ else:
48
+ return pipe(sentence)
49
+
50
 
51
  example = """
52
  My latest exclusive for The Hill : Conservative frustration over Republican efforts to force a House vote on reauthorizing the Export - Import Bank boiled over Wednesday during a contentious GOP meeting.
53
  """
54
+ radio_btn = gr.Radio(choices=['GPT', 'iSemantics'], value='iSemantics')
55
  textbox = gr.Textbox(label="Enter your text", placeholder="", lines=4)
56
 
57
+ iface = gr.Interface(fn=find_orgs, inputs=[textbox, radio_btn], outputs="text", examples=[[example]])
58
+ iface.launch(share=True)