LaLegumbreArtificial
commited on
Commit
•
f7947e7
1
Parent(s):
c7cf6ad
Training in progress, epoch 0
Browse files- config.json +75 -0
- model.safetensors +3 -0
- preprocessor_config.json +28 -0
- runs/Aug05_02-33-17_b6ede32faf7a/events.out.tfevents.1722825199.b6ede32faf7a.34.0 +3 -0
- runs/Aug05_02-36-23_b6ede32faf7a/events.out.tfevents.1722825384.b6ede32faf7a.34.1 +3 -0
- runs/Aug05_02-38-32_b6ede32faf7a/events.out.tfevents.1722825513.b6ede32faf7a.34.2 +3 -0
- runs/Aug05_02-39-11_b6ede32faf7a/events.out.tfevents.1722825552.b6ede32faf7a.34.3 +3 -0
- runs/Aug05_02-47-24_b6ede32faf7a/events.out.tfevents.1722826045.b6ede32faf7a.34.4 +3 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/beit-base-patch16-224-pt22k-ft22k",
|
3 |
+
"add_fpn": false,
|
4 |
+
"architectures": [
|
5 |
+
"BeitForImageClassification"
|
6 |
+
],
|
7 |
+
"attention_probs_dropout_prob": 0.0,
|
8 |
+
"auxiliary_channels": 256,
|
9 |
+
"auxiliary_concat_input": false,
|
10 |
+
"auxiliary_loss_weight": 0.4,
|
11 |
+
"auxiliary_num_convs": 1,
|
12 |
+
"drop_path_rate": 0.1,
|
13 |
+
"hidden_act": "gelu",
|
14 |
+
"hidden_dropout_prob": 0.0,
|
15 |
+
"hidden_size": 768,
|
16 |
+
"id2label": {
|
17 |
+
"0": "Good Weld",
|
18 |
+
"1": "Damage"
|
19 |
+
},
|
20 |
+
"image_size": 224,
|
21 |
+
"initializer_range": 0.02,
|
22 |
+
"intermediate_size": 3072,
|
23 |
+
"label2id": [
|
24 |
+
{
|
25 |
+
"Damage": "1",
|
26 |
+
"Good Weld": "0"
|
27 |
+
}
|
28 |
+
],
|
29 |
+
"layer_norm_eps": 1e-12,
|
30 |
+
"layer_scale_init_value": 0.1,
|
31 |
+
"model_type": "beit",
|
32 |
+
"num_attention_heads": 12,
|
33 |
+
"num_channels": 3,
|
34 |
+
"num_hidden_layers": 12,
|
35 |
+
"out_features": [
|
36 |
+
"stage12"
|
37 |
+
],
|
38 |
+
"out_indices": [
|
39 |
+
12
|
40 |
+
],
|
41 |
+
"patch_size": 16,
|
42 |
+
"pool_scales": [
|
43 |
+
1,
|
44 |
+
2,
|
45 |
+
3,
|
46 |
+
6
|
47 |
+
],
|
48 |
+
"problem_type": "single_label_classification",
|
49 |
+
"reshape_hidden_states": true,
|
50 |
+
"semantic_loss_ignore_index": 255,
|
51 |
+
"stage_names": [
|
52 |
+
"stem",
|
53 |
+
"stage1",
|
54 |
+
"stage2",
|
55 |
+
"stage3",
|
56 |
+
"stage4",
|
57 |
+
"stage5",
|
58 |
+
"stage6",
|
59 |
+
"stage7",
|
60 |
+
"stage8",
|
61 |
+
"stage9",
|
62 |
+
"stage10",
|
63 |
+
"stage11",
|
64 |
+
"stage12"
|
65 |
+
],
|
66 |
+
"torch_dtype": "float32",
|
67 |
+
"transformers_version": "4.42.3",
|
68 |
+
"use_absolute_position_embeddings": false,
|
69 |
+
"use_auxiliary_head": true,
|
70 |
+
"use_mask_token": false,
|
71 |
+
"use_mean_pooling": true,
|
72 |
+
"use_relative_position_bias": true,
|
73 |
+
"use_shared_relative_position_bias": false,
|
74 |
+
"vocab_size": 8192
|
75 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:346080f9056e324e74566dd93aa9f9f71aeaa5c23172b8d1c18f7e90d3128f62
|
3 |
+
size 343080328
|
preprocessor_config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 224,
|
4 |
+
"width": 224
|
5 |
+
},
|
6 |
+
"do_center_crop": false,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_reduce_labels": false,
|
9 |
+
"do_rescale": true,
|
10 |
+
"do_resize": true,
|
11 |
+
"image_mean": [
|
12 |
+
0.5,
|
13 |
+
0.5,
|
14 |
+
0.5
|
15 |
+
],
|
16 |
+
"image_processor_type": "BeitImageProcessor",
|
17 |
+
"image_std": [
|
18 |
+
0.5,
|
19 |
+
0.5,
|
20 |
+
0.5
|
21 |
+
],
|
22 |
+
"resample": 2,
|
23 |
+
"rescale_factor": 0.00392156862745098,
|
24 |
+
"size": {
|
25 |
+
"height": 224,
|
26 |
+
"width": 224
|
27 |
+
}
|
28 |
+
}
|
runs/Aug05_02-33-17_b6ede32faf7a/events.out.tfevents.1722825199.b6ede32faf7a.34.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6bcf59f4eedb2adc205df030664b563c4d0be4c3a84dfe5038383194a7798c90
|
3 |
+
size 5585
|
runs/Aug05_02-36-23_b6ede32faf7a/events.out.tfevents.1722825384.b6ede32faf7a.34.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6ac25e31b349cbaa1ccd03b87a3f72c5095439cc1350e6a36a5112f67bc537b9
|
3 |
+
size 5759
|
runs/Aug05_02-38-32_b6ede32faf7a/events.out.tfevents.1722825513.b6ede32faf7a.34.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a77d6c8c7f4565852f5c5d99bdb17f7d364b6a69aa9fcf4184bd8fe94fb82ff
|
3 |
+
size 5759
|
runs/Aug05_02-39-11_b6ede32faf7a/events.out.tfevents.1722825552.b6ede32faf7a.34.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4dcac17e391c43ce8561a4aece756051c30785ae3dfc96c9ec46a90f35602ba0
|
3 |
+
size 7793
|
runs/Aug05_02-47-24_b6ede32faf7a/events.out.tfevents.1722826045.b6ede32faf7a.34.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8126d2d55d4ebd63c7336c8dbb111c39635934f04ca4a8322e88fa98492077e8
|
3 |
+
size 8110
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d1bd854397e6b827efec64065b74f207fea2d16fbe9c3aa34de789d7ae3803e
|
3 |
+
size 5176
|