Spaces:
Runtime error
Runtime error
File size: 3,775 Bytes
4f5e042 |
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
{
"pipeline": {
"input": [
"img"
],
"output": [
"post_output"
],
"tasks": [
{
"type": "Task",
"module": "Transform",
"name": "Preprocess",
"input": [
"img"
],
"output": [
"prep_output"
],
"transforms": [
{
"type": "LoadImageFromFile"
},
{
"type": "Resize",
"keep_ratio": false,
"size": [
416,
416
]
},
{
"type": "Normalize",
"mean": [
123.675,
116.28,
103.53
],
"std": [
58.395,
57.12,
57.375
],
"to_rgb": true
},
{
"type": "ImageToTensor",
"keys": [
"img"
]
},
{
"type": "Collect",
"keys": [
"img"
],
"meta_keys": [
"img_shape",
"pad_shape",
"ori_shape",
"img_norm_cfg",
"scale_factor"
]
}
]
},
{
"name": "depthwiseseparableaspp",
"type": "Task",
"module": "Net",
"is_batched": false,
"input": [
"prep_output"
],
"output": [
"infer_output"
],
"input_map": {
"img": "input"
},
"output_map": {}
},
{
"type": "Task",
"module": "mmseg",
"name": "postprocess",
"component": "ResizeMask",
"params": {
"type": "DepthwiseSeparableASPPHead",
"in_channels": 320,
"in_index": 3,
"channels": 128,
"dilations": [
1,
12,
24,
36
],
"c1_in_channels": 24,
"c1_channels": 12,
"dropout_ratio": 0.1,
"num_classes": 3,
"norm_cfg": {
"type": "SyncBN",
"requires_grad": true
},
"align_corners": false,
"loss_decode": {
"type": "CrossEntropyLoss",
"use_sigmoid": false,
"loss_weight": 1.0
},
"with_argmax": true
},
"output": [
"post_output"
],
"input": [
"prep_output",
"infer_output"
]
}
]
}
} |