Add pipeline tag and library name to model card
Browse filesThis PR enhances the model card by adding:
- `pipeline_tag: text-generation`: This improves discoverability on the Hugging Face Hub, allowing users to find your model when filtering for text generation tasks.
- `library_name: transformers`: This ensures that the automated "How to use" widget appears on the model page, providing a convenient code snippet for users to get started with the model using the Hugging Face Transformers library.
README.md
CHANGED
@@ -5,6 +5,8 @@ tags:
|
|
5 |
- Czech
|
6 |
- GEC
|
7 |
- GECCC dataset
|
|
|
|
|
8 |
---
|
9 |
|
10 |
# Model Card for transformer-base-geccc-mate
|
@@ -67,8 +69,8 @@ print(tokenizer.batch_decode(outputs, skip_special_tokens=True))
|
|
67 |
|
68 |
```
|
69 |
@InProceedings{10.1007/978-3-032-02551-7_7,
|
70 |
-
author="Pechman, Petr and Straka, Milan and Strakov
|
71 |
-
editor="
|
72 |
title="Refining Czech GEC: Insights from a Multi-experiment Approach",
|
73 |
booktitle="Text, Speech, and Dialogue",
|
74 |
year="2026",
|
@@ -78,4 +80,4 @@ print(tokenizer.batch_decode(outputs, skip_special_tokens=True))
|
|
78 |
isbn="978-3-032-02551-7",
|
79 |
doi="10.1007/978-3-032-02551-7_7"
|
80 |
}
|
81 |
-
```
|
|
|
5 |
- Czech
|
6 |
- GEC
|
7 |
- GECCC dataset
|
8 |
+
pipeline_tag: text-generation
|
9 |
+
library_name: transformers
|
10 |
---
|
11 |
|
12 |
# Model Card for transformer-base-geccc-mate
|
|
|
69 |
|
70 |
```
|
71 |
@InProceedings{10.1007/978-3-032-02551-7_7,
|
72 |
+
author="Pechman, Petr and Straka, Milan and Straková, Jana and Náplava, Jakub",
|
73 |
+
editor="Ekštein, Kamil and Konopík, Miloslav and Pražák, Ondřej and Pártl, František",
|
74 |
title="Refining Czech GEC: Insights from a Multi-experiment Approach",
|
75 |
booktitle="Text, Speech, and Dialogue",
|
76 |
year="2026",
|
|
|
80 |
isbn="978-3-032-02551-7",
|
81 |
doi="10.1007/978-3-032-02551-7_7"
|
82 |
}
|
83 |
+
```
|