mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 09:14:35 +02:00
c559e26616
Signed-off-by: Vladimir Mandic <mandic00@live.com>
13 lines
449 B
Python
13 lines
449 B
Python
import numpy as np
|
|
|
|
|
|
def hf_clip_vision_encode(image, feature_extractor, image_encoder):
|
|
assert isinstance(image, np.ndarray)
|
|
assert image.ndim == 3 and image.shape[2] == 3
|
|
assert image.dtype == np.uint8
|
|
|
|
preprocessed = feature_extractor.preprocess(images=image, return_tensors="pt").to(device=image_encoder.device, dtype=image_encoder.dtype)
|
|
image_encoder_output = image_encoder(**preprocessed)
|
|
|
|
return image_encoder_output
|