sunkaiwen/sketch2stl-sketches-image
Viewer • Updated • 396 • 59
This repository contains the best-performing TIMM image-classification
model selected from a randomized model sweep using AutoGluon
MultiModalPredictor.
extrudablerepghostnet_2001.000000Multiple pretrained TIMM image-classification backbones were evaluated using the same fixed training and validation splits.
Each candidate was trained using:
MultiModalPredictortimm_image as the only model branchThe 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.
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)