Marek Grzenkowicz
Marek Grzenkowicz
Every time I run `poetry update` in my project, a large spaCy model gets download. It is added to `[tool.poetry.dependencies]` this way: ``` en_core_web_lg = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.0.0/en_core_web_lg-2.0.0.tar.gz" }`...
Allow training without loading full dataset into memory #5094
Downgrading Ollama may be a workaround, see https://github.com/ollama/ollama/issues/2448#issuecomment-2025126526.
PR #330 will solve this issue, right?
I am also experiencing the same problem: ``` $ ollama run llava pulling manifest Error: pull model manifest: Get "https://ollama.com/token?nonce=SW96RgmctcQmHJ37NXJ8KQ&scope=repository%!A(MISSING)library%!F(MISSING)llava%!A(MISSING)pull&service=ollama.com&ts=1711106784": read tcp 10.144.68.189:40600->34.120.132.20:443: read: connection reset by peer ``` Downloading...
@ccsyt1205 I think you are looking for `HTTP_PROXY` or `HTTPS_PROXY` - see [faq.md#how-do-i-use-ollama-behind-a-proxy](https://github.com/ollama/ollama/blob/main/docs/faq.md#how-do-i-use-ollama-behind-a-proxy) for details.
@dhiltgen The error happens in this line: https://github.com/ollama/ollama/blob/756c2575535641f1b96d94b4214941b90f4c30c7/server/images.go#L1204-L1207. I added `slog.Error(fmt.Sprintf("http.DefaultClient.Do(req) failed with error: %s", err))` and got the following output: ``` time=2024-03-28T09:51:41.142+01:00 level=ERROR source=images.go:1206 msg="http.DefaultClient.Do(req) failed with error: Get...
I realized that Ollama used to work fine for me in the office, so I **downgraded** Ollama to `v0.1.27` and the problem is **gone**. 🎉 Installing `v0.1.28` (or later) means...
Thanks @pjbull for correcting the title! You are right and that's exactly what the issue is: ``` >>> from cloudpathlib import CloudPath >>> local_path = '/tmp/some-file.txt' >>> cloud_path = CloudPath('s3://some-bucket')...
Thank you for a detailed response! For me, `(CloudPath("s3://b1") / "/") == CloudPath("s3://")` is **misleading**, because `/` for paths is an additive operation and therefore it makes no sense for...