CoolFace
Modelpublic

keras/deeplab_v3_plus_resnet50_pascalvoc

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
1likes20downloads
task.json116 linesDownload Raw Back to root
1{2    "module": "keras_hub.src.models.deeplab_v3.deeplab_v3_segmenter",3    "class_name": "DeepLabV3ImageSegmenter",4    "config": {5        "backbone": {6            "module": "keras_hub.src.models.deeplab_v3.deeplab_v3_backbone",7            "class_name": "DeepLabV3Backbone",8            "config": {9                "name": "deep_lab_v3_backbone",10                "trainable": true,11                "image_encoder": {12                    "module": "keras_hub.src.models.resnet.resnet_backbone",13                    "class_name": "ResNetBackbone",14                    "config": {15                        "name": "res_net_backbone",16                        "trainable": true,17                        "input_conv_filters": [18                            6419                        ],20                        "input_conv_kernel_sizes": [21                            722                        ],23                        "stackwise_num_filters": [24                            64,25                            128,26                            256,27                            51228                        ],29                        "stackwise_num_blocks": [30                            3,31                            4,32                            6,33                            334                        ],35                        "stackwise_num_strides": [36                            1,37                            2,38                            2,39                            240                        ],41                        "block_type": "bottleneck_block",42                        "use_pre_activation": false,43                        "image_shape": [44                            null,45                            null,46                            347                        ]48                    },49                    "registered_name": "keras_hub>ResNetBackbone"50                },51                "projection_filters": 48,52                "dilation_rates": [53                    6,54                    12,55                    1856                ],57                "upsampling_size": 8,58                "low_level_feature_key": "P2",59                "spatial_pyramid_pooling_key": "P5",60                "image_shape": [61                    null,62                    null,63                    364                ]65            },66            "registered_name": "keras_hub>DeepLabV3Backbone"67        },68        "preprocessor": {69            "module": "keras_hub.src.models.deeplab_v3.deeplab_v3_image_segmeter_preprocessor",70            "class_name": "DeepLabV3ImageSegmenterPreprocessor",71            "config": {72                "name": "deep_lab_v3_image_segmenter_preprocessor",73                "trainable": true,74                "dtype": {75                    "module": "keras",76                    "class_name": "DTypePolicy",77                    "config": {78                        "name": "float32"79                    },80                    "registered_name": null81                },82                "image_converter": {83                    "module": "keras_hub.src.models.deeplab_v3.deeplab_v3_image_converter",84                    "class_name": "DeepLabV3ImageConverter",85                    "config": {86                        "name": "deep_lab_v3_image_converter",87                        "trainable": true,88                        "dtype": {89                            "module": "keras",90                            "class_name": "DTypePolicy",91                            "config": {92                                "name": "float32"93                            },94                            "registered_name": null95                        },96                        "image_size": [97                            512,98                            51299                        ],100                        "scale": null,101                        "offset": null,102                        "interpolation": "nearest",103                        "crop_to_aspect_ratio": true104                    },105                    "registered_name": "keras_hub>DeepLabV3ImageConverter"106                },107                "config_file": "preprocessor.json"108            },109            "registered_name": "keras_hub>DeepLabV3ImageSegmenterPreprocessor"110        },111        "name": "deep_lab_v3_image_segmenter",112        "num_classes": 21,113        "activation": "softmax"114    },115    "registered_name": "keras_hub>DeepLabV3ImageSegmenter"116}