Joemgu commited on
Commit
cae9d28
1 Parent(s): 7240699

add python exec example

Browse files
Files changed (1) hide show
  1. README.md +53 -2
README.md CHANGED
@@ -18,9 +18,60 @@ metrics:
18
  - rouge
19
  ---
20
 
21
- # STILL UNDER DEVELOPMENT (TRAINING RUNNING)
22
 
23
- ## How to use:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  Prefix your document of choice with either:
26
  - "Summarize: "+INPUT_TEXT
 
18
  - rouge
19
  ---
20
 
21
+ # mLong-T5-large-sumstew
22
 
23
+ TL;DR: Multilingual, longform (up to 16k input tokens), abstractive summarization model. Trained on sumstew to generate both title and summary of a given input document.
24
+
25
+ ## Usage:
26
+
27
+ ### Using pipeline (Easy):
28
+
29
+ ```python
30
+ from transformers import pipeline
31
+
32
+ summarizer = pipeline("summarization", "joemgu/mlong-t5-large-sumstew")
33
+ text = "Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, 'and what is the use of a book,' thought Alice 'without pictures or conversations?' So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after it, and fortunately was just in time to see it pop down a large rabbit-hole under the hedge. In another moment down went Alice after it, never once considering how in the world she was to get out again."
34
+ summary = summarizer(text)[0]["summary_text"]
35
+ print(summary)
36
+ ```
37
+ Output:
38
+ ```text
39
+ Title: Alice and the White Rabbit Summary: Alice is a bored and curious girl who follows a White Rabbit with a watch into a rabbit-hole. She enters a strange world where she has many adventures and meets many peculiar creatures.
40
+ ```
41
+
42
+ ### Using .from_pretrained for more control (Advanced):
43
+
44
+ ```python
45
+ from transformers import LongT5ForConditionalGeneration, T5Tokenizer
46
+
47
+ checkpoint = "joemgu/mlong-t5-large-sumstew"
48
+
49
+ gen_kwargs = {
50
+ "max_length": 1024,
51
+ "do_sample": False,
52
+ "num_beams": 4, # higher = better, but uses more memory
53
+ "use_cache": True, # Set to False if running out of memory, but will be MUCH slower
54
+ "early_stopping": True,
55
+ "num_return_sequences": 1,
56
+ "repetition_penalty": 3.5,
57
+ "encoder_repetition_penalty": 2.0,
58
+ "length_penalty": 1.0, # higher = longer summaries
59
+ "encoder_no_repeat_ngram_size": 4,
60
+ "no_repeat_ngram_size": 6,
61
+ }
62
+
63
+ model = LongT5ForConditionalGeneration.from_pretrained(checkpoint)
64
+ tokenizer = T5Tokenizer.from_pretrained(checkpoint)
65
+
66
+ prefix = "Write a title and summarize: "
67
+ input_document = "Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, 'and what is the use of a book,' thought Alice 'without pictures or conversations?' So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so very remarkable in that; nor did Alice think it so very much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually took a watch out of its waistcoat-pocket, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after it, and fortunately was just in time to see it pop down a large rabbit-hole under the hedge. In another moment down went Alice after it, never once considering how in the world she was to get out again."
68
+
69
+ inputs = tokenizer(prefix + input_document, return_tensors="pt", max_length=16384, truncation=True, add_special_tokens=True)
70
+
71
+ outputs = model.generate(inputs**, gen_kwargs**)
72
+
73
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
74
+ ```
75
 
76
  Prefix your document of choice with either:
77
  - "Summarize: "+INPUT_TEXT