Benjamin Bossan

Results 791 comments of Benjamin Bossan

Thanks for reporting this issue. I agree that this looks like there is room for improvement in order to allow as many modules as possible to be loaded on the...

To me, it's still not clear what we want to achieve here, even after reading the associated issue. Is the plan really to allow users to pass arbitrary iterables to...

The issue is that there is no handler configured for the logger. After adding it, the outputs are shown: ```python import logging from accelerate.logging import get_logger from accelerate import Accelerator...

What exactly did you run to get this error? What is your setup?

Indeed, I think `in_order=True` does not do what it is supposed to do or I misunderstand its meaning: ``` $ accelerate launch accelerate-2827.py in order True hello from rank 0...

Hi Immanuel, thanks for reporting the issue. So I think the issue is not strictly with PEFT, but instead that the custom `compute_metris` function defined within the notebook does not...

> ```shell > NotImplementedError: Using RTX 4000 series doesn't support faster communication broadband via P2P or IB. Please set `NCCL_P2P_DISABLE="1"` and `NCCL_IB_DISABLE="1" or use `accelerate launch` which will do this...

I figured out why the scores are weird. The issue is that we currently calculate the scores on a super small batch size, i.e. most labels are not present for...

I did some further testing with this notebook. One mistake I found is that the `ignore_index` should have been 255 and not 0, according to [this doc](https://huggingface.co/docs/transformers/main/en/model_doc/segformer). But even after...