readme: add acknowledge section
Browse files
README.md
CHANGED
@@ -27,6 +27,10 @@ for identifying biases and how to prevent them, as most research is currently do
|
|
27 |
|
28 |
---
|
29 |
|
|
|
|
|
|
|
|
|
30 |
# Text Generation
|
31 |
|
32 |
The following code snippet can be used to generate text with this German GPT-2 model:
|
@@ -43,6 +47,13 @@ text = pipe("Der Sinn des Lebens ist es", max_length=200)[0]["generated_text"]
|
|
43 |
print(text)
|
44 |
```
|
45 |
|
46 |
-
#
|
|
|
|
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
---
|
29 |
|
30 |
+
# Changelog
|
31 |
+
|
32 |
+
06.09.2021: Initial release. Detailed information about training parameters follow soon.
|
33 |
+
|
34 |
# Text Generation
|
35 |
|
36 |
The following code snippet can be used to generate text with this German GPT-2 model:
|
|
|
47 |
print(text)
|
48 |
```
|
49 |
|
50 |
+
# Acknowledgments
|
51 |
+
Research supported with Cloud TPUs from Google's TensorFlow Research Cloud (TFRC).
|
52 |
+
Thanks for providing access to the TFRC ❤️
|
53 |
|
54 |
+
Thanks to the generous support from the [Hugging Face](https://huggingface.co/) team,
|
55 |
+
it is possible to download both cased and uncased models from their S3 storage 🤗
|
56 |
+
|
57 |
+
This project heavily profited from the amazing Hugging Face
|
58 |
+
[Community Week](https://discuss.huggingface.co/t/open-to-the-community-community-week-using-jax-flax-for-nlp-cv/7104).
|
59 |
+
Many thanks for the great organization and discussions during and after the week!
|