Spaces:
Sleeping
Sleeping
dcavadia commited on
Commit Β·
97b4e53
1
Parent(s): 7284f7b
update footer
Browse files- src/ui/styles.py +8 -5
src/ui/styles.py
CHANGED
|
@@ -57,8 +57,7 @@ def get_header_html() -> str:
|
|
| 57 |
<strong>π F1-Score:</strong> 0.9608 β’
|
| 58 |
<strong>π― Precision:</strong> 86.67% β’
|
| 59 |
<strong>π Recall:</strong> 96.03% β’
|
| 60 |
-
<strong>πΎ Model Size:</strong> 24.1M parameters
|
| 61 |
-
<strong>π Specificity:</strong> 1.0
|
| 62 |
</p>
|
| 63 |
|
| 64 |
<p style="color: #374151; margin: 12px 0;">
|
|
@@ -74,7 +73,9 @@ def get_footer_html() -> str:
|
|
| 74 |
"""Get HTML for application footer."""
|
| 75 |
from ..config.settings import AppConfig
|
| 76 |
|
| 77 |
-
return f"""
|
|
|
|
|
|
|
| 78 |
|
| 79 |
## π Academic Research Project
|
| 80 |
|
|
@@ -85,11 +86,13 @@ def get_footer_html() -> str:
|
|
| 85 |
**Technical Stack:** NFNet-L0 (24.1M params) β’ Weight Standardization β’ Adam Optimizer
|
| 86 |
**Dataset:** ISIC + Clinical Images (22,618 total)
|
| 87 |
|
| 88 |
-
**Performance:** 96.17% Accuracy β’ F1-Score 0.9608 β’ Precision 86.67% β’ Recall 96.03%
|
| 89 |
|
| 90 |
---
|
| 91 |
|
| 92 |
-
*Model v{AppConfig.VERSION} β’ Updated {AppConfig.LAST_UPDATE} β’ Research by Daniel Cavadia β’ TEG UCV 2025*
|
|
|
|
|
|
|
| 93 |
|
| 94 |
def get_model_info_html() -> str:
|
| 95 |
"""Get HTML for model information."""
|
|
|
|
| 57 |
<strong>π F1-Score:</strong> 0.9608 β’
|
| 58 |
<strong>π― Precision:</strong> 86.67% β’
|
| 59 |
<strong>π Recall:</strong> 96.03% β’
|
| 60 |
+
<strong>πΎ Model Size:</strong> 24.1M parameters
|
|
|
|
| 61 |
</p>
|
| 62 |
|
| 63 |
<p style="color: #374151; margin: 12px 0;">
|
|
|
|
| 73 |
"""Get HTML for application footer."""
|
| 74 |
from ..config.settings import AppConfig
|
| 75 |
|
| 76 |
+
return f"""<center>
|
| 77 |
+
|
| 78 |
+
---
|
| 79 |
|
| 80 |
## π Academic Research Project
|
| 81 |
|
|
|
|
| 86 |
**Technical Stack:** NFNet-L0 (24.1M params) β’ Weight Standardization β’ Adam Optimizer
|
| 87 |
**Dataset:** ISIC + Clinical Images (22,618 total)
|
| 88 |
|
| 89 |
+
**Performance:** 96.17% Accuracy β’ F1-Score 0.9608 β’ Precision 86.67% β’ Recall 96.03%
|
| 90 |
|
| 91 |
---
|
| 92 |
|
| 93 |
+
*Model v{AppConfig.VERSION} β’ Updated {AppConfig.LAST_UPDATE} β’ Research by Daniel Cavadia β’ TEG UCV 2025*
|
| 94 |
+
|
| 95 |
+
</center>"""
|
| 96 |
|
| 97 |
def get_model_info_html() -> str:
|
| 98 |
"""Get HTML for model information."""
|