Downloads · 30 days
3
23% of all-time downloads
SeppSepp/binary-segmentation-scratchAssay
binary-segmentation-scratchAssay is a image segmentation model from SeppSepp. 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
3
23% of all-time downloads
All-time downloads
13
Public
Parameters
6.3M
227 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors25.2 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": "efficientnet-b0",
"encoder_depth": 5,
"encoder_weights": "imagenet",
"decoder_use_norm": "batchnorm",
"decoder_channels": (256, 128, 64, 32, 16),
"decoder_attention_type": None,
"decoder_interpolation": "nearest",
"in_channels": 3,
"classes": 1,
"activation": None,
"aux_params": None
}
[
{
"test_per_image_iou": 0.9360156059265137,
"test_dataset_iou": 0.9752044081687927
}
]
Dataset name: scratchAssay Public
This model has been pushed to the Hub using the PytorchModelHubMixin