Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +56 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Jun04_21-26-13_e80498b5693b/1685914017.0675132/events.out.tfevents.1685914017.e80498b5693b.241.1 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/1685915647.5132923/events.out.tfevents.1685915647.e80498b5693b.241.3 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/1685916384.2088253/events.out.tfevents.1685916384.e80498b5693b.241.5 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/1685916751.3339105/events.out.tfevents.1685916751.e80498b5693b.241.7 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685914017.e80498b5693b.241.0 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685915647.e80498b5693b.241.2 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685916384.e80498b5693b.241.4 +3 -0
- runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685916751.e80498b5693b.241.6 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "google/vit-base-patch16-224-in21k",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"ViTForImageClassification"
|
| 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": "Apple___Apple_scab",
|
| 13 |
+
"1": "Apple___Black_rot",
|
| 14 |
+
"2": "Apple___Cedar_apple_rust",
|
| 15 |
+
"3": "Apple___healthy",
|
| 16 |
+
"4": "Blueberry___healthy",
|
| 17 |
+
"5": "Grape___Black_rot",
|
| 18 |
+
"6": "Grape___healthy",
|
| 19 |
+
"7": "Peach___Bacterial_spot",
|
| 20 |
+
"8": "Peach___healthy",
|
| 21 |
+
"9": "Potato___Early_blight",
|
| 22 |
+
"10": "Potato___Late_blight",
|
| 23 |
+
"11": "Potato___healthy",
|
| 24 |
+
"12": "Raspberry___healthy",
|
| 25 |
+
"13": "Soybean___healthy"
|
| 26 |
+
},
|
| 27 |
+
"image_size": 224,
|
| 28 |
+
"initializer_range": 0.02,
|
| 29 |
+
"intermediate_size": 3072,
|
| 30 |
+
"label2id": {
|
| 31 |
+
"Apple___Apple_scab": 0,
|
| 32 |
+
"Apple___Black_rot": 1,
|
| 33 |
+
"Apple___Cedar_apple_rust": 2,
|
| 34 |
+
"Apple___healthy": 3,
|
| 35 |
+
"Blueberry___healthy": 4,
|
| 36 |
+
"Grape___Black_rot": 5,
|
| 37 |
+
"Grape___healthy": 6,
|
| 38 |
+
"Peach___Bacterial_spot": 7,
|
| 39 |
+
"Peach___healthy": 8,
|
| 40 |
+
"Potato___Early_blight": 9,
|
| 41 |
+
"Potato___Late_blight": 10,
|
| 42 |
+
"Potato___healthy": 11,
|
| 43 |
+
"Raspberry___healthy": 12,
|
| 44 |
+
"Soybean___healthy": 13
|
| 45 |
+
},
|
| 46 |
+
"layer_norm_eps": 1e-12,
|
| 47 |
+
"model_type": "vit",
|
| 48 |
+
"num_attention_heads": 12,
|
| 49 |
+
"num_channels": 3,
|
| 50 |
+
"num_hidden_layers": 12,
|
| 51 |
+
"patch_size": 16,
|
| 52 |
+
"problem_type": "single_label_classification",
|
| 53 |
+
"qkv_bias": true,
|
| 54 |
+
"torch_dtype": "float32",
|
| 55 |
+
"transformers_version": "4.28.0"
|
| 56 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_rescale": true,
|
| 4 |
+
"do_resize": true,
|
| 5 |
+
"image_mean": [
|
| 6 |
+
0.5,
|
| 7 |
+
0.5,
|
| 8 |
+
0.5
|
| 9 |
+
],
|
| 10 |
+
"image_processor_type": "ViTImageProcessor",
|
| 11 |
+
"image_std": [
|
| 12 |
+
0.5,
|
| 13 |
+
0.5,
|
| 14 |
+
0.5
|
| 15 |
+
],
|
| 16 |
+
"resample": 2,
|
| 17 |
+
"rescale_factor": 0.00392156862745098,
|
| 18 |
+
"size": {
|
| 19 |
+
"height": 224,
|
| 20 |
+
"width": 224
|
| 21 |
+
}
|
| 22 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cb55a2a829282eb49dc2323c173480d410cf78945003517399042febdc38de0
|
| 3 |
+
size 343305581
|
runs/Jun04_21-26-13_e80498b5693b/1685914017.0675132/events.out.tfevents.1685914017.e80498b5693b.241.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6894019637651dff93d6510566ac236bdbc20c4cdcb6692dee2bb36c615fb73d
|
| 3 |
+
size 5871
|
runs/Jun04_21-26-13_e80498b5693b/1685915647.5132923/events.out.tfevents.1685915647.e80498b5693b.241.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4a6ff3e5d9ae55acf8689901481001a51255427ed2a947e6e9ad562412d4e21
|
| 3 |
+
size 5871
|
runs/Jun04_21-26-13_e80498b5693b/1685916384.2088253/events.out.tfevents.1685916384.e80498b5693b.241.5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a983266d09d05842c9148234058b18e0c351b7589b7c7caa8e2c839fe0776aa
|
| 3 |
+
size 5871
|
runs/Jun04_21-26-13_e80498b5693b/1685916751.3339105/events.out.tfevents.1685916751.e80498b5693b.241.7
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61ca885aa6d0edb3fa233512a579a97e4946b303f93ca2b992e6fbe2a0193285
|
| 3 |
+
size 5871
|
runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685914017.e80498b5693b.241.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2653be307604f80cc0a250467ef0cbf584aee77da591c865cf9be84c2d58920
|
| 3 |
+
size 6313
|
runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685915647.e80498b5693b.241.2
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:239484ec3f93e5d2b964914510140317cb830f299b225e9b35fcc0250c94f7aa
|
| 3 |
+
size 6090
|
runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685916384.e80498b5693b.241.4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a959635dd222c34fdb1e4cbd46c51d2902f9065f8fdcd24418b7bcdef527adad
|
| 3 |
+
size 5782
|
runs/Jun04_21-26-13_e80498b5693b/events.out.tfevents.1685916751.e80498b5693b.241.6
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:730b2dd4e4799052a2187d17743f7bf6ea1e44973cb946eaffea391855ca4494
|
| 3 |
+
size 6553
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71bb4a5f5ee7b6c76b3851e9902c9d42b7f7a3f8ba23aea7c1bcc46054fe3396
|
| 3 |
+
size 3579
|