mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-10-15 08:08:09 +08:00
fix bug
Former-commit-id: 365e6df71509569f59c40743c115f1a4b945ef0f
This commit is contained in:
parent
5b4b60cfb5
commit
7466fd4387
@ -50,7 +50,7 @@ def _encode_supervised_example(
|
||||
train_on_prompt: bool,
|
||||
mask_history: bool,
|
||||
) -> Tuple[List[int], List[int]]:
|
||||
if "image_grid_thw" in processor.model_input_names: # qwen2_vl models
|
||||
if processor is not None and "image_grid_thw" in processor.model_input_names: # qwen2_vl models
|
||||
image_processor = getattr(processor, "image_processor")
|
||||
merge_length = image_processor.merge_size**2
|
||||
if len(images) > 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user