czczup commited on
Commit
97d9b1a
1 Parent(s): 21a393e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -17
README.md CHANGED
@@ -227,27 +227,12 @@ pixel_values = torch.cat((pixel_values1, pixel_values2), dim=0)
227
  question = "详细描述这两张图片"
228
  response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=None, return_history=True)
229
  print(question, response)
230
- # 第一张图片是一只红熊猫,它有着独特的橙红色皮毛,脸部、耳朵和四肢的末端有白色斑块。红熊猫的眼睛周围有深色的环,它的耳朵是圆形的,上面有白色的毛。它正坐在一个木制的结构上,看起来像是一个平台或休息的地方。背景中有树木和竹子,这表明红熊猫可能在一个模拟自然环境的动物园或保护区内。
231
- #
232
- # 第二张图片是一只大熊猫,它是中国的国宝,以其黑白相间的皮毛而闻名。大熊猫的眼睛、耳朵和四肢的末端是黑色的,而它的脸部、耳朵内侧和身体其他部分是白色的。大熊猫正坐在地上,周围有竹子,这是它们的主要食物来源。背景中也有树木,这表明大熊猫可能在一个为它们提供自然栖息地模拟的动物园或保护区内。
233
 
234
  question = "这两张图片的相同点和区别分别是什么"
235
  response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=history, return_history=True)
236
  print(question, response)
237
- # 这两张图片的相同点:
238
- #
239
- # 1. 都展示了熊猫,这是两种不同的熊猫物种。
240
- # 2. 熊猫都处于一个看起来像是模拟自然环境的场所,可能是动物园或保护区。
241
- # 3. 熊猫周围都有竹子,这是它们的主要食物来源。
242
- #
243
- # 这两张图片的区别:
244
- #
245
- # 1. 熊猫的种类不同:第一张图片是一只红熊猫,第二张图片是一只大熊猫。
246
- # 2. 熊猫的皮毛颜色和图案不同:红熊猫的皮毛是橙红色,脸部、耳朵和四肢的末端有白色斑块;而大熊猫的皮毛是黑白相间的,眼睛、耳朵和四肢的末端是黑色的,脸部、耳朵内侧和身体其他部分是白色的。
247
- # 3. 熊猫的姿态和位置不同:红熊猫坐在一个木制的结构上,而大熊猫坐在地上。
248
- # 4. 背景中的植被和环境细节略有不同,但都包含树木和竹子。
249
-
250
- # batch inference
251
  pixel_values1 = load_image('./examples/image1.jpg', max_num=6).to(torch.bfloat16).cuda()
252
  pixel_values2 = load_image('./examples/image2.jpg', max_num=6).to(torch.bfloat16).cuda()
253
  image_counts = [pixel_values1.size(0), pixel_values2.size(0)]
 
227
  question = "详细描述这两张图片"
228
  response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=None, return_history=True)
229
  print(question, response)
 
 
 
230
 
231
  question = "这两张图片的相同点和区别分别是什么"
232
  response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=history, return_history=True)
233
  print(question, response)
234
+
235
+ # batch inference (single image per sample)
 
 
 
 
 
 
 
 
 
 
 
 
236
  pixel_values1 = load_image('./examples/image1.jpg', max_num=6).to(torch.bfloat16).cuda()
237
  pixel_values2 = load_image('./examples/image2.jpg', max_num=6).to(torch.bfloat16).cuda()
238
  image_counts = [pixel_values1.size(0), pixel_values2.size(0)]