UlanYisaev commited on
Commit
f0f6ad4
1 Parent(s): e43b1ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -3
README.md CHANGED
@@ -1,3 +1,19 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ # Cross-Encoder for MS MARCO - EN-DE (ONNX)
5
+
6
+ This repository hosts the ONNX format of the cross-lingual Cross-Encoder model for EN-DE, originally developed for passage re-ranking. It's based on the model trained using the [MS Marco Passage Ranking](https://github.com/microsoft/MSMARCO-Passage-Ranking) dataset.
7
+
8
+ The ONNX version maintains the efficiency and compatibility required for deployment in various environments, facilitating easier integration with platforms supporting ONNX models.
9
+
10
+ For the original model and further details, refer to [cross-encoder/msmarco-MiniLM-L12-en-de-v1](https://huggingface.co/cross-encoder/msmarco-MiniLM-L12-en-de-v1) on Hugging Face.
11
+
12
+ ## Application
13
+ This model can be used for information retrieval tasks. For usage examples, see [SBERT.net Retrieve & Re-rank](https://www.sbert.net/examples/applications/retrieve_rerank/README.html).
14
+
15
+ ## Training Code
16
+ The training script used for the original model is available in this repository, see `train_script.py`.
17
+
18
+ ## How to Use in ONNX
19
+ To load and use the model in ONNX format, ensure you have the appropriate ONNX runtime installed in your environment. Example code for loading the model will be provided here.