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", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
b360512
1
Parent(s): 27a27ae
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,7 +19,7 @@ SciBERT text classification model for positive and negative results prediction i
|
|
| 19 |
|
| 20 |
## Data
|
| 21 |
We annotated over 1,900 clinical psychology abstracts into two categories: 'positive results only' and 'mixed or negative results', and trained models using SciBERT.
|
| 22 |
-
The SciBERT model was validated against one in-domain (clinical psychology) and two out-of-domain data sets
|
| 23 |
SciBERT outperformed all benchmarks and random forest in in-domain (accuracy: 0.86) and out-of-domain data (accuracy: 0.85-0.88).
|
| 24 |
Further information on documentation, code and data for the project "Publication Bias Research in Clincial Psychology Using Natural Language Processing" can be found on this [GitHub repository](https://github.com/PsyCapsLock/PubBiasDetect).
|
| 25 |
|
|
|
|
| 19 |
|
| 20 |
## Data
|
| 21 |
We annotated over 1,900 clinical psychology abstracts into two categories: 'positive results only' and 'mixed or negative results', and trained models using SciBERT.
|
| 22 |
+
The SciBERT model was validated against one in-domain (clinical psychology) and two out-of-domain data sets (psychotherapy). We compared model performance with Random Forest and three further benchmarks: natural language indicators of result types, *p*-values, and abstract length.
|
| 23 |
SciBERT outperformed all benchmarks and random forest in in-domain (accuracy: 0.86) and out-of-domain data (accuracy: 0.85-0.88).
|
| 24 |
Further information on documentation, code and data for the project "Publication Bias Research in Clincial Psychology Using Natural Language Processing" can be found on this [GitHub repository](https://github.com/PsyCapsLock/PubBiasDetect).
|
| 25 |
|