nickmuchi commited on
Commit
fdec697
1 Parent(s): 2ad0330

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -349,7 +349,7 @@ max_len= st.sidebar.slider("Maximum length of the summarized text",min_value=80,
349
  min_len= st.sidebar.slider("Minimum length of the summarized text",min_value=50,max_value=200,step=10)
350
 
351
  st.markdown(
352
- "Model Source: [Facebook-Bart-large-CNN](https://huggingface.co/facebook/bart-large-cnn) and [Sshleifer-distilbart-cnn-12-6](https://huggingface.co/sshleifer/distilbart-cnn-12-6)"
353
  )
354
 
355
  st.markdown(
@@ -360,7 +360,7 @@ st.markdown(
360
  st.markdown("""
361
  - Facebook-Bart, trained on large [CNN and Daily Mail](https://huggingface.co/datasets/cnn_dailymail) news articles.
362
  - Sshleifer-Distilbart, which is a distilled (smaller) version of the large Bart model.
363
- - Google Pegasus"""
364
  )
365
 
366
  st.markdown("""Please do note that the model will take longer to generate summaries for documents that are too long.""")
 
349
  min_len= st.sidebar.slider("Minimum length of the summarized text",min_value=50,max_value=200,step=10)
350
 
351
  st.markdown(
352
+ "Model Source: [Facebook-Bart-large-CNN](https://huggingface.co/facebook/bart-large-cnn), [Sshleifer-distilbart-cnn-12-6](https://huggingface.co/sshleifer/distilbart-cnn-12-6) and [Google-Pegasus-large](https://huggingface.co/google/pegasus-large)"
353
  )
354
 
355
  st.markdown(
 
360
  st.markdown("""
361
  - Facebook-Bart, trained on large [CNN and Daily Mail](https://huggingface.co/datasets/cnn_dailymail) news articles.
362
  - Sshleifer-Distilbart, which is a distilled (smaller) version of the large Bart model.
363
+ - Google Pegasus, trained on large C4 and HugeNews articles"""
364
  )
365
 
366
  st.markdown("""Please do note that the model will take longer to generate summaries for documents that are too long.""")