Upload 3 files
Browse files- config.json +11 -0
- model.onnx +3 -0
- preprocessor_config.json +14 -0
config.json
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model": "blip-image-encoder",
|
3 |
+
"dim": 768,
|
4 |
+
"description": "BLIP Image Embedding Encoder",
|
5 |
+
"license": "apache-2.0",
|
6 |
+
"size_in_GB": 0.5,
|
7 |
+
"sources": {
|
8 |
+
"hf": "rjeeva/blip-image-embedding"
|
9 |
+
},
|
10 |
+
"model_file": "model.onnx"
|
11 |
+
}
|
model.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:480c7b317042271f3303ba2df65b658a0ae1b2199fabc8ae42b58d7fec197aac
|
3 |
+
size 344540151
|
preprocessor_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"image_size": 224,
|
3 |
+
"center_crop": true,
|
4 |
+
"mean": [
|
5 |
+
0.485,
|
6 |
+
0.456,
|
7 |
+
0.406
|
8 |
+
],
|
9 |
+
"std": [
|
10 |
+
0.229,
|
11 |
+
0.224,
|
12 |
+
0.225
|
13 |
+
]
|
14 |
+
}
|