uoft-cs/cifar10
Viewer • Updated • 60k • 126k • 105
How to use TrashHobbit/dakota-ai-cifar10-classifier with Keras:
# Available backend options are: "jax", "torch", "tensorflow".
import os
os.environ["KERAS_BACKEND"] = "jax"
import keras
model = keras.saving.load_model("hf://TrashHobbit/dakota-ai-cifar10-classifier")
This is a high-accuracy image classifier trained on the CIFAR-10 dataset using transfer learning with VGG16 as the base model.
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("TrashHobbit/dakota-ai-cifar10-classifier")
Built by Dakota AI for the Dakota AI Image Classification Demo.