Merge branch 'main' of https://huggingface.co/threeidots/SpeakClear
Browse files- .streamlit/config.toml +5 -0
- app.py +1 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[theme]
|
| 2 |
+
base="light"
|
| 3 |
+
primaryColor="#98c991"
|
| 4 |
+
secondaryBackgroundColor="#aebaad"
|
| 5 |
+
textColor="#000000"
|
app.py
CHANGED
|
@@ -35,3 +35,4 @@ def classifyImage(image):
|
|
| 35 |
result = pipe(image)
|
| 36 |
return result[0]['label']
|
| 37 |
|
|
|
|
|
|
| 35 |
result = pipe(image)
|
| 36 |
return result[0]['label']
|
| 37 |
|
| 38 |
+
|