amielle commited on
Commit
4d179ce
β€’
1 Parent(s): c259a42

chore: Move longer description to article section

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -46,6 +46,13 @@ iface = gr.Interface(
46
  ],
47
  title="Patent Summarizer πŸ“–",
48
  description="""
 
 
 
 
 
 
 
49
  v.1.0.0
50
 
51
  Reading through patent documents is oftentimes a long and tedious task.
@@ -56,11 +63,6 @@ iface = gr.Interface(
56
  patents so that the potential inventor or researcher may lessen the time
57
  spent trying to filter documents.
58
 
59
- The Patent Summarizer:
60
- ✏️ Provides an interface for user input
61
- πŸ“‚ Retrieves and parses the document from Patents Google based on the given patent information
62
- πŸ“‘ Returns summaries for the abstract, background, and/or claims.
63
-
64
  Notes:
65
  - Increasing 'Input Document Word Limit' may improve results but will
66
  cause inference time to increase
@@ -76,7 +78,7 @@ iface = gr.Interface(
76
  https://arxiv.org/abs/1910.13461, https://huggingface.co/sshleifer/distilbart-cnn-6-6
77
  πŸ€– PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive Summarization
78
  https://arxiv.org/abs/1912.08777 , https://huggingface.co/google/pegasus-xsum
79
- """,
80
 
81
  )
82
 
46
  ],
47
  title="Patent Summarizer πŸ“–",
48
  description="""
49
+ ✏️ Provides an interface for user input
50
+ πŸ“‚ Retrieves and parses the document from Patents Google
51
+ πŸ“‘ Returns summaries for the abstract, background, and/or claims.
52
+
53
+ Check the end of the app for more details.
54
+ """,
55
+ article="""
56
  v.1.0.0
57
 
58
  Reading through patent documents is oftentimes a long and tedious task.
63
  patents so that the potential inventor or researcher may lessen the time
64
  spent trying to filter documents.
65
 
 
 
 
 
 
66
  Notes:
67
  - Increasing 'Input Document Word Limit' may improve results but will
68
  cause inference time to increase
78
  https://arxiv.org/abs/1910.13461, https://huggingface.co/sshleifer/distilbart-cnn-6-6
79
  πŸ€– PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive Summarization
80
  https://arxiv.org/abs/1912.08777 , https://huggingface.co/google/pegasus-xsum
81
+ """
82
 
83
  )
84