
## training
# The model training command is as follows

python train.py /path/to/config --gpu-ids 0 1 2 3 4 5 


## evaling
# the evaluating command is as follows

python /path/to/your/lib/eval.py \
    /path/to/config  \
    --resume-from /path/to/your/model.pth \
    --task retrive \
    --dataset objaverse \
    --test_dataset objaverse \
    --data_dir /path/to/your/gaussian-splatting/objaverse_all \
    --data_split sample_all.json \
    --batch_size 40 \
    --k 1,3,5,10