Spaces:
Runtime error
Runtime error
fix that
Browse files- tagger/__init__.py +3 -3
tagger/__init__.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
from .common import LabelData,
|
2 |
from .model import create_session, download_onnx
|
3 |
|
4 |
__all__ = [
|
|
|
5 |
"create_session",
|
6 |
"download_onnx",
|
7 |
-
"
|
8 |
-
"load_labels",
|
9 |
"preprocess_image",
|
10 |
]
|
|
|
1 |
+
from .common import LabelData, load_labels_hf, preprocess_image
|
2 |
from .model import create_session, download_onnx
|
3 |
|
4 |
__all__ = [
|
5 |
+
"LabelData",
|
6 |
"create_session",
|
7 |
"download_onnx",
|
8 |
+
"load_labels_hf",
|
|
|
9 |
"preprocess_image",
|
10 |
]
|