YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

OpenMTS - Open-source Machinelearning ToolSet

What is OpenMTS?

OpenMTS is a pretrained model zoo for classical machine learning β€” not deep learning.

Tiny models. CPU-only. Fully offline. One simple API.

No GPU. No CUDA. No cloud.

GitHub


Usage

import cv2
import joblib

model = joblib.load("gender_plus.joblib")

face_img = cv2.imread("image_path.png")
face = cv2.resize(face_image, (64, 64))
face = face.reshape(1, 64 * 64 * 3)

prediction = model.predict(face)  # 0 = male, 1 = female

Models

Shipped:

  • face_gender β€” male / female (nano, baseline, plus)

Coming soon β€” 4 new vision models:

  • digit β€” 0–9 recognition

  • face_emotion β€” happy / sad / angry / …

  • face_mask β€” mask / no mask

  • shape β€” circle / square / triangle / …

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support