KaiQ commited on
Commit
d5d93b2
·
verified ·
1 Parent(s): a69d928

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "swin-tiny-patch4-window7-224-finetuned-eurosat",
3
+ "architectures": [
4
+ "SwinForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "depths": [
8
+ 2,
9
+ 2,
10
+ 6,
11
+ 2
12
+ ],
13
+ "drop_path_rate": 0.1,
14
+ "embed_dim": 96,
15
+ "encoder_stride": 32,
16
+ "hidden_act": "gelu",
17
+ "hidden_dropout_prob": 0.0,
18
+ "hidden_size": 768,
19
+ "id2label": {
20
+ "0": "Anthracnose",
21
+ "1": "Bagworm",
22
+ "2": "Boron_Deficiency",
23
+ "3": "Bud_Rot_Leaf",
24
+ "4": "Calcium_Deficiency",
25
+ "5": "Copper_Deficiency",
26
+ "6": "Crown_Disease",
27
+ "7": "Fusarium_Wilt",
28
+ "8": "Ganoderma_BSR",
29
+ "9": "Healthy",
30
+ "10": "Iron_Deficiency",
31
+ "11": "Magnesium_Deficiency",
32
+ "12": "Manganese_Deficiency",
33
+ "13": "Nitrogen_Deficiency",
34
+ "14": "Non_Plant",
35
+ "15": "Other_Plant",
36
+ "16": "Pest_and_Diseases",
37
+ "17": "Phosphorus_Deficiency",
38
+ "18": "Potassium__K__Deficiency",
39
+ "19": "Rhinoceros_Beetle",
40
+ "20": "Sulfur_Deficiency",
41
+ "21": "Water_Deficiency",
42
+ "22": "Zinc_Deficiency"
43
+ },
44
+ "image_size": 224,
45
+ "initializer_range": 0.02,
46
+ "label2id": {
47
+ "Anthracnose": 0,
48
+ "Bagworm": 1,
49
+ "Boron_Deficiency": 2,
50
+ "Bud_Rot_Leaf": 3,
51
+ "Calcium_Deficiency": 4,
52
+ "Copper_Deficiency": 5,
53
+ "Crown_Disease": 6,
54
+ "Fusarium_Wilt": 7,
55
+ "Ganoderma_BSR": 8,
56
+ "Healthy": 9,
57
+ "Iron_Deficiency": 10,
58
+ "Magnesium_Deficiency": 11,
59
+ "Manganese_Deficiency": 12,
60
+ "Nitrogen_Deficiency": 13,
61
+ "Non_Plant": 14,
62
+ "Other_Plant": 15,
63
+ "Pest_and_Diseases": 16,
64
+ "Phosphorus_Deficiency": 17,
65
+ "Potassium__K__Deficiency": 18,
66
+ "Rhinoceros_Beetle": 19,
67
+ "Sulfur_Deficiency": 20,
68
+ "Water_Deficiency": 21,
69
+ "Zinc_Deficiency": 22
70
+ },
71
+ "layer_norm_eps": 1e-05,
72
+ "mlp_ratio": 4.0,
73
+ "model_type": "swin",
74
+ "num_channels": 3,
75
+ "num_heads": [
76
+ 3,
77
+ 6,
78
+ 12,
79
+ 24
80
+ ],
81
+ "num_layers": 4,
82
+ "out_features": [
83
+ "stage4"
84
+ ],
85
+ "out_indices": [
86
+ 4
87
+ ],
88
+ "patch_size": 4,
89
+ "path_norm": true,
90
+ "problem_type": "single_label_classification",
91
+ "qkv_bias": true,
92
+ "stage_names": [
93
+ "stem",
94
+ "stage1",
95
+ "stage2",
96
+ "stage3",
97
+ "stage4"
98
+ ],
99
+ "torch_dtype": "float32",
100
+ "transformers_version": "4.41.0.dev0",
101
+ "use_absolute_embeddings": false,
102
+ "window_size": 7
103
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a74e3bfcf013bdbf053bbab641c79f594cc39c765d8ad3377295f3a22ca70fea
3
+ size 110407436
preprocessor_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_rescale",
8
+ "rescale_factor",
9
+ "do_normalize",
10
+ "image_mean",
11
+ "image_std",
12
+ "return_tensors",
13
+ "data_format",
14
+ "input_data_format"
15
+ ],
16
+ "do_normalize": true,
17
+ "do_rescale": true,
18
+ "do_resize": true,
19
+ "image_mean": [
20
+ 0.485,
21
+ 0.456,
22
+ 0.406
23
+ ],
24
+ "image_processor_type": "ViTImageProcessor",
25
+ "image_std": [
26
+ 0.229,
27
+ 0.224,
28
+ 0.225
29
+ ],
30
+ "resample": 3,
31
+ "rescale_factor": 0.00392156862745098,
32
+ "size": {
33
+ "height": 224,
34
+ "width": 224
35
+ }
36
+ }
runs/Aug13_13-10-17_llm2-train/events.out.tfevents.1723525835.llm2-train.3666677.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0863ca4d9f070e5a4b0f9faed9e60aa5cb3f2870ccfc9239a83cbe529ce6000
3
+ size 13195
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cac735170ef0e0a2c321c9f21ef5a682b45857584cb60ff50ee746c98cc501bb
3
+ size 5176