You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 22, 2025. It is now read-only.
I stumbled upon the bug below. I tried to fix it, but the code for download/unzip was not transparent to me (needs refactoring?).
from danlp.datasets.ddt import DDT
import os
from pathlib import Path
cache_dir = os.path.join(str(Path.home()), '.notdanlp')
ner = DDT(cache_dir = cache_dir)
# data are not saved (cached) in cache_dir
ddt_dir = os.path.join(cache_dir, "ddt")
os.listdir(ddt_dir)