act-model-card-test / manifest.json
MarkRedeman's picture
Upload folder using huggingface_hub
5676125 verified
Raw
History Blame Contribute Delete
1.55 kB
{
"policy": {
"name": "act",
"source": {
"class_path": "physicalai.policies.act.policy.ACT"
}
},
"model": {
"runner": {
"class_path": "physicalai.inference.runners.single_pass.SinglePass"
},
"artifacts": {
"torch": "exports/torch/act.pt"
},
"input_features": [
{
"class_path": "physicalai.inference.data.features.InferenceFeature",
"init_args": {
"ftype": "STATE",
"shape": [
6
],
"name": "state",
"dtype": "float32"
}
},
{
"class_path": "physicalai.inference.data.features.InferenceFeature",
"init_args": {
"ftype": "VISUAL",
"shape": [
3,
480,
640
],
"name": "images.gripper",
"dtype": "float32"
}
},
{
"class_path": "physicalai.inference.data.features.InferenceFeature",
"init_args": {
"ftype": "VISUAL",
"shape": [
3,
480,
640
],
"name": "images.overview",
"dtype": "float32"
}
}
],
"output_features": [
{
"class_path": "physicalai.inference.data.features.InferenceFeature",
"init_args": {
"ftype": "ACTION",
"shape": [
100,
6
],
"name": "action",
"dtype": "float32"
}
}
]
},
"format": "policy_package",
"version": "1.0"
}