返回模型
说明文档
license: mit tags:
- vision
- image-segmentation widget:
- src: https://images.unsplash.com/photo-1643310325061-2beef64926a5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Nnx8cmFjb29uc3xlbnwwfHwwfHw%3D&w=1000&q=80 example_title: Person
- src: https://freerangestock.com/sample/139043/young-man-standing-and-leaning-on-car.jpg example_title: Person datasets:
- mattmdjaga/human_parsing_dataset
Segformer B2 服装分割微调模型
SegFormer 模型在 ATR 数据集 上微调用于服装分割,但也可用于人体分割。 Hugging Face 上的数据集名称为 "mattmdjaga/human_parsing_dataset"。
训练代码。
from transformers import SegformerImageProcessor, AutoModelForSemanticSegmentation
from PIL import Image
import requests
import matplotlib.pyplot as plt
import torch.nn as nn
processor = SegformerImageProcessor.from_pretrained("mattmdjaga/segformer_b2_clothes")
model = AutoModelForSemanticSegmentation.from_pretrained("mattmdjaga/segformer_b2_clothes")
url = "https://plus.unsplash.com/premium_photo-1673210886161-bfcc40f54d1f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MXx8cGVyc29uJTIwc3RhbmRpbmd8ZW58MHx8MHx8&w=1000&q=80"
image = Image.open(requests.get(url, stream=True).raw)
inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)
logits = outputs.logits.cpu()
upsampled_logits = nn.functional.interpolate(
logits,
size=image.size[::-1],
mode="bilinear",
align_corners=False,
)
pred_seg = upsampled_logits.argmax(dim=1)[0]
plt.imshow(pred_seg)
标签:0: "Background"(背景), 1: "Hat"(帽子), 2: "Hair"(头发), 3: "Sunglasses"(太阳镜), 4: "Upper-clothes"(上装), 5: "Skirt"(裙子), 6: "Pants"(裤子), 7: "Dress"(连衣裙), 8: "Belt"(腰带), 9: "Left-shoe"(左鞋), 10: "Right-shoe"(右鞋), 11: "Face"(脸部), 12: "Left-leg"(左腿), 13: "Right-leg"(右腿), 14: "Left-arm"(左臂), 15: "Right-arm"(右臂), 16: "Bag"(包), 17: "Scarf"(围巾)
评估结果
| 标签索引 | 标签名称 | 类别准确率 | 类别 IoU |
|---|---|---|---|
| 0 | Background(背景) | 0.99 | 0.99 |
| 1 | Hat(帽子) | 0.73 | 0.68 |
| 2 | Hair(头发) | 0.91 | 0.82 |
| 3 | Sunglasses(太阳镜) | 0.73 | 0.63 |
| 4 | Upper-clothes(上装) | 0.87 | 0.78 |
| 5 | Skirt(裙子) | 0.76 | 0.65 |
| 6 | Pants(裤子) | 0.90 | 0.84 |
| 7 | Dress(连衣裙) | 0.74 | 0.55 |
| 8 | Belt(腰带) | 0.35 | 0.30 |
| 9 | Left-shoe(左鞋) | 0.74 | 0.58 |
| 10 | Right-shoe(右鞋) | 0.75 | 0.60 |
| 11 | Face(脸部) | 0.92 | 0.85 |
| 12 | Left-leg(左腿) | 0.90 | 0.82 |
| 13 | Right-leg(右腿) | 0.90 | 0.81 |
| 14 | Left-arm(左臂) | 0.86 | 0.74 |
| 15 | Right-arm(右臂) | 0.82 | 0.73 |
| 16 | Bag(包) | 0.91 | 0.84 |
| 17 | Scarf(围巾) | 0.63 | 0.29 |
整体评估指标:
- 评估损失:0.15
- 平均准确率:0.80
- 平均 IoU:0.69
许可证
本模型的许可证可在此处找到。
BibTeX 条目和引用信息
@article{DBLP:journals/corr/abs-2105-15203,
author = {Enze Xie and
Wenhai Wang and
Zhiding Yu and
Anima Anandkumar and
Jose M. Alvarez and
Ping Luo},
title = {SegFormer: Simple and Efficient Design for Semantic Segmentation with
Transformers},
journal = {CoRR},
volume = {abs/2105.15203},
year = {2021},
url = {https://arxiv.org/abs/2105.15203},
eprinttype = {arXiv},
eprint = {2105.15203},
timestamp = {Wed, 02 Jun 2021 11:46:42 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2105-15203.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
VanNguyen1214/get_face_and_hair
作者 VanNguyen1214
image-segmentation
↓ 1
♥ 3
创建时间: 2025-05-29 10:25:47+00:00
更新时间: 2025-05-29 10:27:06+00:00
在 Hugging Face 上查看文件 (16)
.gitattributes
.gitignore
README.md
config.json
handler.py
model.safetensors
onnx/config.json
onnx/model.onnx
ONNX
onnx/preprocessor_config.json
optimizer.pt
preprocessor_config.json
pytorch_model.bin
rng_state.pth
scheduler.pt
trainer_state.json
training_args.bin