prakhardixit24
commited on
Training in progress, epoch 1
Browse files- config.json +33 -16
- model.safetensors +2 -2
- preprocessor_config.json +10 -10
- training_args.bin +1 -1
config.json
CHANGED
@@ -1,32 +1,49 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
3 |
"architectures": [
|
4 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
],
|
6 |
-
"attention_probs_dropout_prob": 0.0,
|
7 |
-
"encoder_stride": 16,
|
8 |
-
"hidden_act": "gelu",
|
9 |
-
"hidden_dropout_prob": 0.0,
|
10 |
-
"hidden_size": 768,
|
11 |
"id2label": {
|
12 |
"0": "negative",
|
13 |
"1": "positive"
|
14 |
},
|
15 |
-
"image_size": 224,
|
16 |
-
"initializer_range": 0.02,
|
17 |
-
"intermediate_size": 3072,
|
18 |
"label2id": {
|
19 |
"negative": "0",
|
20 |
"positive": "1"
|
21 |
},
|
22 |
-
"
|
23 |
-
"model_type": "
|
24 |
-
"num_attention_heads": 12,
|
25 |
"num_channels": 3,
|
26 |
-
"
|
27 |
-
|
|
|
|
|
|
|
|
|
28 |
"problem_type": "single_label_classification",
|
29 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
"torch_dtype": "float32",
|
31 |
"transformers_version": "4.42.4"
|
32 |
}
|
|
|
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": "negative",
|
24 |
"1": "positive"
|
25 |
},
|
|
|
|
|
|
|
26 |
"label2id": {
|
27 |
"negative": "0",
|
28 |
"positive": "1"
|
29 |
},
|
30 |
+
"layer_type": "bottleneck",
|
31 |
+
"model_type": "resnet",
|
|
|
32 |
"num_channels": 3,
|
33 |
+
"out_features": [
|
34 |
+
"stage4"
|
35 |
+
],
|
36 |
+
"out_indices": [
|
37 |
+
4
|
38 |
+
],
|
39 |
"problem_type": "single_label_classification",
|
40 |
+
"stage_names": [
|
41 |
+
"stem",
|
42 |
+
"stage1",
|
43 |
+
"stage2",
|
44 |
+
"stage3",
|
45 |
+
"stage4"
|
46 |
+
],
|
47 |
"torch_dtype": "float32",
|
48 |
"transformers_version": "4.42.4"
|
49 |
}
|
model.safetensors
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9aec7709540f4e6f18336d49d202a7bec274d3cc1f21c0e16d72d4c69c9140bd
|
3 |
+
size 94302952
|
preprocessor_config.json
CHANGED
@@ -1,22 +1,22 @@
|
|
1 |
{
|
|
|
2 |
"do_normalize": true,
|
3 |
"do_rescale": true,
|
4 |
"do_resize": true,
|
5 |
"image_mean": [
|
6 |
-
0.
|
7 |
-
0.
|
8 |
-
0.
|
9 |
],
|
10 |
-
"image_processor_type": "
|
11 |
"image_std": [
|
12 |
-
0.
|
13 |
-
0.
|
14 |
-
0.
|
15 |
],
|
16 |
-
"resample":
|
17 |
"rescale_factor": 0.00392156862745098,
|
18 |
"size": {
|
19 |
-
"
|
20 |
-
"width": 224
|
21 |
}
|
22 |
}
|
|
|
1 |
{
|
2 |
+
"crop_pct": 0.875,
|
3 |
"do_normalize": true,
|
4 |
"do_rescale": true,
|
5 |
"do_resize": true,
|
6 |
"image_mean": [
|
7 |
+
0.485,
|
8 |
+
0.456,
|
9 |
+
0.406
|
10 |
],
|
11 |
+
"image_processor_type": "ConvNextImageProcessor",
|
12 |
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
],
|
17 |
+
"resample": 3,
|
18 |
"rescale_factor": 0.00392156862745098,
|
19 |
"size": {
|
20 |
+
"shortest_edge": 224
|
|
|
21 |
}
|
22 |
}
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 5176
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa41f90f56936ef45f71560b263afc44d83ec1adcf1aff253f56f934273c299f
|
3 |
size 5176
|