Raghavan commited on
Commit
883ad8c
·
1 Parent(s): 3cc50ff

Upload 3 files

Browse files
Files changed (3) hide show
  1. config.json +1 -1
  2. model.safetensors +2 -2
  3. preprocessor_config.json +27 -0
config.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "architectures": [
3
- "SegGPTForSemanticSegmentation"
4
  ],
5
  "decoder_embed_dim": 64,
6
  "drop_path_rate": 0.1,
 
1
  {
2
  "architectures": [
3
+ "SegGPTForInstanceSegmentation"
4
  ],
5
  "decoder_embed_dim": 64,
6
  "drop_path_rate": 0.1,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e375d6ec306d4110c7e64a6ce214b1952fa2c14d2057c0532d5642670c89705e
3
- size 1482934428
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e7b6bb597ecfc1cc780807470bf38ee7c6299322b75d5b72a658c6138bef104
3
+ size 1482939028
preprocessor_config.json ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": {
3
+ "height": 224,
4
+ "width": 224
5
+ },
6
+ "do_center_crop": false,
7
+ "do_convert_rgb": true,
8
+ "do_normalize": true,
9
+ "do_rescale": true,
10
+ "do_resize": true,
11
+ "image_mean": [
12
+ 0.485,
13
+ 0.456,
14
+ 0.406
15
+ ],
16
+ "image_processor_type": "SegGPTImageProcessor",
17
+ "image_std": [
18
+ 0.229,
19
+ 0.224,
20
+ 0.225
21
+ ],
22
+ "resample": 3,
23
+ "rescale_factor": 0.00392156862745098,
24
+ "size": {
25
+ "shortest_edge": 448
26
+ }
27
+ }