Instructions to use AIPsy/bert-base-therapist-topic-classification-eng with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AIPsy/bert-base-therapist-topic-classification-eng with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="AIPsy/bert-base-therapist-topic-classification-eng")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("AIPsy/bert-base-therapist-topic-classification-eng") model = AutoModelForSequenceClassification.from_pretrained("AIPsy/bert-base-therapist-topic-classification-eng", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -137,7 +137,7 @@ F1 score metrics for test sample across categories
|
|
| 137 |
|
| 138 |
## Citation
|
| 139 |
|
| 140 |
-
- **Papers:** Vanin
|
| 141 |
- **Developed by:** @myentity, @VadZhen, @Alek123
|
| 142 |
- **License:** MIT
|
| 143 |
|
|
@@ -145,13 +145,13 @@ F1 score metrics for test sample across categories
|
|
| 145 |
**BibTeX:**
|
| 146 |
|
| 147 |
```
|
| 148 |
-
@
|
| 149 |
-
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
|
| 153 |
-
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
}
|
| 157 |
```
|
|
|
|
| 137 |
|
| 138 |
## Citation
|
| 139 |
|
| 140 |
+
- **Papers:** Vanin A, Bolshev V and Panfilova A (2025) Psychotherapist remarks’ ML classifier: insights from LLM and topic modeling application. Front. Psychiatry 16:1608163. doi: 10.3389/fpsyt.2025.1608163. <https://doi.org/10.3389/fpsyt.2025.1608163>
|
| 141 |
- **Developed by:** @myentity, @VadZhen, @Alek123
|
| 142 |
- **License:** MIT
|
| 143 |
|
|
|
|
| 145 |
**BibTeX:**
|
| 146 |
|
| 147 |
```
|
| 148 |
+
@ARTICLE{10.3389/fpsyt.2025.1608163,
|
| 149 |
+
AUTHOR={Vanin, Alexander and Bolshev, Vadim and Panfilova, Anastasia },
|
| 150 |
+
TITLE={Psychotherapist remarks’ ML classifier: insights from LLM and topic modeling application},
|
| 151 |
+
JOURNAL={Frontiers in Psychiatry},
|
| 152 |
+
VOLUME={Volume 16 - 2025},
|
| 153 |
+
YEAR={2025},
|
| 154 |
+
URL={https://www.frontiersin.org/journals/psychiatry/articles/10.3389/fpsyt.2025.1608163},
|
| 155 |
+
DOI={10.3389/fpsyt.2025.1608163},
|
| 156 |
+
ISSN={1664-0640},
|
| 157 |
```
|