Instructions to use TweebankNLP/bertweet-tb2-pos-tagging with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TweebankNLP/bertweet-tb2-pos-tagging with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="TweebankNLP/bertweet-tb2-pos-tagging")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("TweebankNLP/bertweet-tb2-pos-tagging") model = AutoModelForTokenClassification.from_pretrained("TweebankNLP/bertweet-tb2-pos-tagging") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,6 +4,7 @@ license: cc-by-nc-4.0
|
|
| 4 |
|
| 5 |
## Model Specification
|
| 6 |
- This is a **baseline Twitter POS tagging model (with 95.21\% Accuracy)** on Tweebank V2's NER benchmark (also called `Tweebank-NER`), trained on the Tweebank-NER training data.
|
|
|
|
| 7 |
- For more details about the `TweebankNLP` project, please refer to this [our paper](https://arxiv.org/pdf/2201.07281.pdf) and [github](https://github.com/social-machines/TweebankNLP) page.
|
| 8 |
- In the paper, it is referred as `HuggingFace-BERTweet (TB2)` in the POS table.
|
| 9 |
|
|
|
|
| 4 |
|
| 5 |
## Model Specification
|
| 6 |
- This is a **baseline Twitter POS tagging model (with 95.21\% Accuracy)** on Tweebank V2's NER benchmark (also called `Tweebank-NER`), trained on the Tweebank-NER training data.
|
| 7 |
+
- **If you are looking for the SOTA Twitter POS tagger**, please go to this [HuggingFace hub link](https://huggingface.co/TweebankNLP/bertweet-tb2_ewt-pos-tagging).
|
| 8 |
- For more details about the `TweebankNLP` project, please refer to this [our paper](https://arxiv.org/pdf/2201.07281.pdf) and [github](https://github.com/social-machines/TweebankNLP) page.
|
| 9 |
- In the paper, it is referred as `HuggingFace-BERTweet (TB2)` in the POS table.
|
| 10 |
|