devtrent commited on
Commit
9bc8218
1 Parent(s): 3a70a09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -3
README.md CHANGED
@@ -8,7 +8,71 @@ tags:
8
 
9
  # multi-qa_v1-distilbert-cls_dot
10
 
11
- This is a distilbert-base-uncased model trained on all the Q&A datasets of the 1B+ train corpus. It was trained with the v1 setup. See data_config.json and train_script.py in this respository how the model was trained and which datasets have been used.
12
 
13
- ## Usage
14
- It can be used for semantic search. Output vectors are **not normalized**. You can find relevant passages by using **dot-product**.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  # multi-qa_v1-distilbert-cls_dot
10
 
11
+ ## Model Description
12
 
13
+ SentenceTransformers is a set of models and frameworks that enable training and generating sentence embeddings from given data. The generated sentence embeddings can be utilized for Clustering, Semantic Search and other tasks. We used a pretrained [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) model and trained it using Siamese Network setup and contrastive learning objective. Question and answer pairs from StackExchange was used as training data to make the model robust to Question / Answer embedding similarity. For this model, cls output was used instead of mean pooling as sentence embeddings. Dot product was used to calculate similarity for learning objective.
14
+
15
+ We developed this model during the
16
+ [Community week using JAX/Flax for NLP & CV](https://discuss.huggingface.co/t/open-to-the-community-community-week-using-jax-flax-for-nlp-cv/7104),
17
+ organized by Hugging Face. We developed this model as part of the project:
18
+ [Train the Best Sentence Embedding Model Ever with 1B Training Pairs](https://discuss.huggingface.co/t/train-the-best-sentence-embedding-model-ever-with-1b-training-pairs/7354). We benefited from efficient hardware infrastructure to run the project: 7 TPUs v3-8, as well
19
+ as assistance from Google’s Flax, JAX, and Cloud team members about efficient deep learning frameworks.
20
+
21
+ ## Intended uses
22
+
23
+ Our model is intended to be used as a sentence encoder for a search engine. Given an input sentence, it outputs a vector which captures
24
+ the sentence semantic information. The sentence vector may be used for semantic-search, clustering or sentence similarity tasks.
25
+
26
+ ## How to use
27
+
28
+ Here is how to use this model to get the features of a given text using [SentenceTransformers](https://github.com/UKPLab/sentence-transformers) library:
29
+
30
+ ```python
31
+ from sentence_transformers import SentenceTransformer
32
+
33
+ model = SentenceTransformer('flax-sentence-embeddings/mpnet_stackexchange_v1')
34
+ text = "Replace me by any question / answer you'd like."
35
+ text_embbedding = model.encode(text)
36
+ # array([-0.01559514, 0.04046123, 0.1317083 , 0.00085931, 0.04585106,
37
+ # -0.05607086, 0.0138078 , 0.03569756, 0.01420381, 0.04266302 ...],
38
+ # dtype=float32)
39
+ ```
40
+
41
+ # Training procedure
42
+
43
+ ## Pre-training
44
+
45
+ We use the pretrained [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased). Please refer to the model
46
+ card for more detailed information about the pre-training procedure.
47
+
48
+ ## Fine-tuning
49
+
50
+ We fine-tune the model using a contrastive objective. Formally, we compute the cosine similarity from each possible sentence pairs from the batch.
51
+ We then apply the cross entropy loss by comparing with true pairs.
52
+
53
+ ### Hyper parameters
54
+
55
+ We trained on model on a TPU v3-8. We train the model during 80k steps using a batch size of 1024 (128 per TPU core).
56
+ We use a learning rate warm up of 500. The sequence length was limited to 128 tokens. We used the AdamW optimizer with
57
+ a 2e-5 learning rate. The full training script is accessible in this current repository.
58
+
59
+ ### Training data
60
+
61
+ We used the concatenation from multiple Stackexchange Question-Answer datasets to fine-tune our model. MSMARCO, NQ & other question-answer datasets were also used.
62
+
63
+
64
+ | Dataset | Paper | Number of training tuples |
65
+ |:--------------------------------------------------------:|:----------------------------------------:|:--------------------------:|
66
+ | [Stack Exchange QA - Title & Answer](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_title_best_voted_answer_jsonl) | - | 4,750,619 |
67
+ | [Stack Exchange](https://huggingface.co/datasets/flax-sentence-embeddings/stackexchange_title_body_jsonl) | - | 364,001 |
68
+ | [TriviaqQA](https://huggingface.co/datasets/trivia_qa) | - | 73,346 |
69
+ | [SQuAD2.0](https://rajpurkar.github.io/SQuAD-explorer/) | [paper](https://aclanthology.org/P18-2124.pdf) | 87,599 |
70
+ | [Quora Question Pairs](https://quoradata.quora.com/First-Quora-Dataset-Release-Question-Pairs) | - | 103,663 |
71
+ | [Eli5](https://huggingface.co/datasets/eli5) | [paper](https://doi.org/10.18653/v1/p19-1346) | 325,475 |
72
+ | [PAQ](https://github.com/facebookresearch/PAQ) | [paper](https://arxiv.org/abs/2102.07033) | 64,371,441 |
73
+ | [WikiAnswers](https://github.com/afader/oqa#wikianswers-corpus) | [paper](https://doi.org/10.1145/2623330.2623677) | 77,427,422 |
74
+ | [MS MARCO](https://microsoft.github.io/msmarco/) | [paper](https://doi.org/10.1145/3404835.3462804) | 9,144,553 |
75
+ | [GOOAQ: Open Question Answering with Diverse Answer Types](https://github.com/allenai/gooaq) | [paper](https://arxiv.org/pdf/2104.08727.pdf) | 3,012,496 |
76
+ | [Yahoo Answers](https://www.kaggle.com/soumikrakshit/yahoo-answers-dataset) Question/Answer | [paper](https://proceedings.neurips.cc/paper/2015/hash/250cf8b51c773f3f8dc8b4be867a9a02-Abstract.html) | 681,164 |
77
+ | SearchQA | - | 582,261 |
78
+ | [Natural Questions (NQ)](https://ai.google.com/research/NaturalQuestions) | [paper](https://transacl.org/ojs/index.php/tacl/article/view/1455) | 100,231 |