Skip to main content

Professional PyTorch library for 120+ metaheuristic optimization algorithms (Swarm, Evolutionary, Physics, Hybrid).

Project description

SwarmTorch 🐝🔥

The ultimate metaheuristic library for PyTorch

CI PyPI version Downloads License: MIT Python 3.10+


SwarmTorch is a high-performance, academic-grade library that brings 120+ metaheuristic algorithms to the PyTorch ecosystem. It enables gradient-free neural network training and state-of-the-art hyperparameter optimization (HPO) with a single, unified API.

InstallationKey FeaturesBenchmarks & ResearchUsageCitation


🚀 Key Features

  • 120+ Algorithms: Categorized into Swarm Intelligence, Evolutionary, Physics-based, Human-based, Bio-inspired, and Hybrids.
  • Gradient-Free Training: Optimize weights for non-differentiable or complex loss landscapes directly as a PyTorch Optimizer.
  • Deep HPO Integration: Replace Random/Grid search with intelligent, nature-inspired exploration.
  • Research Ready: Includes full benchmarking suites, raw experimental data, and publication-quality visualizations.
  • Highly Optimized: Leverages PyTorch's tensor operations for swarm-level parallelism.

📈 Benchmarks & Research

We conducted a massive-scale evaluation of 118 algorithms. Our research shows that 94.9% of SwarmTorch searchers outperform the standard Random Search baseline in HPO tasks.

Detailed performance analysis, convergence plots, and category reliability studies are available in the dedicated benchmarks document:

👉 View Full Research & Benchmarks Report (with Visualizations)


📦 Installation

Using pip:

pip install swarmtorch

Using uv (Recommended):

uv add swarmtorch

💻 Usage

Model Weight Optimization

import torch.nn as nn
from swarmtorch.swarm.model_training import PSO

model = nn.Sequential(nn.Linear(10, 64), nn.ReLU(), nn.Linear(64, 1))
optimizer = PSO(model.parameters(), swarm_size=30)

def closure():
    optimizer.zero_grad()
    loss = criterion(model(inputs), targets)
    return loss

optimizer.step(closure)

Hyperparameter Tuning

from swarmtorch.swarm.hyperparameter_tuning import PSOSearch

searcher = PSOSearch(
    model_fn=build_model,
    param_space={'lr': (0.001, 0.1), 'hidden_dim': [32, 64]},
    train_fn=train_fn,
    iterations=50
)
best_params = searcher.search()

🤝 Acknowledgments & References

This library was developed with reference to the pyMetaheuristic library. We are grateful for their contributions to the metaheuristic optimization community.

📝 Citation

@software{swarmtorch2026,
  author = {Halleluyah Darasimi Oludele},
  title = {SwarmTorch: A PyTorch Library for 120+ Metaheuristic Optimization Algorithms},
  year = {2026},
  url = {https://github.com/hallelx2/swarmtorch}
}

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

swarmtorch-0.1.5.tar.gz (27.5 kB view details)

Uploaded Source

Built Distribution

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

swarmtorch-0.1.5-py3-none-any.whl (50.1 kB view details)

Uploaded Python 3

File details

Details for the file swarmtorch-0.1.5.tar.gz.

File metadata

  • Download URL: swarmtorch-0.1.5.tar.gz
  • Upload date:
  • Size: 27.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for swarmtorch-0.1.5.tar.gz
Algorithm Hash digest
SHA256 7f18b47941b07666b1311674d349d6e4b1662373bb7ea07bce8464cefb053d7f
MD5 d6c00f924583e573c66698fce43baede
BLAKE2b-256 7ea41e37ce7bd82691aee90dff61cdcee37d32617a97e305af722b26fc7dc1f5

See more details on using hashes here.

File details

Details for the file swarmtorch-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: swarmtorch-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 50.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for swarmtorch-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 74c47c8414cdef9246957b708136777a31909a6a0761ce6903f01e8a8182d985
MD5 6be07bcf0c4823e1fcd949ba1fd2c46f
BLAKE2b-256 ac41d5068eff9e8cc58028c6d107b21e91b52ec4e0fd897640f7a11cb5818bbe

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