ethz/food101
Viewer • Updated • 101k • 29.3k • 135
How to use yujiepan/vit-base-patch16-224-food101 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-classification", model="yujiepan/vit-base-patch16-224-food101")
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("yujiepan/vit-base-patch16-224-food101")
model = AutoModelForImageClassification.from_pretrained("yujiepan/vit-base-patch16-224-food101")This model is a fine-tuned version of eslamxm/vit-base-food101 on the food101 dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
"cmd_list": [
"python",
"run_image_classification.py",
"--model_name_or_path",
"eslamxm/vit-base-food101",
"--dataset_name",
"food101",
"--output_dir",
"<output_dir>",
"--overwrite_output_dir",
"--remove_unused_columns",
"False",
"--do_train",
"--do_eval",
"--optim",
"adamw_torch",
"--learning_rate",
"6e-05",
"--num_train_epochs",
"3",
"--dataloader_num_workers",
"10",
"--per_device_train_batch_size",
"64",
"--gradient_accumulation_steps",
"2",
"--per_device_eval_batch_size",
"128",
"--logging_strategy",
"steps",
"--logging_steps",
"10",
"--evaluation_strategy",
"steps",
"--eval_steps",
"500",
"--save_steps",
"500",
"--evaluation_strategy",
"epoch",
"--save_strategy",
"epoch",
"--load_best_model_at_end",
"False",
"--save_total_limit",
"1",
"--seed",
"42",
"--fp16"
]
The following hyperparameters were used during training:
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|---|---|---|---|---|
| 0.3687 | 1.0 | 592 | 0.4044 | 0.8889 |
| 0.3422 | 2.0 | 1184 | 0.3911 | 0.8953 |
| 0.3808 | 3.0 | 1776 | 0.3856 | 0.8971 |