SmilingWolf commited on
Commit
25706e1
1 Parent(s): 423721a

Add model files

Browse files
Files changed (6) hide show
  1. config.json +34 -0
  2. model.msgpack +3 -0
  3. model.onnx +3 -0
  4. model.safetensors +3 -0
  5. selected_tags.csv +0 -0
  6. sw_jax_cv_config.json +12 -0
config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architecture": "convnext_base",
3
+ "num_classes": 10861,
4
+ "num_features": 1024,
5
+ "model_args": {
6
+ "act_layer": "gelu_tanh"
7
+ },
8
+ "pretrained_cfg": {
9
+ "custom_load": false,
10
+ "input_size": [
11
+ 3,
12
+ 448,
13
+ 448
14
+ ],
15
+ "fixed_input_size": false,
16
+ "interpolation": "bicubic",
17
+ "crop_pct": 1.0,
18
+ "crop_mode": "center",
19
+ "mean": [
20
+ 0.5,
21
+ 0.5,
22
+ 0.5
23
+ ],
24
+ "std": [
25
+ 0.5,
26
+ 0.5,
27
+ 0.5
28
+ ],
29
+ "num_classes": 10861,
30
+ "pool_size": null,
31
+ "first_conv": null,
32
+ "classifier": null
33
+ }
34
+ }
model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5e639920c05e5cc100dc0dd7e5002c9eb39367a227aa3dbd1f942068c76aeee
3
+ size 394808412
model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02f30d4de9bada756981a11464d13aa206f5e2d4ff6da384511beb812d58b2ca
3
+ size 394990732
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f99a11a43a459eca201e7e4dbc0d02d980c9e0f5d8250ed4d07f69927e3b30a
3
+ size 394830604
selected_tags.csv ADDED
The diff for this file is too large to render. See raw diff
 
sw_jax_cv_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "convnext_base",
3
+ "model_args": {
4
+ "image_size": 448,
5
+ "patch_size": 4,
6
+ "num_classes": 10861,
7
+ "drop_path_rate": 0.1,
8
+ "use_norm_bias": true,
9
+ "use_conv_bias": true,
10
+ "layer_norm_eps": 1e-06
11
+ }
12
+ }