gitextract_680pwubp/ ├── Evaluation_Data_JSON/ │ ├── LOLv2_test_data.json │ ├── MultiGen_canny_data.json │ ├── MultiGen_hed_data.json │ ├── NYU_test_data.json │ ├── Rain100L_test_data.json │ ├── SOTS_test_data.json │ ├── UDC_test_data.json │ ├── UDC_val_data.json │ ├── inpainting_data.json │ └── outpainting_data.json ├── Explanatory_Instructions_Tuning/ │ ├── ckpts/ │ │ └── chameleon/ │ │ └── tokenizer/ │ │ ├── text_tokenizer.json │ │ └── vqgan.yaml │ ├── configs/ │ │ └── data/ │ │ ├── 448exp.yaml │ │ └── sample.yaml │ ├── data/ │ │ ├── __init__.py │ │ ├── convertsation.py │ │ └── item_processor.py │ ├── demo_inference.py │ ├── exps/ │ │ └── 7B.sh │ ├── finetune_solver.py │ ├── inference_solver.py │ ├── json/ │ │ ├── allweather_data.json │ │ └── edit_resolution_448/ │ │ └── Allweather/ │ │ ├── files/ │ │ │ ├── 0_0.pkl │ │ │ ├── 0_1.pkl │ │ │ ├── 1_0.pkl │ │ │ ├── 1_1.pkl │ │ │ ├── 2_0.pkl │ │ │ └── 2_1.pkl │ │ └── record.json │ ├── model/ │ │ ├── __init__.py │ │ ├── chameleon/ │ │ │ ├── __init__.py │ │ │ ├── configuration_chameleon.py │ │ │ ├── convert_chameleon_weights_to_hf.py │ │ │ ├── image_processing_chameleon.py │ │ │ ├── modeling_chameleon.py │ │ │ └── processing_chameleon.py │ │ ├── chameleon_vae_ori/ │ │ │ ├── __init__.py │ │ │ ├── image_tokenizer.py │ │ │ ├── vocab.py │ │ │ └── vqgan.py │ │ ├── configuration_xllmx_chameleon.py │ │ └── modeling_xllmx_chameleon.py │ ├── pre_tokenize/ │ │ ├── Adobe_5k_pre_tokenize.py │ │ ├── allweather_pre_tokenize.py │ │ ├── concat_record.py │ │ └── seed_multi_turn_pre_tokenize.py │ └── xllmx/ │ ├── __init__.py │ ├── data/ │ │ ├── __init__.py │ │ ├── conversation/ │ │ │ ├── __init__.py │ │ │ └── template.py │ │ ├── data_reader.py │ │ ├── dataset.py │ │ ├── item_processor.py │ │ └── sampler.py │ ├── model/ │ │ ├── __init__.py │ │ ├── components.py │ │ └── tokenizer.py │ ├── solvers/ │ │ ├── __init__.py │ │ └── finetune/ │ │ ├── __init__.py │ │ └── finetune.py │ └── util/ │ ├── __init__.py │ ├── ckpt.py │ ├── dist.py │ ├── lr_sched.py │ ├── misc.py │ └── tensor_type.py ├── README.md └── requirements.txt