alexandersoare commited on
Commit
1ea199d
·
verified ·
1 Parent(s): f3773c6

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +9 -0
  2. config.json +41 -0
  3. config.yaml +126 -0
  4. model.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - model_hub_mixin
4
+ - pytorch_model_hub_mixin
5
+ ---
6
+
7
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
+ - Library: [More Information Needed]
9
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "chunk_size": 16,
3
+ "dim_feedforward": 3200,
4
+ "dim_model": 512,
5
+ "dropout": 0.1,
6
+ "feedforward_activation": "relu",
7
+ "input_normalization_modes": {
8
+ "observation.environment_state": "min_max",
9
+ "observation.state": "min_max"
10
+ },
11
+ "input_shapes": {
12
+ "observation.environment_state": [
13
+ 16
14
+ ],
15
+ "observation.state": [
16
+ 2
17
+ ]
18
+ },
19
+ "kl_weight": 10.0,
20
+ "latent_dim": 32,
21
+ "n_action_steps": 16,
22
+ "n_decoder_layers": 4,
23
+ "n_encoder_layers": 4,
24
+ "n_heads": 8,
25
+ "n_obs_steps": 1,
26
+ "n_vae_encoder_layers": 4,
27
+ "output_normalization_modes": {
28
+ "action": "min_max"
29
+ },
30
+ "output_shapes": {
31
+ "action": [
32
+ 2
33
+ ]
34
+ },
35
+ "pre_norm": false,
36
+ "pretrained_backbone_weights": "ResNet18_Weights.IMAGENET1K_V1",
37
+ "replace_final_stride_with_dilation": false,
38
+ "temporal_ensemble_momentum": null,
39
+ "use_vae": false,
40
+ "vision_backbone": "resnet18"
41
+ }
config.yaml ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ resume: false
2
+ device: cuda
3
+ use_amp: true
4
+ seed: 100000
5
+ dataset_repo_id: lerobot/pusht_keypoints
6
+ video_backend: pyav
7
+ training:
8
+ offline_steps: 100000
9
+ online_steps: 0
10
+ online_steps_between_rollouts: ???
11
+ online_sampling_ratio: 0.5
12
+ online_env_seed: ???
13
+ eval_freq: 10000
14
+ log_freq: 250
15
+ save_checkpoint: true
16
+ save_freq: 25000
17
+ num_workers: 8
18
+ batch_size: 64
19
+ image_transforms:
20
+ enable: false
21
+ max_num_transforms: 3
22
+ random_order: false
23
+ brightness:
24
+ weight: 1
25
+ min_max:
26
+ - 0.8
27
+ - 1.2
28
+ contrast:
29
+ weight: 1
30
+ min_max:
31
+ - 0.8
32
+ - 1.2
33
+ saturation:
34
+ weight: 1
35
+ min_max:
36
+ - 0.5
37
+ - 1.5
38
+ hue:
39
+ weight: 1
40
+ min_max:
41
+ - -0.05
42
+ - 0.05
43
+ sharpness:
44
+ weight: 1
45
+ min_max:
46
+ - 0.8
47
+ - 1.2
48
+ lr: 3.0e-05
49
+ lr_backbone: 1.0e-05
50
+ weight_decay: 0.0001
51
+ grad_clip_norm: 10
52
+ delta_timestamps:
53
+ action:
54
+ - 0.0
55
+ - 0.1
56
+ - 0.2
57
+ - 0.3
58
+ - 0.4
59
+ - 0.5
60
+ - 0.6
61
+ - 0.7
62
+ - 0.8
63
+ - 0.9
64
+ - 1.0
65
+ - 1.1
66
+ - 1.2
67
+ - 1.3
68
+ - 1.4
69
+ - 1.5
70
+ eval:
71
+ n_episodes: 50
72
+ batch_size: 50
73
+ use_async_envs: false
74
+ wandb:
75
+ enable: true
76
+ disable_artifact: true
77
+ project: lerobot
78
+ notes: ''
79
+ fps: 10
80
+ env:
81
+ name: pusht
82
+ task: PushT-v0
83
+ image_size: 96
84
+ state_dim: 2
85
+ action_dim: 2
86
+ fps: ${fps}
87
+ episode_length: 300
88
+ gym:
89
+ obs_type: environment_state_agent_pos
90
+ render_mode: rgb_array
91
+ visualization_width: 384
92
+ visualization_height: 384
93
+ policy:
94
+ name: act
95
+ n_obs_steps: 1
96
+ chunk_size: 16
97
+ n_action_steps: 16
98
+ input_shapes:
99
+ observation.environment_state:
100
+ - 16
101
+ observation.state:
102
+ - ${env.state_dim}
103
+ output_shapes:
104
+ action:
105
+ - ${env.action_dim}
106
+ input_normalization_modes:
107
+ observation.environment_state: min_max
108
+ observation.state: min_max
109
+ output_normalization_modes:
110
+ action: min_max
111
+ vision_backbone: resnet18
112
+ pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
113
+ replace_final_stride_with_dilation: false
114
+ pre_norm: false
115
+ dim_model: 512
116
+ n_heads: 8
117
+ dim_feedforward: 3200
118
+ feedforward_activation: relu
119
+ n_encoder_layers: 4
120
+ n_decoder_layers: 4
121
+ use_vae: false
122
+ latent_dim: 32
123
+ n_vae_encoder_layers: 4
124
+ temporal_ensemble_momentum: null
125
+ dropout: 0.1
126
+ kl_weight: 10.0
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08bb8b4b7c96fed1c887735ceda79c59cd0402cb39daff5292550bc1de196d4e
3
+ size 155659472