minor edits to displayed text
Browse files
app.py
CHANGED
@@ -107,7 +107,6 @@ class DigitClassifier(Viewer):
|
|
107 |
|
108 |
<div style="padding:0 2.5% 0 2.5%; text-align:left; font-size:{styles.FONTSIZES['sidebar_txt']}; width: 100%;">
|
109 |
<hr style="height:2px; background-color:rgb(200, 200, 200); border:none; margin-top:0">
|
110 |
-
|
111 |
<p style="margin:0">
|
112 |
This is a handwritten digit classifier that uses a <i>convolutional neural network (CNN)</i>
|
113 |
to make predictions. The architecture of the model is a scaled-down version of
|
@@ -132,6 +131,11 @@ class DigitClassifier(Viewer):
|
|
132 |
MNIST preprocessing</a>.
|
133 |
This input image represents what the model receives prior to feature extraction and classification.
|
134 |
</p>
|
|
|
|
|
|
|
|
|
|
|
135 |
</div>
|
136 |
''',
|
137 |
styles = {'margin':' 0rem', 'color': styles.CLRS['sidebar_txt'],
|
|
|
107 |
|
108 |
<div style="padding:0 2.5% 0 2.5%; text-align:left; font-size:{styles.FONTSIZES['sidebar_txt']}; width: 100%;">
|
109 |
<hr style="height:2px; background-color:rgb(200, 200, 200); border:none; margin-top:0">
|
|
|
110 |
<p style="margin:0">
|
111 |
This is a handwritten digit classifier that uses a <i>convolutional neural network (CNN)</i>
|
112 |
to make predictions. The architecture of the model is a scaled-down version of
|
|
|
131 |
MNIST preprocessing</a>.
|
132 |
This input image represents what the model receives prior to feature extraction and classification.
|
133 |
</p>
|
134 |
+
</br>
|
135 |
+
<p style="margin:0">
|
136 |
+
<b>Note:</b> Due to resource limitations on HF Spaces (CPU basic), performance may vary.
|
137 |
+
For optimal experience, it's recommended to run the app locally.
|
138 |
+
</p>
|
139 |
</div>
|
140 |
''',
|
141 |
styles = {'margin':' 0rem', 'color': styles.CLRS['sidebar_txt'],
|