Instructions to use aehrm/dtaec-type-normalizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aehrm/dtaec-type-normalizer with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="aehrm/dtaec-type-normalizer")# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("aehrm/dtaec-type-normalizer") model = AutoModelForSeq2SeqLM.from_pretrained("aehrm/dtaec-type-normalizer") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -116,4 +116,10 @@ The following hyperparameters were used during training:
|
|
| 116 |
|
| 117 |
The model weights are marked with [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1).
|
| 118 |
|
| 119 |
-
**NOTE:** This model and its inferences or derivative works *may* be considered an Adaptation of
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
|
| 117 |
The model weights are marked with [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/?ref=chooser-v1).
|
| 118 |
|
| 119 |
+
**NOTE:** This model and its inferences or derivative works *may* be considered an Adaptation of
|
| 120 |
+
- the DTA EvalCorpus by Bryan Jurish, Henriette Ast, Marko Drotschmann, and Christian Thomas, licensed under the [Creative Commons Attribution-NonCommercial 3.0 Unported License](http://creativecommons.org/licenses/by-nc/3.0/),
|
| 121 |
+
- historical source text by the Deutsche Textarchiv, licensed under the [Creative Commons Attribution-NonCommercial 3.0 Unported License](http://creativecommons.org/licenses/by-nc/3.0/),
|
| 122 |
+
- contemporary target text by TextGrid, licensed under the [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0/),
|
| 123 |
+
- contemporary target text by Project Gutenberg, licensed under the [Project Gutenberg License](https://www.gutenberg.org/policy/license.html).
|
| 124 |
+
|
| 125 |
+
Conditions on attribution and/or restrictions to commercial use may apply.
|