Extrudability AutoGluon TIMM Classifier

This repository contains the best-performing TIMM image-classification model selected from a randomized model sweep using AutoGluon MultiModalPredictor.

Model

  • Framework: AutoGluon MultiModal
  • Image model library: TIMM
  • Problem type: Binary classification
  • Target: extrudable
  • Selection metric: Balanced accuracy
  • Best TIMM checkpoint: repghostnet_200
  • Validation balanced accuracy: 1.000000

Model selection

Multiple pretrained TIMM image-classification backbones were evaluated using the same fixed training and validation splits.

Each candidate was trained using:

  • AutoGluon MultiModalPredictor
  • timm_image as the only model branch
  • pretrained TIMM weights
  • the same training dataset
  • the same fixed validation dataset
  • balanced accuracy as the selection metric

The checkpoint with the highest validation balanced accuracy was retained:

repghostnet_200

Only the winning predictor and the files required for inference are included in this repository.

Loading

from huggingface_hub import snapshot_download
from autogluon.multimodal import MultiModalPredictor

model_path = snapshot_download(
    repo_id="eandujar/nn_automl_notebook"
)

predictor = MultiModalPredictor.load(model_path)
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

Dataset used to train eandujar/nn_automl_notebook