Commit
·
db2cf30
1
Parent(s):
f19bb5b
Upload tiny models for ConvNextV2Model
Browse files- config.json +64 -0
- preprocessor_config.json +23 -0
- pytorch_model.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"ConvNextV2Model"
|
| 4 |
+
],
|
| 5 |
+
"depths": [
|
| 6 |
+
2,
|
| 7 |
+
2,
|
| 8 |
+
3,
|
| 9 |
+
2
|
| 10 |
+
],
|
| 11 |
+
"drop_path_rate": 0.0,
|
| 12 |
+
"hidden_act": "gelu",
|
| 13 |
+
"hidden_sizes": [
|
| 14 |
+
10,
|
| 15 |
+
20,
|
| 16 |
+
30,
|
| 17 |
+
40
|
| 18 |
+
],
|
| 19 |
+
"id2label": {
|
| 20 |
+
"0": "LABEL_0",
|
| 21 |
+
"1": "LABEL_1",
|
| 22 |
+
"2": "LABEL_2",
|
| 23 |
+
"3": "LABEL_3",
|
| 24 |
+
"4": "LABEL_4",
|
| 25 |
+
"5": "LABEL_5",
|
| 26 |
+
"6": "LABEL_6",
|
| 27 |
+
"7": "LABEL_7",
|
| 28 |
+
"8": "LABEL_8",
|
| 29 |
+
"9": "LABEL_9"
|
| 30 |
+
},
|
| 31 |
+
"image_size": 224,
|
| 32 |
+
"initializer_range": 0.02,
|
| 33 |
+
"label2id": {
|
| 34 |
+
"LABEL_0": 0,
|
| 35 |
+
"LABEL_1": 1,
|
| 36 |
+
"LABEL_2": 2,
|
| 37 |
+
"LABEL_3": 3,
|
| 38 |
+
"LABEL_4": 4,
|
| 39 |
+
"LABEL_5": 5,
|
| 40 |
+
"LABEL_6": 6,
|
| 41 |
+
"LABEL_7": 7,
|
| 42 |
+
"LABEL_8": 8,
|
| 43 |
+
"LABEL_9": 9
|
| 44 |
+
},
|
| 45 |
+
"layer_norm_eps": 1e-12,
|
| 46 |
+
"model_type": "convnextv2",
|
| 47 |
+
"num_channels": 3,
|
| 48 |
+
"num_stages": 4,
|
| 49 |
+
"out_features": [
|
| 50 |
+
"stage2",
|
| 51 |
+
"stage3",
|
| 52 |
+
"stage4"
|
| 53 |
+
],
|
| 54 |
+
"patch_size": 4,
|
| 55 |
+
"stage_names": [
|
| 56 |
+
"stem",
|
| 57 |
+
"stage1",
|
| 58 |
+
"stage2",
|
| 59 |
+
"stage3",
|
| 60 |
+
"stage4"
|
| 61 |
+
],
|
| 62 |
+
"torch_dtype": "float32",
|
| 63 |
+
"transformers_version": "4.28.0.dev0"
|
| 64 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"crop_pct": 0.875,
|
| 3 |
+
"crop_size": 224,
|
| 4 |
+
"do_normalize": true,
|
| 5 |
+
"do_rescale": true,
|
| 6 |
+
"do_resize": true,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.5,
|
| 9 |
+
0.5,
|
| 10 |
+
0.5
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "ConvNextImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"resample": 2,
|
| 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:1b1ee72b26e4f64c3217a1db3c8da6dd24f26b4cbfbb1378f0c251119478c1bc
|
| 3 |
+
size 347325
|