How to load nomic-ai/nomic-embed-text-v1.5 without connect to internet?
#48
by
keyuchen2019
- opened
Due to I work in a regulated industry, I had to download all the files from "Files and versions" table, then load it
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("nomic-ai/nomic-embed-text-v1.5", trust_remote_code=True)
but I can not connect to internet, is there anyway to load this model all locally?