-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess_functions.py
More file actions
32 lines (31 loc) · 1.98 KB
/
process_functions.py
File metadata and controls
32 lines (31 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ADOBE CONFIDENTIAL
# Copyright 2025 Adobe
# All Rights Reserved.
# NOTICE: All information contained herein is, and remains
# the property of Adobe and its suppliers, if any. The intellectual
# and technical concepts contained herein are proprietary to Adobe
# and its suppliers and are protected by all applicable intellectual
# property laws, including trade secret and copyright laws.
# Dissemination of this information or reproduction of this material
# is strictly forbidden unless prior written permission is obtained
# from Adobe.
from llava.train.data.text_image import preproces_text_to_image_generation_s3,preproces_text_to_image_generation_piat_hash,preproces_text_to_image_generation_s3_loc,preproces_text_to_image_generation_layout_sam
from llava.train.data.und import preproces_und_mammoth_si_10M,preproces_grandf,preproces_refcoco_rec,preproces_vw_instruct,preprocess_reflection_und
from llava.train.data.interleaved import process_metaquery,process_uniworld,process_sharegpt_4o_edit,process_gpt_edit,process_gpt_edit_loc_gnd,process_pica_banana
PROCESS_FUNCTIONs = {
"preproces_text_to_image_generation_s3": preproces_text_to_image_generation_s3,
"preproces_text_to_image_generation_piat_hash": preproces_text_to_image_generation_piat_hash,
'preproces_und_mammoth_si_10M':preproces_und_mammoth_si_10M,
'preproces_grandf':preproces_grandf,
'preproces_refcoco_rec':preproces_refcoco_rec,
'preproces_vw_instruct':preproces_vw_instruct,
'process_metaquery':process_metaquery,
'process_uniworld':process_uniworld,
'process_sharegpt_4o_edit':process_sharegpt_4o_edit,
'process_gpt_edit':process_gpt_edit,
'preprocess_reflection_und':preprocess_reflection_und,
'preproces_text_to_image_generation_s3_loc':preproces_text_to_image_generation_s3_loc,
'process_gpt_edit_loc_gnd': process_gpt_edit_loc_gnd,
'preproces_text_to_image_generation_layout_sam':preproces_text_to_image_generation_layout_sam,
'process_pica_banana':process_pica_banana
}