Spaces:
Runtime error
Runtime error
Commit
·
9e8be11
1
Parent(s):
4c61fcd
Update app.py
Browse files
app.py
CHANGED
@@ -39,16 +39,27 @@ model = LLaMAForCausalLM.from_pretrained(
|
|
39 |
########## LOADING PRE-COMPUTED EMBEDDINGS ##########
|
40 |
class_embeddings = pd.read_csv('Embeddings/MainClassEmbeddings.csv')
|
41 |
|
|
|
42 |
abstract = """
|
43 |
#Described herein are strength characteristics and biodegradation of articles produced using one or more “green” sustainable polymers and one or more carbohydrate-based polymers. A compatibilizer can optionally be included in the article. In some cases, the article can include a film, a bag, a bottle, a cap or lid therefore, a sheet, a box or other container, a plate, a cup, utensils, or the like.
|
44 |
"""
|
45 |
-
|
46 |
abstract= classification.clean_data(abstract, type='String')
|
47 |
abstract_embedding = classification.sentence_embedder(abstract, 'Model_bert')
|
48 |
Number = 10
|
49 |
broad_scope_predictions = classification.broad_scope_class_predictor(class_embeddings, abstract_embedding, Number, Sensitivity='High')
|
50 |
|
51 |
print(broad_scope_class_predictor)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
def generateresponse(history):
|
54 |
"""
|
@@ -98,6 +109,7 @@ def generateresponse(history):
|
|
98 |
print(history)
|
99 |
return history
|
100 |
|
|
|
101 |
theme = gr.themes.Base(
|
102 |
primary_hue="indigo",
|
103 |
).set(
|
@@ -183,9 +195,11 @@ with gr.Blocks(title='Claimed', theme=theme) as demo:
|
|
183 |
|
184 |
""")
|
185 |
with gr.Row(scale=1, min_width=600):
|
186 |
-
|
187 |
placeholder='Type in your Claim/Description/Abstract Here')
|
188 |
-
|
|
|
|
|
189 |
|
190 |
|
191 |
gr.Markdown("""
|
|
|
39 |
########## LOADING PRE-COMPUTED EMBEDDINGS ##########
|
40 |
class_embeddings = pd.read_csv('Embeddings/MainClassEmbeddings.csv')
|
41 |
|
42 |
+
"""
|
43 |
abstract = """
|
44 |
#Described herein are strength characteristics and biodegradation of articles produced using one or more “green” sustainable polymers and one or more carbohydrate-based polymers. A compatibilizer can optionally be included in the article. In some cases, the article can include a film, a bag, a bottle, a cap or lid therefore, a sheet, a box or other container, a plate, a cup, utensils, or the like.
|
45 |
"""
|
|
|
46 |
abstract= classification.clean_data(abstract, type='String')
|
47 |
abstract_embedding = classification.sentence_embedder(abstract, 'Model_bert')
|
48 |
Number = 10
|
49 |
broad_scope_predictions = classification.broad_scope_class_predictor(class_embeddings, abstract_embedding, Number, Sensitivity='High')
|
50 |
|
51 |
print(broad_scope_class_predictor)
|
52 |
+
"""
|
53 |
+
|
54 |
+
def classifier(userin):
|
55 |
+
clean_in = classification.clean_data(userin, type='String')
|
56 |
+
in_emb = classification.sentence_embedder(clean_in, 'Model_bert')
|
57 |
+
|
58 |
+
Number = 10
|
59 |
+
broad_scope_predictions = classification.broad_scope_class_predictor(class_embeddings, abstract_embedding, Number, Sensitivity='High')
|
60 |
+
|
61 |
+
return broad_scope_predictions
|
62 |
+
|
63 |
|
64 |
def generateresponse(history):
|
65 |
"""
|
|
|
109 |
print(history)
|
110 |
return history
|
111 |
|
112 |
+
|
113 |
theme = gr.themes.Base(
|
114 |
primary_hue="indigo",
|
115 |
).set(
|
|
|
195 |
|
196 |
""")
|
197 |
with gr.Row(scale=1, min_width=600):
|
198 |
+
userin = gr.Textbox(label="Input",
|
199 |
placeholder='Type in your Claim/Description/Abstract Here')
|
200 |
+
output = gr.Textbox(label="Output")
|
201 |
+
classify_btn = gr.Button("Classify")
|
202 |
+
classify_btn.click(fn=classifier, inputs=userin, outputs=output)
|
203 |
|
204 |
|
205 |
gr.Markdown("""
|