Sentence Similarity
Safetensors
Japanese
RAGatouille
bert
ColBERT
bclavie commited on
Commit
16336c5
1 Parent(s): d5674ac

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -2
README.md CHANGED
@@ -14,7 +14,9 @@ tags:
14
 
15
  # Intro
16
 
17
- > [Technical Report](https://ben.clavie.eu/JColBERT_v1.pdf) (direct PDF, arXiv coming)
 
 
18
 
19
  Welcome to JaColBERT version 1, the initial release of JaColBERT, a Japanese-only document retrieval model based on [ColBERT](https://github.com/stanford-futuredata/ColBERT).
20
 
@@ -139,4 +141,20 @@ with Run().context(RunConfig(nranks=n_gpu,experiment=experiment)):
139
  query = "マクドナルドの小さなフライドポテトのカロリーはいくつですか"
140
  results = searcher.search(query, k=k)
141
  # results: tuple of tuples of length k containing ((passage_id, passage_rank, passage_score), ...)
142
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
  # Intro
16
 
17
+ > [arXiv Report](https://arxiv.org/abs/2312.16144)
18
+
19
+ If you just want to check out how to use the model, please check out the [Usage section](#Usage) below!
20
 
21
  Welcome to JaColBERT version 1, the initial release of JaColBERT, a Japanese-only document retrieval model based on [ColBERT](https://github.com/stanford-futuredata/ColBERT).
22
 
 
141
  query = "マクドナルドの小さなフライドポテトのカロリーはいくつですか"
142
  results = searcher.search(query, k=k)
143
  # results: tuple of tuples of length k containing ((passage_id, passage_rank, passage_score), ...)
144
+ ```
145
+
146
+
147
+ # Citation
148
+
149
+ If you'd like to cite this work, please cite the technical report:
150
+
151
+ ```
152
+ @misc{clavié2023jacolbert,
153
+ title={JaColBERT and Hard Negatives, Towards Better Japanese-First Embeddings for Retrieval: Early Technical Report},
154
+ author={Benjamin Clavié},
155
+ year={2023},
156
+ eprint={2312.16144},
157
+ archivePrefix={arXiv},
158
+ primaryClass={cs.CL}
159
+ }
160
+ ```