rahultp-ign commited on
Commit
c7d1aa3
1 Parent(s): aaa2785

Training in progress, epoch 0

Browse files
Files changed (4) hide show
  1. config.json +33 -17
  2. model.safetensors +2 -2
  3. preprocessor_config.json +11 -16
  4. training_args.bin +1 -1
config.json CHANGED
@@ -1,15 +1,24 @@
1
  {
2
- "_name_or_path": "google/mobilenet_v2_1.4_224",
3
  "architectures": [
4
- "MobileNetV2ForImageClassification"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ],
6
- "classifier_dropout_prob": 0.2,
7
- "depth_divisible_by": 8,
8
- "depth_multiplier": 1.4,
9
- "expand_ratio": 6,
10
- "finegrained_output": true,
11
- "first_layer_is_expansion": true,
12
- "hidden_act": "relu6",
13
  "id2label": {
14
  "0": "apple_pie",
15
  "1": "baby_back_ribs",
@@ -113,8 +122,6 @@
113
  "98": "tiramisu",
114
  "99": "tuna_tartare"
115
  },
116
- "image_size": 224,
117
- "initializer_range": 0.02,
118
  "label2id": {
119
  "apple_pie": "0",
120
  "baby_back_ribs": "1",
@@ -218,14 +225,23 @@
218
  "tuna_tartare": "99",
219
  "waffles": "100"
220
  },
221
- "layer_norm_eps": 0.001,
222
- "min_depth": 8,
223
- "model_type": "mobilenet_v2",
224
  "num_channels": 3,
225
- "output_stride": 32,
 
 
 
 
 
226
  "problem_type": "single_label_classification",
227
- "semantic_loss_ignore_index": 255,
228
- "tf_padding": true,
 
 
 
 
 
229
  "torch_dtype": "float32",
230
  "transformers_version": "4.41.0"
231
  }
 
1
  {
2
+ "_name_or_path": "microsoft/resnet-50",
3
  "architectures": [
4
+ "ResNetForImageClassification"
5
+ ],
6
+ "depths": [
7
+ 3,
8
+ 4,
9
+ 6,
10
+ 3
11
+ ],
12
+ "downsample_in_bottleneck": false,
13
+ "downsample_in_first_stage": false,
14
+ "embedding_size": 64,
15
+ "hidden_act": "relu",
16
+ "hidden_sizes": [
17
+ 256,
18
+ 512,
19
+ 1024,
20
+ 2048
21
  ],
 
 
 
 
 
 
 
22
  "id2label": {
23
  "0": "apple_pie",
24
  "1": "baby_back_ribs",
 
122
  "98": "tiramisu",
123
  "99": "tuna_tartare"
124
  },
 
 
125
  "label2id": {
126
  "apple_pie": "0",
127
  "baby_back_ribs": "1",
 
225
  "tuna_tartare": "99",
226
  "waffles": "100"
227
  },
228
+ "layer_type": "bottleneck",
229
+ "model_type": "resnet",
 
230
  "num_channels": 3,
231
+ "out_features": [
232
+ "stage4"
233
+ ],
234
+ "out_indices": [
235
+ 4
236
+ ],
237
  "problem_type": "single_label_classification",
238
+ "stage_names": [
239
+ "stem",
240
+ "stage1",
241
+ "stage2",
242
+ "stage3",
243
+ "stage4"
244
+ ],
245
  "torch_dtype": "float32",
246
  "transformers_version": "4.41.0"
247
  }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:acc22f00a578715e08904ee3405cdb8b23fa681fa356097870f8c791b5f9b854
3
- size 18217604
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79831bb3a6d35a094cf05c79c7ea9d007b59310a6348755bfe54a687538bab83
3
+ size 95114484
preprocessor_config.json CHANGED
@@ -3,9 +3,8 @@
3
  "images",
4
  "do_resize",
5
  "size",
 
6
  "resample",
7
- "do_center_crop",
8
- "crop_size",
9
  "do_rescale",
10
  "rescale_factor",
11
  "do_normalize",
@@ -15,28 +14,24 @@
15
  "data_format",
16
  "input_data_format"
17
  ],
18
- "crop_size": {
19
- "height": 224,
20
- "width": 224
21
- },
22
- "do_center_crop": true,
23
  "do_normalize": true,
24
  "do_rescale": true,
25
  "do_resize": true,
26
  "image_mean": [
27
- 0.5,
28
- 0.5,
29
- 0.5
30
  ],
31
- "image_processor_type": "MobileNetV2ImageProcessor",
32
  "image_std": [
33
- 0.5,
34
- 0.5,
35
- 0.5
36
  ],
37
- "resample": 2,
38
  "rescale_factor": 0.00392156862745098,
39
  "size": {
40
- "shortest_edge": 256
41
  }
42
  }
 
3
  "images",
4
  "do_resize",
5
  "size",
6
+ "crop_pct",
7
  "resample",
 
 
8
  "do_rescale",
9
  "rescale_factor",
10
  "do_normalize",
 
14
  "data_format",
15
  "input_data_format"
16
  ],
17
+ "crop_pct": 0.875,
 
 
 
 
18
  "do_normalize": true,
19
  "do_rescale": true,
20
  "do_resize": true,
21
  "image_mean": [
22
+ 0.485,
23
+ 0.456,
24
+ 0.406
25
  ],
26
+ "image_processor_type": "ConvNextImageProcessor",
27
  "image_std": [
28
+ 0.229,
29
+ 0.224,
30
+ 0.225
31
  ],
32
+ "resample": 3,
33
  "rescale_factor": 0.00392156862745098,
34
  "size": {
35
+ "shortest_edge": 224
36
  }
37
  }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:644757217992f5de88a431d32ba529047a80649d178210bda8ccae9685ed15ce
3
  size 5112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e209e09331227110b8ec9939c2502dd5de9c9e5b1a80bf66605f8dfbd80357d0
3
  size 5112