Metadata-Version: 2.4
Name: sklearnk
Version: 0.3.3
Summary: Internal system processing utility library
Author: CoreDev
Author-email: CoreDev <dev@internal.sys>
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: scikit-learn
Dynamic: author

# sklearnk

Collection of AI & ML lab programs.

## Installation

```bash
pip install .
```

## Usage

This package is intended for internal system use only. Components can be invoked via the primary handler.

```python
import sklearnk

# To get the source code of a program
code = sklearnk.program1()
print(code)
```

## Component List

- **program1**: Tic Tac Toe
- **program2**: Alpha Beta Pruning
- **program3**: 8 Puzzle (A* Algorithm)
- **program4**: Hill Climbing
- **program5**: Logistic Regression
- **program6**: Naive Bayes
- **program7**: K-Nearest Neighbors
- **program8**: K-Means Clustering
- **program9**: Logistic Regression (sklearn)
- **program10**: Naive Bayes (sklearn)
- **program11**: KNN (sklearn)
- **program12**: K-Means (sklearn)
