LuminaNet: Pure Python Deep Learning Framework - Illuminate AI with Minimal Dependencies
Project description
LuminaNet 🌟
Illuminate Your AI Journey with Pure Python Deep Learning
LuminaNet adalah framework deep learning pure Python yang dirancang untuk edukasi dan production dengan dependencies minimal. Hanya menggunakan NumPy, SciPy, NLTK, dan Sastrawi.
🎯 Why LuminaNet?
| Feature | LuminaNet | Others |
|---|---|---|
| Dependencies | 🟢 4 libraries | 🔴 10+ libraries |
| Termux Support | 🟢 Perfect | 🔴 Limited |
| Pure Python | 🟢 100% | 🟡 Mixed |
| Educational | 🟢 Excellent | 🟡 Good |
| Indonesian NLP | 🟢 Built-in | 🔴 None |
🚀 Quick Installation
From PyPI
pip install luminanet
From Source
git clone https://github.com/yourusername/luminanet.git
cd luminanet
pip install -e .
For Termux (Android)
pkg install python python-pip
pip install numpy scipy nltk sastrawi
pip install luminanet
💡 Quick Start
from luminanet import NeuralNetwork, Dense
import numpy as np
# XOR Example
X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])
y = np.array([[1, 0], [0, 1], [0, 1], [1, 0]])
model = NeuralNetwork("XORSolver")
model.add(Dense(4, activation='relu'))
model.add(Dense(2, activation='softmax'))
model.compile(optimizer='adam', loss='categorical_crossentropy')
model.train(X, y, epochs=1000)
print(model.predict(X))
🤝 Contributing
We welcome contributions! Please see our Contributing Guide for details.
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
👨💻 Author
Your Name - GitHub - your.email@example.com
🙏 Acknowledgments
- NumPy team untuk komputasi numerik
- NLTK team untuk NLP capabilities
- Sastrawi team untuk Indonesian language support
- Python community untuk ecosystem yang luar biasa
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file luminanet-1.0.0.tar.gz.
File metadata
- Download URL: luminanet-1.0.0.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f2dd1e2c4b739d420c0b2d00f8722766842a35090dc91139e2c113b33c01add
|
|
| MD5 |
a96e098c8b0fe82068a068f43d395d37
|
|
| BLAKE2b-256 |
f2876634fd98b2b57883c03a427ddae3c98e2856591b8772d243d414fd2f6388
|
File details
Details for the file luminanet-1.0.0-py3-none-any.whl.
File metadata
- Download URL: luminanet-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e3def0c29bec0f5052a62aaf4c0e1cae84c7e33182c24d362d04ee418508e30
|
|
| MD5 |
82fedf24e6299be70f7f6ce9b43d522f
|
|
| BLAKE2b-256 |
ac044f6be178728d15c700b1e327400329eb72f53f81dd00930fc58dc36d3eb9
|