ravfogs commited on
Commit
dc18a00
1 Parent(s): ad1b77d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -11,7 +11,11 @@ widgets:
11
  - feature-extraction
12
  ---
13
 
14
- A model for mapping abstract sentence descriptions to sentences that fit the descriptions. Trained on Wikipedia. Use ```load_finetuned_model``` to load the query and sentence encoder, and ```encode_batch()``` to encode a sentence with the model.
 
 
 
 
15
 
16
  ```python
17
 
 
11
  - feature-extraction
12
  ---
13
 
14
+ A model for mapping abstract sentence descriptions to sentences that fit the descriptions, used in the preprint [Retrieving Texts based on Abstract Descriptions](https://arxiv.org/pdf/2305.12517.pdf).. Trained on Wikipedia. Use ```load_finetuned_model``` to load the query and sentence encoder, and ```encode_batch()``` to encode a sentence with the model.
15
+
16
+
17
+ **Note**: the method uses a dual encoder architecture. This is the **query encoder**; it should be used alongside the [**sentence encoder**](https://huggingface.co/biu-nlp/abstract-sim-sentence).
18
+
19
 
20
  ```python
21