hanhainebula commited on
Commit
d17fcf9
1 Parent(s): a19105d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +5 -2
README.md CHANGED
@@ -20,7 +20,7 @@ conda install -c conda-forge faiss-cpu
20
  conda install -c conda-forge faiss-gpu
21
  ```
22
 
23
- **It should be noted that** the Pyserini code needs to be modified to support the multiple alpha settings in `pyserini/fusion`. I have already submitted a pull request to the official repository to support this feature. You can refer to this [PR]() to modify the code.
24
 
25
  ## 2CR
26
 
@@ -112,7 +112,7 @@ python -m pyserini.eval.trec_eval \
112
 
113
  #### Dense+Sparse
114
 
115
- **Note**: You should first merge this [PR]() to support the multiple alpha settings in `pyserini/fusion`.
116
 
117
  ```bash
118
  # Avaliable Language: ar bn en es fa fi fr hi id ja ko ru sw te th zh de yo
@@ -160,3 +160,6 @@ python -m pyserini.eval.trec_eval \
160
  bge-m3_miracl_2cr/fusion/runs/${lang}.txt
161
  ```
162
 
 
 
 
 
20
  conda install -c conda-forge faiss-gpu
21
  ```
22
 
23
+ **It should be noted that** the Pyserini code needs to be modified to support the multiple alpha settings in `pyserini/fusion`. I have already submitted a pull request to the official repository to support this feature. You can refer to this [PR](https://github.com/castorini/pyserini/pull/1854) to modify the code.
24
 
25
  ## 2CR
26
 
 
112
 
113
  #### Dense+Sparse
114
 
115
+ **Note**: You should first merge this [PR](https://github.com/castorini/pyserini/pull/1854) to support the multiple alpha settings in `pyserini/fusion`.
116
 
117
  ```bash
118
  # Avaliable Language: ar bn en es fa fi fr hi id ja ko ru sw te th zh de yo
 
160
  bge-m3_miracl_2cr/fusion/runs/${lang}.txt
161
  ```
162
 
163
+ Note:
164
+ - The hybrid method we used for MIRACL in BGE-M3 paper is: `s_dense + 0.3 * s_sparse`. But when the sparse score is calculated, it has already been multiplied by 100^2, so the alpha for sparse run here is 3e-5, instead of 0.3.
165
+