Upload 3 files
Browse files- config.json +11 -0
- model.onnx +3 -0
- preprocessor_config.json +5 -0
config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "sentence-transformers/all-distilroberta-v1-custom",
|
| 3 |
+
"dim": 768,
|
| 4 |
+
"description": "Custom RoBERTa-based text embedding model",
|
| 5 |
+
"license": "apache-2.0",
|
| 6 |
+
"size_in_GB": 0.4,
|
| 7 |
+
"sources": {
|
| 8 |
+
"hf": "rjeeva/sentence-transformers/all-distilroberta-v1-custom"
|
| 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:f3d1f8619a2591eca450546bf4eeb9f65240b1954f2320dc513f91b9d5ffc7b3
|
| 3 |
+
size 328620082
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"max_length": 512,
|
| 3 |
+
"truncation": true,
|
| 4 |
+
"padding": "max_length"
|
| 5 |
+
}
|