Metadata-Version: 2.4
Name: gptperoz
Version: 0.2.0
Summary: Train AI in 3 lines - The simplest PyTorch alternative
Home-page: https://github.com/APerson091/AL
Author: APerson091
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

AL - Alchemy Learning Framework

Train AI in 3 lines. No PhD required.

AL is a lightweight alternative to PyTorch that makes AI accessible to everyone. It packs GPT, transformers, autograd, and GPU support into a single 100KB file with only NumPy as a dependency.

```python
import al
ai = al.quick_train("conversations.json")
print(ai.chat("Hello!"))
```

---

Why AL Over PyTorch?

PyTorch is powerful but complex. AL strips away the complexity while keeping the power:

· 3 lines vs 200 lines to train a GPT model
· 100KB vs 800MB install size
· 5 minutes vs 2 weeks to learn
· Runs on phones (Termux/Android)
· Same features: autograd, GPU, transformers, AMP

---

What Can AL Do?

· Train chatbots from JSON conversations
· Generate text with GPT-style models
· Save/load models in compressed .llk format
· Auto-detect GPU (CUDA, MPS) or run on CPU
· Mixed precision training for 2x speed
· Everything PyTorch does - just simpler

---

Who Is AL For?

· Students learning AI concepts
· Developers prototyping quickly
· Hobbyists building weekend projects
· Mobile devs running AI on-device
· Anyone tired of complex frameworks

Also
how do we install it 
very simple 
pip install gptperoz==0.1.0

---

The Philosophy

AI should be fun, not frustrating. AL proves that powerful models don't need complicated code. One file. One dependency. Infinite possibilities.

AL - Because training AI shouldn't require a PhD.
