ecopus/sign_identification
Viewer β’ Updated β’ 420 β’ 9
This model was trained using AutoGluon's AutoML capabilities for sign identification. Performance not good enough because of the limited amount of data (only 30 images).
timm_image) medium_quality preset| Metric | Validation | Test |
|---|---|---|
| Accuracy | 0.833 | 0.571 |
| F1 Score (Weighted) | 0.829 | 0.571 |
from autogluon.multimodal import MultiModalPredictor
from huggingface_hub import hf_hub_download
import zipfile
import os
# Download the zipped predictor directory
zip_path = hf_hub_download(
repo_id="yusenthebot/sign-identification-autogluon",
filename="autogluon_sign_predictor_dir.zip"
)
# Extract
extract_dir = "predictor_dir"
os.makedirs(extract_dir, exist_ok=True)
with zipfile.ZipFile(zip_path, "r") as zf:
zf.extractall(extract_dir)
# Load predictor
predictor = MultiModalPredictor.load(extract_dir)
# Predict (replace `your_dataframe` with a pandas DataFrame that matches training schema)
# predictions = predictor.predict(your_dataframe)