SciKey is an advanced Natural Language Processing (NLP) tool designed for extracting key phrases and summarizing scientific research papers. This tool aims to help researchers and academics quickly identify essential information from extensive scientific documents, enhancing productivity and simplifying the research process.
- Key Phrase Extraction: Automatically extract significant key phrases from scientific texts.
- Summarization: Generate concise summaries of research papers.
- User-Friendly Interface: Easy-to-use interface for uploading and processing documents.
- Customization: Options for customizing the length and detail level of the summaries.
- Enhanced Information Retrieval: Integrates Topic Modeling with Question-Answering Systems to provide exhaustive information on a given topic from a set of academic articles.
To use SciKey, you need to have Python installed on your machine. Follow the steps below to set up the project:
-
Clone the repository:
git clone https://github.com/Deeraj7/scikey.git cd scikey
-
Install dependencies:
pip install -r requirements.txt
-
Run the application:
python app.py
- Upload Document: Upload your scientific document (in .pdf, .docx, or .txt format) through the user interface.
- Extract Key Phrases: Click the "Extract Key Phrases" button to get a list of key phrases from the document.
- Generate Summary: Click the "Generate Summary" button to get a concise summary of the document.
app.py
: Main application file that runs the SciKey tool.requirements.txt
: List of Python packages required to run the application.random_data.csv
: Sample data file used for testing the key phrase extraction and summarization algorithms.image.png
: Logo or image used in the project.
The dataset used in this project is the COVID-19 Open Research Dataset (CORD-19) provided by the Allen Institute for AI. Due to its large size, it is not included in this repository. You can access it through the following links:
The project integrates Topic Modeling with Question-Answering Systems to provide enhanced information retrieval from research articles. Key techniques used include:
- Topic Modeling: LDA, NMF, BERTopic, Correx
- Question-Answering System: Based on TF-IDF techniques
- Loading the dataset into a pandas DataFrame.
- Text cleaning (lowercasing, removing special characters, removing stopwords).
- Combining cleaned titles and abstracts into a unified text corpus.
- Transforming text into a TF-IDF matrix using
TfidfVectorizer
.
- Non-negative Matrix Factorization (NMF): Applied to the TF-IDF matrix to extract topics and keywords.
- Processing user queries.
- Finding relevant articles or excerpts.
- Extracting and presenting answers.
We welcome contributions to enhance SciKey. Please follow the steps below to contribute:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -m 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.
SciKey is released under the MIT License. See the LICENSE
file for more details.
For questions or feedback, please contact Deeraj Thakkilapati at thakkilapatideeraj@gmail.com