update readme
Browse files
README.md
CHANGED
@@ -34,6 +34,17 @@ datasets:
|
|
34 |
|
35 |
This is a sentence-transformers model: It maps sentences & paragraphs to a N dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
## License
|
38 |
|
39 |
Apache 2.0
|
|
|
34 |
|
35 |
This is a sentence-transformers model: It maps sentences & paragraphs to a N dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
36 |
|
37 |
+
The model conversion was made with [onnx-convert](https://github.com/nixiesearch/onnx-convert) tool with the following parameters:
|
38 |
+
|
39 |
+
```shell
|
40 |
+
python convert.sh --model_id intfloat/e5-base-v2 --quantize QInt8 --optimize 2
|
41 |
+
```
|
42 |
+
|
43 |
+
There are two versions of model available:
|
44 |
+
|
45 |
+
* `model.onnx` - Float32 version, with optimize=2
|
46 |
+
* `model_opt2_QInt8.onnx` - QInt8 quantized version, with optimize=2
|
47 |
+
|
48 |
## License
|
49 |
|
50 |
Apache 2.0
|