Art Matsak

Results 8 comments of Art Matsak

We haven't been able to figure it out unfortunately.

It looks like this is caused by the recent joblib update to version 1.2.0. Try pinning joblib to version 1.1.0: ``` pip install joblib==1.1.0 ```

@Shanzaay The new raw text feature in the `dev` branch lets you run summarization without the preprocessing steps. @pshen1230 I'm able to successfully invoke summarization like this: ``` python train.py...

`cjpeg` managed to build from source after I installed a newer version of `nasm` via MacPorts. However, `cjpeg` now exits with a segmentation fault when invoked from a parent dir,...

Update: Installing `mozjpeg` first via `npm install mozjpeg` also leads to building from source but seems to produce a non-faulty `cjpeg`.

I'm curious about this, too. We'd like to do domain adaptation for `all-mpnet-base-v2`.

The underlying reason for no cost information when streaming is enabled is that in the OpenAI API, the `usage` field is [only present](https://platform.openai.com/docs/api-reference/chat) in non-streaming responses. As things currently stand,...

In my case, the issue turned out to be `urllib` (probably?) failing to locate the CA SSL certificates on the system. The funny thing is that non-async requests worked -...