Logic behind this full project: #747
Devangkaruskar
started this conversation in
General
Replies: 2 comments
|
Time is consumed in Local LLM generating its answer from the contexts. To minimize the time, set the TARGET_SOURCE_CHUNKS to 1, Choose a smaller model (say 7B 4_0) in MODEL_PATH. Set MODEL_N_CTX to 256. Once you start getting fast answers (less than 1 min) you can start optimizing for accuracy. If you don't want complete privacy, use the fork by goskynet where openai API are part of the inference part. https://github.com/go-skynet/privateGPT. |
0 replies
|
Embedding is pretty fast, and as same as search in vector db. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
for every time running a query i required almost 6-7 min per answer. i want to know where time is consuming. as far as my understanding embedding and indexes of text are stored locally right?
can you help me to understand this @imartinez @jiangzhuo @vilaca @sorin @doskoi
All reactions