project files
Browse files- app.py +38 -0
- model_folder/config.json +172 -0
- model_folder/preprocessor_config.json +24 -0
- model_folder/pytorch_model.bin +3 -0
- model_folder/special_tokens_map.json +7 -0
- model_folder/tokenizer.json +0 -0
- model_folder/tokenizer_config.json +21 -0
- model_folder/vocab.txt +0 -0
- requirements.txt +8 -0
app.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import torch
|
2 |
+
from transformers import AutoProcessor, AutoModelForCausalLM
|
3 |
+
from PIL import Image
|
4 |
+
import gradio as gr
|
5 |
+
|
6 |
+
# Define the folder where the model and processor are saved
|
7 |
+
saved_folder_path = "model_folder" # Replace with the path to your model folder
|
8 |
+
|
9 |
+
# Load processor and model
|
10 |
+
processor = AutoProcessor.from_pretrained(saved_folder_path) # Processor (e.g., feature extractor + tokenizer)
|
11 |
+
model = AutoModelForCausalLM.from_pretrained(saved_folder_path) # Pre-trained model
|
12 |
+
model.eval() # Set model to evaluation mode
|
13 |
+
|
14 |
+
# Define the caption generation function
|
15 |
+
def generate_caption(image):
|
16 |
+
# Convert the input image to PIL format (if necessary)
|
17 |
+
image = Image.fromarray(image)
|
18 |
+
|
19 |
+
# Preprocess the image using the processor
|
20 |
+
inputs = processor(images=image, return_tensors="pt")
|
21 |
+
pixel_values = inputs.pixel_values
|
22 |
+
|
23 |
+
# Generate caption
|
24 |
+
generated_ids = model.generate(pixel_values=pixel_values, max_length=50)
|
25 |
+
generated_caption = processor.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
26 |
+
|
27 |
+
return generated_caption
|
28 |
+
|
29 |
+
# Define the Gradio interface
|
30 |
+
interface = gr.Interface(
|
31 |
+
fn=generate_caption, # Function to process input
|
32 |
+
inputs=gr.Image(), # Input as image
|
33 |
+
outputs=gr.Textbox(), # Output as text
|
34 |
+
live=True # Enable live prediction
|
35 |
+
)
|
36 |
+
|
37 |
+
# Launch the Gradio app
|
38 |
+
interface.launch()
|
model_folder/config.json
ADDED
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_commit_hash": "89b09ea1789f7addf2f6d6f0dfc4ce10ab58ef84",
|
3 |
+
"_name_or_path": "Salesforce/blip-image-captioning-base",
|
4 |
+
"architectures": [
|
5 |
+
"BlipForConditionalGeneration"
|
6 |
+
],
|
7 |
+
"image_text_hidden_size": 256,
|
8 |
+
"initializer_factor": 1.0,
|
9 |
+
"initializer_range": 0.02,
|
10 |
+
"logit_scale_init_value": 2.6592,
|
11 |
+
"model_type": "blip",
|
12 |
+
"projection_dim": 512,
|
13 |
+
"text_config": {
|
14 |
+
"_name_or_path": "",
|
15 |
+
"add_cross_attention": false,
|
16 |
+
"architectures": null,
|
17 |
+
"attention_probs_dropout_prob": 0.0,
|
18 |
+
"bad_words_ids": null,
|
19 |
+
"begin_suppress_tokens": null,
|
20 |
+
"bos_token_id": 30522,
|
21 |
+
"chunk_size_feed_forward": 0,
|
22 |
+
"cross_attention_hidden_size": null,
|
23 |
+
"decoder_start_token_id": null,
|
24 |
+
"diversity_penalty": 0.0,
|
25 |
+
"do_sample": false,
|
26 |
+
"early_stopping": false,
|
27 |
+
"encoder_hidden_size": 768,
|
28 |
+
"encoder_no_repeat_ngram_size": 0,
|
29 |
+
"eos_token_id": 2,
|
30 |
+
"exponential_decay_length_penalty": null,
|
31 |
+
"finetuning_task": null,
|
32 |
+
"forced_bos_token_id": null,
|
33 |
+
"forced_eos_token_id": null,
|
34 |
+
"hidden_act": "gelu",
|
35 |
+
"hidden_dropout_prob": 0.0,
|
36 |
+
"hidden_size": 768,
|
37 |
+
"id2label": {
|
38 |
+
"0": "LABEL_0",
|
39 |
+
"1": "LABEL_1"
|
40 |
+
},
|
41 |
+
"initializer_factor": 1.0,
|
42 |
+
"initializer_range": 0.02,
|
43 |
+
"intermediate_size": 3072,
|
44 |
+
"is_decoder": true,
|
45 |
+
"is_encoder_decoder": false,
|
46 |
+
"label2id": {
|
47 |
+
"LABEL_0": 0,
|
48 |
+
"LABEL_1": 1
|
49 |
+
},
|
50 |
+
"layer_norm_eps": 1e-12,
|
51 |
+
"length_penalty": 1.0,
|
52 |
+
"max_length": 20,
|
53 |
+
"max_position_embeddings": 512,
|
54 |
+
"min_length": 0,
|
55 |
+
"model_type": "blip_text_model",
|
56 |
+
"no_repeat_ngram_size": 0,
|
57 |
+
"num_attention_heads": 12,
|
58 |
+
"num_beam_groups": 1,
|
59 |
+
"num_beams": 1,
|
60 |
+
"num_hidden_layers": 12,
|
61 |
+
"num_return_sequences": 1,
|
62 |
+
"output_attentions": false,
|
63 |
+
"output_hidden_states": false,
|
64 |
+
"output_scores": false,
|
65 |
+
"pad_token_id": 0,
|
66 |
+
"prefix": null,
|
67 |
+
"problem_type": null,
|
68 |
+
"projection_dim": 768,
|
69 |
+
"pruned_heads": {},
|
70 |
+
"remove_invalid_values": false,
|
71 |
+
"repetition_penalty": 1.0,
|
72 |
+
"return_dict": true,
|
73 |
+
"return_dict_in_generate": false,
|
74 |
+
"sep_token_id": 102,
|
75 |
+
"suppress_tokens": null,
|
76 |
+
"task_specific_params": null,
|
77 |
+
"temperature": 1.0,
|
78 |
+
"tf_legacy_loss": false,
|
79 |
+
"tie_encoder_decoder": false,
|
80 |
+
"tie_word_embeddings": true,
|
81 |
+
"tokenizer_class": null,
|
82 |
+
"top_k": 50,
|
83 |
+
"top_p": 1.0,
|
84 |
+
"torch_dtype": null,
|
85 |
+
"torchscript": false,
|
86 |
+
"transformers_version": "4.30.2",
|
87 |
+
"typical_p": 1.0,
|
88 |
+
"use_bfloat16": false,
|
89 |
+
"use_cache": true,
|
90 |
+
"vocab_size": 30524
|
91 |
+
},
|
92 |
+
"torch_dtype": "float32",
|
93 |
+
"transformers_version": null,
|
94 |
+
"vision_config": {
|
95 |
+
"_name_or_path": "",
|
96 |
+
"add_cross_attention": false,
|
97 |
+
"architectures": null,
|
98 |
+
"attention_dropout": 0.0,
|
99 |
+
"bad_words_ids": null,
|
100 |
+
"begin_suppress_tokens": null,
|
101 |
+
"bos_token_id": null,
|
102 |
+
"chunk_size_feed_forward": 0,
|
103 |
+
"cross_attention_hidden_size": null,
|
104 |
+
"decoder_start_token_id": null,
|
105 |
+
"diversity_penalty": 0.0,
|
106 |
+
"do_sample": false,
|
107 |
+
"dropout": 0.0,
|
108 |
+
"early_stopping": false,
|
109 |
+
"encoder_no_repeat_ngram_size": 0,
|
110 |
+
"eos_token_id": null,
|
111 |
+
"exponential_decay_length_penalty": null,
|
112 |
+
"finetuning_task": null,
|
113 |
+
"forced_bos_token_id": null,
|
114 |
+
"forced_eos_token_id": null,
|
115 |
+
"hidden_act": "gelu",
|
116 |
+
"hidden_size": 768,
|
117 |
+
"id2label": {
|
118 |
+
"0": "LABEL_0",
|
119 |
+
"1": "LABEL_1"
|
120 |
+
},
|
121 |
+
"image_size": 384,
|
122 |
+
"initializer_factor": 1.0,
|
123 |
+
"initializer_range": 0.02,
|
124 |
+
"intermediate_size": 3072,
|
125 |
+
"is_decoder": false,
|
126 |
+
"is_encoder_decoder": false,
|
127 |
+
"label2id": {
|
128 |
+
"LABEL_0": 0,
|
129 |
+
"LABEL_1": 1
|
130 |
+
},
|
131 |
+
"layer_norm_eps": 1e-05,
|
132 |
+
"length_penalty": 1.0,
|
133 |
+
"max_length": 20,
|
134 |
+
"min_length": 0,
|
135 |
+
"model_type": "blip_vision_model",
|
136 |
+
"no_repeat_ngram_size": 0,
|
137 |
+
"num_attention_heads": 12,
|
138 |
+
"num_beam_groups": 1,
|
139 |
+
"num_beams": 1,
|
140 |
+
"num_channels": 3,
|
141 |
+
"num_hidden_layers": 12,
|
142 |
+
"num_return_sequences": 1,
|
143 |
+
"output_attentions": false,
|
144 |
+
"output_hidden_states": false,
|
145 |
+
"output_scores": false,
|
146 |
+
"pad_token_id": null,
|
147 |
+
"patch_size": 16,
|
148 |
+
"prefix": null,
|
149 |
+
"problem_type": null,
|
150 |
+
"projection_dim": 512,
|
151 |
+
"pruned_heads": {},
|
152 |
+
"remove_invalid_values": false,
|
153 |
+
"repetition_penalty": 1.0,
|
154 |
+
"return_dict": true,
|
155 |
+
"return_dict_in_generate": false,
|
156 |
+
"sep_token_id": null,
|
157 |
+
"suppress_tokens": null,
|
158 |
+
"task_specific_params": null,
|
159 |
+
"temperature": 1.0,
|
160 |
+
"tf_legacy_loss": false,
|
161 |
+
"tie_encoder_decoder": false,
|
162 |
+
"tie_word_embeddings": true,
|
163 |
+
"tokenizer_class": null,
|
164 |
+
"top_k": 50,
|
165 |
+
"top_p": 1.0,
|
166 |
+
"torch_dtype": null,
|
167 |
+
"torchscript": false,
|
168 |
+
"transformers_version": "4.30.2",
|
169 |
+
"typical_p": 1.0,
|
170 |
+
"use_bfloat16": false
|
171 |
+
}
|
172 |
+
}
|
model_folder/preprocessor_config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_convert_rgb": true,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.48145466,
|
8 |
+
0.4578275,
|
9 |
+
0.40821073
|
10 |
+
],
|
11 |
+
"image_processor_type": "BlipImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.26862954,
|
14 |
+
0.26130258,
|
15 |
+
0.27577711
|
16 |
+
],
|
17 |
+
"processor_class": "BlipProcessor",
|
18 |
+
"resample": 3,
|
19 |
+
"rescale_factor": 0.00392156862745098,
|
20 |
+
"size": {
|
21 |
+
"height": 384,
|
22 |
+
"width": 384
|
23 |
+
}
|
24 |
+
}
|
model_folder/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1119251de24c37bad29a9a289d4d6d38fd1f52cb4975a239b1cb6d5e9c3e2b15
|
3 |
+
size 989827505
|
model_folder/special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
+
}
|
model_folder/tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model_folder/tokenizer_config.json
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"clean_up_tokenization_spaces": true,
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"do_basic_tokenize": true,
|
5 |
+
"do_lower_case": true,
|
6 |
+
"mask_token": "[MASK]",
|
7 |
+
"model_input_names": [
|
8 |
+
"input_ids",
|
9 |
+
"attention_mask"
|
10 |
+
],
|
11 |
+
"model_max_length": 512,
|
12 |
+
"never_split": null,
|
13 |
+
"pad_token": "[PAD]",
|
14 |
+
"processor_class": "BlipProcessor",
|
15 |
+
"sep_token": "[SEP]",
|
16 |
+
"strip_accents": null,
|
17 |
+
"tokenize_chinese_chars": true,
|
18 |
+
"tokenizer_class": "BertTokenizer",
|
19 |
+
"trust_remote_code": false,
|
20 |
+
"unk_token": "[UNK]"
|
21 |
+
}
|
model_folder/vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
requirements.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tensorflow==2.15.0
|
2 |
+
gradio==5.3.0
|
3 |
+
pandas==2.0.3
|
4 |
+
Pillow==9.5.0
|
5 |
+
torch==2.1.0
|
6 |
+
nltk==3.8.1
|
7 |
+
numpy==1.23.5
|
8 |
+
transformers>=4.26.0
|