Training in progress, epoch 0
Browse files- .gitignore +1 -0
- config.json +58 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
- runs/Aug31_15-32-55_1a8993651826/1693496034.489886/events.out.tfevents.1693496034.1a8993651826.795.3 +3 -0
- runs/Aug31_15-32-55_1a8993651826/events.out.tfevents.1693496034.1a8993651826.795.2 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "facebook/convnext-large-224",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"ConvNextForImageClassification"
|
| 5 |
+
],
|
| 6 |
+
"depths": [
|
| 7 |
+
3,
|
| 8 |
+
3,
|
| 9 |
+
27,
|
| 10 |
+
3
|
| 11 |
+
],
|
| 12 |
+
"drop_path_rate": 0.0,
|
| 13 |
+
"hidden_act": "gelu",
|
| 14 |
+
"hidden_sizes": [
|
| 15 |
+
192,
|
| 16 |
+
384,
|
| 17 |
+
768,
|
| 18 |
+
1536
|
| 19 |
+
],
|
| 20 |
+
"id2label": {
|
| 21 |
+
"0": "Actinic keratosis",
|
| 22 |
+
"1": "Benign keratosis",
|
| 23 |
+
"2": "Dermatofibroma",
|
| 24 |
+
"3": "Melanocytic nevus",
|
| 25 |
+
"4": "Vascular lesion"
|
| 26 |
+
},
|
| 27 |
+
"image_size": 224,
|
| 28 |
+
"initializer_range": 0.02,
|
| 29 |
+
"label2id": {
|
| 30 |
+
"Actinic keratosis": 0,
|
| 31 |
+
"Benign keratosis": 1,
|
| 32 |
+
"Dermatofibroma": 2,
|
| 33 |
+
"Melanocytic nevus": 3,
|
| 34 |
+
"Vascular lesion": 4
|
| 35 |
+
},
|
| 36 |
+
"layer_norm_eps": 1e-12,
|
| 37 |
+
"layer_scale_init_value": 1e-06,
|
| 38 |
+
"model_type": "convnext",
|
| 39 |
+
"num_channels": 3,
|
| 40 |
+
"num_stages": 4,
|
| 41 |
+
"out_features": [
|
| 42 |
+
"stage4"
|
| 43 |
+
],
|
| 44 |
+
"out_indices": [
|
| 45 |
+
4
|
| 46 |
+
],
|
| 47 |
+
"patch_size": 4,
|
| 48 |
+
"problem_type": "single_label_classification",
|
| 49 |
+
"stage_names": [
|
| 50 |
+
"stem",
|
| 51 |
+
"stage1",
|
| 52 |
+
"stage2",
|
| 53 |
+
"stage3",
|
| 54 |
+
"stage4"
|
| 55 |
+
],
|
| 56 |
+
"torch_dtype": "float32",
|
| 57 |
+
"transformers_version": "4.28.0"
|
| 58 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_pct": 0.875,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"feature_extractor_type": "ConvNextFeatureExtractor",
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.485,
|
| 9 |
+
0.456,
|
| 10 |
+
0.406
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "ConvNextImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.229,
|
| 15 |
+
0.224,
|
| 16 |
+
0.225
|
| 17 |
+
],
|
| 18 |
+
"resample": 3,
|
| 19 |
+
"rescale_factor": 0.00392156862745098,
|
| 20 |
+
"size": {
|
| 21 |
+
"shortest_edge": 224
|
| 22 |
+
}
|
| 23 |
+
}
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00a88204c62200263c1ad06aab3f9bedcfef52ab2357359110cd000152109018
|
| 3 |
+
size 785070765
|
runs/Aug31_15-32-55_1a8993651826/1693496034.489886/events.out.tfevents.1693496034.1a8993651826.795.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7dbf27173f9092b6000cc875bf700afc14ae99d38e3dabdaf6f954512868406c
|
| 3 |
+
size 5949
|
runs/Aug31_15-32-55_1a8993651826/events.out.tfevents.1693496034.1a8993651826.795.2
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ceb6a83858843012d51bdbae6fc2b6f3823ad931ebfd46b6def18b1f8aeb4cc
|
| 3 |
+
size 32670
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26f312e31cc11941c2c79ffb0dff9457686a4f87c259e72614b549ef62068d79
|
| 3 |
+
size 3643
|