update
Browse files
README.md
CHANGED
@@ -13,9 +13,13 @@ inference: true
|
|
13 |
base_model: sentence-transformers/paraphrase-mpnet-base-v2
|
14 |
---
|
15 |
|
16 |
-
#
|
17 |
|
18 |
-
This is a
|
|
|
|
|
|
|
|
|
19 |
|
20 |
The model has been trained using an efficient few-shot learning technique that involves:
|
21 |
|
|
|
13 |
base_model: sentence-transformers/paraphrase-mpnet-base-v2
|
14 |
---
|
15 |
|
16 |
+
# Review classifier
|
17 |
|
18 |
+
This model is a text classification model which, when given abstract of a paper, will indicate it if it is a review (1) or not (0).
|
19 |
+
|
20 |
+
It is based om [SetFit](https://github.com/huggingface/setfit) model and uses the [sentence-transformers/paraphrase-mpnet-base-v2](https://huggingface.co/sentence-transformers/paraphrase-mpnet-base-v2) as the Sentence Transformer embedding model.
|
21 |
+
|
22 |
+
A [LogisticRegression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html) instance is used for classification.
|
23 |
|
24 |
The model has been trained using an efficient few-shot learning technique that involves:
|
25 |
|