Metadata-Version: 2.1
Name: KinGBERT
Version: 0.0.2
Summary: Keywords extractor with Graph and BERT methods
Home-page: https://github.com/sokolheavy/KinGBERT
Author: OlenaSokol
Author-email: sokolooo1996@gmail.com
License: MIT
Description: # KinGBERT
        
            KinGBERT(Keywords in Graph with BERT) is a minimal keyword extraction library with graph methods to extract keywords. Use Sentence-BERT embedding for founding the most significant keywords.
        ## Installation
        
        KinGBERT is available on PyPI.
        
        ```
        pip install KinGBERT
        ```
        
        To clone this repository, run
        
        ```
        git clone https://github.com/sokolheavy/KinGBERT.git
        ```
        
        ## How to use
        
        We use the `KinGBERTExtractor` class, which can be configured to generate keywords from text.
        ```python
        text = """What is data science?
            Data science is a multidisciplinary approach to extracting actionable insights from the large and ever-increasing volumes of data collected and created by today’s organizations. 
            Data science encompasses preparing data for analysis and processing, performing advanced data analysis, and presenting the results to reveal patterns and enable stakeholders to draw informed conclusions.
            Data preparation can involve cleansing, aggregating, and manipulating it to be ready for specific types of processing. Analysis requires the development and use of algorithms, analysis and AI models. It’s driven by software that combs through data to find patterns within to transform these patterns into predictions that support business decision-making. The accuracy of these predictions must be validated through scientifically designed tests and experiments. And the results should be shared through the skillful use of data visualization tools that make it possible for anyone to see the patterns and understand trends."""
        ```
        Just extract 5 keywords from the text.
        
            extractor = KinGBERTExtractor()
            keywords = extractor.generate(doc)
        
        ```python
        >>> from KinGBERT import KinGBERTExtractor
        >>> extractor = KinGBERTExtractor(top_k=5)
        >>> keywords = extractor.generate(text)
        >>> print(keywords)
        ['data science', 'insights', 'analysis', 'experiments', 'algorithms']
        ```
Keywords: Keywords extractions Graph BERT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
