Training in progress, epoch 1
Browse files- config.json +82 -0
- model.safetensors +3 -0
- preprocessor_config.json +23 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "nvidia/mit-b0",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"SegformerForSemanticSegmentation"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.0,
|
| 7 |
+
"classifier_dropout_prob": 0.1,
|
| 8 |
+
"decoder_hidden_size": 256,
|
| 9 |
+
"depths": [
|
| 10 |
+
2,
|
| 11 |
+
2,
|
| 12 |
+
2,
|
| 13 |
+
2
|
| 14 |
+
],
|
| 15 |
+
"downsampling_rates": [
|
| 16 |
+
1,
|
| 17 |
+
4,
|
| 18 |
+
8,
|
| 19 |
+
16
|
| 20 |
+
],
|
| 21 |
+
"drop_path_rate": 0.1,
|
| 22 |
+
"hidden_act": "gelu",
|
| 23 |
+
"hidden_dropout_prob": 0.0,
|
| 24 |
+
"hidden_sizes": [
|
| 25 |
+
32,
|
| 26 |
+
64,
|
| 27 |
+
160,
|
| 28 |
+
256
|
| 29 |
+
],
|
| 30 |
+
"id2label": {
|
| 31 |
+
"0": "background",
|
| 32 |
+
"1": "berry",
|
| 33 |
+
"2": "debris",
|
| 34 |
+
"3": "greenberry"
|
| 35 |
+
},
|
| 36 |
+
"image_size": 224,
|
| 37 |
+
"initializer_range": 0.02,
|
| 38 |
+
"label2id": {
|
| 39 |
+
"background": "0",
|
| 40 |
+
"berry": "1",
|
| 41 |
+
"debris": "2",
|
| 42 |
+
"greenberry": "3"
|
| 43 |
+
},
|
| 44 |
+
"layer_norm_eps": 1e-06,
|
| 45 |
+
"mlp_ratios": [
|
| 46 |
+
4,
|
| 47 |
+
4,
|
| 48 |
+
4,
|
| 49 |
+
4
|
| 50 |
+
],
|
| 51 |
+
"model_type": "segformer",
|
| 52 |
+
"num_attention_heads": [
|
| 53 |
+
1,
|
| 54 |
+
2,
|
| 55 |
+
5,
|
| 56 |
+
8
|
| 57 |
+
],
|
| 58 |
+
"num_channels": 3,
|
| 59 |
+
"num_encoder_blocks": 4,
|
| 60 |
+
"patch_sizes": [
|
| 61 |
+
7,
|
| 62 |
+
3,
|
| 63 |
+
3,
|
| 64 |
+
3
|
| 65 |
+
],
|
| 66 |
+
"reshape_last_stage": true,
|
| 67 |
+
"semantic_loss_ignore_index": 255,
|
| 68 |
+
"sr_ratios": [
|
| 69 |
+
8,
|
| 70 |
+
4,
|
| 71 |
+
2,
|
| 72 |
+
1
|
| 73 |
+
],
|
| 74 |
+
"strides": [
|
| 75 |
+
4,
|
| 76 |
+
2,
|
| 77 |
+
2,
|
| 78 |
+
2
|
| 79 |
+
],
|
| 80 |
+
"torch_dtype": "float32",
|
| 81 |
+
"transformers_version": "4.48.0"
|
| 82 |
+
}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4e1ef3ac1ba1f20bc37a5b1c5b51c21ed0ccc68a7705048f8590a60de86d694
|
| 3 |
+
size 14886832
|
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:c8c88c72733660567cb5eef97acb2aae2025372c69c9ff392c7b530aab6c70f5
|
| 3 |
+
size 5496
|