Instructions to use RJuro/SciNERTopic with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use RJuro/SciNERTopic with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="RJuro/SciNERTopic")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("RJuro/SciNERTopic") model = AutoModelForTokenClassification.from_pretrained("RJuro/SciNERTopic") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -45,7 +45,7 @@ E.g model, approach, prior knowledge, them, it...
|
|
| 45 |
|
| 46 |
## Colab
|
| 47 |
|
| 48 |
-
Check out how this model is used for NER-enhanced topic modelling.
|
| 49 |
|
| 50 |
[](https://colab.research.google.com/github/AI-Growth-Lab/SciNerTopic/blob/main/notebooks/Sci_NERTopic.ipynb)
|
| 51 |
|
|
|
|
| 45 |
|
| 46 |
## Colab
|
| 47 |
|
| 48 |
+
Check out how this model is used for NER-enhanced topic modelling, inspired by [BERTopic](https://maartengr.github.io/BERTopic).
|
| 49 |
|
| 50 |
[](https://colab.research.google.com/github/AI-Growth-Lab/SciNerTopic/blob/main/notebooks/Sci_NERTopic.ipynb)
|
| 51 |
|