How to give PIL image.

#2
by monuminu - opened

Hi All,

Thanks for the great work. How can i add a PIL image

Hi!
The processor takes as inputs list of PIL image or texts. the texts can be either image URLs or standard query-texts.
In your case, you simply need to replace the image URL by a pil image!

Thanks for TGI we can only use URL right ?? Is there any we can pass to TGI apart from URL ?

got it! that's correct.
for tgi, as for now, we are not supporting image inputs per se. as a first step to allow models like idefics, image need to be passed as image markdowns (more specifically as ![](IMAGE_URL)) and the tgi backend will take care of parsing the IMAGE_URL and fetching the corresponding image.
you can have a look here: https://github.com/huggingface/text-generation-inference/blob/211b54ac41cae9a369f3d74bd6cc666ff4a0c526/server/text_generation_server/models/idefics_causal_lm.py#L129

Sign up or log in to comment