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
FileNotFoundError: [Errno 2] No such file or directory: '/home/sancha/repos/diffunc/.venv/lib/python3.10/site-packages/featup/featurizers/maskclip/bpe_simple_vocab_16e6.txt.gz'
Temporary resolution
The file is indeed present in python3.10/site-packages/clip but not in python3.10/site-packages/featup/featurizers/maskclip/. I temporarily fix it by creating a symlink:
Problem
When I try importing:
I get the following error:
Temporary resolution
The file is indeed present in
python3.10/site-packages/clip
but not inpython3.10/site-packages/featup/featurizers/maskclip/
. I temporarily fix it by creating a symlink:ln -s `pwd`/.venv/lib/python3.10/site-packages/clip/bpe_simple_vocab_16e6.txt.gz .venv/lib/python3.10/site-packages/featup/featurizers/maskclip/
The text was updated successfully, but these errors were encountered: