Spaces:
Runtime error
Runtime error
gautam-shetty
commited on
Commit
•
7f4b8b7
1
Parent(s):
c1f1320
Update app.py
Browse files
app.py
CHANGED
@@ -38,6 +38,6 @@ if st.button('Check'):
|
|
38 |
if(codeSnippet!=""):
|
39 |
st.text("")
|
40 |
result, t, l = Predict().predict(codeSnippet)
|
41 |
-
st.write("Threshold - "+ t)
|
42 |
-
st.write("Calculated Loss - "+ l)
|
43 |
st.write(result)
|
|
|
38 |
if(codeSnippet!=""):
|
39 |
st.text("")
|
40 |
result, t, l = Predict().predict(codeSnippet)
|
41 |
+
st.write("Threshold - "+ str(t))
|
42 |
+
st.write("Calculated Loss - "+ str(l))
|
43 |
st.write(result)
|