Tanhim commited on
Commit
add2820
·
1 Parent(s): 0f0e4b2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -32,4 +32,16 @@ model = AutoModelWithLMHead.from_pretrained("Tanhim/gpt2-model-de")
32
  text = "Ersetzen Sie mich durch einen beliebigen Text, den Sie wünschen."
33
  encoded_input = tokenizer(text, return_tensors='pt')
34
  output = model(**encoded_input)
 
 
 
 
 
 
 
 
 
 
 
 
35
  ```
 
32
  text = "Ersetzen Sie mich durch einen beliebigen Text, den Sie wünschen."
33
  encoded_input = tokenizer(text, return_tensors='pt')
34
  output = model(**encoded_input)
35
+ ```
36
+
37
+ Citation request:
38
+ If you use the code of this repository in your research, please consider citing the folowing papers:
39
+ ```python
40
+ @misc{bworld,
41
+ author = {Tanhim Islam},
42
+ title = {{German Transformer model for Text Generation Task}},
43
+ howpublished = "\url{https://huggingface.co/Tanhim/gpt2-model-de}",
44
+ year = {2021},
45
+ note = "[Online; accessed 17-June-2021]"
46
+ }
47
  ```