A Python module for creating and managing AI models
Project description
Puppet AI
Puppet, yapay zeka modelleri oluşturmak, eğitmek ve yönetmek için tasarlanmış bir Python modülüdür. Kullanımı kolay bir arayüz sunarak makine öğrenimi modellerinin geliştirilmesini ve dağıtılmasını kolaylaştırır.
Özellikler
- Kolay model oluşturma ve yönetme
- Eğitim ve değerlendirme için kullanıcı dostu API'ler
- Model serileştirme ve yükleme desteği
- Genişletilebilir mimari
Kurulum
pip install -e .
Hızlı Başlangıç
from puppet import PuppetModel
# Özel model sınıfınızı oluşturun
class MyModel(PuppetModel):
def train(self, data, **kwargs):
# Eğitim mantığınızı buraya ekleyin
self.is_trained = True
return {"accuracy": 0.95}
def predict(self, input_data):
# Tahmin mantığınızı buraya ekleyin
return [0] * len(input_data)
# Modeli oluştur ve kullan
model = MyModel("my_awesome_model")
model.train(training_data)
predictions = model.predict(test_data)
Geliştirme
Geliştirme yapmak için gerekli bağımlılıkları yükleyin:
pip install -e ".[dev]"
Testleri çalıştırmak için:
pytest
Lisans
MIT
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 puppet_ai-0.1.0.tar.gz.
File metadata
- Download URL: puppet_ai-0.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e537e7c849b07f8ab48be1b2b315deba778db14bd79f84ceb9f8eab20cc3b559
|
|
| MD5 |
86c8c767dd133b97cd5ede89a08aad35
|
|
| BLAKE2b-256 |
1bcfd1d12b9b528958b4fd00243da0cce3010728a0825897fc1735ae133f40c0
|
File details
Details for the file puppet_ai-0.1.0-py3-none-any.whl.
File metadata
- Download URL: puppet_ai-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b60ce5df544075dd1f2dd017e29fa6212b0a374f82319ab5232721ec0040edd
|
|
| MD5 |
422bc724e95cd0a04f5b57f3ae54ad9d
|
|
| BLAKE2b-256 |
b8d20a99383b8b20222688b56fb5ef928d96de30e1b021ab66fa20ed52c4f699
|