osmanh commited on
Commit
b0ad420
·
verified ·
1 Parent(s): 383e837

Training in progress, step 20

Browse files
Files changed (4) hide show
  1. config.json +119 -0
  2. model.safetensors +3 -0
  3. preprocessor_config.json +23 -0
  4. training_args.bin +3 -0
config.json ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "briaai/RMBG-1.4",
3
+ "architectures": [
4
+ "SegformerForSemanticSegmentation"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "briaai/RMBG-1.4--MyConfig.RMBGConfig",
9
+ "AutoModelForImageSegmentation": "briaai/RMBG-1.4--briarmbg.BriaRMBG"
10
+ },
11
+ "classifier_dropout_prob": 0.1,
12
+ "custom_pipelines": {
13
+ "image-segmentation": {
14
+ "impl": "briaai/RMBG-1.4--MyPipe.RMBGPipe",
15
+ "pt": [
16
+ "AutoModelForImageSegmentation"
17
+ ],
18
+ "tf": [],
19
+ "type": "image"
20
+ }
21
+ },
22
+ "decoder_hidden_size": 256,
23
+ "depths": [
24
+ 2,
25
+ 2,
26
+ 2,
27
+ 2
28
+ ],
29
+ "drop_path_rate": 0.1,
30
+ "hidden_act": "gelu",
31
+ "hidden_dropout_prob": 0.0,
32
+ "hidden_sizes": [
33
+ 32,
34
+ 64,
35
+ 160,
36
+ 256
37
+ ],
38
+ "id2label": {
39
+ "0": "Background",
40
+ "1": "Hat",
41
+ "2": "Hair",
42
+ "3": "Sunglasses",
43
+ "4": "Upper-clothes",
44
+ "5": "Skirt",
45
+ "6": "Pants",
46
+ "7": "Dress",
47
+ "8": "Belt",
48
+ "9": "Left-shoe",
49
+ "10": "Right-shoe",
50
+ "11": "Face",
51
+ "12": "Left-leg",
52
+ "13": "Right-leg",
53
+ "14": "Left-arm",
54
+ "15": "Right-arm",
55
+ "16": "Bag",
56
+ "17": "Scarf"
57
+ },
58
+ "in_ch": 3,
59
+ "initializer_range": 0.02,
60
+ "label2id": {
61
+ "Background": 0,
62
+ "Bag": 16,
63
+ "Belt": 8,
64
+ "Dress": 7,
65
+ "Face": 11,
66
+ "Hair": 2,
67
+ "Hat": 1,
68
+ "Left-arm": 14,
69
+ "Left-leg": 12,
70
+ "Left-shoe": 9,
71
+ "Pants": 6,
72
+ "Right-arm": 15,
73
+ "Right-leg": 13,
74
+ "Right-shoe": 10,
75
+ "Scarf": 17,
76
+ "Skirt": 5,
77
+ "Sunglasses": 3,
78
+ "Upper-clothes": 4
79
+ },
80
+ "layer_norm_eps": 1e-06,
81
+ "mlp_ratios": [
82
+ 4,
83
+ 4,
84
+ 4,
85
+ 4
86
+ ],
87
+ "model_type": "segformer",
88
+ "num_attention_heads": [
89
+ 1,
90
+ 2,
91
+ 5,
92
+ 8
93
+ ],
94
+ "num_channels": 3,
95
+ "num_encoder_blocks": 4,
96
+ "out_ch": 1,
97
+ "patch_sizes": [
98
+ 7,
99
+ 3,
100
+ 3,
101
+ 3
102
+ ],
103
+ "reshape_last_stage": true,
104
+ "semantic_loss_ignore_index": 255,
105
+ "sr_ratios": [
106
+ 8,
107
+ 4,
108
+ 2,
109
+ 1
110
+ ],
111
+ "strides": [
112
+ 4,
113
+ 2,
114
+ 2,
115
+ 2
116
+ ],
117
+ "torch_dtype": "float32",
118
+ "transformers_version": "4.46.3"
119
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e71f1dbd67c7b4a6410063ba0c37fd95a9983105fa5a6c6e88cf24a0d7181cd
3
+ size 14901232
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_reduce_labels": false,
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": "SegformerImageProcessor",
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 2,
18
+ "rescale_factor": 0.00392156862745098,
19
+ "size": {
20
+ "height": 512,
21
+ "width": 512
22
+ }
23
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc95f16eea6e0812f94d5431ca8189a513a7c1bc7c4522c3bd9aad4f2cbdc900
3
+ size 5240