TheGuy444 commited on
Commit
ded35e2
·
verified ·
1 Parent(s): 5ae3636

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +10 -0
  2. onnx/lama.onnx +3 -0
  3. preprocessor_config.json +10 -0
config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "lama",
3
+ "architectures": ["LamaInpainting"],
4
+ "id2label": { "0": "background" },
5
+ "label2id": { "background": 0 },
6
+ "normalized_config": {
7
+ "image_size": 512,
8
+ "num_channels": 3
9
+ }
10
+ }
onnx/lama.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1faef5301d78db7dda502fe59966957ec4b79dd64e16f03ed96913c7a4eb68d6
3
+ size 208044816
preprocessor_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_resize": true,
3
+ "size": { "height": 512, "width": 512 },
4
+ "do_rescale": true,
5
+ "rescale_factor": 0.00392156862745098,
6
+ "do_normalize": true,
7
+ "image_mean": [0.5, 0.5, 0.5],
8
+ "image_std": [0.5, 0.5, 0.5],
9
+ "image_processor_type": "LamaImageProcessor"
10
+ }