peerachet commited on
Commit
d4b8424
1 Parent(s): 1df6625

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -6
README.md CHANGED
@@ -28,8 +28,8 @@ from transformers import RobertaTokenizerFast, RobertaForTokenClassification
28
  from attacut import tokenize
29
  import torch
30
 
31
- tokenizer = RobertaTokenizerFast.from_pretrained("new5558/HoogBERTa-POS-lst20")
32
- model = RobertaForTokenClassification.from_pretrained("new5558/HoogBERTa-POS-lst20")
33
  ```
34
 
35
  To do POS Tagging, use the following commands
@@ -73,11 +73,11 @@ print(nlp(inputList))
73
 
74
  # Huggingface Models
75
  1. `HoogBERTaEncoder`
76
- - [HoogBERTa](https://huggingface.co/new5558/HoogBERTa): `Feature Extraction` and `Mask Language Modeling`
77
  2. `HoogBERTaMuliTaskTagger`:
78
- - [HoogBERTa-NER-lst20](https://huggingface.co/new5558/HoogBERTa-NER-lst20): `Named-entity recognition (NER)` based on LST20
79
- - [HoogBERTa-POS-lst20](https://huggingface.co/new5558/HoogBERTa-POS-lst20): `Part-of-speech tagging (POS)` based on LST20
80
- - [HoogBERTa-SENTENCE-lst20](https://huggingface.co/new5558/HoogBERTa-SENTENCE-lst20): `Clause Boundary Classification` based on LST20
81
 
82
 
83
  # Citation
 
28
  from attacut import tokenize
29
  import torch
30
 
31
+ tokenizer = RobertaTokenizerFast.from_pretrained("lst-nectec/HoogBERTa-POS-lst20")
32
+ model = RobertaForTokenClassification.from_pretrained("lst-nectec/HoogBERTa-POS-lst20")
33
  ```
34
 
35
  To do POS Tagging, use the following commands
 
73
 
74
  # Huggingface Models
75
  1. `HoogBERTaEncoder`
76
+ - [HoogBERTa](https://huggingface.co/lst-nectec/HoogBERTa): `Feature Extraction` and `Mask Language Modeling`
77
  2. `HoogBERTaMuliTaskTagger`:
78
+ - [HoogBERTa-NER-lst20](https://huggingface.co/lst-nectec/HoogBERTa-NER-lst20): `Named-entity recognition (NER)` based on LST20
79
+ - [HoogBERTa-POS-lst20](https://huggingface.co/lst-nectec/HoogBERTa-POS-lst20): `Part-of-speech tagging (POS)` based on LST20
80
+ - [HoogBERTa-SENTENCE-lst20](https://huggingface.co/lst-nectec/HoogBERTa-SENTENCE-lst20): `Clause Boundary Classification` based on LST20
81
 
82
 
83
  # Citation