Spaces:
Runtime error
Runtime error
chore: Move longer description to article section
Browse files
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 |
|