xvla-libero-pp-cube / policy_preprocessor.json
juxhinr's picture
Upload DataProcessorPipeline
e4c2907 verified
{
"name": "policy_preprocessor",
"steps": [
{
"registry_name": "rename_observations_processor",
"config": {
"rename_map": {
"observation.images.main": "observation.images.image",
"observation.images.secondary_0": "observation.images.image2"
}
}
},
{
"registry_name": "to_batch_processor",
"config": {}
},
{
"registry_name": "tokenizer_processor",
"config": {
"max_length": 50,
"task_key": "task",
"padding_side": "right",
"padding": "max_length",
"truncation": true,
"tokenizer_name": "facebook/bart-large"
}
},
{
"registry_name": "xvla_add_domain_id",
"config": {
"domain_id": 3
}
},
{
"registry_name": "device_processor",
"config": {
"device": "cuda",
"float_dtype": null
}
},
{
"registry_name": "normalizer_processor",
"config": {
"eps": 1e-08,
"features": {
"observation.images.image": {
"type": "VISUAL",
"shape": [
3,
256,
256
]
},
"observation.images.image2": {
"type": "VISUAL",
"shape": [
3,
256,
256
]
},
"observation.state": {
"type": "STATE",
"shape": [
8
]
},
"observation.images.empty_camera_0": {
"type": "VISUAL",
"shape": [
3,
224,
224
]
},
"action": {
"type": "ACTION",
"shape": [
6
]
}
},
"norm_map": {
"STATE": "IDENTITY",
"ACTION": "IDENTITY",
"VISUAL": "IDENTITY"
}
},
"state_file": "policy_preprocessor_step_5_normalizer_processor.safetensors"
}
]
}