aayanb09 commited on
Commit
eea0818
·
verified ·
1 Parent(s): 48fe48f

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +128 -0
config.json ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "resnet50",
3
+ "num_classes": 101,
4
+ "image_size": 224,
5
+ "accuracy": 0.9901,
6
+ "epoch": 1,
7
+ "architecture": {
8
+ "backbone": "resnet50",
9
+ "dropout": [0.5, 0.3],
10
+ "hidden_dim": 512
11
+ },
12
+ "training": {
13
+ "batch_size": 64,
14
+ "optimizer": "AdamW",
15
+ "learning_rate": 0.001,
16
+ "weight_decay": 0.01,
17
+ "scheduler": "OneCycleLR",
18
+ "mixed_precision": true
19
+ },
20
+ "preprocessing": {
21
+ "resize": 224,
22
+ "normalize_mean": [0.485, 0.456, 0.406],
23
+ "normalize_std": [0.229, 0.224, 0.225]
24
+ },
25
+ "ingredients": [
26
+ "apple_pie",
27
+ "baby_back_ribs",
28
+ "baklava",
29
+ "beef_carpaccio",
30
+ "beef_tartare",
31
+ "beet_salad",
32
+ "beignets",
33
+ "bibimbap",
34
+ "bread_pudding",
35
+ "breakfast_burrito",
36
+ "bruschetta",
37
+ "caesar_salad",
38
+ "cannoli",
39
+ "caprese_salad",
40
+ "carrot_cake",
41
+ "ceviche",
42
+ "cheese_plate",
43
+ "cheesecake",
44
+ "chicken_curry",
45
+ "chicken_quesadilla",
46
+ "chicken_wings",
47
+ "chocolate_cake",
48
+ "chocolate_mousse",
49
+ "churros",
50
+ "clam_chowder",
51
+ "club_sandwich",
52
+ "crab_cakes",
53
+ "creme_brulee",
54
+ "croque_madame",
55
+ "cup_cakes",
56
+ "deviled_eggs",
57
+ "donuts",
58
+ "dumplings",
59
+ "edamame",
60
+ "eggs_benedict",
61
+ "escargots",
62
+ "falafel",
63
+ "filet_mignon",
64
+ "fish_and_chips",
65
+ "foie_gras",
66
+ "french_fries",
67
+ "french_onion_soup",
68
+ "french_toast",
69
+ "fried_calamari",
70
+ "fried_rice",
71
+ "frozen_yogurt",
72
+ "garlic_bread",
73
+ "gnocchi",
74
+ "greek_salad",
75
+ "grilled_cheese_sandwich",
76
+ "grilled_salmon",
77
+ "guacamole",
78
+ "gyoza",
79
+ "hamburger",
80
+ "hot_and_sour_soup",
81
+ "hot_dog",
82
+ "huevos_rancheros",
83
+ "hummus",
84
+ "ice_cream",
85
+ "lasagna",
86
+ "lobster_bisque",
87
+ "lobster_roll_sandwich",
88
+ "macaroni_and_cheese",
89
+ "macarons",
90
+ "miso_soup",
91
+ "mussels",
92
+ "nachos",
93
+ "omelette",
94
+ "onion_rings",
95
+ "oysters",
96
+ "pad_thai",
97
+ "paella",
98
+ "pancakes",
99
+ "panna_cotta",
100
+ "peking_duck",
101
+ "pho",
102
+ "pizza",
103
+ "pork_chop",
104
+ "poutine",
105
+ "prime_rib",
106
+ "pulled_pork_sandwich",
107
+ "ramen",
108
+ "ravioli",
109
+ "red_velvet_cake",
110
+ "risotto",
111
+ "samosa",
112
+ "sashimi",
113
+ "scallops",
114
+ "seaweed_salad",
115
+ "shrimp_and_grits",
116
+ "spaghetti_bolognese",
117
+ "spaghetti_carbonara",
118
+ "spring_rolls",
119
+ "steak",
120
+ "strawberry_shortcake",
121
+ "sushi",
122
+ "tacos",
123
+ "takoyaki",
124
+ "tiramisu",
125
+ "tuna_tartare",
126
+ "waffles"
127
+ ]
128
+ }