hubsnippetai commited on
Commit
0ab4270
·
verified ·
1 Parent(s): 1309060

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -5,8 +5,8 @@ from PIL import Image
5
  from transformers import AutoProcessor, AutoModelForVision2Seq
6
 
7
 
8
- model = await AutoModelForVision2Seq.from_pretrained("microsoft/kosmos-2-patch14-224")
9
- processor = await AutoProcessor.from_pretrained("microsoft/kosmos-2-patch14-224")
10
 
11
  # The original Kosmos-2 demo saves the image first then reload it. For some images, this will give slightly different image input and change the generation outputs.
12
 
 
5
  from transformers import AutoProcessor, AutoModelForVision2Seq
6
 
7
 
8
+ model = AutoModelForVision2Seq.from_pretrained("microsoft/kosmos-2-patch14-224")
9
+ processor = AutoProcessor.from_pretrained("microsoft/kosmos-2-patch14-224")
10
 
11
  # The original Kosmos-2 demo saves the image first then reload it. For some images, this will give slightly different image input and change the generation outputs.
12