anaghasavit commited on
Commit
549d1cf
1 Parent(s): bd3def4

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/convnext-tiny-224",
3
+ "architectures": [
4
+ "ConvNextForImageClassification"
5
+ ],
6
+ "depths": [
7
+ 3,
8
+ 3,
9
+ 9,
10
+ 3
11
+ ],
12
+ "drop_path_rate": 0.0,
13
+ "hidden_act": "gelu",
14
+ "hidden_sizes": [
15
+ 96,
16
+ 192,
17
+ 384,
18
+ 768
19
+ ],
20
+ "id2label": {
21
+ "0": "Apple Braeburn",
22
+ "1": "Apple Crimson Snow",
23
+ "2": "Apple Golden 1",
24
+ "3": "Apple Granny Smith",
25
+ "4": "Apple Pink Lady",
26
+ "5": "Apple Red 1",
27
+ "6": "Apple Red 2",
28
+ "7": "Apple Red 3",
29
+ "8": "Apple Red Delicious",
30
+ "9": "Apple Red Yellow 1",
31
+ "10": "Apple Red Yellow 2",
32
+ "11": "Apricot",
33
+ "12": "Avocado",
34
+ "13": "Avocado ripe",
35
+ "14": "Banana",
36
+ "15": "Banana Lady Finger",
37
+ "16": "Banana Red",
38
+ "17": "Beetroot",
39
+ "18": "Blueberry",
40
+ "19": "Cauliflower",
41
+ "20": "Cherry 1",
42
+ "21": "Cherry 2",
43
+ "22": "Cherry Rainier",
44
+ "23": "Cherry Wax Black",
45
+ "24": "Cherry Wax Red",
46
+ "25": "Corn",
47
+ "26": "Dates",
48
+ "27": "Eggplant",
49
+ "28": "Guava",
50
+ "29": "Kiwi",
51
+ "30": "Lemon",
52
+ "31": "Lemon Meyer",
53
+ "32": "Limes",
54
+ "33": "Lychee",
55
+ "34": "Mango",
56
+ "35": "Orange",
57
+ "36": "Papaya",
58
+ "37": "Passion Fruit",
59
+ "38": "Peach",
60
+ "39": "Pear",
61
+ "40": "Pear Abate",
62
+ "41": "Pear Forelle",
63
+ "42": "Pear Kaiser",
64
+ "43": "Pear Red",
65
+ "44": "Pear Stone",
66
+ "45": "Pear Williams",
67
+ "46": "Pepper Green",
68
+ "47": "Pepper Orange",
69
+ "48": "Pepper Red",
70
+ "49": "Pepper Yellow",
71
+ "50": "Pineapple",
72
+ "51": "Plum",
73
+ "52": "Plum 2",
74
+ "53": "Plum 3",
75
+ "54": "Pomegranate",
76
+ "55": "Potato Red",
77
+ "56": "Potato Red Washed",
78
+ "57": "Potato Sweet",
79
+ "58": "Potato White",
80
+ "59": "Strawberry",
81
+ "60": "Tomato 1",
82
+ "61": "Tomato 2",
83
+ "62": "Tomato 3",
84
+ "63": "Tomato 4",
85
+ "64": "Tomato Cherry Red",
86
+ "65": "Watermelon",
87
+ "66": "package"
88
+ },
89
+ "image_size": 224,
90
+ "initializer_range": 0.02,
91
+ "label2id": {
92
+ "Apple Braeburn": 0,
93
+ "Apple Crimson Snow": 1,
94
+ "Apple Golden 1": 2,
95
+ "Apple Granny Smith": 3,
96
+ "Apple Pink Lady": 4,
97
+ "Apple Red 1": 5,
98
+ "Apple Red 2": 6,
99
+ "Apple Red 3": 7,
100
+ "Apple Red Delicious": 8,
101
+ "Apple Red Yellow 1": 9,
102
+ "Apple Red Yellow 2": 10,
103
+ "Apricot": 11,
104
+ "Avocado": 12,
105
+ "Avocado ripe": 13,
106
+ "Banana": 14,
107
+ "Banana Lady Finger": 15,
108
+ "Banana Red": 16,
109
+ "Beetroot": 17,
110
+ "Blueberry": 18,
111
+ "Cauliflower": 19,
112
+ "Cherry 1": 20,
113
+ "Cherry 2": 21,
114
+ "Cherry Rainier": 22,
115
+ "Cherry Wax Black": 23,
116
+ "Cherry Wax Red": 24,
117
+ "Corn": 25,
118
+ "Dates": 26,
119
+ "Eggplant": 27,
120
+ "Guava": 28,
121
+ "Kiwi": 29,
122
+ "Lemon": 30,
123
+ "Lemon Meyer": 31,
124
+ "Limes": 32,
125
+ "Lychee": 33,
126
+ "Mango": 34,
127
+ "Orange": 35,
128
+ "Papaya": 36,
129
+ "Passion Fruit": 37,
130
+ "Peach": 38,
131
+ "Pear": 39,
132
+ "Pear Abate": 40,
133
+ "Pear Forelle": 41,
134
+ "Pear Kaiser": 42,
135
+ "Pear Red": 43,
136
+ "Pear Stone": 44,
137
+ "Pear Williams": 45,
138
+ "Pepper Green": 46,
139
+ "Pepper Orange": 47,
140
+ "Pepper Red": 48,
141
+ "Pepper Yellow": 49,
142
+ "Pineapple": 50,
143
+ "Plum": 51,
144
+ "Plum 2": 52,
145
+ "Plum 3": 53,
146
+ "Pomegranate": 54,
147
+ "Potato Red": 55,
148
+ "Potato Red Washed": 56,
149
+ "Potato Sweet": 57,
150
+ "Potato White": 58,
151
+ "Strawberry": 59,
152
+ "Tomato 1": 60,
153
+ "Tomato 2": 61,
154
+ "Tomato 3": 62,
155
+ "Tomato 4": 63,
156
+ "Tomato Cherry Red": 64,
157
+ "Watermelon": 65,
158
+ "package": 66
159
+ },
160
+ "layer_norm_eps": 1e-12,
161
+ "layer_scale_init_value": 1e-06,
162
+ "model_type": "convnext",
163
+ "num_channels": 3,
164
+ "num_stages": 4,
165
+ "out_features": null,
166
+ "patch_size": 4,
167
+ "problem_type": "single_label_classification",
168
+ "stage_names": [
169
+ "stem",
170
+ "stage1",
171
+ "stage2",
172
+ "stage3",
173
+ "stage4"
174
+ ],
175
+ "torch_dtype": "float32",
176
+ "transformers_version": "4.26.0"
177
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_pct": 0.875,
3
+ "do_normalize": true,
4
+ "do_rescale": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "ConvNextFeatureExtractor",
7
+ "image_mean": [
8
+ 0.485,
9
+ 0.456,
10
+ 0.406
11
+ ],
12
+ "image_processor_type": "ConvNextFeatureExtractor",
13
+ "image_std": [
14
+ 0.229,
15
+ 0.224,
16
+ 0.225
17
+ ],
18
+ "resample": 3,
19
+ "rescale_factor": 0.00392156862745098,
20
+ "size": {
21
+ "shortest_edge": 224
22
+ }
23
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47b25cb14ecb8e206d6e8d1b4e38c809f321af6f55f1e5617baf0ba39eb8083b
3
+ size 111548965
runs/Feb08_11-00-39_a4e5178e22ff/1675854056.2160845/events.out.tfevents.1675854056.a4e5178e22ff.13935.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf86fa100750e4269f7d006032d1866519d9c05db51b91de97d416c29bd3342a
3
+ size 5701
runs/Feb08_11-00-39_a4e5178e22ff/events.out.tfevents.1675854056.a4e5178e22ff.13935.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7094a5d80d23f8f3f0eacb293d616dcda3caed9266b8b08911600f7d08cf8cc0
3
+ size 7131
runs/Feb08_11-11-06_a4e5178e22ff/1675854680.7412689/events.out.tfevents.1675854680.a4e5178e22ff.13935.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4eba90354c42a311ce0a12984fcf646abec7ff0f52ed22116cbe2350d77b7577
3
+ size 5701
runs/Feb08_11-11-06_a4e5178e22ff/events.out.tfevents.1675854680.a4e5178e22ff.13935.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44b1566546c54d021f4c08bea4bfca8822a3bef06c5db66d50e882fdc0424e7a
3
+ size 11080
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9e6270e34720783b3e2a3e50352e851caea2e8e1af5f83cf878977ae51f877a
3
+ size 3515