Image Classification
Transformers
Safetensors
PyTorch
food-recognition
dinov3
vision-transformer
tsotsa-img
Instructions to use anonymous-eval/food-recognition with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use anonymous-eval/food-recognition with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-classification", model="anonymous-eval/food-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("anonymous-eval/food-recognition", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload dinov3_custom food classifier from run 1: ep_8_0
Browse files- all_results.json +21 -0
- backbone/config.json +32 -0
- backbone/model.safetensors +3 -0
- classifier.pt +3 -0
- classifier_config.json +786 -0
- eval_results.json +10 -0
- model.safetensors +3 -0
- preprocessor_config.json +33 -0
- run_summary.json +42 -0
- train_results.json +14 -0
- trainer_log_history.json +0 -0
all_results.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 8.0,
|
| 3 |
+
"eval_accuracy": 0.9731962296486718,
|
| 4 |
+
"eval_f1_macro": 0.97272463600211,
|
| 5 |
+
"eval_loss": 0.11423125863075256,
|
| 6 |
+
"eval_runtime": 215.0703,
|
| 7 |
+
"eval_samples_per_second": 135.653,
|
| 8 |
+
"eval_steps_per_second": 11.308,
|
| 9 |
+
"eval_top5_accuracy": 0.9967780634104542,
|
| 10 |
+
"run_wall_time_hours": 12.102496446039941,
|
| 11 |
+
"run_wall_time_minutes": 726.1497867623965,
|
| 12 |
+
"run_wall_time_seconds": 43568.98720574379,
|
| 13 |
+
"total_flos": 0.0,
|
| 14 |
+
"train_loss": 0.446697575658745,
|
| 15 |
+
"train_runtime": 43197.8762,
|
| 16 |
+
"train_samples_per_second": 48.627,
|
| 17 |
+
"train_steps_per_second": 4.052,
|
| 18 |
+
"train_wall_time_hours": 11.99947108036942,
|
| 19 |
+
"train_wall_time_minutes": 719.9682648221652,
|
| 20 |
+
"train_wall_time_seconds": 43198.09588932991
|
| 21 |
+
}
|
backbone/config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"DINOv3ViTModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"drop_path_rate": 0.0,
|
| 7 |
+
"dtype": "float32",
|
| 8 |
+
"hidden_act": "gelu",
|
| 9 |
+
"hidden_size": 1024,
|
| 10 |
+
"image_size": 224,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 4096,
|
| 13 |
+
"key_bias": false,
|
| 14 |
+
"layer_norm_eps": 1e-05,
|
| 15 |
+
"layerscale_value": 1.0,
|
| 16 |
+
"mlp_bias": true,
|
| 17 |
+
"model_type": "dinov3_vit",
|
| 18 |
+
"num_attention_heads": 16,
|
| 19 |
+
"num_channels": 3,
|
| 20 |
+
"num_hidden_layers": 24,
|
| 21 |
+
"num_register_tokens": 4,
|
| 22 |
+
"patch_size": 16,
|
| 23 |
+
"pos_embed_jitter": null,
|
| 24 |
+
"pos_embed_rescale": 2.0,
|
| 25 |
+
"pos_embed_shift": null,
|
| 26 |
+
"proj_bias": true,
|
| 27 |
+
"query_bias": true,
|
| 28 |
+
"rope_theta": 100.0,
|
| 29 |
+
"transformers_version": "4.57.1",
|
| 30 |
+
"use_gated_mlp": false,
|
| 31 |
+
"value_bias": true
|
| 32 |
+
}
|
backbone/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:860eb2b858e1dcc139302a2c875fce78df92f77d933e8500b98444954fb5fe6c
|
| 3 |
+
size 1212559808
|
classifier.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be0cee77682c3acbca96fc00edb13843acf273371a5600c06659bcab99e535d7
|
| 3 |
+
size 1596861
|
classifier_config.json
ADDED
|
@@ -0,0 +1,786 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"num_labels": 389,
|
| 3 |
+
"id2label": {
|
| 4 |
+
"0": "adobo",
|
| 5 |
+
"1": "almond_jelly",
|
| 6 |
+
"2": "apple_pie",
|
| 7 |
+
"3": "apples",
|
| 8 |
+
"4": "apricots",
|
| 9 |
+
"5": "avocados",
|
| 10 |
+
"6": "ayam_bakar",
|
| 11 |
+
"7": "ayam_goreng",
|
| 12 |
+
"8": "babi_guling",
|
| 13 |
+
"9": "baby_back_ribs",
|
| 14 |
+
"10": "bagel",
|
| 15 |
+
"11": "bak_kut_teh",
|
| 16 |
+
"12": "baked_salmon",
|
| 17 |
+
"13": "baklava",
|
| 18 |
+
"14": "ball_shaped_bun_with_pork",
|
| 19 |
+
"15": "bananas",
|
| 20 |
+
"16": "barbecued_red_pork_in_sauce_with_rice",
|
| 21 |
+
"17": "bean_curd_family_style",
|
| 22 |
+
"18": "beans",
|
| 23 |
+
"19": "beef_bowl",
|
| 24 |
+
"20": "beef_carpaccio",
|
| 25 |
+
"21": "beef_curry",
|
| 26 |
+
"22": "beef_in_oyster_sauce",
|
| 27 |
+
"23": "beef_noodle",
|
| 28 |
+
"24": "beef_noodle_soup",
|
| 29 |
+
"25": "beef_tartare",
|
| 30 |
+
"26": "beet_salad",
|
| 31 |
+
"27": "beignets",
|
| 32 |
+
"28": "bibimbap",
|
| 33 |
+
"29": "boiled_chicken_and_vegetables",
|
| 34 |
+
"30": "boiled_fish",
|
| 35 |
+
"31": "boned_sliced_hainan_style_chicken_with_marinated_rice",
|
| 36 |
+
"32": "braised_pork_meat_ball_with_napa_cabbage",
|
| 37 |
+
"33": "bread_pudding",
|
| 38 |
+
"34": "breakfast_burrito",
|
| 39 |
+
"35": "broiled_eel_bowl",
|
| 40 |
+
"36": "brownie",
|
| 41 |
+
"37": "bruschetta",
|
| 42 |
+
"38": "bubur_ayam",
|
| 43 |
+
"39": "cabbage",
|
| 44 |
+
"40": "cabbage_roll",
|
| 45 |
+
"41": "caesar_salad",
|
| 46 |
+
"42": "cannoli",
|
| 47 |
+
"43": "caprese_salad",
|
| 48 |
+
"44": "carambolas",
|
| 49 |
+
"45": "carrot_cake",
|
| 50 |
+
"46": "carrots",
|
| 51 |
+
"47": "cauliflower",
|
| 52 |
+
"48": "celeries",
|
| 53 |
+
"49": "ceviche",
|
| 54 |
+
"50": "champon",
|
| 55 |
+
"51": "chanterelles",
|
| 56 |
+
"52": "charcoal_boiled_pork_neck",
|
| 57 |
+
"53": "cheese_plate",
|
| 58 |
+
"54": "cheesecake",
|
| 59 |
+
"55": "cherries",
|
| 60 |
+
"56": "chicken_curry",
|
| 61 |
+
"57": "chicken_cutlet",
|
| 62 |
+
"58": "chicken_n_egg_on_rice",
|
| 63 |
+
"59": "chicken_nugget",
|
| 64 |
+
"60": "chicken_quesadilla",
|
| 65 |
+
"61": "chicken_rice",
|
| 66 |
+
"62": "chicken_rice_curry_with_coconut",
|
| 67 |
+
"63": "chicken_wings",
|
| 68 |
+
"64": "chilled_noodle",
|
| 69 |
+
"65": "chinese_pumpkin_pie",
|
| 70 |
+
"66": "chinese_soup",
|
| 71 |
+
"67": "chip_butty",
|
| 72 |
+
"68": "chocolate_cake",
|
| 73 |
+
"69": "chocolate_mousse",
|
| 74 |
+
"70": "chop_suey",
|
| 75 |
+
"71": "chow_mein",
|
| 76 |
+
"72": "churros",
|
| 77 |
+
"73": "clam_chowder",
|
| 78 |
+
"74": "clear_soup",
|
| 79 |
+
"75": "clementines",
|
| 80 |
+
"76": "club_sandwich",
|
| 81 |
+
"77": "coconut_milk_flavored_crepes_with_shrimp_and_beef",
|
| 82 |
+
"78": "coconut_milk_soup",
|
| 83 |
+
"79": "coconuts",
|
| 84 |
+
"80": "cold_tofu",
|
| 85 |
+
"81": "crab_cakes",
|
| 86 |
+
"82": "crape",
|
| 87 |
+
"83": "cream_puff",
|
| 88 |
+
"84": "creme_brulee",
|
| 89 |
+
"85": "crispy_noodles",
|
| 90 |
+
"86": "croissant",
|
| 91 |
+
"87": "croque_madame",
|
| 92 |
+
"88": "croquette",
|
| 93 |
+
"89": "crullers",
|
| 94 |
+
"90": "cucumbers",
|
| 95 |
+
"91": "cup_cakes",
|
| 96 |
+
"92": "curry_puff",
|
| 97 |
+
"93": "custard_tart",
|
| 98 |
+
"94": "cutlet_curry",
|
| 99 |
+
"95": "dak_galbi",
|
| 100 |
+
"96": "damsons",
|
| 101 |
+
"97": "deep_fried_chicken_wing",
|
| 102 |
+
"98": "deviled_eggs",
|
| 103 |
+
"99": "dipping_noodles",
|
| 104 |
+
"100": "dish_consisting_of_stir_fried_potato_eggplant_and_green_pepper",
|
| 105 |
+
"101": "donuts",
|
| 106 |
+
"102": "doughnut",
|
| 107 |
+
"103": "dried_fish",
|
| 108 |
+
"104": "dry_curry",
|
| 109 |
+
"105": "dumplings",
|
| 110 |
+
"106": "edamame",
|
| 111 |
+
"107": "eels_on_rice",
|
| 112 |
+
"108": "egg_noodle_in_chicken_yellow_curry",
|
| 113 |
+
"109": "egg_roll",
|
| 114 |
+
"110": "egg_sunny_side_up",
|
| 115 |
+
"111": "eggplant_with_garlic_sauce",
|
| 116 |
+
"112": "eggplants",
|
| 117 |
+
"113": "eggs_benedict",
|
| 118 |
+
"114": "eight_treasure_rice",
|
| 119 |
+
"115": "ekwang",
|
| 120 |
+
"116": "eru",
|
| 121 |
+
"117": "escargots",
|
| 122 |
+
"118": "falafel",
|
| 123 |
+
"119": "fennels",
|
| 124 |
+
"120": "filet_mignon",
|
| 125 |
+
"121": "fine_white_noodles",
|
| 126 |
+
"122": "fish_and_chips",
|
| 127 |
+
"123": "fish_ball_soup",
|
| 128 |
+
"124": "fish_shaped_pancake_with_bean_jam",
|
| 129 |
+
"125": "foie_gras",
|
| 130 |
+
"126": "french_bread",
|
| 131 |
+
"127": "french_fries",
|
| 132 |
+
"128": "french_onion_soup",
|
| 133 |
+
"129": "french_toast",
|
| 134 |
+
"130": "fried_calamari",
|
| 135 |
+
"131": "fried_chicken",
|
| 136 |
+
"132": "fried_fish",
|
| 137 |
+
"133": "fried_mussel_pancakes",
|
| 138 |
+
"134": "fried_noodle",
|
| 139 |
+
"135": "fried_pork_dumplings_served_in_soup",
|
| 140 |
+
"136": "fried_pork_in_scoop",
|
| 141 |
+
"137": "fried_rice",
|
| 142 |
+
"138": "fried_shrimp",
|
| 143 |
+
"139": "fried_spring_rolls",
|
| 144 |
+
"140": "frozen_yogurt",
|
| 145 |
+
"141": "ganmodoki",
|
| 146 |
+
"142": "garlic_bread",
|
| 147 |
+
"143": "garlics",
|
| 148 |
+
"144": "ginger_pork_saute",
|
| 149 |
+
"145": "gingers",
|
| 150 |
+
"146": "glutinous_oil_rice",
|
| 151 |
+
"147": "glutinous_rice_balls",
|
| 152 |
+
"148": "gnocchi",
|
| 153 |
+
"149": "goya_chanpuru",
|
| 154 |
+
"150": "grapefruits",
|
| 155 |
+
"151": "grapes",
|
| 156 |
+
"152": "gratin",
|
| 157 |
+
"153": "greek_salad",
|
| 158 |
+
"154": "green_curry",
|
| 159 |
+
"155": "green_salad",
|
| 160 |
+
"156": "grilled_cheese_sandwich",
|
| 161 |
+
"157": "grilled_eggplant",
|
| 162 |
+
"158": "grilled_pacific_saury",
|
| 163 |
+
"159": "grilled_salmon",
|
| 164 |
+
"160": "guacamole",
|
| 165 |
+
"161": "gulai",
|
| 166 |
+
"162": "gyoza",
|
| 167 |
+
"163": "ham_cutlet",
|
| 168 |
+
"164": "hambarg_steak",
|
| 169 |
+
"165": "hamburger",
|
| 170 |
+
"166": "haupia",
|
| 171 |
+
"167": "herbs",
|
| 172 |
+
"168": "hot_and_sour_fish_and_vegetable_ragout",
|
| 173 |
+
"169": "hot_and_sour_soup",
|
| 174 |
+
"170": "hot_dog",
|
| 175 |
+
"171": "hot_pot",
|
| 176 |
+
"172": "hue_beef_rice_vermicelli_soup",
|
| 177 |
+
"173": "huevos_rancheros",
|
| 178 |
+
"174": "hummus",
|
| 179 |
+
"175": "ice_cream",
|
| 180 |
+
"176": "inarizushi",
|
| 181 |
+
"177": "jambalaya",
|
| 182 |
+
"178": "japanese_style_pancake",
|
| 183 |
+
"179": "japanese_tofu_and_vegetable_chowder",
|
| 184 |
+
"180": "jiaozi",
|
| 185 |
+
"181": "jjigae",
|
| 186 |
+
"182": "jollof_ghana",
|
| 187 |
+
"183": "kamameshi",
|
| 188 |
+
"184": "kaya_toast",
|
| 189 |
+
"185": "khao_soi",
|
| 190 |
+
"186": "kinpira_style_sauteed_burdock",
|
| 191 |
+
"187": "kiwanos",
|
| 192 |
+
"188": "kiwis",
|
| 193 |
+
"189": "kumquats",
|
| 194 |
+
"190": "kung_pao_chicken",
|
| 195 |
+
"191": "kushikatu",
|
| 196 |
+
"192": "laksa",
|
| 197 |
+
"193": "lamb_kebabs",
|
| 198 |
+
"194": "lasagna",
|
| 199 |
+
"195": "laulau",
|
| 200 |
+
"196": "leeks",
|
| 201 |
+
"197": "lemon_fig_jelly",
|
| 202 |
+
"198": "lemons",
|
| 203 |
+
"199": "lightly_roasted_fish",
|
| 204 |
+
"200": "limes",
|
| 205 |
+
"201": "lobster_bisque",
|
| 206 |
+
"202": "lobster_roll_sandwich",
|
| 207 |
+
"203": "loco_moco",
|
| 208 |
+
"204": "lumpia",
|
| 209 |
+
"205": "macaroni_and_cheese",
|
| 210 |
+
"206": "macaroni_salad",
|
| 211 |
+
"207": "macarons",
|
| 212 |
+
"208": "malasada",
|
| 213 |
+
"209": "mango_pudding",
|
| 214 |
+
"210": "mangos",
|
| 215 |
+
"211": "mangosteens",
|
| 216 |
+
"212": "meat_loaf",
|
| 217 |
+
"213": "melons",
|
| 218 |
+
"214": "mie_ayam",
|
| 219 |
+
"215": "mie_goreng",
|
| 220 |
+
"216": "minced_meat_cutlet",
|
| 221 |
+
"217": "minced_pork_rice",
|
| 222 |
+
"218": "minestrone",
|
| 223 |
+
"219": "miso_soup",
|
| 224 |
+
"220": "mixed_rice",
|
| 225 |
+
"221": "moon_cake",
|
| 226 |
+
"222": "mozuku",
|
| 227 |
+
"223": "muffin",
|
| 228 |
+
"224": "mushroom_risotto",
|
| 229 |
+
"225": "mushrooms",
|
| 230 |
+
"226": "mussels",
|
| 231 |
+
"227": "nachos",
|
| 232 |
+
"228": "namero",
|
| 233 |
+
"229": "nanbanzuke",
|
| 234 |
+
"230": "nasi_campur",
|
| 235 |
+
"231": "nasi_goreng",
|
| 236 |
+
"232": "nasi_padang",
|
| 237 |
+
"233": "nasi_uduk",
|
| 238 |
+
"234": "natto",
|
| 239 |
+
"235": "ndole",
|
| 240 |
+
"236": "nectarines",
|
| 241 |
+
"237": "noodles_with_fish_curry",
|
| 242 |
+
"238": "oatmeal",
|
| 243 |
+
"239": "oden",
|
| 244 |
+
"240": "okinawa_soba",
|
| 245 |
+
"241": "omelet_with_fried_rice",
|
| 246 |
+
"242": "omelette",
|
| 247 |
+
"243": "onion_rings",
|
| 248 |
+
"244": "onions",
|
| 249 |
+
"245": "oranges",
|
| 250 |
+
"246": "oshiruko",
|
| 251 |
+
"247": "oxtail_soup",
|
| 252 |
+
"248": "oyster_omelette",
|
| 253 |
+
"249": "oysters",
|
| 254 |
+
"250": "pad_thai",
|
| 255 |
+
"251": "paella",
|
| 256 |
+
"252": "palm_nut_soup",
|
| 257 |
+
"253": "pancakes",
|
| 258 |
+
"254": "panna_cotta",
|
| 259 |
+
"255": "parfait",
|
| 260 |
+
"256": "passion_fruits",
|
| 261 |
+
"257": "peaches",
|
| 262 |
+
"258": "pears",
|
| 263 |
+
"259": "peking_duck",
|
| 264 |
+
"260": "peppers",
|
| 265 |
+
"261": "pho",
|
| 266 |
+
"262": "pilaf",
|
| 267 |
+
"263": "pineapples",
|
| 268 |
+
"264": "pitayas",
|
| 269 |
+
"265": "pizza",
|
| 270 |
+
"266": "pizza_toast",
|
| 271 |
+
"267": "plums",
|
| 272 |
+
"268": "pomegranates",
|
| 273 |
+
"269": "popcorn",
|
| 274 |
+
"270": "pork_belly",
|
| 275 |
+
"271": "pork_chop",
|
| 276 |
+
"272": "pork_cutlet",
|
| 277 |
+
"273": "pork_cutlet_on_rice",
|
| 278 |
+
"274": "pork_fillet_cutlet",
|
| 279 |
+
"275": "pork_loin_cutlet",
|
| 280 |
+
"276": "pork_miso_soup",
|
| 281 |
+
"277": "pork_satay",
|
| 282 |
+
"278": "pork_sticky_noodles",
|
| 283 |
+
"279": "pork_with_lemon",
|
| 284 |
+
"280": "pot_au_feu",
|
| 285 |
+
"281": "potage",
|
| 286 |
+
"282": "potato_salad",
|
| 287 |
+
"283": "potatoes",
|
| 288 |
+
"284": "poutine",
|
| 289 |
+
"285": "prime_rib",
|
| 290 |
+
"286": "pulled_pork_sandwich",
|
| 291 |
+
"287": "pumpkins",
|
| 292 |
+
"288": "radishes",
|
| 293 |
+
"289": "raisin_bread",
|
| 294 |
+
"290": "ramen",
|
| 295 |
+
"291": "ramen_noodle",
|
| 296 |
+
"292": "rare_cheese_cake",
|
| 297 |
+
"293": "ravioli",
|
| 298 |
+
"294": "red_beet",
|
| 299 |
+
"295": "red_velvet_cake",
|
| 300 |
+
"296": "rice",
|
| 301 |
+
"297": "rice_ball",
|
| 302 |
+
"298": "rice_crispy_pork",
|
| 303 |
+
"299": "rice_gratin",
|
| 304 |
+
"300": "rice_gruel",
|
| 305 |
+
"301": "rice_vermicelli",
|
| 306 |
+
"302": "rice_with_roast_duck",
|
| 307 |
+
"303": "risotto",
|
| 308 |
+
"304": "roast_chicken",
|
| 309 |
+
"305": "roast_duck",
|
| 310 |
+
"306": "roll_bread",
|
| 311 |
+
"307": "salads",
|
| 312 |
+
"308": "salmon_meuniere",
|
| 313 |
+
"309": "salt_and_pepper_fried_shrimp_with_shell",
|
| 314 |
+
"310": "samosa",
|
| 315 |
+
"311": "samul",
|
| 316 |
+
"312": "sandwiches",
|
| 317 |
+
"313": "sashimi",
|
| 318 |
+
"314": "sashimi_bowl",
|
| 319 |
+
"315": "sausage",
|
| 320 |
+
"316": "sauteed_spinach",
|
| 321 |
+
"317": "sauteed_vegetables",
|
| 322 |
+
"318": "scallops",
|
| 323 |
+
"319": "scone",
|
| 324 |
+
"320": "scrambled_egg",
|
| 325 |
+
"321": "seasoned_beef_with_potatoes",
|
| 326 |
+
"322": "seaweed_salad",
|
| 327 |
+
"323": "shortcake",
|
| 328 |
+
"324": "shrimp_and_grits",
|
| 329 |
+
"325": "shrimp_patties",
|
| 330 |
+
"326": "shrimp_with_chill_source",
|
| 331 |
+
"327": "simmered_pork",
|
| 332 |
+
"328": "sirloin_cutlet",
|
| 333 |
+
"329": "small_steamed_savory_rice_pancake",
|
| 334 |
+
"330": "soba_noodle",
|
| 335 |
+
"331": "sour_prawn_soup",
|
| 336 |
+
"332": "spaghetti",
|
| 337 |
+
"333": "spaghetti_bolognese",
|
| 338 |
+
"334": "spaghetti_carbonara",
|
| 339 |
+
"335": "spaghetti_meat_sauce",
|
| 340 |
+
"336": "spam_musubi",
|
| 341 |
+
"337": "spicy_chicken_salad",
|
| 342 |
+
"338": "spicy_chili_flavored_tofu",
|
| 343 |
+
"339": "spring_rolls",
|
| 344 |
+
"340": "steak",
|
| 345 |
+
"341": "steamed_egg_hotchpotch",
|
| 346 |
+
"342": "steamed_meat_dumpling",
|
| 347 |
+
"343": "steamed_rice_roll",
|
| 348 |
+
"344": "steamed_spareribs",
|
| 349 |
+
"345": "stew",
|
| 350 |
+
"346": "stewed_pork_leg",
|
| 351 |
+
"347": "stinky_tofu",
|
| 352 |
+
"348": "stir_fried_beef_and_peppers",
|
| 353 |
+
"349": "stir_fried_mixed_vegetables",
|
| 354 |
+
"350": "strawberry_shortcake",
|
| 355 |
+
"351": "sukiyaki",
|
| 356 |
+
"352": "sushi",
|
| 357 |
+
"353": "sushi_bowl",
|
| 358 |
+
"354": "sweet_and_sour_pork",
|
| 359 |
+
"355": "tacos",
|
| 360 |
+
"356": "takoyaki",
|
| 361 |
+
"357": "tamarillos",
|
| 362 |
+
"358": "tanmen",
|
| 363 |
+
"359": "tempura",
|
| 364 |
+
"360": "tempura_bowl",
|
| 365 |
+
"361": "tempura_udon",
|
| 366 |
+
"362": "tensin_noodle",
|
| 367 |
+
"363": "teriyaki_grilled_fish",
|
| 368 |
+
"364": "thai_papaya_salad",
|
| 369 |
+
"365": "thinly_sliced_raw_horsemeat",
|
| 370 |
+
"366": "three_cup_chicken",
|
| 371 |
+
"367": "tiramisu",
|
| 372 |
+
"368": "toast",
|
| 373 |
+
"369": "tomatos",
|
| 374 |
+
"370": "tortilla",
|
| 375 |
+
"371": "trunip_pudding",
|
| 376 |
+
"372": "tuna_tartare",
|
| 377 |
+
"373": "turnips",
|
| 378 |
+
"374": "twice_cooked_pork",
|
| 379 |
+
"375": "udon_noodle",
|
| 380 |
+
"376": "vegetable_tempura",
|
| 381 |
+
"377": "vermicelli_noodles_with_snails",
|
| 382 |
+
"378": "waakye",
|
| 383 |
+
"379": "waffles",
|
| 384 |
+
"380": "winter_melon_soup",
|
| 385 |
+
"381": "wonton_soup",
|
| 386 |
+
"382": "xiao_long_bao",
|
| 387 |
+
"383": "yakitori",
|
| 388 |
+
"384": "yellow_curry",
|
| 389 |
+
"385": "yudofu",
|
| 390 |
+
"386": "zha_jiang_mian",
|
| 391 |
+
"387": "zoni",
|
| 392 |
+
"388": "zucchinis"
|
| 393 |
+
},
|
| 394 |
+
"label2id": {
|
| 395 |
+
"adobo": 0,
|
| 396 |
+
"almond_jelly": 1,
|
| 397 |
+
"apple_pie": 2,
|
| 398 |
+
"apples": 3,
|
| 399 |
+
"apricots": 4,
|
| 400 |
+
"avocados": 5,
|
| 401 |
+
"ayam_bakar": 6,
|
| 402 |
+
"ayam_goreng": 7,
|
| 403 |
+
"babi_guling": 8,
|
| 404 |
+
"baby_back_ribs": 9,
|
| 405 |
+
"bagel": 10,
|
| 406 |
+
"bak_kut_teh": 11,
|
| 407 |
+
"baked_salmon": 12,
|
| 408 |
+
"baklava": 13,
|
| 409 |
+
"ball_shaped_bun_with_pork": 14,
|
| 410 |
+
"bananas": 15,
|
| 411 |
+
"barbecued_red_pork_in_sauce_with_rice": 16,
|
| 412 |
+
"bean_curd_family_style": 17,
|
| 413 |
+
"beans": 18,
|
| 414 |
+
"beef_bowl": 19,
|
| 415 |
+
"beef_carpaccio": 20,
|
| 416 |
+
"beef_curry": 21,
|
| 417 |
+
"beef_in_oyster_sauce": 22,
|
| 418 |
+
"beef_noodle": 23,
|
| 419 |
+
"beef_noodle_soup": 24,
|
| 420 |
+
"beef_tartare": 25,
|
| 421 |
+
"beet_salad": 26,
|
| 422 |
+
"beignets": 27,
|
| 423 |
+
"bibimbap": 28,
|
| 424 |
+
"boiled_chicken_and_vegetables": 29,
|
| 425 |
+
"boiled_fish": 30,
|
| 426 |
+
"boned_sliced_hainan_style_chicken_with_marinated_rice": 31,
|
| 427 |
+
"braised_pork_meat_ball_with_napa_cabbage": 32,
|
| 428 |
+
"bread_pudding": 33,
|
| 429 |
+
"breakfast_burrito": 34,
|
| 430 |
+
"broiled_eel_bowl": 35,
|
| 431 |
+
"brownie": 36,
|
| 432 |
+
"bruschetta": 37,
|
| 433 |
+
"bubur_ayam": 38,
|
| 434 |
+
"cabbage": 39,
|
| 435 |
+
"cabbage_roll": 40,
|
| 436 |
+
"caesar_salad": 41,
|
| 437 |
+
"cannoli": 42,
|
| 438 |
+
"caprese_salad": 43,
|
| 439 |
+
"carambolas": 44,
|
| 440 |
+
"carrot_cake": 45,
|
| 441 |
+
"carrots": 46,
|
| 442 |
+
"cauliflower": 47,
|
| 443 |
+
"celeries": 48,
|
| 444 |
+
"ceviche": 49,
|
| 445 |
+
"champon": 50,
|
| 446 |
+
"chanterelles": 51,
|
| 447 |
+
"charcoal_boiled_pork_neck": 52,
|
| 448 |
+
"cheese_plate": 53,
|
| 449 |
+
"cheesecake": 54,
|
| 450 |
+
"cherries": 55,
|
| 451 |
+
"chicken_curry": 56,
|
| 452 |
+
"chicken_cutlet": 57,
|
| 453 |
+
"chicken_n_egg_on_rice": 58,
|
| 454 |
+
"chicken_nugget": 59,
|
| 455 |
+
"chicken_quesadilla": 60,
|
| 456 |
+
"chicken_rice": 61,
|
| 457 |
+
"chicken_rice_curry_with_coconut": 62,
|
| 458 |
+
"chicken_wings": 63,
|
| 459 |
+
"chilled_noodle": 64,
|
| 460 |
+
"chinese_pumpkin_pie": 65,
|
| 461 |
+
"chinese_soup": 66,
|
| 462 |
+
"chip_butty": 67,
|
| 463 |
+
"chocolate_cake": 68,
|
| 464 |
+
"chocolate_mousse": 69,
|
| 465 |
+
"chop_suey": 70,
|
| 466 |
+
"chow_mein": 71,
|
| 467 |
+
"churros": 72,
|
| 468 |
+
"clam_chowder": 73,
|
| 469 |
+
"clear_soup": 74,
|
| 470 |
+
"clementines": 75,
|
| 471 |
+
"club_sandwich": 76,
|
| 472 |
+
"coconut_milk_flavored_crepes_with_shrimp_and_beef": 77,
|
| 473 |
+
"coconut_milk_soup": 78,
|
| 474 |
+
"coconuts": 79,
|
| 475 |
+
"cold_tofu": 80,
|
| 476 |
+
"crab_cakes": 81,
|
| 477 |
+
"crape": 82,
|
| 478 |
+
"cream_puff": 83,
|
| 479 |
+
"creme_brulee": 84,
|
| 480 |
+
"crispy_noodles": 85,
|
| 481 |
+
"croissant": 86,
|
| 482 |
+
"croque_madame": 87,
|
| 483 |
+
"croquette": 88,
|
| 484 |
+
"crullers": 89,
|
| 485 |
+
"cucumbers": 90,
|
| 486 |
+
"cup_cakes": 91,
|
| 487 |
+
"curry_puff": 92,
|
| 488 |
+
"custard_tart": 93,
|
| 489 |
+
"cutlet_curry": 94,
|
| 490 |
+
"dak_galbi": 95,
|
| 491 |
+
"damsons": 96,
|
| 492 |
+
"deep_fried_chicken_wing": 97,
|
| 493 |
+
"deviled_eggs": 98,
|
| 494 |
+
"dipping_noodles": 99,
|
| 495 |
+
"dish_consisting_of_stir_fried_potato_eggplant_and_green_pepper": 100,
|
| 496 |
+
"donuts": 101,
|
| 497 |
+
"doughnut": 102,
|
| 498 |
+
"dried_fish": 103,
|
| 499 |
+
"dry_curry": 104,
|
| 500 |
+
"dumplings": 105,
|
| 501 |
+
"edamame": 106,
|
| 502 |
+
"eels_on_rice": 107,
|
| 503 |
+
"egg_noodle_in_chicken_yellow_curry": 108,
|
| 504 |
+
"egg_roll": 109,
|
| 505 |
+
"egg_sunny_side_up": 110,
|
| 506 |
+
"eggplant_with_garlic_sauce": 111,
|
| 507 |
+
"eggplants": 112,
|
| 508 |
+
"eggs_benedict": 113,
|
| 509 |
+
"eight_treasure_rice": 114,
|
| 510 |
+
"ekwang": 115,
|
| 511 |
+
"eru": 116,
|
| 512 |
+
"escargots": 117,
|
| 513 |
+
"falafel": 118,
|
| 514 |
+
"fennels": 119,
|
| 515 |
+
"filet_mignon": 120,
|
| 516 |
+
"fine_white_noodles": 121,
|
| 517 |
+
"fish_and_chips": 122,
|
| 518 |
+
"fish_ball_soup": 123,
|
| 519 |
+
"fish_shaped_pancake_with_bean_jam": 124,
|
| 520 |
+
"foie_gras": 125,
|
| 521 |
+
"french_bread": 126,
|
| 522 |
+
"french_fries": 127,
|
| 523 |
+
"french_onion_soup": 128,
|
| 524 |
+
"french_toast": 129,
|
| 525 |
+
"fried_calamari": 130,
|
| 526 |
+
"fried_chicken": 131,
|
| 527 |
+
"fried_fish": 132,
|
| 528 |
+
"fried_mussel_pancakes": 133,
|
| 529 |
+
"fried_noodle": 134,
|
| 530 |
+
"fried_pork_dumplings_served_in_soup": 135,
|
| 531 |
+
"fried_pork_in_scoop": 136,
|
| 532 |
+
"fried_rice": 137,
|
| 533 |
+
"fried_shrimp": 138,
|
| 534 |
+
"fried_spring_rolls": 139,
|
| 535 |
+
"frozen_yogurt": 140,
|
| 536 |
+
"ganmodoki": 141,
|
| 537 |
+
"garlic_bread": 142,
|
| 538 |
+
"garlics": 143,
|
| 539 |
+
"ginger_pork_saute": 144,
|
| 540 |
+
"gingers": 145,
|
| 541 |
+
"glutinous_oil_rice": 146,
|
| 542 |
+
"glutinous_rice_balls": 147,
|
| 543 |
+
"gnocchi": 148,
|
| 544 |
+
"goya_chanpuru": 149,
|
| 545 |
+
"grapefruits": 150,
|
| 546 |
+
"grapes": 151,
|
| 547 |
+
"gratin": 152,
|
| 548 |
+
"greek_salad": 153,
|
| 549 |
+
"green_curry": 154,
|
| 550 |
+
"green_salad": 155,
|
| 551 |
+
"grilled_cheese_sandwich": 156,
|
| 552 |
+
"grilled_eggplant": 157,
|
| 553 |
+
"grilled_pacific_saury": 158,
|
| 554 |
+
"grilled_salmon": 159,
|
| 555 |
+
"guacamole": 160,
|
| 556 |
+
"gulai": 161,
|
| 557 |
+
"gyoza": 162,
|
| 558 |
+
"ham_cutlet": 163,
|
| 559 |
+
"hambarg_steak": 164,
|
| 560 |
+
"hamburger": 165,
|
| 561 |
+
"haupia": 166,
|
| 562 |
+
"herbs": 167,
|
| 563 |
+
"hot_and_sour_fish_and_vegetable_ragout": 168,
|
| 564 |
+
"hot_and_sour_soup": 169,
|
| 565 |
+
"hot_dog": 170,
|
| 566 |
+
"hot_pot": 171,
|
| 567 |
+
"hue_beef_rice_vermicelli_soup": 172,
|
| 568 |
+
"huevos_rancheros": 173,
|
| 569 |
+
"hummus": 174,
|
| 570 |
+
"ice_cream": 175,
|
| 571 |
+
"inarizushi": 176,
|
| 572 |
+
"jambalaya": 177,
|
| 573 |
+
"japanese_style_pancake": 178,
|
| 574 |
+
"japanese_tofu_and_vegetable_chowder": 179,
|
| 575 |
+
"jiaozi": 180,
|
| 576 |
+
"jjigae": 181,
|
| 577 |
+
"jollof_ghana": 182,
|
| 578 |
+
"kamameshi": 183,
|
| 579 |
+
"kaya_toast": 184,
|
| 580 |
+
"khao_soi": 185,
|
| 581 |
+
"kinpira_style_sauteed_burdock": 186,
|
| 582 |
+
"kiwanos": 187,
|
| 583 |
+
"kiwis": 188,
|
| 584 |
+
"kumquats": 189,
|
| 585 |
+
"kung_pao_chicken": 190,
|
| 586 |
+
"kushikatu": 191,
|
| 587 |
+
"laksa": 192,
|
| 588 |
+
"lamb_kebabs": 193,
|
| 589 |
+
"lasagna": 194,
|
| 590 |
+
"laulau": 195,
|
| 591 |
+
"leeks": 196,
|
| 592 |
+
"lemon_fig_jelly": 197,
|
| 593 |
+
"lemons": 198,
|
| 594 |
+
"lightly_roasted_fish": 199,
|
| 595 |
+
"limes": 200,
|
| 596 |
+
"lobster_bisque": 201,
|
| 597 |
+
"lobster_roll_sandwich": 202,
|
| 598 |
+
"loco_moco": 203,
|
| 599 |
+
"lumpia": 204,
|
| 600 |
+
"macaroni_and_cheese": 205,
|
| 601 |
+
"macaroni_salad": 206,
|
| 602 |
+
"macarons": 207,
|
| 603 |
+
"malasada": 208,
|
| 604 |
+
"mango_pudding": 209,
|
| 605 |
+
"mangos": 210,
|
| 606 |
+
"mangosteens": 211,
|
| 607 |
+
"meat_loaf": 212,
|
| 608 |
+
"melons": 213,
|
| 609 |
+
"mie_ayam": 214,
|
| 610 |
+
"mie_goreng": 215,
|
| 611 |
+
"minced_meat_cutlet": 216,
|
| 612 |
+
"minced_pork_rice": 217,
|
| 613 |
+
"minestrone": 218,
|
| 614 |
+
"miso_soup": 219,
|
| 615 |
+
"mixed_rice": 220,
|
| 616 |
+
"moon_cake": 221,
|
| 617 |
+
"mozuku": 222,
|
| 618 |
+
"muffin": 223,
|
| 619 |
+
"mushroom_risotto": 224,
|
| 620 |
+
"mushrooms": 225,
|
| 621 |
+
"mussels": 226,
|
| 622 |
+
"nachos": 227,
|
| 623 |
+
"namero": 228,
|
| 624 |
+
"nanbanzuke": 229,
|
| 625 |
+
"nasi_campur": 230,
|
| 626 |
+
"nasi_goreng": 231,
|
| 627 |
+
"nasi_padang": 232,
|
| 628 |
+
"nasi_uduk": 233,
|
| 629 |
+
"natto": 234,
|
| 630 |
+
"ndole": 235,
|
| 631 |
+
"nectarines": 236,
|
| 632 |
+
"noodles_with_fish_curry": 237,
|
| 633 |
+
"oatmeal": 238,
|
| 634 |
+
"oden": 239,
|
| 635 |
+
"okinawa_soba": 240,
|
| 636 |
+
"omelet_with_fried_rice": 241,
|
| 637 |
+
"omelette": 242,
|
| 638 |
+
"onion_rings": 243,
|
| 639 |
+
"onions": 244,
|
| 640 |
+
"oranges": 245,
|
| 641 |
+
"oshiruko": 246,
|
| 642 |
+
"oxtail_soup": 247,
|
| 643 |
+
"oyster_omelette": 248,
|
| 644 |
+
"oysters": 249,
|
| 645 |
+
"pad_thai": 250,
|
| 646 |
+
"paella": 251,
|
| 647 |
+
"palm_nut_soup": 252,
|
| 648 |
+
"pancakes": 253,
|
| 649 |
+
"panna_cotta": 254,
|
| 650 |
+
"parfait": 255,
|
| 651 |
+
"passion_fruits": 256,
|
| 652 |
+
"peaches": 257,
|
| 653 |
+
"pears": 258,
|
| 654 |
+
"peking_duck": 259,
|
| 655 |
+
"peppers": 260,
|
| 656 |
+
"pho": 261,
|
| 657 |
+
"pilaf": 262,
|
| 658 |
+
"pineapples": 263,
|
| 659 |
+
"pitayas": 264,
|
| 660 |
+
"pizza": 265,
|
| 661 |
+
"pizza_toast": 266,
|
| 662 |
+
"plums": 267,
|
| 663 |
+
"pomegranates": 268,
|
| 664 |
+
"popcorn": 269,
|
| 665 |
+
"pork_belly": 270,
|
| 666 |
+
"pork_chop": 271,
|
| 667 |
+
"pork_cutlet": 272,
|
| 668 |
+
"pork_cutlet_on_rice": 273,
|
| 669 |
+
"pork_fillet_cutlet": 274,
|
| 670 |
+
"pork_loin_cutlet": 275,
|
| 671 |
+
"pork_miso_soup": 276,
|
| 672 |
+
"pork_satay": 277,
|
| 673 |
+
"pork_sticky_noodles": 278,
|
| 674 |
+
"pork_with_lemon": 279,
|
| 675 |
+
"pot_au_feu": 280,
|
| 676 |
+
"potage": 281,
|
| 677 |
+
"potato_salad": 282,
|
| 678 |
+
"potatoes": 283,
|
| 679 |
+
"poutine": 284,
|
| 680 |
+
"prime_rib": 285,
|
| 681 |
+
"pulled_pork_sandwich": 286,
|
| 682 |
+
"pumpkins": 287,
|
| 683 |
+
"radishes": 288,
|
| 684 |
+
"raisin_bread": 289,
|
| 685 |
+
"ramen": 290,
|
| 686 |
+
"ramen_noodle": 291,
|
| 687 |
+
"rare_cheese_cake": 292,
|
| 688 |
+
"ravioli": 293,
|
| 689 |
+
"red_beet": 294,
|
| 690 |
+
"red_velvet_cake": 295,
|
| 691 |
+
"rice": 296,
|
| 692 |
+
"rice_ball": 297,
|
| 693 |
+
"rice_crispy_pork": 298,
|
| 694 |
+
"rice_gratin": 299,
|
| 695 |
+
"rice_gruel": 300,
|
| 696 |
+
"rice_vermicelli": 301,
|
| 697 |
+
"rice_with_roast_duck": 302,
|
| 698 |
+
"risotto": 303,
|
| 699 |
+
"roast_chicken": 304,
|
| 700 |
+
"roast_duck": 305,
|
| 701 |
+
"roll_bread": 306,
|
| 702 |
+
"salads": 307,
|
| 703 |
+
"salmon_meuniere": 308,
|
| 704 |
+
"salt_and_pepper_fried_shrimp_with_shell": 309,
|
| 705 |
+
"samosa": 310,
|
| 706 |
+
"samul": 311,
|
| 707 |
+
"sandwiches": 312,
|
| 708 |
+
"sashimi": 313,
|
| 709 |
+
"sashimi_bowl": 314,
|
| 710 |
+
"sausage": 315,
|
| 711 |
+
"sauteed_spinach": 316,
|
| 712 |
+
"sauteed_vegetables": 317,
|
| 713 |
+
"scallops": 318,
|
| 714 |
+
"scone": 319,
|
| 715 |
+
"scrambled_egg": 320,
|
| 716 |
+
"seasoned_beef_with_potatoes": 321,
|
| 717 |
+
"seaweed_salad": 322,
|
| 718 |
+
"shortcake": 323,
|
| 719 |
+
"shrimp_and_grits": 324,
|
| 720 |
+
"shrimp_patties": 325,
|
| 721 |
+
"shrimp_with_chill_source": 326,
|
| 722 |
+
"simmered_pork": 327,
|
| 723 |
+
"sirloin_cutlet": 328,
|
| 724 |
+
"small_steamed_savory_rice_pancake": 329,
|
| 725 |
+
"soba_noodle": 330,
|
| 726 |
+
"sour_prawn_soup": 331,
|
| 727 |
+
"spaghetti": 332,
|
| 728 |
+
"spaghetti_bolognese": 333,
|
| 729 |
+
"spaghetti_carbonara": 334,
|
| 730 |
+
"spaghetti_meat_sauce": 335,
|
| 731 |
+
"spam_musubi": 336,
|
| 732 |
+
"spicy_chicken_salad": 337,
|
| 733 |
+
"spicy_chili_flavored_tofu": 338,
|
| 734 |
+
"spring_rolls": 339,
|
| 735 |
+
"steak": 340,
|
| 736 |
+
"steamed_egg_hotchpotch": 341,
|
| 737 |
+
"steamed_meat_dumpling": 342,
|
| 738 |
+
"steamed_rice_roll": 343,
|
| 739 |
+
"steamed_spareribs": 344,
|
| 740 |
+
"stew": 345,
|
| 741 |
+
"stewed_pork_leg": 346,
|
| 742 |
+
"stinky_tofu": 347,
|
| 743 |
+
"stir_fried_beef_and_peppers": 348,
|
| 744 |
+
"stir_fried_mixed_vegetables": 349,
|
| 745 |
+
"strawberry_shortcake": 350,
|
| 746 |
+
"sukiyaki": 351,
|
| 747 |
+
"sushi": 352,
|
| 748 |
+
"sushi_bowl": 353,
|
| 749 |
+
"sweet_and_sour_pork": 354,
|
| 750 |
+
"tacos": 355,
|
| 751 |
+
"takoyaki": 356,
|
| 752 |
+
"tamarillos": 357,
|
| 753 |
+
"tanmen": 358,
|
| 754 |
+
"tempura": 359,
|
| 755 |
+
"tempura_bowl": 360,
|
| 756 |
+
"tempura_udon": 361,
|
| 757 |
+
"tensin_noodle": 362,
|
| 758 |
+
"teriyaki_grilled_fish": 363,
|
| 759 |
+
"thai_papaya_salad": 364,
|
| 760 |
+
"thinly_sliced_raw_horsemeat": 365,
|
| 761 |
+
"three_cup_chicken": 366,
|
| 762 |
+
"tiramisu": 367,
|
| 763 |
+
"toast": 368,
|
| 764 |
+
"tomatos": 369,
|
| 765 |
+
"tortilla": 370,
|
| 766 |
+
"trunip_pudding": 371,
|
| 767 |
+
"tuna_tartare": 372,
|
| 768 |
+
"turnips": 373,
|
| 769 |
+
"twice_cooked_pork": 374,
|
| 770 |
+
"udon_noodle": 375,
|
| 771 |
+
"vegetable_tempura": 376,
|
| 772 |
+
"vermicelli_noodles_with_snails": 377,
|
| 773 |
+
"waakye": 378,
|
| 774 |
+
"waffles": 379,
|
| 775 |
+
"winter_melon_soup": 380,
|
| 776 |
+
"wonton_soup": 381,
|
| 777 |
+
"xiao_long_bao": 382,
|
| 778 |
+
"yakitori": 383,
|
| 779 |
+
"yellow_curry": 384,
|
| 780 |
+
"yudofu": 385,
|
| 781 |
+
"zha_jiang_mian": 386,
|
| 782 |
+
"zoni": 387,
|
| 783 |
+
"zucchinis": 388
|
| 784 |
+
},
|
| 785 |
+
"backbone_dir": "backbone"
|
| 786 |
+
}
|
eval_results.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 8.0,
|
| 3 |
+
"eval_accuracy": 0.9731962296486718,
|
| 4 |
+
"eval_f1_macro": 0.97272463600211,
|
| 5 |
+
"eval_loss": 0.11423125863075256,
|
| 6 |
+
"eval_runtime": 215.0703,
|
| 7 |
+
"eval_samples_per_second": 135.653,
|
| 8 |
+
"eval_steps_per_second": 11.308,
|
| 9 |
+
"eval_top5_accuracy": 0.9967780634104542
|
| 10 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7228be9fd21ce92856b879364aa3b773ae88f325a050411162237b2c748b6e37
|
| 3 |
+
size 1214158628
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_size": null,
|
| 3 |
+
"data_format": "channels_first",
|
| 4 |
+
"default_to_square": true,
|
| 5 |
+
"device": null,
|
| 6 |
+
"disable_grouping": null,
|
| 7 |
+
"do_center_crop": null,
|
| 8 |
+
"do_convert_rgb": null,
|
| 9 |
+
"do_normalize": true,
|
| 10 |
+
"do_pad": null,
|
| 11 |
+
"do_rescale": true,
|
| 12 |
+
"do_resize": true,
|
| 13 |
+
"image_mean": [
|
| 14 |
+
0.485,
|
| 15 |
+
0.456,
|
| 16 |
+
0.406
|
| 17 |
+
],
|
| 18 |
+
"image_processor_type": "DINOv3ViTImageProcessorFast",
|
| 19 |
+
"image_std": [
|
| 20 |
+
0.229,
|
| 21 |
+
0.224,
|
| 22 |
+
0.225
|
| 23 |
+
],
|
| 24 |
+
"input_data_format": null,
|
| 25 |
+
"pad_size": null,
|
| 26 |
+
"resample": 2,
|
| 27 |
+
"rescale_factor": 0.00392156862745098,
|
| 28 |
+
"return_tensors": null,
|
| 29 |
+
"size": {
|
| 30 |
+
"height": 224,
|
| 31 |
+
"width": 224
|
| 32 |
+
}
|
| 33 |
+
}
|
run_summary.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"run_name": "dinov3_epochs_8",
|
| 3 |
+
"model_name": "facebook/dinov3-vitl16-pretrain-lvd1689m",
|
| 4 |
+
"model_slug": "facebook-dinov3-vitl16-pretrain-lvd1689m",
|
| 5 |
+
"epochs": 8,
|
| 6 |
+
"output_dir": "./model_saved/finetuning/facebook-dinov3-vitl16-pretrain-lvd1689m/epochs_8",
|
| 7 |
+
"logging_dir": "./finetuning/logs/runs/facebook-dinov3-vitl16-pretrain-lvd1689m/epochs_8",
|
| 8 |
+
"cache_dir": "./cached_dataset/finetuning/facebook-dinov3-vitl16-pretrain-lvd1689m",
|
| 9 |
+
"started_at": "2026-06-14T07:33:22.181034+00:00",
|
| 10 |
+
"train_finished_at": "2026-06-14T19:33:20.276955+00:00",
|
| 11 |
+
"finished_at": "2026-06-14T19:39:31.168271+00:00",
|
| 12 |
+
"train_duration_seconds": 43198.09588932991,
|
| 13 |
+
"train_duration_minutes": 719.9682648221652,
|
| 14 |
+
"train_duration_hours": 11.99947108036942,
|
| 15 |
+
"run_duration_seconds": 43568.98720574379,
|
| 16 |
+
"run_duration_minutes": 726.1497867623965,
|
| 17 |
+
"run_duration_hours": 12.102496446039941,
|
| 18 |
+
"train_metrics": {
|
| 19 |
+
"train_runtime": 43197.8762,
|
| 20 |
+
"train_samples_per_second": 48.627,
|
| 21 |
+
"train_steps_per_second": 4.052,
|
| 22 |
+
"total_flos": 0.0,
|
| 23 |
+
"train_loss": 0.446697575658745,
|
| 24 |
+
"epoch": 8.0,
|
| 25 |
+
"train_wall_time_seconds": 43198.09588932991,
|
| 26 |
+
"train_wall_time_minutes": 719.9682648221652,
|
| 27 |
+
"train_wall_time_hours": 11.99947108036942,
|
| 28 |
+
"run_wall_time_seconds": 43568.98720574379,
|
| 29 |
+
"run_wall_time_minutes": 726.1497867623965,
|
| 30 |
+
"run_wall_time_hours": 12.102496446039941
|
| 31 |
+
},
|
| 32 |
+
"eval_metrics": {
|
| 33 |
+
"eval_loss": 0.11423125863075256,
|
| 34 |
+
"eval_accuracy": 0.9731962296486718,
|
| 35 |
+
"eval_f1_macro": 0.97272463600211,
|
| 36 |
+
"eval_top5_accuracy": 0.9967780634104542,
|
| 37 |
+
"eval_runtime": 215.0703,
|
| 38 |
+
"eval_samples_per_second": 135.653,
|
| 39 |
+
"eval_steps_per_second": 11.308,
|
| 40 |
+
"epoch": 8.0
|
| 41 |
+
}
|
| 42 |
+
}
|
train_results.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 8.0,
|
| 3 |
+
"run_wall_time_hours": 12.102496446039941,
|
| 4 |
+
"run_wall_time_minutes": 726.1497867623965,
|
| 5 |
+
"run_wall_time_seconds": 43568.98720574379,
|
| 6 |
+
"total_flos": 0.0,
|
| 7 |
+
"train_loss": 0.446697575658745,
|
| 8 |
+
"train_runtime": 43197.8762,
|
| 9 |
+
"train_samples_per_second": 48.627,
|
| 10 |
+
"train_steps_per_second": 4.052,
|
| 11 |
+
"train_wall_time_hours": 11.99947108036942,
|
| 12 |
+
"train_wall_time_minutes": 719.9682648221652,
|
| 13 |
+
"train_wall_time_seconds": 43198.09588932991
|
| 14 |
+
}
|
trainer_log_history.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|