File size: 1,164 Bytes
ae83015 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | {
"dataset_param": {
"video_folder": "./data_path",
"num_frames": 25,
"resolution": 256,
"sample_rate": 1,
"dynamic_sample": false,
"transform_pipeline": {
"video": [
{
"trans_type": "ToTensorVideo"
},
{
"trans_type": "Resize",
"param": {
"size": 256
}
},
{
"trans_type": "CenterCropVideo",
"param": {
"size": 256,
"interpolation_mode": "bilinear"
}
},
{
"trans_type": "AffineVideo",
"param": {
"gamma": 2.0,
"beta": -1.0
}
}
]
}
},
"dataloader_param": {
"dataloader_mode": "sampler",
"sampler_type": "AESampler",
"shuffle": true,
"pin_memory": true
}
} |