Spaces:
Sleeping
Sleeping
devjas1
commited on
Commit
Β·
b028c2c
1
Parent(s):
6a5e21b
(UI): UI/UX enhancements (status banner w/ version + roadmap messages)
Browse files- Sidebar overhaul beginning (model attribution - formal citation for Figure2CNN model)
app.py
CHANGED
|
@@ -319,6 +319,12 @@ def main():
|
|
| 319 |
# Header
|
| 320 |
st.title("π¬ AI-Driven Polymer Classification")
|
| 321 |
st.markdown("**Predict polymer degradation states using Raman spectroscopy and deep learning**")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 322 |
|
| 323 |
# Sidebar
|
| 324 |
with st.sidebar:
|
|
@@ -337,6 +343,15 @@ def main():
|
|
| 337 |
- **Author**: Jaser Hasan
|
| 338 |
|
| 339 |
π [GitHub Repository](https://github.com/KLab-AI3/ml-polymer-recycling)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 340 |
""")
|
| 341 |
|
| 342 |
st.markdown("---")
|
|
|
|
| 319 |
# Header
|
| 320 |
st.title("π¬ AI-Driven Polymer Classification")
|
| 321 |
st.markdown("**Predict polymer degradation states using Raman spectroscopy and deep learning**")
|
| 322 |
+
st.info(
|
| 323 |
+
"β οΈ **Prototype Notice:** v0.1 Raman-only. "
|
| 324 |
+
"Multi-model CNN evaluation in progress. "
|
| 325 |
+
"FTIR support planned.",
|
| 326 |
+
icon="β‘"
|
| 327 |
+
)
|
| 328 |
|
| 329 |
# Sidebar
|
| 330 |
with st.sidebar:
|
|
|
|
| 343 |
- **Author**: Jaser Hasan
|
| 344 |
|
| 345 |
π [GitHub Repository](https://github.com/KLab-AI3/ml-polymer-recycling)
|
| 346 |
+
|
| 347 |
+
π **Model Credit**: Baseline model inspired by *Figure 2 CNN* from:
|
| 348 |
+
|
| 349 |
+
> Neo, E.R.K., Low, J.S.C., Goodship, V., Debattista, K. (2023).
|
| 350 |
+
> *Deep learning for chemometric analysis of plastic spectral data from infrared and Raman databases*.
|
| 351 |
+
> *Resources, Conservation & Recycling*, **188**, 106718.
|
| 352 |
+
|
| 353 |
+
[https://doi.org/10.1016/j.resconrec.2022.106718](https://doi.org/10.1016/j.resconrec.2022.106718)
|
| 354 |
+
|
| 355 |
""")
|
| 356 |
|
| 357 |
st.markdown("---")
|