Skip to main content

An open-source machine learning library for research and production, offering unified tools across deep learning, NLP, computer vision, reinforcement learning, and predictive analytics.

Project description

MindForge ML – Hypertension Anomaly Detection

MindForge is an open-source ML library offering simple, consistent, and extensible tools for building and experimenting with models. Starting with unsupervised learning and anomaly detection, it aims to expand into deep learning, NLP, and predictive analytics, making ML more accessible, modular, and production-ready.

mindforge provides simple unsupervised ML tools for anomaly detection, clustering, and visualization. The core component is an AutoEncoder wrapped in Unsupervisedmodel, with utilities for clustering (KMeans), dimensionality reduction (PCA/t-SNE), and visualization.


🚀 Model (from mindforge_ml.unsupervised.model)

Importing the Model

from mindforge_ml.unsupervised import AutoEncoder

Importing the Model

from mindforge_ml.unsupervised.model import Unsupervisedmodel

Training

model = Unsupervisedmodel(input_dim=X.shape[1])
model.fit(X_scaled, epochs=20, batch_size=32)

🔑 Core Methods

1. transform(X) → Latent Features

  • Input: Scaled data X
  • Why scaled? Scaling ensures features with larger magnitudes don’t dominate training.
  • What it does: Encodes the data into a compressed latent representation (low-dimensional).
  • Use case: Great for clustering or dimensionality reduction.
latent = model.transform(X_scaled)

2. reconstruct(X) → Reconstructed Data

  • Input: Latent features
  • Why latent? The decoder learns to rebuild the original input from compressed representations.
  • What it does: Produces a reconstruction close to the original scaled input.
reconstructed = model.reconstruct(X_scaled)

3. anomaly_scores(X) → Reconstruction Errors

  • Input: Scaled data X
  • Why scaled? Because reconstruction error depends on feature magnitudes; scaling avoids bias.
  • What it does: Calculates per-sample mean squared error (original vs reconstruction).
  • Use case: High scores indicate anomalies (e.g., hypertension cases).
scores = model.anomaly_scores(X_scaled)

4. Save / Load Model

# Save model
model.save("hypertension_model.pth")

# Load model
model.load("hypertension_model.pth")

🔧 Utils (from mindforge_ml.utils)

Utility functions help prepare data, cluster, reduce dimensions, and detect anomalies.


1. scale_data(X)

Standardizes features by removing the mean and scaling to unit variance.

  • Why? Autoencoders, PCA, and clustering methods are sensitive to feature magnitudes. Scaling prevents one feature from dominating.
  • What it returns: Numpy array of scaled values.
from mindforge_ml.utils import scale_data
X_scaled = scale_data(X)

2. cluster_kmeans(X, n_clusters=3, random_state=42)

Clusters data using KMeans.

  • Input:

    • Usually latent features from the model (model.transform(X_scaled)).

    • Can also take scaled raw data or reconstructed data depending on the use case.

      • Latent features → clustering compressed representations (recommended).
      • Scaled input → clustering original data (baseline).
      • Reconstructed data → clustering the autoencoder’s “understanding” of the data.
  • n_clusters: Number of groups to form (default=3).

  • random_state: Ensures reproducibility.

clusters = cluster_kmeans(latent, n_clusters=2)

3. reduce_pca(X, n_components=2)

Dimensionality reduction using Principal Component Analysis (PCA).

  • n_components:

    • 2 (default) → for easy 2D visualization.
    • 3 → for 3D visualization.
    • Higher numbers (10, 50, …) → for preprocessing before clustering.
  • Input: Typically latent features, but any scaled data can be reduced.

X_pca = reduce_pca(latent, n_components=2)

4. reduce_tsne(X, n_components=2, random_state=42, perplexity=30, lr=200)

Dimensionality reduction using t-SNE (t-distributed stochastic neighbor embedding).

  • Parameters:

    • n_components: Output dimensions (2D or 3D).
    • perplexity: Approximate number of nearest neighbors. Default = 30.
    • learning_rate (lr): Step size; default = 200.
  • Input: Usually latent features, since t-SNE works best on compressed, meaningful data.

  • Considerations:

    • t-SNE is more computationally expensive than PCA.
    • Use PCA first to reduce dimensions (e.g., 50) before t-SNE if the dataset is large.
X_tsne = reduce_tsne(latent, n_components=2, perplexity=30)

5. detect_anomalies(errors, threshold=None)

Identifies anomalies based on reconstruction error.

  • errors: Output of model.anomaly_scores(X_scaled).

  • threshold:

    • If None: threshold = mean + 2 * std (default heuristic).
    • You can set your own cutoff depending on your domain.
  • Returns:

    • anomalies: Boolean mask (True = anomaly).
    • threshold: Value used for detection.
