Commit
·
ff08658
1
Parent(s):
f13396f
Update README.md
Browse files
README.md
CHANGED
|
@@ -6,11 +6,9 @@ tags:
|
|
| 6 |
- sentence-similarity
|
| 7 |
---
|
| 8 |
|
| 9 |
-
#
|
| 10 |
|
| 11 |
-
This is a [sentence-transformers](https://www.SBERT.net) model
|
| 12 |
-
|
| 13 |
-
<!--- Describe your model here -->
|
| 14 |
|
| 15 |
## Usage (Sentence-Transformers)
|
| 16 |
|
|
@@ -24,22 +22,12 @@ Then you can use the model like this:
|
|
| 24 |
|
| 25 |
```python
|
| 26 |
from sentence_transformers import SentenceTransformer
|
| 27 |
-
sentences = ["
|
| 28 |
|
| 29 |
-
model = SentenceTransformer('
|
| 30 |
embeddings = model.encode(sentences)
|
| 31 |
-
print(embeddings)
|
| 32 |
```
|
| 33 |
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
## Evaluation Results
|
| 37 |
-
|
| 38 |
-
<!--- Describe how your model was evaluated -->
|
| 39 |
-
|
| 40 |
-
For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
|
| 41 |
-
|
| 42 |
-
|
| 43 |
## Training
|
| 44 |
The model was trained with the parameters:
|
| 45 |
|
|
@@ -87,4 +75,4 @@ SentenceTransformer(
|
|
| 87 |
|
| 88 |
## Citing & Authors
|
| 89 |
|
| 90 |
-
|
|
|
|
| 6 |
- sentence-similarity
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# DistilUSE Podcast Natural Questions
|
| 10 |
|
| 11 |
+
This is a [sentence-transformers](https://www.SBERT.net) model built for asymmetric semantic search of Podcast episodes. It replicates the fine-tuning process of Spotify's podcast search model, as [described here](https://www.pinecone.io/learn/spotify-podcast-search/).
|
|
|
|
|
|
|
| 12 |
|
| 13 |
## Usage (Sentence-Transformers)
|
| 14 |
|
|
|
|
| 22 |
|
| 23 |
```python
|
| 24 |
from sentence_transformers import SentenceTransformer
|
| 25 |
+
sentences = ["podcast about climate change", "how to make money on the internet"]
|
| 26 |
|
| 27 |
+
model = SentenceTransformer('pinecone/distiluse-podcast-nq')
|
| 28 |
embeddings = model.encode(sentences)
|
|
|
|
| 29 |
```
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
## Training
|
| 32 |
The model was trained with the parameters:
|
| 33 |
|
|
|
|
| 75 |
|
| 76 |
## Citing & Authors
|
| 77 |
|
| 78 |
+
James Briggs, [How Spotify Uses Semantic Search for Podcasts](https://www.pinecone.io/learn/spotify-podcast-search/), Pinecone
|