CoolFace
Modelpublic

glean4/unet_spinachcount_taylor_target_res_ft_from_crop_and_weed_20250926

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes123downloads
Model Card

Unet Model Card

Table of Contents:

Load trained model

python
import segmentation_models_pytorch as smp

model = smp.from_pretrained("<save-directory-or-this-repo>")

Model init parameters

python
model_init_params = {
    "encoder_name": "resnet34",
    "encoder_depth": 5,
    "encoder_weights": "imagenet",
    "decoder_use_batchnorm": True,
    "decoder_channels": (256, 128, 64, 32, 16),
    "decoder_attention_type": None,
    "in_channels": 3,
    "classes": 2,
    "activation": None,
    "aux_params": None
}

Model metrics

[More Information Needed]

Dataset

Dataset name: [More Information Needed]

More Information

  • —Library: https://github.com/qubvel/segmentation_models.pytorch
  • —Docs: https://smp.readthedocs.io/en/latest/

This model has been pushed to the Hub using the PytorchModelHubMixin