Metadata-Version: 2.4
Name: datamorphx
Version: 0.1.0
Summary: Smart text augmentation for NLP and LLM fine-tuning.
Home-page: https://github.com/Yesha05/datamorph
Author: Yesha Doshi
Author-email: yeshadoshi81@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# datamorphx

[![PyPI version](https://img.shields.io/pypi/v/datamorphx.svg)](https://pypi.org/project/datamorphx/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
![Python](https://img.shields.io/badge/python-3.9%2B-blue)

### Smart text augmentation for NLP and fine-tuning

**datamorphx** helps expand your text datasets with meaningful variations — think of it as a lightweight text blender for model training or prompt tuning.

---

### 📦 Installation

```bash
pip install datamorphx

from datamorphx import Augmentor

augmentor = Augmentor()
results = augmentor.expand(["I can't do this."])
print(results)

