HangL
HangL
Why did you put data and code in Lib directory?
You should attach your data path and the full command you execute
It's weird to put your code and data to where you install python. Any directory is ok, like D:/DeepPath/code or somewhere like this.
I have the same problem,the only way to install it on Ubuntu 15.10 is compile it manually?
@benfalk Thanks, it works well
发现在fsdp训练下会有这个问题,加上`CUDA_LAUNCH_BLOCKING=1 `之后会发现报错其实是在上一行 ```python input_ids = input_ids[:, cache_position] ``` 看到`Qwen2VLForConditionalGeneration`是继承了`GenerationMixin`,对比二者prepare_inputs_for_generation实现区别 - Qwen2VLForConditionalGeneration#prepare_inputs_for_generation - GenerationMixin#prepare_inputs_for_generation `GenerationMixin`里多了一段 Exception 3的描述和对应的条件 ``` # 2. Generic cache-dependent input preparation # If we have cache: let's slice...