Somatotype Classification Model - InceptionResNetV2
Este modelo clasifica somatotipos (tipos corporales) en tres categorías:
- Ectomorph (Ectomorfo)
- Mesomorph (Mesomorfo)
- Endomorph (Endomorfo)
Uso
from landing_page import InceptionResNetV2Module, predict_transform
import torch
from PIL import Image
# Cargar modelo
model = InceptionResNetV2Module(num_classes=3)
model.load_weights("pytorch_model.bin")
# Procesar imagen
image = Image.open("imagen_corporal.jpg")
image_tensor = predict_transform(image)
# Predicción
predicted_class, confidence, probabilities = model.predict(image_tensor)
Modelo
- Arquitectura: InceptionResNetV2
- Clases: 3 (Ectomorph, Mesomorph, Endomorph)
- Input Size: 224x224 RGB
- Framework: PyTorch
Desarrollado por ElectroBiomed para análisis biomecánico y medicina deportiva.
- Downloads last month
- -
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
🙋
Ask for provider support