Views
No views yet


*.tar files in the 3DEditVerse folder.tar -xf alpaca.tar / mixamo.tar / test_data.tarflux_edit.part.tar.* files, you should concatenate them into a single file before extracting.cat flux_edit.part.tar.* > flux_edit.tarpath_to_3DEditVerse/3DEditVerse
├── alpaca
│ ├── 1
│ ├── 2
│ ├── ...
├── flux_edit
│ ├── 3D CG rendering_4
│ ├── 3D CG rendering_5
│ ├── ...
├── mixamo
│ ├── latents
│ ├── renders_cond
│ ├── ss_latents
├── test_data
│ ├── alpaca
│ ├── alpaca_render
│ ├── flux_edit
│ ├── flux_edit_render
│ ├── mixamo
│ ├── mixamo_render
├── alpaca_confidence.json
├── flux_edit_confidence.json
├── dataset_info.json
├── test_data_info.json
├── edit_prompts.json./work_dirs/Editing_Training folder. Then, you can inference on the testing data in 3DEditVerse:CUDA_VISIBLE_DEVICES=0 python eval_3d_editing.py --cuda_idx 0 --world_size 1 --rank 0 --dataset_root_dir /path_to_3DEditVerse/3DEditVerse --blender_path /path_to_blender/blender-4.4.3-linux-x64/blender --ss_latents_load_id img_to_voxel --latents_load_id voxel_to_texture --save_name 3DEditFormer --output_mesh --output_video --print_time/path_to_3DEditVerse/3DEditVerse with the path to your 3DEditVerse dataset and /path_to_blender/blender-4.4.3-linux-x64/blender with the path to your blender. CUDA_VISIBLE_DEVICES=0 means the GPU index for model inference, --cuda_idx 0 means the GPU index for image rendering with blender.--world_size and --rank to inference the model on multiple GPUs, i.e., run the command with the same --world_size 4 and different --rank 0/1/2/3 on 4 GPUs.CUDA_VISIBLE_DEVICES=0 python calculate_metric_2d.py --eval_results_dir ./work_dirs/eval_results/3DEditFormer --dataset_root_dir /path_to_3DEditVerse/3DEditVerse./work_dirs/eval_results/3DEditFormer/eval_metric.json.CUDA_VISIBLE_DEVICES=0 python calculate_metric_3d.py --eval_results_dir ./work_dirs/eval_results/3DEditFormer --dataset_root_dir /path_to_3DEditVerse/3DEditVerse./work_dirs/eval_results/3DEditFormer/eval_metric.json.CUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=4 --master_port=12349 train_torchrun.py --config configs/editing/ss_flow_img_dit_L_16l8_fp16.json --data_dir /path_to_3DEditVerse/3DEditVerse --output_dir ./work_dirs/Editing_Training/img_to_voxel_01 --random_cond_gt --train_only_editing_weights --lr 0.0001 --max_steps 40000 --batch_size_per_gpu 4 --random_ori_edit 0.15 --simple_edit_data_if_filteredCUDA_VISIBLE_DEVICES=0,1,2,3 torchrun --nproc_per_node=4 --master_port=12349 train_torchrun.py --config configs/editing/slat_flow_img_dit_L_64l8p2_fp16.json --data_dir /path_to_3DEditVerse/3DEditVerse --output_dir ./work_dirs/Editing_Training/voxel_to_texture_01 --random_cond_gt --train_only_editing_weights --lr 0.0001 --max_steps 40000 --batch_size_per_gpu 41@article{3DEditFormer,
2 title={Towards Scalable and Consistent 3D Editing},
3 author={Xia, Ruihao and Tang, Yang and Zhou, Pan},
4 journal={arXiv:2510.02994},
5 year={2025}
6}