Commit ·
828be5b
1
Parent(s): 2e9742e
Update Readme.md for new model location
Browse filesAuthor deleted original model. We forked it and this is the new home of the model weights. License stays unchanged
README.md
CHANGED
|
@@ -70,7 +70,7 @@ from transformers import TFAutoModelForTokenClassification # for tensorflow
|
|
| 70 |
from transformers import pipeline
|
| 71 |
|
| 72 |
|
| 73 |
-
model_name_or_path = "
|
| 74 |
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
|
| 75 |
model = AutoModelForTokenClassification.from_pretrained(model_name_or_path) # Pytorch
|
| 76 |
# model = TFAutoModelForTokenClassification.from_pretrained(model_name_or_path) # Tensorflow
|
|
@@ -84,4 +84,4 @@ print(ner_results)
|
|
| 84 |
|
| 85 |
|
| 86 |
## Questions?
|
| 87 |
-
Post a Github issue on the [IcelandicNER Issues](https://github.com/
|
|
|
|
| 70 |
from transformers import pipeline
|
| 71 |
|
| 72 |
|
| 73 |
+
model_name_or_path = "grammatek/icelandic-ner-bert"
|
| 74 |
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
|
| 75 |
model = AutoModelForTokenClassification.from_pretrained(model_name_or_path) # Pytorch
|
| 76 |
# model = TFAutoModelForTokenClassification.from_pretrained(model_name_or_path) # Tensorflow
|
|
|
|
| 84 |
|
| 85 |
|
| 86 |
## Questions?
|
| 87 |
+
Post a Github issue on the [IcelandicNER Issues](https://github.com/grammatek/icelandic-ner/issues) repo.
|