Abs-Famppy
Results
1
comments of
Abs-Famppy
> Try adding `do_rescale=False` when passing the image to the processor. Before: `inputs = processor( images=big_patch, return_tensors="pt", text=prompt, padding=True ).to(device)` After: `inputs = processor( images=big_patch, return_tensors="pt", text=prompt, padding=True, do_rescale=False ).to(device)`...