pascalhuerten
commited on
Commit
•
8abc5d0
1
Parent(s):
81e954d
Add example for computing scores of learning outcome esco skill pairs
Browse files
README.md
CHANGED
@@ -5,3 +5,18 @@ license: mit
|
|
5 |
# pascalhuerten/bge_reranker_skillfit
|
6 |
|
7 |
This is a finetuning of **BAAI/bge-reranker-base** on a german dataset containing positive and negative skill labels and learning outcomes of courses as the query.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
# pascalhuerten/bge_reranker_skillfit
|
6 |
|
7 |
This is a finetuning of **BAAI/bge-reranker-base** on a german dataset containing positive and negative skill labels and learning outcomes of courses as the query.
|
8 |
+
This model is trained to perform well on calculating relevance scores for learning outcome and esco skill pairs in german language.
|
9 |
+
|
10 |
+
## Using FlagEmbedding
|
11 |
+
```
|
12 |
+
pip install -U FlagEmbedding
|
13 |
+
```
|
14 |
+
|
15 |
+
Get relevance scores (higher scores indicate more relevance):
|
16 |
+
```python
|
17 |
+
from FlagEmbedding import FlagReranker
|
18 |
+
reranker = FlagReranker('pascalhuerten/bge_reranker_skillfit', use_fp16=True) # Setting use_fp16 to True speeds up computation with a slight performance degradation
|
19 |
+
|
20 |
+
scores = reranker.compute_score([['Einführung in die Arbeitsweise von WordPress', 'WordPress'], ['Einführung in die Arbeitsweise von WordPress', 'Software für Content-Management-Systeme nutzen'], ['Einführung in die Arbeitsweise von WordPress', 'Website-Sichtbarkeit erhöhen']])
|
21 |
+
print(scores)
|
22 |
+
```
|