opensource text summarization toolkit.
Project description
summarizers
summarizers
is controllable summarization package based on CTRLsum.- currently, we only supports English. It doesn't work in other languages.
Installation
pip install summarizers
Usage
1. Create Summarizers
- First at all, create summarizers obejct to summarize your own article.
>>> from summarizers import Summarizers
>>> summ = Summarizers()
- You can select type of source article between [
normal
,paper
,patent
]. - If you don't inputted any parameter, default type is
normal
.
>>> from summarizers import Summarizers
>>> summ = Summarizers('normal') # <-- default.
>>> summ = Summarizers('paper')
>>> summ = Summarizers('patent')
- If you want GPU acceleration, set param
device='cuda'
.
>>> from summarizers import Summarizers
>>> summ = Summarizers('norma', device='cuda')
2. Basic Summarization
- If you inputted source article, basic summariztion is conducted.
>>> contents = """
Tunip is the Octonauts' head cook and gardener.
He is a Vegimal, a half-animal, half-vegetable creature capable of breathing on land as well as underwater.
Tunip is very childish and innocent, always wanting to help the Octonauts in any way he can.
He is the smallest main character in the Octonauts crew.
"""
>>> summ(contents)
'Tunip is a Vegimal, a half-animal, half-vegetable creature'
3. Query focused summarization
- If you want inputted query together, Query focused summarization conducted.
>>> summ(contents, query="main character of Octonauts")
'Tunip is the smallest main character in the Octonauts crew.'
3. Abstractive QA (Auto Question Detection)
- If you inputted question as query, Abstractive QA is conducted.
>>> summ(contents, query="What is Vegimal?")
'Half-animal, half-vegetable'
- You can turn off this feature by setting param
question_detection=False
.
>>> summ(contents, query="SOME_QUERY", question_detection=False)
4. Prompt based summarization
- You can generate summary that begins with some sequence using param
prompt
. - It works like GPT-3's Prompt based generation. (but It doesn't work very well.)
>>> summ(contents, prompt="Q:Who is Tunip? A:")
"Q:Who is Tunip? A: Tunip is the Octonauts' head"
5. Query focused summarization with prompt
- You can also inputted both
query
andprompt
. - In this case, a query focus summary is generated that starts with a prompt.
>>> summ(contents, query="personality of Tunip", prompt="Tunip is very")
"Tunip is very childish and innocent, always wanting to help the Octonauts."
6. Decoding Strategies
- For generative models, decoding strategies are very important.
- So, we support variety of options for decoding strategies.
>>> summ(
... contents=contents,
... num_beams=10,
... top_k=30,
... top_p=0.85,
... no_repeat_ngram_size=3,
... )
License
Copyright 2021 Hyunwoong Ko.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file summarizers-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: summarizers-1.0.1-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9a6610bcb9c0a1a5c3a78d3c3526c153354d228812b7435f20298b13c7abda5 |
|
MD5 | b96c9466ca278e3579911779e59d4f66 |
|
BLAKE2b-256 | b34dc8d566cfd3a4f81c9be7e26d1a89b44728c1380b758d4ae94df881965808 |