Forum Discussion
pborah
Solution Sage
22 days agoCertificate validation error between Fabric and Huggingface
Hi, I'm tyring to download a couple of transformer/sentence-transformer model weights into a notebook and I keep running into certificate mismatch issues between fabric and huggingface. I was wonder...
- 22 days ago
Nevermind, it seems the problem wasn't with Fabric OR Huggingface. It was the path used by SentenceTransformer(). The following code worked -
from huggingface_hub import snapshot_download snapshot_download( repo_id="sentence-transformers/all-MiniLM-L6-v2", local_dir="/lakehouse/default/Files/models/all-MiniLM-L6-v2" )
pborah
Solution Sage
22 days agoNevermind, it seems the problem wasn't with Fabric OR Huggingface. It was the path used by SentenceTransformer(). The following code worked -
from huggingface_hub import snapshot_download snapshot_download( repo_id="sentence-transformers/all-MiniLM-L6-v2", local_dir="/lakehouse/default/Files/models/all-MiniLM-L6-v2" )