We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2003b05 commit 9a2bff2Copy full SHA for 9a2bff2
vllm/multimodal/image.py
@@ -56,7 +56,12 @@ def _default_input_mapper(
56
.preprocess(data, return_tensors="pt") \
57
.data
58
except Exception:
59
- logger.error("Failed to process image (%s)", data)
+ logger.error(
60
+ "Failed to process image (%s) with the default mapper. "
61
+ "This is most likely an edge-case with this model's image "
62
+ "processor in transformers (type: %s), and not vLLM.",
63
+ data,
64
+ type(image_processor).__name__)
65
raise
66
67
return MultiModalInputs(batch_data)
0 commit comments