Priyanka-Kumavat-At-TE
commited on
Commit
•
daa097c
1
Parent(s):
2859161
Update app.py
Browse files
app.py
CHANGED
@@ -79,3 +79,14 @@ if st.button("Click to Predict"):
|
|
79 |
# Display prediction result and VoL value
|
80 |
st.write("**Prediction:**", "The image is not blurry." if prediction == 1 else "The image is blurry.")
|
81 |
st.write("**Variance of Laplacian Score:**", vol)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
# Display prediction result and VoL value
|
80 |
st.write("**Prediction:**", "The image is not blurry." if prediction == 1 else "The image is blurry.")
|
81 |
st.write("**Variance of Laplacian Score:**", vol)
|
82 |
+
|
83 |
+
st.write("""
|
84 |
+
For the detailed Description of the Model, Project and Technologies used, please go through our Documentation.
|
85 |
+
""")
|
86 |
+
|
87 |
+
url = 'https://huggingface.co/spaces/ThirdEyeData/Image-Blur-Prediction/blob/main/Documentation.md'
|
88 |
+
|
89 |
+
st.markdown(f'''
|
90 |
+
<a href={url}><button style="background-color: #5c5a5a;">Click to Read Model's Documentation</button></a>
|
91 |
+
''',
|
92 |
+
unsafe_allow_html=True)
|