Spaces:
Runtime error
Runtime error
Alex Strick van Linschoten
commited on
Commit
•
2fcc857
1
Parent(s):
465bb20
fix naming
Browse files
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title: Redacted
|
3 |
-
emoji:
|
4 |
colorFrom: yellow
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
+
title: Redacted Image Classifier
|
3 |
+
emoji: 🩻
|
4 |
colorFrom: yellow
|
5 |
colorTo: pink
|
6 |
sdk: gradio
|
app.py
CHANGED
@@ -17,7 +17,7 @@ def predict(img):
|
|
17 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
18 |
|
19 |
|
20 |
-
title = "Redacted
|
21 |
|
22 |
description = "A classifier trained on publicly released redacted (and unredacted) FOIA documents, using [fastai](https://github.com/fastai/fastai)."
|
23 |
|
|
|
17 |
return {labels[i]: float(probs[i]) for i in range(len(labels))}
|
18 |
|
19 |
|
20 |
+
title = "Redacted Image Classifier"
|
21 |
|
22 |
description = "A classifier trained on publicly released redacted (and unredacted) FOIA documents, using [fastai](https://github.com/fastai/fastai)."
|
23 |
|