MarcusLoren commited on
Commit
9a36897
1 Parent(s): d1cf4fa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -59,9 +59,10 @@ with torch.no_grad():
59
 
60
  ```
61
 
62
- Along with the model files I also uploaded a ONNX file which you load in .NET (C#) using the below.
63
  For tokenizing the input i used [BlingFire](https://github.com/microsoft/BlingFire) since they have the sentence piece model for xlm_roberta_base, the only special thing you'll need is to add the special tokens that indicate the start and EOF.
64
-
 
65
  ```
66
  public class RankerInput
67
  {
 
59
 
60
  ```
61
 
62
+ Along with the model files I also uploaded a ONNX file which you load in .NET (C#) using the below.
63
  For tokenizing the input i used [BlingFire](https://github.com/microsoft/BlingFire) since they have the sentence piece model for xlm_roberta_base, the only special thing you'll need is to add the special tokens that indicate the start and EOF.
64
+ ONNX model: https://huggingface.co/MarcusLoren/Reranker-job-description/blob/main/Reranker.onnx
65
+
66
  ```
67
  public class RankerInput
68
  {