Update README.md
Browse files
README.md
CHANGED
@@ -36,7 +36,7 @@ device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
36 |
|
37 |
model.to(device)
|
38 |
|
39 |
-
input_image = Image.open(
|
40 |
|
41 |
inputs = processor(text=input_text, images=input_image, padding="longest", do_convert_rgb=True, return_tensors="pt").to(device)
|
42 |
inputs = inputs.to(dtype=model.dtype)
|
|
|
36 |
|
37 |
model.to(device)
|
38 |
|
39 |
+
input_image = Image.open(image_path)
|
40 |
|
41 |
inputs = processor(text=input_text, images=input_image, padding="longest", do_convert_rgb=True, return_tensors="pt").to(device)
|
42 |
inputs = inputs.to(dtype=model.dtype)
|