Metadata-Version: 2.1
Name: SentiToolKit
Version: 0.1.8
Summary: A sentiment analysis toolkit using a trained TensorFlow model
Home-page: https://github.com/Niall1985/SentiToolKit
Author: Niall Dcunha
Author-email: dcunhaniall@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tensorflow>=2.0
Requires-Dist: scikit-learn


# SentiToolKit &nbsp; ![version](https://img.shields.io/badge/version-0.1.8-blue) ![Python](https://img.shields.io/badge/python-3.6%2B-brightgreen) ![License](https://img.shields.io/badge/license-GNU%20License-yellow)

SentiToolKit is a simple sentiment analysis library that leverages LSTM (Long Short-Term Memory) neural networks for predicting the sentiment of a given text. This toolkit provides a streamlined interface for text preprocessing, model loading, and prediction.

## ✨ Features

- **Pre-trained Model**: Uses a trained LSTM model for sentiment analysis.
- **Tokenization Support**: Handles text tokenization with a customizable vocabulary size.
- **Sentiment Prediction**: Predicts whether a text is `Positive`, `Neutral`, or `Negative`.
- **Easy to Use**: Minimal setup required to get predictions.
- **Customizable**: You can use your own tokenizer and model for fine-tuning.

## 📦 Installation

You can install the `SentiToolKit` package via pip:

```bash
pip install SentiToolKit==1.0.8
```

Alternatively, if you'd like to build from source:

1. Clone the repository:

    ```bash
    git clone https://github.com/yourusername/SentiToolKit.git
    ```

2. Navigate to the project directory and install the package:

    ```bash
    cd SentiToolKit
    pip install .
    ```

## 🚀 Quickstart

To get started with SentiToolKit, follow the example below:

```python
# test_model.py

# Import the SentiToolKit class from your package
from SentiAnalyzer.Main_tensor_model import SentiToolKit

def main():
    # Instantiate the model
    model = SentiToolKit()

    # Get user input for testing
    review = input("Enter a review for sentiment analysis: ")

    # Call the model to get the sentiment
    sentiment = model.__call__(review)

    # Print the result
    print("Sentiment Analysis Result:", sentiment)

if __name__ == "__main__":
    main()
```

## 🧰 Usage

1. **Loading the Pre-trained Model**: The toolkit loads a pre-trained LSTM model from the provided `.keras` file.
2. **Text Tokenization**: The input text is tokenized and padded using the stored tokenizer from `tokenizer.pkl`.
3. **Sentiment Prediction**: Predicts the sentiment based on the input text:
   - `Positive`
   - `Neutral`
   - `Negative`

## 📁 Project Structure

```
SentiToolKit/
├── converter.py                 
├── converter1.py
├── dataExtractor.py             
├── tensor_model.py              
├── usage.py                    
├── json/                        
│   ├── backup.json              
│   ├── negative_reviews.json    
│   ├── neutral_reviews.json     
│   ├── positive_reviews.json    
│   └── train.json               
├── SentiAnalyzer/               
│   ├── __init__.py              
│   ├── Main_tensor_model.py     
│   ├── SentiToolKit.keras       
│   └── tokenizer.pkl            
├── tests/                       
├── text/                        
├── .env                         
├── .gitignore                   
├── LICENSE                      
├── MANIFEST.in                  
├── pyproject.toml               
├── README.md                    
├── SentiToolKit.keras           
├── setup.py                     
└── tokenizer.pkl                

```

## 📄 License

This project is licensed under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3,. See the [LICENSE](LICENSE) file for details.

## 💡 Future Improvements

- Add support for additional languages.
- Fine-tune the pre-trained model for domain-specific tasks.

## 👥 Contributing

Contributions are welcome! If you’d like to contribute to SentiToolKit, feel free to fork the repository and submit a pull request.

1. Fork the repo.
2. Create your feature branch
3. Commit your changes 
4. Push to the branch 
5. Open a pull request.

## 📬 Contact

- Author: [Niall Dcunha](mailto:dcunhaniall@gmail.com)
- GitHub: [https://github.com/Niall1985](https://github.com/Niall1985)