anomalies, threshold = detect_anomalies(scores)

📊 Visualization (from mindforge_ml.visualization)

This module provides functions to visualize training progress, clusters, and anomaly detection.


1. plot_losses(train_losses, val_losses=None)

Plots training (and optionally validation) loss over epochs.

  • Inputs:

    • train_losses: List of training loss values per epoch.
    • val_losses: (Optional) List of validation losses per epoch.
from mindforge_ml.visualization import plot_losses

plot_losses(train_losses, val_losses)

✅ Helps monitor overfitting (when validation diverges from training).


2. plot_clusters(X_2d, clusters, method="PCA", cmap="viridis")

Visualizes clusters in 2D space.

  • Inputs:

    • X_2d: Data reduced to 2D (via reduce_pca or reduce_tsne).
    • clusters: Cluster labels (from cluster_kmeans).
    • method: String label for plot title (“PCA” or “t-SNE”).
    • cmap: Colormap (default = "viridis").
from mindforge_ml.visualization import plot_clusters

X_pca = reduce_pca(latent, n_components=2)
clusters = cluster_kmeans(latent, n_clusters=3)
plot_clusters(X_pca, clusters, method="PCA")

💡 Works with both PCA and t-SNE outputs — just set method accordingly.


3. plot_anomalies(errors, anomalies, threshold)

Visualizes the reconstruction error distribution and highlights anomalies.

  • Inputs:

    • errors: Reconstruction errors (from model.anomaly_scores).
    • anomalies: Boolean mask (True = anomaly). Optional — can be passed as None.
    • threshold: Cutoff value for anomaly detection.
  • Behavior:

    • Plots error histogram.
    • Draws a red vertical line for threshold.
    • If anomalies is provided, highlights them in orange.
from mindforge_ml.visualization import plot_anomalies

errors = model.anomaly_scores(X_scaled)
anomalies, threshold = detect_anomalies(errors)
plot_anomalies(errors, anomalies, threshold)

📌 Note:

  • You should always scale your input before training (scale_data).
  • Visualization is most meaningful when applied to latent features and anomaly scores.

GET DEMO DATASET FOR USAGE

from mindforge_ml.datasets.loader import load_hypertension_data

df = load_hypertension_data() print(df.head())

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

MindForge Transformer Model

🚀 Features

  • Unified API for building ML models
  • NLP utilities for tokenization and sequence-to-sequence tasks
  • Visualization tools to track training metrics (loss, accuracy)
  • Supports CPU and GPU with automatic device selection
  • Extensible modules for datasets, utils, and supervised learning

📦 Installation

pip install mindforge-ml

📂 Package Structure

MindForge modules are organized into sub-packages for clarity:

from mindforge_ml.datasets.loader import seq2seqdataset
from mindforge_ml.utils import tokenize, smart_tokenizer, ml_vocab_size, pad_token_id
from mindforge_ml.visualization import plot_losses, plot_accuracy
from mindforge_ml.supervised.model import MFTransformerSeq2Seq
  • datasets.loader → dataset utilities (e.g., seq2seqdataset)
  • utils → tokenization helpers, vocab size, padding utilities
  • visualization → plotting training loss and accuracy
  • supervised.model → supervised models (e.g., custom transformer MFTransformerSeq2Seq)

🛠️ Usage Example

1. Import Dependencies

import torch
from transformers import AutoTokenizer

from mindforge_ml.datasets.loader import seq2seqdataset
from mindforge_ml.utils import tokenize, smart_tokenizer, ml_vocab_size, pad_token_id
from mindforge_ml.visualization import plot_losses, plot_accuracy
from mindforge_ml.supervised.model import MFTransformerSeq2Seq

2. Load Tokenizer and Data

tokenizer = AutoTokenizer.from_pretrained("t5-base")

# Example dataset (pairs of input/output text)
queries = ["What is a boy?", "Translate English to French: Hello world"]
targets = ["A male child", "Bonjour le monde"]

# Convert to tokenized tensors
input_ids, attention_mask, labels = seq2seqdataset(queries, targets, tokenizer)

3. Initialize Model

device = "cuda" if torch.cuda.is_available() else "cpu"
model = MFTransformerSeq2Seq(vocab_size=ml_vocab_size(), device=device)

4. Train Model

losses = model.fit(input_ids, attention_mask, labels, epochs=10, batch_size=2)

# Visualize training progress
plot_losses(losses)

5. Make Predictions

query = "What is a boy?"
prediction = model.predict(query, max_len=20)
print("Prediction:", prediction)

