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.

CIFAR-10 Classifier

This is a CIFAR-10 image classification model trained using PyTorch and exported to ONNX format.

Usage

You can use this model via the Hugging Face Inference API.

Python Example

import requests

API_URL = "https://api-inference.huggingface.co/models/mramjad/cifar10-classifier"
headers = {"Authorization": "Bearer <your-api-token>"}

def query(image_path):
    with open(image_path, "rb") as file:
        response = requests.post(API_URL, headers=headers, files={"file": file})
    return response.json()

result = query("path/to/your/image.jpg")
print(result)
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