Upload folder using huggingface_hub
Browse files- .gitattributes +2 -0
- exports/executorch/act.pte +3 -0
- exports/executorch/manifest.json +65 -0
- exports/onnx/act.onnx +3 -0
- exports/onnx/act.onnx.data +3 -0
- exports/onnx/manifest.json +57 -0
- exports/openvino/act.bin +3 -0
- exports/openvino/act.xml +0 -0
- exports/openvino/manifest.json +57 -0
- exports/torch/act.pt +3 -0
- exports/torch/manifest.json +57 -0
- model.ckpt +3 -0
- version_0/hparams.yaml +26 -0
- version_0/metrics.csv +17 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
exports/executorch/act.pte filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
exports/onnx/act.onnx.data filter=lfs diff=lfs merge=lfs -text
|
exports/executorch/act.pte
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a09259640a75aba180d33cdbc0b1610deedcf941cbf6a0021429427bb3232050
|
| 3 |
+
size 137552452
|
exports/executorch/manifest.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"policy": {
|
| 3 |
+
"name": "act",
|
| 4 |
+
"source": {
|
| 5 |
+
"class_path": "physicalai.policies.act.policy.ACT"
|
| 6 |
+
}
|
| 7 |
+
},
|
| 8 |
+
"model": {
|
| 9 |
+
"runner": {
|
| 10 |
+
"class_path": "physicalai.inference.runners.single_pass.SinglePass"
|
| 11 |
+
},
|
| 12 |
+
"artifacts": {
|
| 13 |
+
"executorch": "act.pte"
|
| 14 |
+
},
|
| 15 |
+
"input_features": [
|
| 16 |
+
{
|
| 17 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 18 |
+
"init_args": {
|
| 19 |
+
"ftype": "STATE",
|
| 20 |
+
"shape": [
|
| 21 |
+
6
|
| 22 |
+
],
|
| 23 |
+
"name": "state",
|
| 24 |
+
"dtype": "float32"
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 29 |
+
"init_args": {
|
| 30 |
+
"ftype": "VISUAL",
|
| 31 |
+
"shape": [
|
| 32 |
+
3,
|
| 33 |
+
480,
|
| 34 |
+
640
|
| 35 |
+
],
|
| 36 |
+
"name": "images.wrist",
|
| 37 |
+
"dtype": "float32"
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 42 |
+
"init_args": {
|
| 43 |
+
"ftype": "VISUAL",
|
| 44 |
+
"shape": [
|
| 45 |
+
3,
|
| 46 |
+
480,
|
| 47 |
+
640
|
| 48 |
+
],
|
| 49 |
+
"name": "images.overview",
|
| 50 |
+
"dtype": "float32"
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
"input_names": [
|
| 56 |
+
"state",
|
| 57 |
+
"images.wrist",
|
| 58 |
+
"images.overview"
|
| 59 |
+
],
|
| 60 |
+
"output_names": [
|
| 61 |
+
"action"
|
| 62 |
+
],
|
| 63 |
+
"format": "policy_package",
|
| 64 |
+
"version": "1.0"
|
| 65 |
+
}
|
exports/onnx/act.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3177914dcf05990bfebd535f2cfc92ce7634964d865a7633af4168840ebffa97
|
| 3 |
+
size 12703516
|
exports/onnx/act.onnx.data
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cbb5ccbcc92469baabf7fa4121a3bb3c2460868588a932eb3faddaa88d1d54c
|
| 3 |
+
size 138412032
|
exports/onnx/manifest.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"policy": {
|
| 3 |
+
"name": "act",
|
| 4 |
+
"source": {
|
| 5 |
+
"class_path": "physicalai.policies.act.policy.ACT"
|
| 6 |
+
}
|
| 7 |
+
},
|
| 8 |
+
"model": {
|
| 9 |
+
"runner": {
|
| 10 |
+
"class_path": "physicalai.inference.runners.single_pass.SinglePass"
|
| 11 |
+
},
|
| 12 |
+
"artifacts": {
|
| 13 |
+
"onnx": "act.onnx"
|
| 14 |
+
},
|
| 15 |
+
"input_features": [
|
| 16 |
+
{
|
| 17 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 18 |
+
"init_args": {
|
| 19 |
+
"ftype": "STATE",
|
| 20 |
+
"shape": [
|
| 21 |
+
6
|
| 22 |
+
],
|
| 23 |
+
"name": "state",
|
| 24 |
+
"dtype": "float32"
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 29 |
+
"init_args": {
|
| 30 |
+
"ftype": "VISUAL",
|
| 31 |
+
"shape": [
|
| 32 |
+
3,
|
| 33 |
+
480,
|
| 34 |
+
640
|
| 35 |
+
],
|
| 36 |
+
"name": "images.wrist",
|
| 37 |
+
"dtype": "float32"
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 42 |
+
"init_args": {
|
| 43 |
+
"ftype": "VISUAL",
|
| 44 |
+
"shape": [
|
| 45 |
+
3,
|
| 46 |
+
480,
|
| 47 |
+
640
|
| 48 |
+
],
|
| 49 |
+
"name": "images.overview",
|
| 50 |
+
"dtype": "float32"
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
"format": "policy_package",
|
| 56 |
+
"version": "1.0"
|
| 57 |
+
}
|
exports/openvino/act.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b1289ed077e0b4328ed5b2b1c6a3a476e2e015b5a146cd29d93cab5f837a277
|
| 3 |
+
size 136918804
|
exports/openvino/act.xml
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
exports/openvino/manifest.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"policy": {
|
| 3 |
+
"name": "act",
|
| 4 |
+
"source": {
|
| 5 |
+
"class_path": "physicalai.policies.act.policy.ACT"
|
| 6 |
+
}
|
| 7 |
+
},
|
| 8 |
+
"model": {
|
| 9 |
+
"runner": {
|
| 10 |
+
"class_path": "physicalai.inference.runners.single_pass.SinglePass"
|
| 11 |
+
},
|
| 12 |
+
"artifacts": {
|
| 13 |
+
"openvino": "act.xml"
|
| 14 |
+
},
|
| 15 |
+
"input_features": [
|
| 16 |
+
{
|
| 17 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 18 |
+
"init_args": {
|
| 19 |
+
"ftype": "STATE",
|
| 20 |
+
"shape": [
|
| 21 |
+
6
|
| 22 |
+
],
|
| 23 |
+
"name": "state",
|
| 24 |
+
"dtype": "float32"
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 29 |
+
"init_args": {
|
| 30 |
+
"ftype": "VISUAL",
|
| 31 |
+
"shape": [
|
| 32 |
+
3,
|
| 33 |
+
480,
|
| 34 |
+
640
|
| 35 |
+
],
|
| 36 |
+
"name": "images.wrist",
|
| 37 |
+
"dtype": "float32"
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 42 |
+
"init_args": {
|
| 43 |
+
"ftype": "VISUAL",
|
| 44 |
+
"shape": [
|
| 45 |
+
3,
|
| 46 |
+
480,
|
| 47 |
+
640
|
| 48 |
+
],
|
| 49 |
+
"name": "images.overview",
|
| 50 |
+
"dtype": "float32"
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
"format": "policy_package",
|
| 56 |
+
"version": "1.0"
|
| 57 |
+
}
|
exports/torch/act.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9f3f6dd4f4cfa74ddf7a0f3b4de20bb42aac3e94bff7580d79ec7ad554bb5f7
|
| 3 |
+
size 206753263
|
exports/torch/manifest.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"policy": {
|
| 3 |
+
"name": "act",
|
| 4 |
+
"source": {
|
| 5 |
+
"class_path": "physicalai.policies.act.policy.ACT"
|
| 6 |
+
}
|
| 7 |
+
},
|
| 8 |
+
"model": {
|
| 9 |
+
"runner": {
|
| 10 |
+
"class_path": "physicalai.inference.runners.single_pass.SinglePass"
|
| 11 |
+
},
|
| 12 |
+
"artifacts": {
|
| 13 |
+
"torch": "act.pt"
|
| 14 |
+
},
|
| 15 |
+
"input_features": [
|
| 16 |
+
{
|
| 17 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 18 |
+
"init_args": {
|
| 19 |
+
"ftype": "STATE",
|
| 20 |
+
"shape": [
|
| 21 |
+
6
|
| 22 |
+
],
|
| 23 |
+
"name": "state",
|
| 24 |
+
"dtype": "float32"
|
| 25 |
+
}
|
| 26 |
+
},
|
| 27 |
+
{
|
| 28 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 29 |
+
"init_args": {
|
| 30 |
+
"ftype": "VISUAL",
|
| 31 |
+
"shape": [
|
| 32 |
+
3,
|
| 33 |
+
480,
|
| 34 |
+
640
|
| 35 |
+
],
|
| 36 |
+
"name": "images.wrist",
|
| 37 |
+
"dtype": "float32"
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"class_path": "physicalai.inference.data.features.InferenceFeature",
|
| 42 |
+
"init_args": {
|
| 43 |
+
"ftype": "VISUAL",
|
| 44 |
+
"shape": [
|
| 45 |
+
3,
|
| 46 |
+
480,
|
| 47 |
+
640
|
| 48 |
+
],
|
| 49 |
+
"name": "images.overview",
|
| 50 |
+
"dtype": "float32"
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
]
|
| 54 |
+
},
|
| 55 |
+
"format": "policy_package",
|
| 56 |
+
"version": "1.0"
|
| 57 |
+
}
|
model.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1394a850082910cf4027c0d6ff6213db5bc8f12a21713859cd98954dc6588af2
|
| 3 |
+
size 619681471
|
version_0/hparams.yaml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
n_obs_steps: 1
|
| 2 |
+
chunk_size: 100
|
| 3 |
+
n_action_steps: 100
|
| 4 |
+
vision_backbone: resnet18
|
| 5 |
+
pretrained_backbone_weights: ResNet18_Weights.IMAGENET1K_V1
|
| 6 |
+
replace_final_stride_with_dilation: false
|
| 7 |
+
image_size:
|
| 8 |
+
- 512
|
| 9 |
+
- 512
|
| 10 |
+
pre_norm: false
|
| 11 |
+
dim_model: 512
|
| 12 |
+
n_heads: 8
|
| 13 |
+
dim_feedforward: 3200
|
| 14 |
+
feedforward_activation: relu
|
| 15 |
+
n_encoder_layers: 4
|
| 16 |
+
n_decoder_layers: 1
|
| 17 |
+
use_vae: true
|
| 18 |
+
latent_dim: 32
|
| 19 |
+
n_vae_encoder_layers: 4
|
| 20 |
+
temporal_ensemble_coeff: null
|
| 21 |
+
dropout: 0.1
|
| 22 |
+
kl_weight: 10.0
|
| 23 |
+
optimizer_lr: 1.0e-05
|
| 24 |
+
optimizer_weight_decay: 0.0001
|
| 25 |
+
optimizer_grad_clip_norm: 10.0
|
| 26 |
+
dataset_stats: null
|
version_0/metrics.csv
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
epoch,step,train/loss,train/loss_step,val/loss
|
| 2 |
+
0,49,,5.509679794311523,
|
| 3 |
+
0,65,,,5.460446357727051
|
| 4 |
+
0,65,11.565197944641113,,
|
| 5 |
+
1,99,,4.5766119956970215,
|
| 6 |
+
1,131,,,3.809234619140625
|
| 7 |
+
1,131,4.3943915367126465,,
|
| 8 |
+
2,149,,3.9605958461761475,
|
| 9 |
+
2,197,,,3.123067855834961
|
| 10 |
+
2,197,3.5187249183654785,,
|
| 11 |
+
3,199,,3.217646837234497,
|
| 12 |
+
3,249,,2.9451258182525635,
|
| 13 |
+
3,263,,,2.8558363914489746
|
| 14 |
+
3,263,3.077080488204956,,
|
| 15 |
+
4,264,,2.809929609298706,
|
| 16 |
+
4,264,,,2.857694625854492
|
| 17 |
+
4,264,2.809929609298706,,
|