Views
No views yet
all: Pre-training of all three encoders (CLIP ViT, CLIP Text, and PointNet++).pc: Only the PointNet++ (Point Cloud) backbone is trained; Image and Text encoders remain frozen.nm: "No Masked" variant (ablation study).| Folder Name | Method Description | Alignment Strategy |
|---|---|---|
192_l2_tensor_all | Default | L2 Similarity Tensor |
192_l2_tensor_nm_all | Default (No Masking) | L2 Similarity Tensor |
192_l2_tensor_pc | Frozen Image/Text | L2 Similarity Tensor |
192_cos_tensor_all | Cosine Variant | Cosine Similarity Tensor |
192_cos_matrix_all | Pairwise Matrix | 3× Pairwise Similarity Matrices |
192_cos_matrix_pc | Pairwise (Frozen) | 3× Pairwise Similarity Matrices |
192_cos_matrix_IP_pc | Image-Point Only | 1× Similarity Matrix (I-L) |
huggingface_hub library:1from huggingface_hub import hf_hub_download
2
3# Available: ["192_l2_tensor_all", "192_l2_tensor_nm_all", "192_cos_tensor_all", "192_cos_matrix_all", "192_l2_tensor_pc", "192_cos_matrix_pc", "192_cos_matrix_IP_pc"]
4
5config_name = "192_l2_tensor_all"
6
7checkpoint_path = hf_hub_download(
8 repo_id="Ximeng0831/CTP",
9 subfolder=config_name,
10 filename="ckpt_epoch9.pt",
11 # local_dir="checkpoints"
12)all: Training is performed for 10 epochs with a total batch size of 384. These models are trained using two NVIDIA A100 (40G) GPUs.pc: Training is conducted for 20 epochs with a batch size of 192. These models are trained on a single NVIDIA RTX 4090 GPU.Note: For specific hyperparameter settings such as learning rate schedules and weight decay, please refer to the corresponding.yamlfiles in the link above.