Downloads · 30 days
6
5% of all-time downloads
Diamantis99/SP7BQhB
SP7BQhB is a image segmentation model from Diamantis99. Use it for the image segmentation task on the model card, and read the license before you ship it in a product. It is set up for segmentation-models-pytorch. The card lists the license as mit.
Table of Contents: - Load trained model - Model init parameters - Model metrics - Dataset
Downloads · 30 days
6
5% of all-time downloads
All-time downloads
121
Public
Parameters
171M
684 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors684 MB · 100%
From the Hugging Face model README
Table of Contents:
import segmentation_models_pytorch as smp
model = smp.from_pretrained("<save-directory-or-this-repo>")
model_init_params = {
"encoder_name": "se_resnext101_32x4d",
"encoder_depth": 5,
"encoder_weights": "imagenet",
"decoder_use_norm": "batchnorm",
"decoder_channels": (256, 128, 64, 32, 16),
"decoder_pab_channels": 64,
"decoder_interpolation": "nearest",
"in_channels": 3,
"classes": 1,
"activation": None,
"aux_params": None
}
[
{
"test_per_image_iou": 0.8736167550086975,
"test_dataset_iou": 0.8809515237808228
}
]
Dataset name: VisionPipe
This model has been pushed to the Hub using the PytorchModelHubMixin