Spaces:
Runtime error
Runtime error
commit from
Browse files
app.py
CHANGED
@@ -89,6 +89,8 @@ else:
|
|
89 |
padding=True, truncation=True, return_tensors="pt"
|
90 |
)
|
91 |
)
|
|
|
|
|
92 |
st.markdown(f"{raw_predictions}")
|
93 |
results = get_top_predictions(raw_predictions[0][0].numpy())
|
94 |
st.markdown(f"{results}")
|
|
|
89 |
padding=True, truncation=True, return_tensors="pt"
|
90 |
)
|
91 |
)
|
92 |
+
dir_pred = dir(raw_predictions)
|
93 |
+
st.markdown(f"{dir_pred}")
|
94 |
st.markdown(f"{raw_predictions}")
|
95 |
results = get_top_predictions(raw_predictions[0][0].numpy())
|
96 |
st.markdown(f"{results}")
|