Sherman Siu

Results 94 comments of Sherman Siu

I see you've already answered this in the FAQ here: https://vllm.readthedocs.io/en/latest/models/adding_model.html

Also, I suppose the encoder cache eviction would be different. i.e. The encoder's cross-attention values would need to be kept as long as the decoding is active for a prompt,...

(Never mind, for the sake of simplicity, LRU should work just fine)

Can you check your RAM usage with `htop`? It's possible that your computer slowed down because it was holding a huge dataframe in-memory.

I'd prefer to keep the code in the core package minimal to make things easier to maintain. Wouldn't you be able to maintain the same functionality by reading in the...

I'm glad that your code works if you leave out 4 of your 20 cores! Nevertheless, it will be difficult to fix this issue if you don't provide some minimal...

It works just fine for me on Pandas 2.1. Do you have a minimal code example to reproduce your bug? Python: 3.10.13 Pandarallel: 1.6.5 Pandas: 2.1.0 Ubuntu 22.04 ```python import...

"The code gets stuck when using more than 1 CPU." I can't reproduce this, even when using `psutil.cpu_count(logical=False)` workers. Do you have some minimally-working Pandas code that lags when you...

The code snippet works for me in Jupyter as expected, even when `use_memory_fs=False`. Python: 3.10.13 Pandarallel: 1.6.5 Pandas: 2.2.0 Jupyter core: 5.7.1 Jupyterlab: 4.1.0 I'm on Linux though.

Unless we're dropping support for Pandas versions < 2.1, I'm against this, especially since Pandas 2.1 was released relatively recently. There's also no reason to change the minimum Python version...