Spaces:
Running
Running
kovacsvi
commited on
Commit
·
2926563
1
Parent(s):
04f8f8b
cap media model
Browse files
utils.py
CHANGED
@@ -13,6 +13,7 @@ from interfaces.illframes import domains as domains_illframes
|
|
13 |
|
14 |
from interfaces.cap import build_huggingface_path as hf_cap_path
|
15 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
|
|
16 |
from interfaces.manifesto import build_huggingface_path as hf_manifesto_path
|
17 |
from interfaces.sentiment import build_huggingface_path as hf_sentiment_path
|
18 |
from interfaces.emotion import build_huggingface_path as hf_emotion_path
|
@@ -32,6 +33,9 @@ for language in languages_cap:
|
|
32 |
for domain in domains_cap:
|
33 |
models.append(hf_cap_path(language, domain))
|
34 |
|
|
|
|
|
|
|
35 |
# emotion9
|
36 |
for language in languages_emotion9:
|
37 |
models.append(hf_emotion9_path(language))
|
|
|
13 |
|
14 |
from interfaces.cap import build_huggingface_path as hf_cap_path
|
15 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
16 |
+
from interfaces.cap_media import build_huggingface_path as hf_cap_media_path
|
17 |
from interfaces.manifesto import build_huggingface_path as hf_manifesto_path
|
18 |
from interfaces.sentiment import build_huggingface_path as hf_sentiment_path
|
19 |
from interfaces.emotion import build_huggingface_path as hf_emotion_path
|
|
|
33 |
for domain in domains_cap:
|
34 |
models.append(hf_cap_path(language, domain))
|
35 |
|
36 |
+
# cap media
|
37 |
+
models.append(hf_cap_media_path("", ""))
|
38 |
+
|
39 |
# emotion9
|
40 |
for language in languages_emotion9:
|
41 |
models.append(hf_emotion9_path(language))
|