Skip to main content

NexGML — Next Generation Machine Learning (educational ML utilities)

Project description

PyPI version License: MIT

NexGML (Next Generation Machine Learning)

NexGML (Next Generation Machine Learning) is a custom Machine Learning utility package built for educational and research purposes, emphasizing code transparency and high performance with efficient python implementation.

Key Features & Technology Stack

  • Modular Helpers: Separates complex logic into focused helper modules (ForLinear, ForTree, Indexing, Metrics, Guardians) for easy customization.
  • Sparse Data Ready: Full support for scipy.sparse matrices (CSR/CSC) for memory efficiency.

Installation

pip install nexgml

1. Classifiers (The Models)

The primary model is the Gradient Supported Intense Classifier (GSIC).

from nexgml.gradient_supported import IntenseClassifier
import numpy as np

# Load data X, y...

model = IntenseClassifier(
    optimizer='adamw', 
    lr_scheduler='plateau', 
    batch_size=32, 
    penalty='elasticnet'
)
model.fit(X_train, y_train)

print(f"Final Training Loss: {model.loss_history[-1]:.6f}")

2. Regressors (The Models)

The primary model is the Gradient Supported Intense Regressor (GSIR).

from nexgml.gradient_supported import IntenseRegressor
import numpy as np

# Load data X, y...

model = IntenseClassifier(
    optimizer='adamw', 
    lr_scheduler='plateau', 
    batch_size=32, 
    penalty='elasticnet'
)
model.fit(X_train, y_train)

print(f"Final Training Loss: {model.loss_history[-1]:.6f}")

3. Helper Modules (Performance Backbone)

These modules contain the high-speed math used internally.

Module Purpose Example Usage
nexgml.amo.forlinear Linear Criteria. Activation/Loss functions (Softmax, CCE, RMSE). forlinear.softmax(logits)
nexgml.amo.fortree Tree Criteria. Impurity measures (Gini, Entropy, Friedman MSE). fortree.gini_impurity(labels)
nexgml.indexing Data Utilities. One-hot encoding, smart feature slicing (standard_indexing). indexing.standard_indexing(n_features, 'sqrt')
nexgml.metrics Model Metrics. Regressor and classifier models metrics computation (R^2, F1, Accuracy Score) accuracy_score(y_true, pred)
nexgml.guardians Numerical stability. Value clipping, invalid value detecting (safe_array, hasinf, hasnan) safe_array(array)

📝 Documentation & Exploration

This repository is dedicated to experimentation, learning, and personal research, primarily in the following fields:

  • 🤖 Artificial Intelligence and Machine Learning
  • 💻 Python development and performance optimization
  • 📖 Technical documentation and concept notes
  • 🥼 Designing and developing concepts, theories and hypotheses. Before finally forming its implementation

⚠️ This project is intended for exploration and learning purposes only.

If you find this repo helpful or interesting, feel free to fork, star, or open a pull request.
This is a learning space—no pressure, just passion! 😄

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nexgml-1.5.2.tar.gz (59.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nexgml-1.5.2-py3-none-any.whl (97.9 kB view details)

Uploaded Python 3

File details

Details for the file nexgml-1.5.2.tar.gz.

File metadata

  • Download URL: nexgml-1.5.2.tar.gz
  • Upload date:
  • Size: 59.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for nexgml-1.5.2.tar.gz
Algorithm Hash digest
SHA256 204d4d1cdd5300c3bc66370c8570b3cd24a4dd6008dd32a0c9dd21545f26f9a7
MD5 b16fdaf29a30b961cfc0c172abe6704b
BLAKE2b-256 ef0bcc843084882633f2ea51817e5a5c18a29737b262042d9fdda56c8e0986d5

See more details on using hashes here.

File details

Details for the file nexgml-1.5.2-py3-none-any.whl.

File metadata

  • Download URL: nexgml-1.5.2-py3-none-any.whl
  • Upload date:
  • Size: 97.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for nexgml-1.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b9fa60677604a33e74ace6a1e8964c26408196e3d1b6470eecaf18eda171cde7
MD5 4e8309c605713ceafd0a249efde356f5
BLAKE2b-256 16526d2d712549185ed6bc652db2810b007f1846600eeba52a9688b5b0052482

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page