Spaces:
Runtime error
Runtime error
ivanokhotnikov
commited on
Commit
·
78c23cd
1
Parent(s):
69d6ea1
Update app.py
Browse files
app.py
CHANGED
@@ -1,40 +1,19 @@
|
|
1 |
import json
|
2 |
-
import os
|
3 |
import urllib
|
4 |
|
5 |
-
import requests
|
6 |
import streamlit as st
|
7 |
-
from dotenv import load_dotenv
|
8 |
from transformers import pipeline
|
9 |
|
10 |
-
load_dotenv()
|
11 |
|
12 |
TEST_METRICS = 'https://huggingface.co/nbroad/longformer-base-health-fact/raw/main/test_results.json'
|
13 |
-
|
14 |
-
|
15 |
-
def query(payload):
|
16 |
-
API_URL = 'https://api-inference.huggingface.co/models/nbroad/longformer-base-health-fact'
|
17 |
-
headers = {'Authorization': f'Bearer {os.environ["API_TOKEN"]}'}
|
18 |
-
response = requests.post(API_URL, headers=headers, json=payload)
|
19 |
-
return response.json()
|
20 |
-
|
21 |
-
|
22 |
st.title('Veracity of a claim with pretrained longformer (PUBHEALTH)')
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
st.write(pl(claim))
|
34 |
-
elif api == 'HF Inference API':
|
35 |
-
st.header('Results')
|
36 |
-
st.write(query({'inputs': claim}))
|
37 |
-
st.header('Test metrics')
|
38 |
-
with urllib.request.urlopen(TEST_METRICS) as response:
|
39 |
-
metrics = json.load(response)
|
40 |
-
st.write(metrics)
|
|
|
1 |
import json
|
|
|
2 |
import urllib
|
3 |
|
|
|
4 |
import streamlit as st
|
|
|
5 |
from transformers import pipeline
|
6 |
|
|
|
7 |
|
8 |
TEST_METRICS = 'https://huggingface.co/nbroad/longformer-base-health-fact/raw/main/test_results.json'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
st.title('Veracity of a claim with pretrained longformer (PUBHEALTH)')
|
10 |
+
st.header('Claim')
|
11 |
+
claim = st.text_area(label='Enter a claim text in the box')
|
12 |
+
pl = pipeline('text-classification',
|
13 |
+
model='nbroad/longformer-base-health-fact')
|
14 |
+
st.header('Results')
|
15 |
+
st.write(pl(claim))
|
16 |
+
st.header('Test metrics')
|
17 |
+
with urllib.request.urlopen(TEST_METRICS) as response:
|
18 |
+
metrics = json.load(response)
|
19 |
+
st.write(metrics)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|