Spaces:
Running
Running
media2
Browse files
utils.py
CHANGED
@@ -17,6 +17,7 @@ from interfaces.cap import build_huggingface_path as hf_cap_path
|
|
17 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
18 |
from interfaces.cap_minor_media import build_huggingface_path as hf_cap_minor_media_path
|
19 |
from interfaces.cap_media_demo import build_huggingface_path as hf_cap_media_path # why... just follow the name template the next time pls
|
|
|
20 |
from interfaces.manifesto import build_huggingface_path as hf_manifesto_path
|
21 |
from interfaces.sentiment import build_huggingface_path as hf_sentiment_path
|
22 |
from interfaces.emotion import build_huggingface_path as hf_emotion_path
|
@@ -43,6 +44,9 @@ for language in languages_cap:
|
|
43 |
# cap media
|
44 |
models.append(hf_cap_media_path("", ""))
|
45 |
|
|
|
|
|
|
|
46 |
# cap minor media
|
47 |
models.append(hf_cap_minor_media_path("", "", False))
|
48 |
|
|
|
17 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
18 |
from interfaces.cap_minor_media import build_huggingface_path as hf_cap_minor_media_path
|
19 |
from interfaces.cap_media_demo import build_huggingface_path as hf_cap_media_path # why... just follow the name template the next time pls
|
20 |
+
from interfaces.cap_media2 import build_huggingface_path as hf_cap_media2_path
|
21 |
from interfaces.manifesto import build_huggingface_path as hf_manifesto_path
|
22 |
from interfaces.sentiment import build_huggingface_path as hf_sentiment_path
|
23 |
from interfaces.emotion import build_huggingface_path as hf_emotion_path
|
|
|
44 |
# cap media
|
45 |
models.append(hf_cap_media_path("", ""))
|
46 |
|
47 |
+
# cap media2
|
48 |
+
models.append(hf_cap_media2_path("", ""))
|
49 |
+
|
50 |
# cap minor media
|
51 |
models.append(hf_cap_minor_media_path("", "", False))
|
52 |
|