Training in progress, epoch 1
Browse files- .DS_Store +3 -0
- .gitattributes +1 -0
- .gitignore +1 -0
- config.json +32 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/.DS_Store +3 -0
- runs/Jan10_22-00-16_Brians-Mac-mini.local/1673409624.595399/events.out.tfevents.1673409624.Brians-Mac-mini.local.20007.1 +3 -0
- runs/Jan10_22-00-16_Brians-Mac-mini.local/events.out.tfevents.1673409624.Brians-Mac-mini.local.20007.0 +3 -0
- runs/Jan10_22-21-06_Brians-Mac-mini.local/1673410870.289572/events.out.tfevents.1673410870.Brians-Mac-mini.local.20457.1 +3 -0
- runs/Jan10_22-21-06_Brians-Mac-mini.local/events.out.tfevents.1673410870.Brians-Mac-mini.local.20457.0 +3 -0
- training_args.bin +3 -0
.DS_Store
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3ea409d767700efe004e027d3ac01cbfe126d61a02597932109dc7fbf162a4f
|
| 3 |
+
size 6148
|
.gitattributes
CHANGED
|
@@ -32,3 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
.DS_Store filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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": "Cat",
|
| 13 |
+
"1": "Dog"
|
| 14 |
+
},
|
| 15 |
+
"image_size": 224,
|
| 16 |
+
"initializer_range": 0.02,
|
| 17 |
+
"intermediate_size": 3072,
|
| 18 |
+
"label2id": {
|
| 19 |
+
"Cat": "0",
|
| 20 |
+
"Dog": "1"
|
| 21 |
+
},
|
| 22 |
+
"layer_norm_eps": 1e-12,
|
| 23 |
+
"model_type": "vit",
|
| 24 |
+
"num_attention_heads": 12,
|
| 25 |
+
"num_channels": 3,
|
| 26 |
+
"num_hidden_layers": 12,
|
| 27 |
+
"patch_size": 16,
|
| 28 |
+
"problem_type": "single_label_classification",
|
| 29 |
+
"qkv_bias": true,
|
| 30 |
+
"torch_dtype": "float32",
|
| 31 |
+
"transformers_version": "4.25.1"
|
| 32 |
+
}
|
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:bd4bb427fc77189cb0fd5c80b8e0331db49e98bfea1a7df1a7765bf638134bae
|
| 3 |
+
size 343264177
|
runs/.DS_Store
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01859825bdcb367de278000d450dfc5f23d90f54bb9bf8d2067b90371c39ff52
|
| 3 |
+
size 6148
|
runs/Jan10_22-00-16_Brians-Mac-mini.local/1673409624.595399/events.out.tfevents.1673409624.Brians-Mac-mini.local.20007.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c51760ce0c9bca4a0a9bacc36ed5033d823aef2736cadcd4dded063a6b991358
|
| 3 |
+
size 5657
|
runs/Jan10_22-00-16_Brians-Mac-mini.local/events.out.tfevents.1673409624.Brians-Mac-mini.local.20007.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67335360d70180f1d6051debf060e32f5589371b4854a2ab9a5aef28624cc1c2
|
| 3 |
+
size 4009
|
runs/Jan10_22-21-06_Brians-Mac-mini.local/1673410870.289572/events.out.tfevents.1673410870.Brians-Mac-mini.local.20457.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfa4eee5fc4c6fed465bed963756092d39d655a5bd5223a837b5f700477f66a9
|
| 3 |
+
size 5657
|
runs/Jan10_22-21-06_Brians-Mac-mini.local/events.out.tfevents.1673410870.Brians-Mac-mini.local.20457.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:447983933b49628ccc2b4258baddf81676e460234c2e6fbb4de8ead0982dbd07
|
| 3 |
+
size 4795
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11976534baa86a8c15d79f1b5bb84dd28e2a49e281b7341bfde20917b34f03a9
|
| 3 |
+
size 3503
|