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 ·
1ed2c26
1
Parent(s): b360512
Update README.md
Browse files
README.md
CHANGED
|
@@ -57,7 +57,7 @@ predict_test=trainer.predict(tokenized_data["inference"])
|
|
| 57 |
|
| 58 |
```
|
| 59 |
|
| 60 |
-
Further information on analyzing your own or our example data can be found in this [script](https://github.com/PsyCapsLock/PubBiasDetect/blob/main/Scripts/Predict_Example_Abstracts_using_NegativeResultDetector.ipynb)
|
| 61 |
from our [GitHub repository](https://github.com/PsyCapsLock/PubBiasDetect).
|
| 62 |
|
| 63 |
## Disclaimer
|
|
|
|
| 57 |
|
| 58 |
```
|
| 59 |
|
| 60 |
+
Further information on analyzing your own or our example data can be found in this [script](https://github.com/PsyCapsLock/PubBiasDetect/blob/main/Scripts/example_folder/Predict_Example_Abstracts_using_NegativeResultDetector.ipynb)
|
| 61 |
from our [GitHub repository](https://github.com/PsyCapsLock/PubBiasDetect).
|
| 62 |
|
| 63 |
## Disclaimer
|