CoolFace
Modelpublic

MSGIEUN/my_policy_diffusion2

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes9downloads
train_config.json225 linesDownload Raw Back to root
1{2    "dataset": {3        "repo_id": "MSGIEUN/my_so101_multicam_dataset_RECORD4",4        "root": null,5        "episodes": null,6        "image_transforms": {7            "enable": false,8            "max_num_transforms": 3,9            "random_order": false,10            "tfs": {11                "brightness": {12                    "weight": 1.0,13                    "type": "ColorJitter",14                    "kwargs": {15                        "brightness": [16                            0.8,17                            1.218                        ]19                    }20                },21                "contrast": {22                    "weight": 1.0,23                    "type": "ColorJitter",24                    "kwargs": {25                        "contrast": [26                            0.8,27                            1.228                        ]29                    }30                },31                "saturation": {32                    "weight": 1.0,33                    "type": "ColorJitter",34                    "kwargs": {35                        "saturation": [36                            0.5,37                            1.538                        ]39                    }40                },41                "hue": {42                    "weight": 1.0,43                    "type": "ColorJitter",44                    "kwargs": {45                        "hue": [46                            -0.05,47                            0.0548                        ]49                    }50                },51                "sharpness": {52                    "weight": 1.0,53                    "type": "SharpnessJitter",54                    "kwargs": {55                        "sharpness": [56                            0.5,57                            1.558                        ]59                    }60                },61                "affine": {62                    "weight": 1.0,63                    "type": "RandomAffine",64                    "kwargs": {65                        "degrees": [66                            -5.0,67                            5.068                        ],69                        "translate": [70                            0.05,71                            0.0572                        ]73                    }74                }75            }76        },77        "revision": null,78        "use_imagenet_stats": true,79        "video_backend": "torchcodec",80        "streaming": false81    },82    "env": null,83    "policy": {84        "type": "diffusion",85        "n_obs_steps": 2,86        "input_features": {87            "observation.state": {88                "type": "STATE",89                "shape": [90                    691                ]92            },93            "observation.images.front": {94                "type": "VISUAL",95                "shape": [96                    3,97                    480,98                    64099                ]100            },101            "observation.images.realsense": {102                "type": "VISUAL",103                "shape": [104                    3,105                    480,106                    640107                ]108            }109        },110        "output_features": {111            "action": {112                "type": "ACTION",113                "shape": [114                    6115                ]116            }117        },118        "device": "cuda",119        "use_amp": false,120        "use_peft": false,121        "push_to_hub": true,122        "repo_id": "MSGIEUN/my_policy_diffusion2",123        "private": null,124        "tags": null,125        "license": null,126        "pretrained_path": null,127        "horizon": 16,128        "n_action_steps": 8,129        "normalization_mapping": {130            "VISUAL": "MEAN_STD",131            "STATE": "MIN_MAX",132            "ACTION": "MIN_MAX"133        },134        "drop_n_last_frames": 7,135        "vision_backbone": "resnet18",136        "crop_shape": [137            84,138            84139        ],140        "crop_is_random": true,141        "pretrained_backbone_weights": null,142        "use_group_norm": true,143        "spatial_softmax_num_keypoints": 32,144        "use_separate_rgb_encoder_per_camera": false,145        "down_dims": [146            512,147            1024,148            2048149        ],150        "kernel_size": 5,151        "n_groups": 8,152        "diffusion_step_embed_dim": 128,153        "use_film_scale_modulation": true,154        "noise_scheduler_type": "DDPM",155        "num_train_timesteps": 100,156        "beta_schedule": "squaredcos_cap_v2",157        "beta_start": 0.0001,158        "beta_end": 0.02,159        "prediction_type": "epsilon",160        "clip_sample": true,161        "clip_sample_range": 1.0,162        "num_inference_steps": null,163        "do_mask_loss_for_padding": false,164        "optimizer_lr": 0.0001,165        "optimizer_betas": [166            0.95,167            0.999168        ],169        "optimizer_eps": 1e-08,170        "optimizer_weight_decay": 1e-06,171        "scheduler_name": "cosine",172        "scheduler_warmup_steps": 500173    },174    "output_dir": "outputs/train/diffusion_policy_train4",175    "job_name": "diffusion_so101_test",176    "resume": false,177    "seed": 1000,178    "num_workers": 4,179    "batch_size": 32,180    "steps": 100000,181    "eval_freq": -1,182    "log_freq": 200,183    "tolerance_s": 0.0001,184    "save_checkpoint": true,185    "save_freq": 20000,186    "use_policy_training_preset": true,187    "optimizer": {188        "type": "adam",189        "lr": 0.0001,190        "weight_decay": 1e-06,191        "grad_clip_norm": 10.0,192        "betas": [193            0.95,194            0.999195        ],196        "eps": 1e-08197    },198    "scheduler": {199        "type": "diffuser",200        "num_warmup_steps": 500,201        "name": "cosine"202    },203    "eval": {204        "n_episodes": 50,205        "batch_size": 50,206        "use_async_envs": false207    },208    "wandb": {209        "enable": false,210        "disable_artifact": false,211        "project": "lerobot",212        "entity": null,213        "notes": null,214        "run_id": null,215        "mode": null216    },217    "peft": null,218    "use_rabc": false,219    "rabc_progress_path": null,220    "rabc_kappa": 0.01,221    "rabc_epsilon": 1e-06,222    "rabc_head_mode": "sparse",223    "rename_map": {},224    "checkpoint_path": null225}