Spaces:
Running
Running
kovacsvi
commited on
Commit
·
3149885
1
Parent(s):
8b00e14
cap_media_demo -> cap_media
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ from interfaces.ner import download_models as download_spacy_models
|
|
12 |
from interfaces.illframes import demo as illframes_demo
|
13 |
from interfaces.ontolisst import demo as ontolisst_demo
|
14 |
from interfaces.emotion9 import demo as e9_demo
|
15 |
-
from interfaces.
|
16 |
from interfaces.cap_media2 import demo as cap_media2_demo
|
17 |
from interfaces.cap_minor_media import demo as cap_minor_media_demo
|
18 |
from utils import download_hf_models, hf_cleanup, df_h, set_hf_cache_dir, scan_cache, set_torch_threads
|
|
|
12 |
from interfaces.illframes import demo as illframes_demo
|
13 |
from interfaces.ontolisst import demo as ontolisst_demo
|
14 |
from interfaces.emotion9 import demo as e9_demo
|
15 |
+
from interfaces.cap_media import demo as cap_media_demo
|
16 |
from interfaces.cap_media2 import demo as cap_media2_demo
|
17 |
from interfaces.cap_minor_media import demo as cap_minor_media_demo
|
18 |
from utils import download_hf_models, hf_cleanup, df_h, set_hf_cache_dir, scan_cache, set_torch_threads
|
utils.py
CHANGED
@@ -18,7 +18,7 @@ from interfaces.illframes import domains as domains_illframes
|
|
18 |
from interfaces.cap import build_huggingface_path as hf_cap_path
|
19 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
20 |
from interfaces.cap_minor_media import build_huggingface_path as hf_cap_minor_media_path
|
21 |
-
from interfaces.
|
22 |
build_huggingface_path as hf_cap_media_path,
|
23 |
) # why... just follow the name template the next time pls
|
24 |
from interfaces.cap_media2 import build_huggingface_path as hf_cap_media2_path
|
|
|
18 |
from interfaces.cap import build_huggingface_path as hf_cap_path
|
19 |
from interfaces.cap_minor import build_huggingface_path as hf_cap_minor_path
|
20 |
from interfaces.cap_minor_media import build_huggingface_path as hf_cap_minor_media_path
|
21 |
+
from interfaces.cap_media import (
|
22 |
build_huggingface_path as hf_cap_media_path,
|
23 |
) # why... just follow the name template the next time pls
|
24 |
from interfaces.cap_media2 import build_huggingface_path as hf_cap_media2_path
|