czczup commited on
Commit
bb437c0
1 Parent(s): 2ec0ee5

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -340,7 +340,7 @@ image_urls=[
340
 
341
  images = [load_image(img_url) for img_url in image_urls]
342
  # Numbering images improves multi-image conversations
343
- response = pipe((f'Image-1: {IMAGE_TOKEN} Image-2: {IMAGE_TOKEN}\ndescribe these two images', images))
344
  print(response.text)
345
  ```
346
 
@@ -466,7 +466,7 @@ TBD
466
 
467
  ## 快速启动
468
 
469
- 我们提供了一个示例代码,用于使用 `transformers` 运行 InternVL2-2B
470
 
471
  > 请使用 transformers==4.37.2 以确保模型正常运行。
472
 
@@ -525,7 +525,7 @@ image_urls=[
525
  ]
526
 
527
  images = [load_image(img_url) for img_url in image_urls]
528
- response = pipe((f'Image-1: {IMAGE_TOKEN} Image-2: {IMAGE_TOKEN}\ndescribe these two images', images))
529
  print(response.text)
530
  ```
531
 
 
340
 
341
  images = [load_image(img_url) for img_url in image_urls]
342
  # Numbering images improves multi-image conversations
343
+ response = pipe((f'Image-1: {IMAGE_TOKEN}\nImage-2: {IMAGE_TOKEN}\ndescribe these two images', images))
344
  print(response.text)
345
  ```
346
 
 
466
 
467
  ## 快速启动
468
 
469
+ 我们提供了一个示例代码,用于使用 `transformers` 运行 InternVL2-8B
470
 
471
  > 请使用 transformers==4.37.2 以确保模型正常运行。
472
 
 
525
  ]
526
 
527
  images = [load_image(img_url) for img_url in image_urls]
528
+ response = pipe((f'Image-1: {IMAGE_TOKEN}\nImage-2: {IMAGE_TOKEN}\ndescribe these two images', images))
529
  print(response.text)
530
  ```
531