canadianjosieharrison commited on
Commit
fd3eba9
·
verified ·
1 Parent(s): cf608b0

Training in progress, epoch 1

Browse files
Files changed (4) hide show
  1. config.json +66 -66
  2. model.safetensors +1 -1
  3. preprocessor_config.json +22 -22
  4. training_args.bin +1 -1
config.json CHANGED
@@ -1,66 +1,66 @@
1
- {
2
- "_name_or_path": "microsoft/swinv2-large-patch4-window12-192-22k",
3
- "architectures": [
4
- "Swinv2ForImageClassification"
5
- ],
6
- "attention_probs_dropout_prob": 0.0,
7
- "depths": [
8
- 2,
9
- 2,
10
- 18,
11
- 2
12
- ],
13
- "drop_path_rate": 0.1,
14
- "embed_dim": 192,
15
- "encoder_stride": 32,
16
- "hidden_act": "gelu",
17
- "hidden_dropout_prob": 0.0,
18
- "hidden_size": 1536,
19
- "id2label": {
20
- "0": "brick",
21
- "1": "metal",
22
- "2": "null",
23
- "3": "other",
24
- "4": "rustication",
25
- "5": "siding",
26
- "6": "stucco",
27
- "7": "wood"
28
- },
29
- "image_size": 192,
30
- "initializer_range": 0.02,
31
- "label2id": {
32
- "brick": 0,
33
- "metal": 1,
34
- "null": 2,
35
- "other": 3,
36
- "rustication": 4,
37
- "siding": 5,
38
- "stucco": 6,
39
- "wood": 7
40
- },
41
- "layer_norm_eps": 1e-05,
42
- "mlp_ratio": 4.0,
43
- "model_type": "swinv2",
44
- "num_channels": 3,
45
- "num_heads": [
46
- 6,
47
- 12,
48
- 24,
49
- 48
50
- ],
51
- "num_layers": 4,
52
- "patch_size": 4,
53
- "path_norm": true,
54
- "pretrained_window_sizes": [
55
- 0,
56
- 0,
57
- 0,
58
- 0
59
- ],
60
- "problem_type": "single_label_classification",
61
- "qkv_bias": true,
62
- "torch_dtype": "float32",
63
- "transformers_version": "4.35.0",
64
- "use_absolute_embeddings": false,
65
- "window_size": 12
66
- }
 
1
+ {
2
+ "_name_or_path": "microsoft/swinv2-large-patch4-window12-192-22k",
3
+ "architectures": [
4
+ "Swinv2ForImageClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "depths": [
8
+ 2,
9
+ 2,
10
+ 18,
11
+ 2
12
+ ],
13
+ "drop_path_rate": 0.1,
14
+ "embed_dim": 192,
15
+ "encoder_stride": 32,
16
+ "hidden_act": "gelu",
17
+ "hidden_dropout_prob": 0.0,
18
+ "hidden_size": 1536,
19
+ "id2label": {
20
+ "0": "brick",
21
+ "1": "metal",
22
+ "2": "null",
23
+ "3": "other",
24
+ "4": "rustication",
25
+ "5": "siding",
26
+ "6": "stucco",
27
+ "7": "wood"
28
+ },
29
+ "image_size": 192,
30
+ "initializer_range": 0.02,
31
+ "label2id": {
32
+ "brick": 0,
33
+ "metal": 1,
34
+ "null": 2,
35
+ "other": 3,
36
+ "rustication": 4,
37
+ "siding": 5,
38
+ "stucco": 6,
39
+ "wood": 7
40
+ },
41
+ "layer_norm_eps": 1e-05,
42
+ "mlp_ratio": 4.0,
43
+ "model_type": "swinv2",
44
+ "num_channels": 3,
45
+ "num_heads": [
46
+ 6,
47
+ 12,
48
+ 24,
49
+ 48
50
+ ],
51
+ "num_layers": 4,
52
+ "patch_size": 4,
53
+ "path_norm": true,
54
+ "pretrained_window_sizes": [
55
+ 0,
56
+ 0,
57
+ 0,
58
+ 0
59
+ ],
60
+ "problem_type": "single_label_classification",
61
+ "qkv_bias": true,
62
+ "torch_dtype": "float32",
63
+ "transformers_version": "4.35.0",
64
+ "use_absolute_embeddings": false,
65
+ "window_size": 12
66
+ }
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2f6200add38867acb563d8611c4e30d1b74482540dd81d5a9fffaac2d034d000
3
  size 780923176
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:784cb0d8f7dcb098062d674eb062a54c58d3fc6c0da3c91b5182429c64f3ed15
3
  size 780923176
preprocessor_config.json CHANGED
@@ -1,22 +1,22 @@
1
- {
2
- "do_normalize": true,
3
- "do_rescale": true,
4
- "do_resize": true,
5
- "image_mean": [
6
- 0.485,
7
- 0.456,
8
- 0.406
9
- ],
10
- "image_processor_type": "ViTImageProcessor",
11
- "image_std": [
12
- 0.229,
13
- 0.224,
14
- 0.225
15
- ],
16
- "resample": 3,
17
- "rescale_factor": 0.00392156862745098,
18
- "size": {
19
- "height": 192,
20
- "width": 192
21
- }
22
- }
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_rescale": true,
4
+ "do_resize": true,
5
+ "image_mean": [
6
+ 0.485,
7
+ 0.456,
8
+ 0.406
9
+ ],
10
+ "image_processor_type": "ViTImageProcessor",
11
+ "image_std": [
12
+ 0.229,
13
+ 0.224,
14
+ 0.225
15
+ ],
16
+ "resample": 3,
17
+ "rescale_factor": 0.00392156862745098,
18
+ "size": {
19
+ "height": 192,
20
+ "width": 192
21
+ }
22
+ }
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7670dac35e4d133ed792e573c1f3f1404bb1816e83e21f3003016ab68286362e
3
  size 4664
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7792520990f3b98d2753b3adb2e81b5c18cdd8348257b9efa7127648146e89b
3
  size 4664