GitHub - LingyvKong/OneChart: [ACM'MM 2024 Oral] Official code for "OneChart: Purify the Chart Structural Extraction via One Auxiliary Token" (original) (raw)

OneChart: Purify the Chart Structural Extraction via One Auxiliary Token

Jinyue Chen*, Lingyu Kong*, Haoran Wei, Chenglong Liu, Zheng Ge, Liang Zhao, Jianjian Sun, Chunrui Han, Xiangyu Zhang

Release

Contents

0. Quickly try the demo using hugginface

from transformers import AutoModel, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained('kppkkp/OneChart', trust_remote_code=True, use_fast=False, padding_side="right") model = AutoModel.from_pretrained('kppkkp/OneChart', trust_remote_code=True, low_cpu_mem_usage=True, device_map='cuda') model = model.eval().cuda()

input your test image

image_file = 'image.png' res = model.chat(tokenizer, image_file, reliable_check=True) print(res)

1. Benchmark Data and Evaluation Tool

python ChartSE_eval/eval_ChartSE.py

2. Install

Our environment is cuda11.8+torch2.0.1

git clone https://github.com/LingyvKong/OneChart.git cd OneChart/OneChart_code/

conda create -n onechart python=3.10 -y conda activate onechart pip install -e . pip install -r requirements.txt pip install ninja

3. Demo

python vary/demo/run_opt_v1.py --model-name /onechart_weights_path/

Following the instruction, type 1 first, then type image path.

4. Train

[ { "image": "000000.png", "conversations": [ { "from": "human", "value": "\nConvert the key information of the chart to a python dict:" }, { "from": "gpt", "value": "{"title": "Share of children who are wasted, 2010", "source": "None", "x_title": "None", "y_title": "None", "values": {"Haiti": "6.12%", "Libya": "5.32%", "Morocco": "5.11%", "Lebanon": "4.5%", "Colombia": "1.45%"}}", "Numbers": [6.12, 5.32, 5.11, 4.5, 1.45] } ], }, { ... } ]

In case you don't want to use and train the auxiliary head, comment out this line data_dict['loc_labels'] = self.extract_numbers(data["conversations"]), and the json format can be:

[ { "image": "000000.png", "conversations": [ { "from": "human", "value": "\nConvert the key information of the chart to a python dict:" }, { "from": "gpt", "value": "{"title": "Share of children who are wasted, 2010", "source": "None", "x_title": "None", "y_title": "None", "values": {"Haiti": "6.12%", "Libya": "5.32%", "Morocco": "5.11%", "Lebanon": "4.5%", "Colombia": "1.45%"}}" } ] }, { ... } ]

deepspeed /data/OneChart_code/vary/train/train_opt.py --deepspeed /data/OneChart_code/zero_config/zero2.json --model_name_or_path /data/checkpoints/varytiny/ --vision_tower /data/checkpoints/varytiny/ --freeze_vision_tower False --freeze_lm_model False --vision_select_layer -2 --use_im_start_end True --bf16 True --per_device_eval_batch_size 4 --gradient_accumulation_steps 1 --evaluation_strategy "no" --save_strategy "steps" --save_steps 250 --save_total_limit 1 --weight_decay 0. --warmup_ratio 0.03 --lr_scheduler_type "cosine" --logging_steps 1 --tf32 True --model_max_length 2048 --gradient_checkpointing True --dataloader_num_workers 4 --report_to none --per_device_train_batch_size 16 --num_train_epochs 1 --learning_rate 5e-5 --datasets render_chart_en+render_chart_zh --output_dir /data/checkpoints/onechart-pretrain/

Acknowledgement

Code License Data License

Usage and License Notices: The data, code, and checkpoint are intended and licensed for research use only. They are also restricted to use that follow the license agreement of Vary, Opt.

Citation

If you find our work useful in your research, please consider citing OneChart:

@inproceedings{chen2024onechart, title={Onechart: Purify the chart structural extraction via one auxiliary token}, author={Chen, Jinyue and Kong, Lingyu and Wei, Haoran and Liu, Chenglong and Ge, Zheng and Zhao, Liang and Sun, Jianjian and Han, Chunrui and Zhang, Xiangyu}, booktitle={Proceedings of the 32nd ACM International Conference on Multimedia}, pages={147--155}, year={2024} }