You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Iris Species Classifier

A lightweight logistic regression model trained on the classic Iris dataset. Classifies flower measurements into three species: Setosa, Versicolor, Virginica.

Usage

import mlflow.pyfunc
import pandas as pd

model = mlflow.pyfunc.load_model("kalifi/iris-species-classifier")

sample = pd.DataFrame(
    [[5.1, 3.5, 1.4, 0.2]],
    columns=["sepal_length", "sepal_width", "petal_length", "petal_width"]
)
print(model.predict(sample))  # ['setosa']

Performance

  • Accuracy: 97.3% on held-out test set
  • Training data: UCI Iris Dataset (150 samples)
  • Framework: scikit-learn LogisticRegression + StandardScaler pipeline
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support