Metadata-Version: 2.4
Name: nlpkwords
Version: 0.1.0
Summary: A package containing AI/ML codes
Home-page: https://github.com/nOTpROGRAMMERr/nlpkwords
Author: Rish Dias
Author-email: rishrdias672004@gmail.com
Keywords: nlp,machine learning,artificial intelligence,education
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
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: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=1.3.0
Requires-Dist: nltk>=3.6.0
Requires-Dist: textblob>=0.15.3
Requires-Dist: scikit-learn>=0.24.0
Requires-Dist: numpy>=1.20.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NLPKWords

A Python package containing implementations of various AI/ML algorithms and NLP techniques for educational purposes.

## Features

- **NLP Processing**
  - Tokenization
  - Lemmatization
  - Bag of Words
  - TF-IDF
  - One-Hot Encoding

- **Neural Networks**
  - Sigmoid Activation
  - ReLU Activation
  - Tanh Activation
  - Simple MLP Implementation

- **Graph Algorithms**
  - BFS (Breadth-First Search)
  - DFS (Depth-First Search)
  - A* Search Algorithm
  - Best-First Search

- **Fuzzy Logic**
  - Fuzzy Set Operations
  - Complement Operations
  - Union and Intersection

- **Game Theory**
  - Nim Game Implementation

## Installation

```bash
pip install nlpkwords
```

## Usage

### NLP Processing
```python
from nlpkwords import tokenization, lemmatization

# Tokenization
tokens = tokenization.tokenize("Your text here")

# Lemmatization
lemmas = lemmatization.lemmatize("Your text here")
```

### Neural Networks
```python
from nlpkwords import sigmoid, relu, tanh

# Using different activation functions
output = sigmoid.forward(input_data)
output = relu.forward(input_data)
output = tanh.forward(input_data)
```

### Graph Algorithms
```python
from nlpkwords import bfs, dfs_recursive

# BFS Traversal
bfs.traverse(graph, start_node)

# DFS Traversal
dfs_recursive.traverse(graph, start_node)
```

## Requirements

- Python >= 3.6
- pandas >= 1.3.0
- nltk >= 3.6.0
- textblob >= 0.15.3
- scikit-learn >= 0.24.0
- numpy >= 1.20.0

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## Author

Rish Dias - rishrdias672004@gmail.com

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request. 
