It is really amazing. With this command “ollama run llama2”, I can run llama2 instantly. Do you know how much RAM and disk space needed to run this llama2 model?
Regarding the disk space, the model itself is 3.8GB.
11–20 of 101 posts
It is really amazing. With this command “ollama run llama2”, I can run llama2 instantly. Do you know how much RAM and disk space needed to run this llama2 model?
Regarding the disk space, the model itself is 3.8GB.
It is really amazing. With this command “ollama run llama2”, I can run llama2 instantly. Do you know how much RAM and disk space needed to run this llama2 model?
NAME SIZE MODIFIED
llama2:latest 3.8 GB 3 hours ago
Now, if you make new models that are "FROM llama2" for example, Ollama will re-use this "base model" so you don't store it twice.Surprised to see no Linux support, considering that it's a project that manages... docker.
`CGO_ENABLED=1 go build . `
Surprised to see no Linux support, considering that it's a project that manages... docker.
If you have the Go toolchain installed, there are some steps from building it from source here: https://github.com/jmorganca/ollama#building
Also seems like you are picking quants on people's behalf, which ones?
Maybe mention that GGML is under the hood. I see you've forked the library, did you pick up the GQA changes needed for llama2-70b? Also seems like you are picking quants on people's behalf, which ones?
It does use GGML under the hood. Will definitely make sure that's more obvious for compatibility. There's about to be an update as well that includes those recent changes. We do vendor the source code since it made building with Go a lot easier, but definitely don't want to be "forking" it (vs supporting it) – it's a brilliant piece of software!
This is doing inference on the CPU, right?