Thalirajesh commited on
Commit
22b6dd6
1 Parent(s): 02ccb89

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -1
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: en
3
+ widget:
4
+ - text: "You can try out this model by writing something in the text box below:"
5
+
6
+ tags:
7
+ - text-generation
8
+ - creative-writing
9
+ - essay-writing
10
+
11
+ inference:
12
+ max_length: 400
13
+ num_beams: 10
14
+ early_stopping: true
15
+ temperature: 0.3
16
+ no_repeat_ngram_size: 2
17
+ num_return_sequences: 2
18
+
19
+ examples:
20
+ - "Liberal Arts"
21
+ - "Space"
22
+ - "Time"
23
+
24
  ---
25
+
26
+ This is a text generation model fine-tuned for creative writing tasks, such as essay writing and creative storytelling. The model is based on the GPT-2 architecture and has been trained on a diverse corpus of written works.
27
+
28
+ During inference, the following parameters are used:
29
+
30
+ - `max_length`: The maximum length of the generated text, set to 400 tokens.
31
+ - `num_beams`: The number of beams for beam search, set to 10. A higher value will increase the diversity of the generated text but may also increase the inference time.
32
+ - `early_stopping`: If set to True, the generation will stop as soon as the end-of-sequence token is generated.
33
+ - `temperature`: The sampling temperature, set to 0.3.
34
+ - `no_repeat_ngram_size`: The size of the n-gram window to avoid repetitions, set to 2.
35
+
36
+
37
+ Please note that this is a language model, and the outputs may contain biases, inconsistencies, or potentially offensive content. It is recommended to review and filter the generated text as needed before using it in any real-world applications.