Spaces:
Runtime error
Runtime error
Poe Dator
commited on
Commit
·
ec34e2f
1
Parent(s):
b339b00
upd code
Browse files
app.py
CHANGED
@@ -9,8 +9,7 @@ st.markdown("### Privet, mir!")
|
|
9 |
st.markdown("<img width=200px src='https://i.pinimg.com/736x/11/33/19/113319f0ffe91f4bb0f468914b9916da.jpg'>", unsafe_allow_html=True)
|
10 |
|
11 |
text = st.text_area("ENTER TEXT HERE")
|
12 |
-
|
13 |
-
st.markdown(f"{t2}")
|
14 |
|
15 |
# dict for decoding / enclding labels
|
16 |
labels = {'cs.NE': 0, 'cs.CL': 1, 'cs.AI': 2, 'stat.ML': 3, 'cs.CV': 4, 'cs.LG': 5}
|
@@ -37,8 +36,10 @@ class BertClassifier(nn.Module):
|
|
37 |
return final_layer
|
38 |
|
39 |
model = BertClassifier(n_classes=len(labels))
|
40 |
-
|
|
|
41 |
model.eval()
|
|
|
42 |
|
43 |
def inference(txt, mode=None):
|
44 |
# infers classes for text topic based on the trained model from above
|
@@ -70,5 +71,6 @@ def inference(txt, mode=None):
|
|
70 |
else:
|
71 |
return res
|
72 |
|
73 |
-
res = inference(text, mode=None)
|
|
|
74 |
st.markdown(f"{res}")
|
|
|
9 |
st.markdown("<img width=200px src='https://i.pinimg.com/736x/11/33/19/113319f0ffe91f4bb0f468914b9916da.jpg'>", unsafe_allow_html=True)
|
10 |
|
11 |
text = st.text_area("ENTER TEXT HERE")
|
12 |
+
st.markdown("INFERENCE STARTS ...")
|
|
|
13 |
|
14 |
# dict for decoding / enclding labels
|
15 |
labels = {'cs.NE': 0, 'cs.CL': 1, 'cs.AI': 2, 'stat.ML': 3, 'cs.CV': 4, 'cs.LG': 5}
|
|
|
36 |
return final_layer
|
37 |
|
38 |
model = BertClassifier(n_classes=len(labels))
|
39 |
+
st.markdown("Model created")
|
40 |
+
model.load_state_dict(torch.load('model_weights_1.pt', map_location=torch.device('cpu')))
|
41 |
model.eval()
|
42 |
+
st.markdown("Model weights loaded")
|
43 |
|
44 |
def inference(txt, mode=None):
|
45 |
# infers classes for text topic based on the trained model from above
|
|
|
71 |
else:
|
72 |
return res
|
73 |
|
74 |
+
res = inference(text, mode=None)
|
75 |
+
st.markdown("INFERENCE RESULT:")
|
76 |
st.markdown(f"{res}")
|