Views
No views yet
1"cmd_list": [
2 "python",
3 "run_image_classification.py",
4 "--model_name_or_path",
5 "eslamxm/vit-base-food101",
6 "--dataset_name",
7 "food101",
8 "--output_dir",
9 "<output_dir>",
10 "--overwrite_output_dir",
11 "--remove_unused_columns",
12 "False",
13 "--do_train",
14 "--do_eval",
15 "--optim",
16 "adamw_torch",
17 "--learning_rate",
18 "6e-05",
19 "--num_train_epochs",
20 "3",
21 "--dataloader_num_workers",
22 "10",
23 "--per_device_train_batch_size",
24 "64",
25 "--gradient_accumulation_steps",
26 "2",
27 "--per_device_eval_batch_size",
28 "128",
29 "--logging_strategy",
30 "steps",
31 "--logging_steps",
32 "10",
33 "--evaluation_strategy",
34 "steps",
35 "--eval_steps",
36 "500",
37 "--save_steps",
38 "500",
39 "--evaluation_strategy",
40 "epoch",
41 "--save_strategy",
42 "epoch",
43 "--load_best_model_at_end",
44 "False",
45 "--save_total_limit",
46 "1",
47 "--seed",
48 "42",
49 "--fp16"
50 ]| 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 |