Spaces:
Runtime error
Runtime error
Sean MacAvaney commited on
Commit ·
68730a3
1
Parent(s): 1f643c7
update
Browse files
doc.md
CHANGED
|
@@ -5,6 +5,6 @@ It maps a document's text into a dictionary with terms from the document re-weig
|
|
| 5 |
|
| 6 |
<div class="pipeline">
|
| 7 |
<div class="df" title="Document Frame">D</div>
|
| 8 |
-
<div class="transformer" title="SPLADE Indexing Transformer">SPLADE</div>
|
| 9 |
<div class="df" title="Document Frame">D</div>
|
| 10 |
</div>
|
|
|
|
| 5 |
|
| 6 |
<div class="pipeline">
|
| 7 |
<div class="df" title="Document Frame">D</div>
|
| 8 |
+
<div class="transformer attn" title="SPLADE Indexing Transformer">SPLADE</div>
|
| 9 |
<div class="df" title="Document Frame">D</div>
|
| 10 |
</div>
|
query.md
CHANGED
|
@@ -6,6 +6,6 @@ query re-weighted and weighted expansion terms added.
|
|
| 6 |
|
| 7 |
<div class="pipeline">
|
| 8 |
<div class="df" title="Query Frame">Q</div>
|
| 9 |
-
<div class="transformer" title="SPLADE Query Transformer">SPLADE</div>
|
| 10 |
<div class="df" title="Query Frame">Q</div>
|
| 11 |
</div>
|
|
|
|
| 6 |
|
| 7 |
<div class="pipeline">
|
| 8 |
<div class="df" title="Query Frame">Q</div>
|
| 9 |
+
<div class="transformer attn" title="SPLADE Query Transformer">SPLADE</div>
|
| 10 |
<div class="df" title="Query Frame">Q</div>
|
| 11 |
</div>
|
requirements.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
torch
|
| 2 |
python-terrier
|
| 3 |
-
git+https://github.com/seanmacavaney/[email protected].
|
| 4 |
git+https://github.com/naver/splade
|
| 5 |
git+https://github.com/seanmacavaney/pyt_splade@misc
|
|
|
|
| 1 |
torch
|
| 2 |
python-terrier
|
| 3 |
+
git+https://github.com/seanmacavaney/[email protected].3
|
| 4 |
git+https://github.com/naver/splade
|
| 5 |
git+https://github.com/seanmacavaney/pyt_splade@misc
|
wrapup.md
CHANGED
|
@@ -4,9 +4,9 @@ When you use the document encoder in an indexing pipeline, the rewritting docume
|
|
| 4 |
|
| 5 |
<div class="pipeline">
|
| 6 |
<div class="df" title="Document Frame">D</div>
|
| 7 |
-
<div class="transformer" title="SPLADE Indexing Transformer">SPLADE</div>
|
| 8 |
<div class="df" title="Document Frame">D</div>
|
| 9 |
-
<div class="transformer
|
| 10 |
<div class="artefact" title="SPLADE Index">IDX</div>
|
| 11 |
</div>
|
| 12 |
|
|
@@ -29,9 +29,9 @@ and then performs retrieval:
|
|
| 29 |
|
| 30 |
<div class="pipeline">
|
| 31 |
<div class="df" title="Query Frame">Q</div>
|
| 32 |
-
<div class="transformer" title="SPLADE Query Transformer">SPLADE</div>
|
| 33 |
<div class="df" title="Query Frame">Q</div>
|
| 34 |
-
<div class="transformer
|
| 35 |
<div class="df" title="Result Frame">R</div>
|
| 36 |
</div>
|
| 37 |
|
|
|
|
| 4 |
|
| 5 |
<div class="pipeline">
|
| 6 |
<div class="df" title="Document Frame">D</div>
|
| 7 |
+
<div class="transformer attn" title="SPLADE Indexing Transformer">SPLADE</div>
|
| 8 |
<div class="df" title="Document Frame">D</div>
|
| 9 |
+
<div class="transformer" title="Indexer">Indexer</div>
|
| 10 |
<div class="artefact" title="SPLADE Index">IDX</div>
|
| 11 |
</div>
|
| 12 |
|
|
|
|
| 29 |
|
| 30 |
<div class="pipeline">
|
| 31 |
<div class="df" title="Query Frame">Q</div>
|
| 32 |
+
<div class="transformer attn" title="SPLADE Query Transformer">SPLADE</div>
|
| 33 |
<div class="df" title="Query Frame">Q</div>
|
| 34 |
+
<div class="transformer" title="Term Frequency Transformer">TF Retriever <div class="artefact" title="SPLADE Index">IDX</div></div>
|
| 35 |
<div class="df" title="Result Frame">R</div>
|
| 36 |
</div>
|
| 37 |
|