bm25 without internet

#3
by slivka83 - opened

How can I run bm25 without internet?
This repository doesn't even contain weights?

Yes, you can run BM25 without internet if you have the necessary weights and dependencies downloaded beforehand. You need to have the model and tokenizer files stored locally. You can download these files when you have internet access and then use them offline.

You can download these files when you have internet access and then use them offline.

Where can I download them? There are no weights in this repository.

You can download these files when you have internet access and then use them offline.

Where can I download them? There are no weights in this repository.

Wondering the same.

anyone lucky to get this offline?

Qdrant org

hey @hghuge

In order to have it offline, you'd need to download the files first (for example, you could launch your code once with an internet connection, then, if you're on the same machine, set local_files_only=True and use it without internet, or copy the downloaded folder to another machine and launch the code with local_files_only=True without internet connection)

Sign up or log in to comment