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 b75966a commit c2339d1Copy full SHA for c2339d1
vllm/model_executor/models/prithvi_geospatial_mae.py
@@ -104,8 +104,7 @@ def apply(
104
105
for k, v in mm_data.items():
106
if isinstance(v,dict) and k == "image":
107
- for tensor_name,tensor in v.items():
108
- mm_kwargs[tensor_name] = tensor
+ mm_kwargs.update(v)
109
else:
110
mm_kwargs[k] = v
111
mm_placeholders = {"image": [PlaceholderRange(offset=0, length=0)]}
0 commit comments