Metadata-Version: 2.4
Name: ml-lab-ext
Version: 1.0.1
Summary: CLI tool to print ML Lab program code from your notebook
License: MIT
Keywords: ml,lab,notebook,cli
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ml-lab-ext

Print ML Lab program code directly in your terminal.

## Install

```bash
pip install ml-lab-ext
```

Or from the downloaded `.whl` / source:

```bash
pip install ml_lab_ext-1.0.0-py3-none-any.whl
# or
pip install .
```

## Usage

```bash
ml-ext 1      # Print Program 1
ml-ext 5      # Print Program 5
ml-ext 10     # Print Program 10
```

Programs available: **1 – 10**

| # | Topic |
|---|-------|
| 1 | EDA — California Housing (distributions & outliers) |
| 2 | Correlation matrix & pair plots |
| 3 | PCA on Iris dataset |
| 4 | Find-S algorithm |
| 5 | K-Nearest Neighbours (from scratch) |
| 6 | Locally Weighted Regression |
| 7 | Linear & Polynomial Regression |
| 8 | Decision Tree — Wisconsin Cancer |
| 9 | Naïve Bayes — Olivetti Faces |
| 10 | K-Means Clustering |
