OS-Software commited on
Commit
155fe9e
·
verified ·
1 Parent(s): 74d9bfa

Upload 4 files

Browse files
Files changed (4) hide show
  1. README.md +1 -0
  2. config.json +3 -0
  3. onnx/model.onnx +3 -0
  4. preprocessor_config.json +23 -0
README.md ADDED
@@ -0,0 +1 @@
 
 
1
+ Model from: [CartoonSegmentationOnnx](https://huggingface.co/Jakaline/CartoonSegmentationOnnx)
config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "model_type": "custom"
3
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00debd3d804b7a1964a13ab3cba624c2b88be506499ab75ee9319833f8e1c31f
3
+ size 238702131
preprocessor_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "do_rescale": true,
4
+ "do_resize": true,
5
+ "feature_extractor_type": "ViTFeatureExtractor",
6
+ "image_mean": [
7
+ 0.485,
8
+ 0.456,
9
+ 0.406
10
+ ],
11
+ "image_processor_type": "ViTFeatureExtractor",
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": 640,
21
+ "width": 640
22
+ }
23
+ }