Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +74 -0
- preprocessor_config.json +17 -0
- pytorch_model.bin +3 -0
- runs/Jun28_07-15-44_154c77da8bb4/1656400595.8381095/events.out.tfevents.1656400595.154c77da8bb4.65.1 +3 -0
- runs/Jun28_07-15-44_154c77da8bb4/events.out.tfevents.1656400595.154c77da8bb4.65.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/swin-tiny-patch4-window7-224",
|
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": "Pepper__bell___Bacterial_spot",
|
21 |
+
"1": "Pepper__bell___healthy",
|
22 |
+
"2": "Potato___Early_blight",
|
23 |
+
"3": "Potato___Late_blight",
|
24 |
+
"4": "Potato___healthy",
|
25 |
+
"5": "Tomato_Bacterial_spot",
|
26 |
+
"6": "Tomato_Early_blight",
|
27 |
+
"7": "Tomato_Late_blight",
|
28 |
+
"8": "Tomato_Leaf_Mold",
|
29 |
+
"9": "Tomato_Septoria_leaf_spot",
|
30 |
+
"10": "Tomato_Spider_mites_Two_spotted_spider_mite",
|
31 |
+
"11": "Tomato__Target_Spot",
|
32 |
+
"12": "Tomato__Tomato_YellowLeaf__Curl_Virus",
|
33 |
+
"13": "Tomato__Tomato_mosaic_virus",
|
34 |
+
"14": "Tomato_healthy"
|
35 |
+
},
|
36 |
+
"image_size": 224,
|
37 |
+
"initializer_range": 0.02,
|
38 |
+
"label2id": {
|
39 |
+
"Pepper__bell___Bacterial_spot": 0,
|
40 |
+
"Pepper__bell___healthy": 1,
|
41 |
+
"Potato___Early_blight": 2,
|
42 |
+
"Potato___Late_blight": 3,
|
43 |
+
"Potato___healthy": 4,
|
44 |
+
"Tomato_Bacterial_spot": 5,
|
45 |
+
"Tomato_Early_blight": 6,
|
46 |
+
"Tomato_Late_blight": 7,
|
47 |
+
"Tomato_Leaf_Mold": 8,
|
48 |
+
"Tomato_Septoria_leaf_spot": 9,
|
49 |
+
"Tomato_Spider_mites_Two_spotted_spider_mite": 10,
|
50 |
+
"Tomato__Target_Spot": 11,
|
51 |
+
"Tomato__Tomato_YellowLeaf__Curl_Virus": 12,
|
52 |
+
"Tomato__Tomato_mosaic_virus": 13,
|
53 |
+
"Tomato_healthy": 14
|
54 |
+
},
|
55 |
+
"layer_norm_eps": 1e-05,
|
56 |
+
"mlp_ratio": 4.0,
|
57 |
+
"model_type": "swin",
|
58 |
+
"num_channels": 3,
|
59 |
+
"num_heads": [
|
60 |
+
3,
|
61 |
+
6,
|
62 |
+
12,
|
63 |
+
24
|
64 |
+
],
|
65 |
+
"num_layers": 4,
|
66 |
+
"patch_size": 4,
|
67 |
+
"path_norm": true,
|
68 |
+
"problem_type": "single_label_classification",
|
69 |
+
"qkv_bias": true,
|
70 |
+
"torch_dtype": "float32",
|
71 |
+
"transformers_version": "4.20.1",
|
72 |
+
"use_absolute_embeddings": false,
|
73 |
+
"window_size": 7
|
74 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_resize": true,
|
4 |
+
"feature_extractor_type": "ViTFeatureExtractor",
|
5 |
+
"image_mean": [
|
6 |
+
0.485,
|
7 |
+
0.456,
|
8 |
+
0.406
|
9 |
+
],
|
10 |
+
"image_std": [
|
11 |
+
0.229,
|
12 |
+
0.224,
|
13 |
+
0.225
|
14 |
+
],
|
15 |
+
"resample": 3,
|
16 |
+
"size": 224
|
17 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ccb33af8b4bfe6fe55abc9159159b85a16dcf0bef3f504f35981292922f20277
|
3 |
+
size 110429551
|
runs/Jun28_07-15-44_154c77da8bb4/1656400595.8381095/events.out.tfevents.1656400595.154c77da8bb4.65.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21a1bb6b9fd95fe2b5bc1195ba9624b998b0a388261c174cb1e7d8957d9bfc77
|
3 |
+
size 5429
|
runs/Jun28_07-15-44_154c77da8bb4/events.out.tfevents.1656400595.154c77da8bb4.65.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1e8f536c8c91a3ce61d77f0f474b2e1241880114e36483877e5470994e905abb
|
3 |
+
size 7402
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af8882fb72f121e6dae258c6d895b40b7fc10914f876b1ec73deedd10ba1825b
|
3 |
+
size 3375
|