ydshieh HF staff commited on
Commit
1924937
1 Parent(s): 3eb3e05

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -9
README.md CHANGED
@@ -1,5 +1,7 @@
1
  # Bert2Bert Summarization with 🤗 EncoderDecoder Framework
2
 
 
 
3
  This model is a Bert2Bert model fine-tuned on summarization.
4
 
5
  Bert2Bert is a `EncoderDecoderModel`, meaning that both the encoder and the decoder are `bert-base-uncased`
@@ -7,10 +9,10 @@ BERT models. Leveraging the [EncoderDecoderFramework](https://huggingface.co/tra
7
  two pretrained models can simply be loaded into the framework via:
8
 
9
  ```python
10
- bert2bert = EncoderDecoderModel.from_encoder_decoder_pretrained("bert-base-uncased", "bert-base-uncased")
11
  ```
12
 
13
- The decoder of an `EncoderDecoder` model needs cross-attention layers and usually makes use of causal
14
  masking for auto-regressiv generation.
15
  Thus, ``bert2bert`` is consequently fined-tuned on the `CNN/Daily Mail`dataset and the resulting model
16
  `bert2bert-cnn_dailymail-fp16` is uploaded here.
@@ -24,25 +26,24 @@ as a proof-of-concept for the 🤗 EncoderDecoder Framework.
24
  The model can be used as follows:
25
 
26
  ```python
27
- from transformers import BertTokenizer, EncoderDecoderModel
28
 
29
- model = EncoderDecoderModel.from_pretrained("patrickvonplaten/bert2bert-cnn_dailymail-fp16")
30
- tokenizer = BertTokenizer.from_pretrained("patrickvonplaten/bert2bert-cnn_dailymail-fp16")
31
 
32
  article = """(CNN)Sigma Alpha Epsilon is under fire for a video showing party-bound fraternity members singing a racist chant. SAE's national chapter suspended the students, but University of Oklahoma President David Boren took it a step further, saying the university's affiliation with the fraternity is permanently done. The news is shocking, but it's not the first time SAE has faced controversy. SAE was founded March 9, 1856, at the University of Alabama, five years before the American Civil War, according to the fraternity website. When the war began, the group had fewer than 400 members, of which "369 went to war for the Confederate States and seven for the Union Army," the website says. The fraternity now boasts more than 200,000 living alumni, along with about 15,000 undergraduates populating 219 chapters and 20 "colonies" seeking full membership at universities. SAE has had to work hard to change recently after a string of member deaths, many blamed on the hazing of new recruits, SAE national President Bradley Cohen wrote in a message on the fraternity's website. The fraternity's website lists more than 130 chapters cited or suspended for "health and safety incidents" since 2010. At least 30 of the incidents involved hazing, and dozens more involved alcohol. However, the list is missing numerous incidents from recent months. Among them, according to various media outlets: Yale University banned the SAEs from campus activities last month after members allegedly tried to interfere with a sexual misconduct investigation connected to an initiation rite. Stanford University in December suspended SAE housing privileges after finding sorority members attending a fraternity function were subjected to graphic sexual content. And Johns Hopkins University in November suspended the fraternity for underage drinking. "The media has labeled us as the 'nation's deadliest fraternity,' " Cohen said. In 2011, for example, a student died while being coerced into excessive alcohol consumption, according to a lawsuit. SAE's previous insurer dumped the fraternity. "As a result, we are paying Lloyd's of London the highest insurance rates in the Greek-letter world," Cohen said. Universities have turned down SAE's attempts to open new chapters, and the fraternity had to close 12 in 18 months over hazing incidents."""
33
 
34
- input_ids = tokenizer(article, return_tensors="pt").input_ids
35
  output_ids = model.generate(input_ids)
36
 
37
  print(tokenizer.decode(output_ids[0], skip_special_tokens=True))
38
  # should produce
39
- # sae was founded in 1856, five years before the civil war. the fraternity has had to work hard to change recently. the university of oklahoma president says the university's affiliation with the fraternity is permanently done. the sae has had a string of members in recent mon
40
- ths.
41
  ```
42
 
43
  ## Training script:
44
 
45
- Please follow this tutorial to see how to warm-start a BERT2BERT model:
46
  https://colab.research.google.com/drive/1WIk2bxglElfZewOHboPFNj8H44_VAyKE?usp=sharing
47
 
48
  The obtained results should be:
 
1
  # Bert2Bert Summarization with 🤗 EncoderDecoder Framework
2
 
3
+ [This is a TensorFlow version converted from the original PyTorch [Bert2Bert](https://huggingface.co/patrickvonplaten/bert2bert-cnn_dailymail-fp16)]
4
+
5
  This model is a Bert2Bert model fine-tuned on summarization.
6
 
7
  Bert2Bert is a `EncoderDecoderModel`, meaning that both the encoder and the decoder are `bert-base-uncased`
 
9
  two pretrained models can simply be loaded into the framework via:
10
 
11
  ```python
12
+ bert2bert = TFEncoderDecoderModel.from_encoder_decoder_pretrained("bert-base-uncased", "bert-base-uncased")
13
  ```
14
 
15
+ The decoder of an `TFEncoderDecoder` model needs cross-attention layers and usually makes use of causal
16
  masking for auto-regressiv generation.
17
  Thus, ``bert2bert`` is consequently fined-tuned on the `CNN/Daily Mail`dataset and the resulting model
18
  `bert2bert-cnn_dailymail-fp16` is uploaded here.
 
26
  The model can be used as follows:
27
 
28
  ```python
29
+ from transformers import BertTokenizer, TFEncoderDecoderModel
30
 
31
+ model = TFEncoderDecoderModel.from_pretrained("ydshieh/bert2bert-cnn_dailymail-fp16")
32
+ tokenizer = BertTokenizer.from_pretrained("ydshieh/bert2bert-cnn_dailymail-fp16")
33
 
34
  article = """(CNN)Sigma Alpha Epsilon is under fire for a video showing party-bound fraternity members singing a racist chant. SAE's national chapter suspended the students, but University of Oklahoma President David Boren took it a step further, saying the university's affiliation with the fraternity is permanently done. The news is shocking, but it's not the first time SAE has faced controversy. SAE was founded March 9, 1856, at the University of Alabama, five years before the American Civil War, according to the fraternity website. When the war began, the group had fewer than 400 members, of which "369 went to war for the Confederate States and seven for the Union Army," the website says. The fraternity now boasts more than 200,000 living alumni, along with about 15,000 undergraduates populating 219 chapters and 20 "colonies" seeking full membership at universities. SAE has had to work hard to change recently after a string of member deaths, many blamed on the hazing of new recruits, SAE national President Bradley Cohen wrote in a message on the fraternity's website. The fraternity's website lists more than 130 chapters cited or suspended for "health and safety incidents" since 2010. At least 30 of the incidents involved hazing, and dozens more involved alcohol. However, the list is missing numerous incidents from recent months. Among them, according to various media outlets: Yale University banned the SAEs from campus activities last month after members allegedly tried to interfere with a sexual misconduct investigation connected to an initiation rite. Stanford University in December suspended SAE housing privileges after finding sorority members attending a fraternity function were subjected to graphic sexual content. And Johns Hopkins University in November suspended the fraternity for underage drinking. "The media has labeled us as the 'nation's deadliest fraternity,' " Cohen said. In 2011, for example, a student died while being coerced into excessive alcohol consumption, according to a lawsuit. SAE's previous insurer dumped the fraternity. "As a result, we are paying Lloyd's of London the highest insurance rates in the Greek-letter world," Cohen said. Universities have turned down SAE's attempts to open new chapters, and the fraternity had to close 12 in 18 months over hazing incidents."""
35
 
36
+ input_ids = tokenizer(article, return_tensors="tf").input_ids
37
  output_ids = model.generate(input_ids)
38
 
39
  print(tokenizer.decode(output_ids[0], skip_special_tokens=True))
40
  # should produce
41
+ # sae was founded in 1856, five years before the civil war. the fraternity has had to work hard to change recently. the university of oklahoma president says the university's affiliation with the fraternity is permanently done. the sae has had a string of members in recent mon ths.
 
42
  ```
43
 
44
  ## Training script:
45
 
46
+ For the original PyTorch BERT2BERT model, please follow this tutorial to see how to warm-start a BERT2BERT model:
47
  https://colab.research.google.com/drive/1WIk2bxglElfZewOHboPFNj8H44_VAyKE?usp=sharing
48
 
49
  The obtained results should be: