Instructions to use ProbeX/Model-J__DINO__model_idx_0901 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ProbeX/Model-J__DINO__model_idx_0901 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ProbeX/Model-J__DINO__model_idx_0901") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")# Load model directly from transformers import AutoImageProcessor, AutoModelForImageClassification processor = AutoImageProcessor.from_pretrained("ProbeX/Model-J__DINO__model_idx_0901") model = AutoModelForImageClassification.from_pretrained("ProbeX/Model-J__DINO__model_idx_0901") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoImageProcessor, AutoModelForImageClassification
processor = AutoImageProcessor.from_pretrained("ProbeX/Model-J__DINO__model_idx_0901")
model = AutoModelForImageClassification.from_pretrained("ProbeX/Model-J__DINO__model_idx_0901")Model-J: DINO Model (model_idx_0901)
This model is part of the Model-J dataset, introduced in:
Learning on Model Weights using Tree Experts (CVPR 2025) by Eliahu Horwitz*, Bar Cavia*, Jonathan Kahana*, Yedid Hoshen
๐ Project | ๐ Paper | ๐ป GitHub | ๐ค Dataset
Model Details
| Attribute | Value |
|---|---|
| Subset | DINO |
| Split | train |
| Base Model | facebook/dino-vitb16 |
| Dataset | CIFAR100 (50 classes) |
Training Hyperparameters
| Parameter | Value |
|---|---|
| Learning Rate | 3e-05 |
| LR Scheduler | linear |
| Epochs | 6 |
| Max Train Steps | 1998 |
| Batch Size | 64 |
| Weight Decay | 0.05 |
| Seed | 901 |
| Random Crop | False |
| Random Flip | True |
Performance
| Metric | Value |
|---|---|
| Train Accuracy | 0.9997 |
| Val Accuracy | 0.9253 |
| Test Accuracy | 0.9272 |
Training Categories
The model was fine-tuned on the following 50 CIFAR100 classes:
whale, squirrel, sunflower, television, house, rose, fox, cloud, bear, crab, mountain, dolphin, mushroom, willow_tree, bicycle, beetle, raccoon, skunk, woman, snail, chair, bus, beaver, crocodile, sea, rabbit, ray, shrew, baby, porcupine, train, palm_tree, keyboard, spider, shark, couch, rocket, plain, chimpanzee, seal, bowl, cup, oak_tree, bridge, lobster, bed, wardrobe, streetcar, poppy, orchid
- Downloads last month
- 3
Model tree for ProbeX/Model-J__DINO__model_idx_0901
Base model
facebook/dino-vitb16
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="ProbeX/Model-J__DINO__model_idx_0901") pipe("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/hub/parrots.png")