Text Classification
Transformers
PyTorch
TensorBoard
bert
metascience
psychology
openscience
abstracts
text-embeddings-inference
Instructions to use ClinicalMetaScience/NegativeResultDetector with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ClinicalMetaScience/NegativeResultDetector with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ClinicalMetaScience/NegativeResultDetector")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ClinicalMetaScience/NegativeResultDetector") model = AutoModelForSequenceClassification.from_pretrained("ClinicalMetaScience/NegativeResultDetector") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,7 +28,7 @@ license: mit
|
|
| 28 |
## Model
|
| 29 |
SciBERT text classification model for positive and negative results prediction in scientific abstracts of clinical psychology and psychotherapy.
|
| 30 |
The corresponding paper "Classifying Positive Results in Clinical Psychology Using Natural Language Processing" by Louis Schiekiera, Jonathan
|
| 31 |
-
Diederichs & Helen Niemeyer was published in the special issue *Natural Language Processing in Psychology
|
| 32 |
|
| 33 |
## Data
|
| 34 |
We annotated over 1,900 clinical psychology abstracts into two categories: 'positive results only' and 'mixed or negative results', and trained models using SciBERT.
|
|
|
|
| 28 |
## Model
|
| 29 |
SciBERT text classification model for positive and negative results prediction in scientific abstracts of clinical psychology and psychotherapy.
|
| 30 |
The corresponding paper "Classifying Positive Results in Clinical Psychology Using Natural Language Processing" by Louis Schiekiera, Jonathan
|
| 31 |
+
Diederichs & Helen Niemeyer was published in the special issue *Natural Language Processing in Psychology* in [**ZfP**](https://econtent.hogrefe.com/doi/10.1027/2151-2604/a000563).
|
| 32 |
|
| 33 |
## Data
|
| 34 |
We annotated over 1,900 clinical psychology abstracts into two categories: 'positive results only' and 'mixed or negative results', and trained models using SciBERT.
|