Instructions to use CodeNLP/pdn2_v08_nkjp_large with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CodeNLP/pdn2_v08_nkjp_large with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="CodeNLP/pdn2_v08_nkjp_large")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("CodeNLP/pdn2_v08_nkjp_large") model = AutoModel.from_pretrained("CodeNLP/pdn2_v08_nkjp_large") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
## About
|
| 2 |
+
|
| 3 |
+
A transformer-based model for named entity recognition for Polish.
|
| 4 |
+
The model was trained on the NKJP corpus to recognize 12 categories of NEs.
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
## Author
|
| 8 |
+
|
| 9 |
+
Michał Marcińczuk <marcinczuk@gmail.com>
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
## License
|
| 13 |
+
|
| 14 |
+
[MIT](https://choosealicense.com/licenses/mit/
|