6. Visualize Accuracy

# If accuracy tracking is enabled during training
accuracies = [0.45, 0.52, 0.63, 0.71, 0.80]  # example
plot_accuracy(accuracies)

⚡ Roadmap

Planned features for upcoming releases:

  • 🔹 Computer Vision (CNNs, image datasets, augmentation)
  • 🔹 Reinforcement Learning (agents, environments)
  • 🔹 Advanced NLP (transformer variants, embeddings, pretraining)
  • 🔹 Time Series & Predictive Analytics
  • 🔹 Model Deployment & Export

📜 License

MindForge is released under the MIT License, encouraging open collaboration and community contributions.


🤝 Contributing

Contributions are welcome! Please submit issues, feature requests, or pull requests on GitHub.

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""''""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

MindForge-ML — Intent Classification

mindforge-ml provides a simple and extensible pipeline for Intent Classification using PyTorch and spaCy. With just a few lines, you can load datasets, train intent classifiers, and visualize predictions.


🚀 Installation

pip install mindforge-ml

📂 Dataset Format

Datasets should be JSON files containing a list of samples with:

  • intent: The input text
  • target: The corresponding class label

Example (intentdataset.json):

[
  {"intent": "How are you?", "target": "neutral"},
  {"intent": "Show me math tricks", "target": "educative"},
  {"intent": "That's stupid!", "target": "offensive"},
  {"intent": "Send me nudes", "target": "nudity"}
]

🛠 Usage

1. Prepare Dataset

from mindforge_ml.utils import intent_tensor_dataset

# Load dataset into PyTorch loaders + labels
train_loader, val_loader, idx2label = intent_tensor_dataset(
    "mindforge_ml/datasets/intentdataset.json", 
    batch_size=32, ndim=96
)
  • ndim=96 → uses spaCy en_core_web_sm vectors
  • ndim=300 → uses spaCy en_core_web_md vectors

2. Train the Classifier

import torch
from mindforge_ml.supervised.classifier.model import IntentClassifier

# Input dimension = size of vectors (96 or 300)
classifier = IntentClassifier(input_dim=96)

for X_train, y_train in train_loader:
    classifier.fit(X_train, y_train, X_val=None, y_val=None, epochs=50)

3. Make Predictions

prediction, probability = classifier.predict(X_input, idx2label)
print("Prediction:", prediction)
print("Probabilities:", probability)

4. Visualize Predictions

from mindforge_ml.visualization import plot_prediction

plot_prediction(prediction, probability)

Prediction Plot Example


5. Plot Training Curves

from mindforge_ml.visualization import plot_accuracy, plot_losses

plot_losses(classifier.train_losses, classifier.val_losses)
plot_accuracy(classifier.train_accuracies, classifier.val_accuracies)

📦 Saving and Loading Models

classifier.save("intent_model.pth")
classifier.load("intent_model.pth")

✨ Features

  • Automatic dataset handling (intent_tensor_dataset)

  • Train/test split with stratification

  • Flexible vector dimensions (sm = 96, md = 300)

  • Ready-to-use PyTorch classifier

  • Visualization utilities for:

    • Predictions
    • Accuracy curves
    • Loss curves

🔮 Roadmap

  • Support for transformer embeddings (BERT, DistilBERT, etc.)
  • Hyperparameter tuning utilities
  • Pretrained intent models for quick inference

📜 License

MIT License © 2025 Perfect Aimers Enterprise


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

mindforge_ml-0.1.9.tar.gz (13.7 kB view details)

Uploaded Source

Built Distribution

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

mindforge_ml-0.1.9-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file mindforge_ml-0.1.9.tar.gz.

File metadata

  • Download URL: mindforge_ml-0.1.9.tar.gz
  • Upload date:
  • Size: 13.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.9

File hashes

Hashes for mindforge_ml-0.1.9.tar.gz
Algorithm Hash digest
SHA256 8a5a09f24d082183a80e0abe046589446fcdec767be377389544874e1cf79f9d
MD5 966daeec2140c8b484fb2a6307d4307f
BLAKE2b-256 4f6d994ba88353891f9de507845f7e7dfdf3e40d3cd9b8c094ee53c00688dae3

See more details on using hashes here.

File details

Details for the file mindforge_ml-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: mindforge_ml-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.9

File hashes

Hashes for mindforge_ml-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 9be5349da85f52b44a0544c9996c4756ee1d9e5ebfb186d20c589de3e8165d37
MD5 26315bc46e304e69c8779a9e2d265b54
BLAKE2b-256 ec71b85c4808624f0e57672cf301c4ed04a28136413e29135a8646b64ca34f94

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