nielsr HF staff commited on
Commit
5481f4b
1 Parent(s): 7676c09

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md CHANGED
@@ -5,3 +5,77 @@ tags:
5
  license: mit
6
  thumbnail: https://huggingface.co/front/thumbnails/facebook.png
7
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  license: mit
6
  thumbnail: https://huggingface.co/front/thumbnails/facebook.png
7
  ---
8
+ # BART (large-sized model), fine-tuned on CNN Daily Mail
9
+
10
+ BART model pre-trained on English language, and fine-tuned on [CNN Daily Mail](https://huggingface.co/datasets/cnn_dailymail). It was introduced in the paper [BART: Denoising Sequence-to-Sequence Pre-training for Natural Language Generation, Translation, and Comprehension](https://arxiv.org/abs/1910.13461) by Lewis et al. and first released in [this repository (https://github.com/pytorch/fairseq/tree/master/examples/bart).
11
+
12
+ Disclaimer: The team releasing BART did not write a model card for this model so this model card has been written by the Hugging Face team.
13
+
14
+ ## Model description
15
+
16
+ BART is a transformer encoder-encoder (seq2seq) model with a bidirectional (BERT-like) encoder and an autoregressive (GPT-like) decoder. BART is pre-trained by (1) corrupting text with an arbitrary noising function, and (2) learning a model to reconstruct the original text.
17
+
18
+ BART is particularly effective when fine-tuned for text generation (e.g. summarization, translation) but also works well for comprehension tasks (e.g. text classification, question answering). This particular checkpoint has been fine-tuned on CNN Daily Mail, a large collection of text-summary pairs.
19
+
20
+ ## Intended uses & limitations
21
+
22
+ You can use this model for text summarization.
23
+
24
+ ### How to use
25
+
26
+ Here is how to use this model with the [pipeline API](https://huggingface.co/transformers/main_classes/pipelines.html):
27
+
28
+ ```python
29
+ from transformers import BartTokenizer, BartForConditionalGeneration, pipeline
30
+
31
+ tokenizer = BartTokenizer.from_pretrained("facebook/bart-large-cnn")
32
+ model = BartForConditionalGeneration.from_pretrained("facebook/bart-large-cnn")
33
+ summarizer = pipeline("summarization", model=model, tokenizer=tokenizer)
34
+
35
+ ARTICLE = """ New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York.
36
+ A year later, she got married again in Westchester County, but to a different man and without divorcing her first husband.
37
+ Only 18 days after that marriage, she got hitched yet again. Then, Barrientos declared "I do" five more times, sometimes only within two weeks of each other.
38
+ In 2010, she married once more, this time in the Bronx. In an application for a marriage license, she stated it was her "first and only" marriage.
39
+ Barrientos, now 39, is facing two criminal counts of "offering a false instrument for filing in the first degree," referring to her false statements on the
40
+ 2010 marriage license application, according to court documents.
41
+ Prosecutors said the marriages were part of an immigration scam.
42
+ On Friday, she pleaded not guilty at State Supreme Court in the Bronx, according to her attorney, Christopher Wright, who declined to comment further.
43
+ After leaving court, Barrientos was arrested and charged with theft of service and criminal trespass for allegedly sneaking into the New York subway through an emergency exit, said Detective
44
+ Annette Markowski, a police spokeswoman. In total, Barrientos has been married 10 times, with nine of her marriages occurring between 1999 and 2002.
45
+ All occurred either in Westchester County, Long Island, New Jersey or the Bronx. She is believed to still be married to four men, and at one time, she was married to eight men at once, prosecutors say.
46
+ Prosecutors said the immigration scam involved some of her husbands, who filed for permanent residence status shortly after the marriages.
47
+ Any divorces happened only after such filings were approved. It was unclear whether any of the men will be prosecuted.
48
+ The case was referred to the Bronx District Attorney\'s Office by Immigration and Customs Enforcement and the Department of Homeland Security\'s
49
+ Investigation Division. Seven of the men are from so-called "red-flagged" countries, including Egypt, Turkey, Georgia, Pakistan and Mali.
50
+ Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force.
51
+ If convicted, Barrientos faces up to four years in prison. Her next court appearance is scheduled for May 18.
52
+ """
53
+
54
+ print(summarizer(ARTICLE, max_length=130, min_length=30, do_sample=False))
55
+ >>> [{'summary_text': 'Liana Barrientos, 39, is charged with two counts of "offering a false instrument for filing in the first degree" In total, she has been married 10 times, with nine of her marriages occurring between 1999 and 2002. She is believed to still be married to four men.'}]
56
+ ```
57
+
58
+ ### BibTeX entry and citation info
59
+
60
+ ```bibtex
61
+ @article{DBLP:journals/corr/abs-1910-13461,
62
+ author = {Mike Lewis and
63
+ Yinhan Liu and
64
+ Naman Goyal and
65
+ Marjan Ghazvininejad and
66
+ Abdelrahman Mohamed and
67
+ Omer Levy and
68
+ Veselin Stoyanov and
69
+ Luke Zettlemoyer},
70
+ title = {{BART:} Denoising Sequence-to-Sequence Pre-training for Natural Language
71
+ Generation, Translation, and Comprehension},
72
+ journal = {CoRR},
73
+ volume = {abs/1910.13461},
74
+ year = {2019},
75
+ url = {http://arxiv.org/abs/1910.13461},
76
+ eprinttype = {arXiv},
77
+ eprint = {1910.13461},
78
+ timestamp = {Thu, 31 Oct 2019 14:02:26 +0100},
79
+ biburl = {https://dblp.org/rec/journals/corr/abs-1910-13461.bib},
80
+ bibsource = {dblp computer science bibliography, https://dblp.org}
81
+ }