ybelkada HF staff commited on
Commit
3ad501b
1 Parent(s): 07e2c6a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +146 -0
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ - fr
5
+ - ro
6
+ - de
7
+ - multilingual
8
+ pipeline_tag: image-to-text
9
+ tags:
10
+ - visual-question-answering
11
+ license: apache-2.0
12
+ ---
13
+
14
+
15
+ # Model card for Pix2Struct - Finetuned on AI2D (scientific diagram VQA)
16
+
17
+ ![model_image](https://s3.amazonaws.com/moonup/production/uploads/1678713353867-62441d1d9fdefb55a0b7d12c.png)
18
+
19
+ # Table of Contents
20
+
21
+ 0. [TL;DR](#TL;DR)
22
+ 1. [Using the model](#using-the-model)
23
+ 2. [Contribution](#contribution)
24
+ 3. [Citation](#citation)
25
+
26
+ # TL;DR
27
+
28
+ Pix2Struct is an image encoder - text decoder model that is trained on image-text pairs for various tasks, including image captionning and visual question answering. The full list of available models can be found on the Table 1 of the paper:
29
+
30
+ ![Table 1 - paper](https://s3.amazonaws.com/moonup/production/uploads/1678712985040-62441d1d9fdefb55a0b7d12c.png)
31
+
32
+
33
+ The abstract of the model states that:
34
+ > Visually-situated language is ubiquitous—sources range from textbooks with diagrams to web pages with images and tables, to mobile apps with buttons and
35
+ forms. Perhaps due to this diversity, previous work has typically relied on domainspecific recipes with limited sharing of the underlying data, model architectures,
36
+ and objectives. We present Pix2Struct, a pretrained image-to-text model for
37
+ purely visual language understanding, which can be finetuned on tasks containing visually-situated language. Pix2Struct is pretrained by learning to parse
38
+ masked screenshots of web pages into simplified HTML. The web, with its richness of visual elements cleanly reflected in the HTML structure, provides a large
39
+ source of pretraining data well suited to the diversity of downstream tasks. Intuitively, this objective subsumes common pretraining signals such as OCR, language modeling, image captioning. In addition to the novel pretraining strategy,
40
+ we introduce a variable-resolution input representation and a more flexible integration of language and vision inputs, where language prompts such as questions
41
+ are rendered directly on top of the input image. For the first time, we show that a
42
+ single pretrained model can achieve state-of-the-art results in six out of nine tasks
43
+ across four domains: documents, illustrations, user interfaces, and natural images.
44
+
45
+ # Using the model
46
+
47
+ This model has been fine-tuned on VQA, you need to provide a question in a specific format, ideally in the format of a Choices question answering
48
+
49
+ ## Converting from T5x to huggingface
50
+
51
+ You can use the [`convert_pix2struct_checkpoint_to_pytorch.py`](https://github.com/huggingface/transformers/blob/main/src/transformers/models/pix2struct/convert_pix2struct_checkpoint_to_pytorch.py) script as follows:
52
+ ```bash
53
+ python convert_pix2struct_checkpoint_to_pytorch.py --t5x_checkpoint_path PATH_TO_T5X_CHECKPOINTS --pytorch_dump_path PATH_TO_SAVE
54
+ ```
55
+ if you are converting a large model, run:
56
+ ```bash
57
+ python convert_pix2struct_checkpoint_to_pytorch.py --t5x_checkpoint_path PATH_TO_T5X_CHECKPOINTS --pytorch_dump_path PATH_TO_SAVE --use-large
58
+ ```
59
+ Once saved, you can push your converted model with the following snippet:
60
+ ```python
61
+ from transformers import Pix2StructForConditionalGeneration, Pix2StructProcessor
62
+
63
+ model = Pix2StructForConditionalGeneration.from_pretrained(PATH_TO_SAVE)
64
+ processor = Pix2StructProcessor.from_pretrained(PATH_TO_SAVE)
65
+
66
+ model.push_to_hub("USERNAME/MODEL_NAME")
67
+ processor.push_to_hub("USERNAME/MODEL_NAME")
68
+ ```
69
+
70
+ ## Running the model
71
+
72
+ ### In full precision, on CPU:
73
+
74
+ You can run the model in full precision on CPU:
75
+ ```python
76
+ import requests
77
+ from PIL import Image
78
+ from transformers import Pix2StructForConditionalGeneration, Pix2StructProcessor
79
+
80
+ image_url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/ai2d-demo.jpg"
81
+ image = Image.open(requests.get(image_url, stream=True).raw)
82
+
83
+ model = Pix2StructForConditionalGeneration.from_pretrained("google/pix2struct-ai2d-base")
84
+ processor = Pix2StructProcessor.from_pretrained("google/pix2struct-ai2d-base")
85
+
86
+ question = "What does the label 15 represent? (1) lava (2) core (3) tunnel (4) ash cloud"
87
+
88
+ inputs = processor(images=image, text=text, return_tensors="pt")
89
+
90
+ predictions = model.generate(**inputs)
91
+ print(processor.decode(predictions[0], skip_special_tokens=True))
92
+ >>> ash cloud
93
+ ```
94
+
95
+ ### In full precision, on GPU:
96
+
97
+ You can run the model in full precision on CPU:
98
+ ```python
99
+ import requests
100
+ from PIL import Image
101
+ from transformers import Pix2StructForConditionalGeneration, Pix2StructProcessor
102
+
103
+ image_url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/ai2d-demo.jpg"
104
+ image = Image.open(requests.get(image_url, stream=True).raw)
105
+
106
+ model = Pix2StructForConditionalGeneration.from_pretrained("google/pix2struct-ai2d-base").to("cuda")
107
+ processor = Pix2StructProcessor.from_pretrained("google/pix2struct-ai2d-base")
108
+
109
+ question = "What does the label 15 represent? (1) lava (2) core (3) tunnel (4) ash cloud"
110
+
111
+ inputs = processor(images=image, text=text, return_tensors="pt").to("cuda")
112
+
113
+ predictions = model.generate(**inputs)
114
+ print(processor.decode(predictions[0], skip_special_tokens=True))
115
+ >>> ash cloud
116
+ ```
117
+
118
+ ### In half precision, on GPU:
119
+
120
+ You can run the model in full precision on CPU:
121
+ ```python
122
+ import requests
123
+ from PIL import Image
124
+
125
+ import torch
126
+ from transformers import Pix2StructForConditionalGeneration, Pix2StructProcessor
127
+
128
+ image_url = "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/transformers/tasks/ai2d-demo.jpg"
129
+ image = Image.open(requests.get(image_url, stream=True).raw)
130
+
131
+ model = Pix2StructForConditionalGeneration.from_pretrained("google/pix2struct-ai2d-base", torch_dtype=torch.bfloat16).to("cuda")
132
+ processor = Pix2StructProcessor.from_pretrained("google/pix2struct-ai2d-base")
133
+
134
+ question = "What does the label 15 represent? (1) lava (2) core (3) tunnel (4) ash cloud"
135
+
136
+ inputs = processor(images=image, text=text, return_tensors="pt").to("cuda", torch.bfloat16)
137
+
138
+ predictions = model.generate(**inputs)
139
+ print(processor.decode(predictions[0], skip_special_tokens=True))
140
+ >>> ash cloud
141
+ ```
142
+
143
+
144
+ # Contribution
145
+
146
+ This model was originally contributed by Kenton Lee, Mandar Joshi et al. and added to the Hugging Face ecosystem by [Younes Belkada](https://huggingface.co/ybelkada).