Andreas Hochlehnert
Andreas Hochlehnert
## Issue When using video2dataset (1.3.0) to download youtube videos i've set the following entry in the config to retrieve meta data: ```yaml reading: yt_args: download_size: 360 download_audio_rate: 44100 yt_metadata_args:...
This extracts the keys from subsampled_streams so it can be modified in the loop * [x] I have read CONTRIBUTE.md
When adding the `FrameSubsampler` to the config ```yaml subsampling: FrameSubsampler: args: frame_rate: 5 downsample_method: 'fps' encode_format: 'mp4' ``` I get following error message: ``` Traceback (most recent call last): File...
## Describe the bug When setting `generation_config` in `transformers_model.TransformersModelConfig` it expects `generation_parameters` to be `None` (see [transformers_model.py#L188](https://github.com/huggingface/lighteval/blob/bfb1099ca82dc880baf1e90379378963cf7b2221/src/lighteval/models/transformers/transformers_model.py#L188)). However `Pipeline` expects `generation_parameters` always to be set (see [pipeline.py#L159](https://github.com/huggingface/lighteval/blob/bfb1099ca82dc880baf1e90379378963cf7b2221/src/lighteval/pipeline.py#L159)). ## To Reproduce...