Image Classification
Transformers
TensorBoard
Safetensors
PyTorch
mnist
handwritten-digits
Generated from Trainer
Instructions to use Fadri/mnist-digit-recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Fadri/mnist-digit-recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="Fadri/mnist-digit-recognition") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Fadri/mnist-digit-recognition", dtype="auto") - Notebooks
- Google Colab
- Kaggle