Spaces:
Runtime error
Runtime error
File size: 1,136 Bytes
d1843be |
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
# proto-file: deeplab2/model.proto
# proto-message: ModelOptions
decoder {
feature_key: "res5"
atrous_rates: 6
atrous_rates: 12
atrous_rates: 18
}
backbone {
name: "resnet50"
}
# Motion-Deeplab adopts Panoptic-Deeplab for the task of Video Panoptic
# Segmentation or Segmenting and Tracking Every Pixel (STEP).
motion_deeplab {
low_level {
feature_key: "res3"
channels_project: 64
}
low_level {
feature_key: "res2"
channels_project: 32
}
semantic_head {
# Example for KITTI-STEP.
output_channels: 19
head_channels: 256
}
instance {
instance_decoder_override {
feature_key: "res5"
decoder_channels: 128
atrous_rates: 6
atrous_rates: 12
atrous_rates: 18
}
low_level_override {
feature_key: "res3"
channels_project: 32
}
low_level_override {
feature_key: "res2"
channels_project: 16
}
center_head {
output_channels: 1
head_channels: 32
}
regression_head {
output_channels: 2
head_channels: 32
}
}
motion_head {
output_channels: 2
head_channels: 32
}
}
|