Commit ·
5908aca
1
Parent(s): 72a00fb
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +52 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/May27_20-19-25_0922109e5cf6/1685218777.3080032/events.out.tfevents.1685218777.0922109e5cf6.8213.4 +3 -0
- runs/May27_20-19-25_0922109e5cf6/events.out.tfevents.1685218777.0922109e5cf6.8213.3 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/convnext-tiny-224",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"ConvNextForImageClassification"
|
| 5 |
+
],
|
| 6 |
+
"depths": [
|
| 7 |
+
3,
|
| 8 |
+
3,
|
| 9 |
+
9,
|
| 10 |
+
3
|
| 11 |
+
],
|
| 12 |
+
"drop_path_rate": 0.0,
|
| 13 |
+
"hidden_act": "gelu",
|
| 14 |
+
"hidden_sizes": [
|
| 15 |
+
96,
|
| 16 |
+
192,
|
| 17 |
+
384,
|
| 18 |
+
768
|
| 19 |
+
],
|
| 20 |
+
"id2label": {
|
| 21 |
+
"0": "no",
|
| 22 |
+
"1": "yes"
|
| 23 |
+
},
|
| 24 |
+
"image_size": 224,
|
| 25 |
+
"initializer_range": 0.02,
|
| 26 |
+
"label2id": {
|
| 27 |
+
"no": 0,
|
| 28 |
+
"yes": 1
|
| 29 |
+
},
|
| 30 |
+
"layer_norm_eps": 1e-12,
|
| 31 |
+
"layer_scale_init_value": 1e-06,
|
| 32 |
+
"model_type": "convnext",
|
| 33 |
+
"num_channels": 3,
|
| 34 |
+
"num_stages": 4,
|
| 35 |
+
"out_features": [
|
| 36 |
+
"stage4"
|
| 37 |
+
],
|
| 38 |
+
"out_indices": [
|
| 39 |
+
4
|
| 40 |
+
],
|
| 41 |
+
"patch_size": 4,
|
| 42 |
+
"problem_type": "single_label_classification",
|
| 43 |
+
"stage_names": [
|
| 44 |
+
"stem",
|
| 45 |
+
"stage1",
|
| 46 |
+
"stage2",
|
| 47 |
+
"stage3",
|
| 48 |
+
"stage4"
|
| 49 |
+
],
|
| 50 |
+
"torch_dtype": "float32",
|
| 51 |
+
"transformers_version": "4.28.0"
|
| 52 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_pct": 0.875,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.485,
|
| 8 |
+
0.456,
|
| 9 |
+
0.406
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "ConvNextImageProcessor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.229,
|
| 14 |
+
0.224,
|
| 15 |
+
0.225
|
| 16 |
+
],
|
| 17 |
+
"resample": 3,
|
| 18 |
+
"rescale_factor": 0.00392156862745098,
|
| 19 |
+
"size": {
|
| 20 |
+
"shortest_edge": 224
|
| 21 |
+
}
|
| 22 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fef527c32b31e7154be34ff6a592cdd9d73cc27da4cdd9a652a055ab754f167
|
| 3 |
+
size 111349029
|
runs/May27_20-19-25_0922109e5cf6/1685218777.3080032/events.out.tfevents.1685218777.0922109e5cf6.8213.4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2246f504f578cdb82370fbb9393788a5e38ccc4d3645b4c014cb84dd11911a61
|
| 3 |
+
size 5934
|
runs/May27_20-19-25_0922109e5cf6/events.out.tfevents.1685218777.0922109e5cf6.8213.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:466207c8b5498db83da9933cc5b3ba8e44bd56643b34c5641bef3261e8be940c
|
| 3 |
+
size 4515
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ee7f61c6ae4062c9660217beacc0ecb86760cd4e0743f9a611f804b40ebef40
|
| 3 |
+
size 3643
|