PyTorch
Gaie commited on
Commit
7071643
·
verified ·
1 Parent(s): d2948ec

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -83,7 +83,15 @@ inputs = processor(images=raw_image, text=prompt, return_tensors='pt').to(0, tor
83
  output = model.generate(**inputs, max_new_tokens=4096, do_sample=False)
84
  print(processor.decode(output[0], skip_special_tokens=True))
85
 
86
- # <think>To solve the problem, I will first interpret the image to understand what mathematical operation is being represented. Then, I will perform the calculation based on the numbers provided in the image and confirm the result. The image shows a chalkboard with the equation \(18 + 23 = 41\) written on it. The numbers 18 and 23 are in light blue, and the result 41 is in light green. The equation \(18 + 23 = 41\) is presented on the chalkboard. To solve this, I will add the two numbers on the left side of the equation: 18 and 23. Adding these together, \(18 + 23\), I calculate that the sum is 41. This matches the number on the right side of the equation, confirming its correctness.</think>41
 
 
 
 
 
 
 
 
87
  ```
88
 
89
 
 
83
  output = model.generate(**inputs, max_new_tokens=4096, do_sample=False)
84
  print(processor.decode(output[0], skip_special_tokens=True))
85
 
86
+ # <think>To solve the problem, I will first interpret the image to understand what
87
+ # mathematical operation is being represented. Then, I will perform the calculation
88
+ # based on the numbers provided in the image and confirm the result. The image shows
89
+ # a chalkboard with the equation \(18 + 23 = 41\) written on it. The numbers 18 and
90
+ # 23 are in light blue, and the result 41 is in light green. The equation \(18 + 23 = 41\)
91
+ # is presented on the chalkboard. To solve this, I will add the two numbers on the
92
+ # left side of the equation: 18 and 23. Adding these together, \(18 + 23\), I calculate
93
+ # that the sum is 41. This matches the number on the right side of the equation,
94
+ # confirming its correctness.</think>41
95
  ```
96
 
97