Metadata-Version: 2.4
Name: ml-pronum
Version: 0.1.2
Summary: A collection of 10 ML programs
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ML ProNum Package

A professional collection of 10 Machine Learning and Algorithmic programs for students and developers.

## Installation

```bash
pip install ml-pronum
```

## Usage

To generate a clean Python file for a specific program, run:

```bash
python -m ml_programs <number>
```

*(Alternatively, if your PATH is set up, you can use: `ml-prog <number>`)*

### Example:
```bash
python -m ml_programs 1
```

This will:
1. Automatically download any required libraries (like `scikit-learn` or `tensorflow`).
2. Automatically download any required datasets (like `heart.csv`).
3. Create a clean file named `program_1.py` and print the full source code in your terminal.

### To Run the Generated Program:
```bash
python program_1.py
```

## Available Programs
- **1**: DFS (Depth First Search)
- **2**: Naive Bayes Classifier
- **3**: Bayesian Network (Heart Disease)
- **4**: Linear Regression
- **5**: Decision Tree Classifier
- **6**: SVM (Support Vector Machine)
- **7**: Bagging & Voting Classifiers
- **8**: K-Means & DBSCAN Clustering
- **9**: Neural Network (Keras)
- **10**: Find-S Algorithm
