Marian Krotil commited on
Commit
95be9a3
1 Parent(s): 6f79211

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -20,7 +20,7 @@ This model is a fine-tuned checkpoint of [facebook/mbart-large-cc25](https://hug
20
  The model deals with the task ``Abstract + Text to Headline`` (AT2H) which consists in generating a one- or two-sentence summary considered as a headline from a Czech news text.
21
 
22
  ## Dataset
23
- The model has been trained on the private CNC dataset provided by Czech News Center. The dataset includes 3/4M Czech news-based documents consisting of a Headline, Abstract, and Full-text sections. Truncation and padding were set to 512 tokens.
24
 
25
  ## Training
26
  The model has been trained on 4x NVIDIA Tesla V100 32GB for 15 hours, 4x NVIDIA Tesla A100 40GB for 10 hours, and 1x NVIDIA Tesla A100 40GB for 20 hours. During training, the model has seen 5984K documents corresponding to roughly 9 epochs.
@@ -41,7 +41,7 @@ def summ_config():
41
  ("repetition_penalty", 1.2),
42
  ("no_repeat_ngram_size", None),
43
  ("early_stopping", True),
44
- ("max_length", 96),
45
  ("min_length", 10),
46
  ])),
47
  #texts to summarize
20
  The model deals with the task ``Abstract + Text to Headline`` (AT2H) which consists in generating a one- or two-sentence summary considered as a headline from a Czech news text.
21
 
22
  ## Dataset
23
+ The model has been trained on the private CNC dataset provided by Czech News Center. The dataset includes 3/4M Czech news-based documents consisting of a Headline, Abstract, and Full-text sections. Truncation and padding were set to 512 tokens for the encoder and 64 for the decoder.
24
 
25
  ## Training
26
  The model has been trained on 4x NVIDIA Tesla V100 32GB for 15 hours, 4x NVIDIA Tesla A100 40GB for 10 hours, and 1x NVIDIA Tesla A100 40GB for 20 hours. During training, the model has seen 5984K documents corresponding to roughly 9 epochs.
41
  ("repetition_penalty", 1.2),
42
  ("no_repeat_ngram_size", None),
43
  ("early_stopping", True),
44
+ ("max_length", 64),
45
  ("min_length", 10),
46
  ])),
47
  #texts to summarize