Update README.md
Browse files
README.md
CHANGED
@@ -6,6 +6,8 @@ This is a Listener-Rewarded ([paper](https://www.arxiv.org/abs/2506.22832)) fine
|
|
6 |
|
7 |
This is a research-preview version. The model still often provides non-reliable reasoning traces, hallucinates, and judges from the first glance.
|
8 |
|
|
|
|
|
9 |
## Example usage
|
10 |
|
11 |
```python
|
@@ -31,8 +33,8 @@ SYSTEM_PROMPT = (
|
|
31 |
image1_path = 'Your first image path'
|
32 |
image2_path = 'Your second image path'
|
33 |
|
34 |
-
image1 = Image.open(image1_path)
|
35 |
-
image2 = Image.open(image2_path)
|
36 |
|
37 |
user_prompt = "A beautiful sunset over mountains"
|
38 |
|
|
|
6 |
|
7 |
This is a research-preview version. The model still often provides non-reliable reasoning traces, hallucinates, and judges from the first glance.
|
8 |
|
9 |
+
|
10 |
+
|
11 |
## Example usage
|
12 |
|
13 |
```python
|
|
|
33 |
image1_path = 'Your first image path'
|
34 |
image2_path = 'Your second image path'
|
35 |
|
36 |
+
image1 = Image.open(image1_path).resize((512,512)), Image.LANCZOS)
|
37 |
+
image2 = Image.open(image2_path).resize((512,512)), Image.LANCZOS)
|
38 |
|
39 |
user_prompt = "A beautiful sunset over mountains"
|
40 |
|