Training in progress, epoch 12
Browse files- config.json +55 -0
- model.safetensors +3 -0
- preprocessor_config.json +37 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "Iinstia bijuga",
|
24 |
+
"1": "Mangifera indica",
|
25 |
+
"2": "Pterocarpus indicus",
|
26 |
+
"3": "Roystonea regia",
|
27 |
+
"4": "Tabebuia"
|
28 |
+
},
|
29 |
+
"label2id": {
|
30 |
+
"Iinstia bijuga": 0,
|
31 |
+
"Mangifera indica": 1,
|
32 |
+
"Pterocarpus indicus": 2,
|
33 |
+
"Roystonea regia": 3,
|
34 |
+
"Tabebuia": 4
|
35 |
+
},
|
36 |
+
"layer_type": "bottleneck",
|
37 |
+
"model_type": "resnet",
|
38 |
+
"num_channels": 3,
|
39 |
+
"out_features": [
|
40 |
+
"stage4"
|
41 |
+
],
|
42 |
+
"out_indices": [
|
43 |
+
4
|
44 |
+
],
|
45 |
+
"problem_type": "single_label_classification",
|
46 |
+
"stage_names": [
|
47 |
+
"stem",
|
48 |
+
"stage1",
|
49 |
+
"stage2",
|
50 |
+
"stage3",
|
51 |
+
"stage4"
|
52 |
+
],
|
53 |
+
"torch_dtype": "float32",
|
54 |
+
"transformers_version": "4.39.3"
|
55 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c227fe81917834b44cdf17a4e94370d3c7be1c5046169d6b746ff519957db94
|
3 |
+
size 94327540
|
preprocessor_config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_valid_processor_keys": [
|
3 |
+
"images",
|
4 |
+
"do_resize",
|
5 |
+
"size",
|
6 |
+
"crop_pct",
|
7 |
+
"resample",
|
8 |
+
"do_rescale",
|
9 |
+
"rescale_factor",
|
10 |
+
"do_normalize",
|
11 |
+
"image_mean",
|
12 |
+
"image_std",
|
13 |
+
"return_tensors",
|
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
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e28f17c7a6b27bb5293f838c24356ea94ac839036baad65374863f11a155e175
|
3 |
+
size 4856
|