Skip to main content

A super-easy way to record, search and compare AI experiments.

Project description

Drop a star to support Aim ⭐ Join Aim discord community

An easy-to-use & supercharged open-source experiment tracker

Aim logs your training runs and any AI Metadata, enables a beautiful UI to compare, observe them and an API to query them programmatically.

Discord Server Twitter Follow Medium

Platform Support PyPI - Python Version PyPI Package License PyPI Downloads Issues



SEAMLESSLY INTEGRATES WITH:


TRUSTED BY ML TEAMS FROM:


AimStack offers enterprise support that's beyond core Aim. Contact via hello@aimstack.io e-mail.


AboutDemosEcosystemQuick StartExamplesDocumentationCommunityBlog


ℹ️ About

Aim is an open-source, self-hosted ML experiment tracking tool designed to handle 10,000s of training runs.

Aim provides a performant and beautiful UI for exploring and comparing training runs. Additionally, its SDK enables programmatic access to tracked metadata — perfect for automations and Jupyter Notebook analysis.

Aim's mission is to democratize AI dev tools 🎯


Log Metadata Across Your ML Pipeline 💾 Visualize & Compare Metadata via UI 📊
  • ML experiments and any metadata tracking
  • Integration with popular ML frameworks
  • Easy migration from other experiment trackers
  • Metadata visualization via Aim Explorers
  • Grouping and aggregation
  • Querying using Python expressions
Run ML Trainings Effectively ⚡ Organize Your Experiments 🗂️
  • System info and resource usage tracking
  • Real-time alerting on training progress
  • Logging and configurable notifications
  • Detailed run information for easy debugging
  • Centralized dashboard for holistic view
  • Runs grouping with tags and experiments

🎬 Demos

Check out live Aim demos NOW to see it in action.

Machine translation experiments lightweight-GAN experiments
Training logs of a neural translation model(from WMT'19 competition). Training logs of 'lightweight' GAN, proposed in ICLR 2021.
FastSpeech 2 experiments Simple MNIST
Training logs of Microsoft's "FastSpeech 2: Fast and High-Quality End-to-End Text to Speech". Simple MNIST training logs.

🌍 Ecosystem

Aim is not just an experiment tracker. It's a groundwork for an ecosystem. Check out the two most famous Aim-based tools.

aimlflow Aim-spaCy
aimlflow Aim-spaCy
Exploring MLflow experiments with a powerful UI an Aim-based spaCy experiment tracker

🏁 Quick start

Follow the steps below to get started with Aim.

1. Install Aim on your training environment

pip3 install aim

2. Integrate Aim with your code

from aim import Run

# Initialize a new run
run = Run()

# Log run parameters
run["hparams"] = {
    "learning_rate": 0.001,
    "batch_size": 32,
}

# Log metrics
for i in range(10):
    run.track(i, name='loss', step=i, context={ "subset":"train" })
    run.track(i, name='acc', step=i, context={ "subset":"train" })

See the full list of supported trackable objects(e.g. images, text, etc) here.

3. Run the training as usual and start Aim UI

aim up

Learn more

Migrate from other tools

Aim has built-in converters to easily migrate logs from other tools. These migrations cover the most common usage scenarios. In case of custom and complex scenarios you can use Aim SDK to implement your own conversion script.

Integrate Aim into an existing project

Aim easily integrates with a wide range of ML frameworks, providing built-in callbacks for most of them.

Query runs programmatically via SDK

Aim Python SDK empowers you to query and access any piece of tracked metadata with ease.

from aim import Repo

my_repo = Repo('/path/to/aim/repo')

query = "metric.name == 'loss'" # Example query

# Get collection of metrics
for run_metrics_collection in my_repo.query_metrics(query).iter_runs():
    for metric in run_metrics_collection:
        # Get run params
        params = metric.run[...]
        # Get metric values
        steps, metric_values = metric.values.sparse_numpy()
Set up a centralized tracking server

Aim remote tracking server allows running experiments in a multi-host environment and collect tracked data in a centralized location.

See the docs on how to set up the remote server.

Deploy Aim on kubernetes

Read the full documentation on aimstack.readthedocs.io 📖

🆚 Comparisons to familiar tools

TensorBoard vs Aim

Training run comparison

Order of magnitude faster training run comparison with Aim

  • The tracked params are first class citizens at Aim. You can search, group, aggregate via params - deeply explore all the tracked data (metrics, params, images) on the UI.
  • With tensorboard the users are forced to record those parameters in the training run name to be able to search and compare. This causes a super-tedius comparison experience and usability issues on the UI when there are many experiments and params. TensorBoard doesn't have features to group, aggregate the metrics

Scalability

  • Aim is built to handle 1000s of training runs - both on the backend and on the UI.
  • TensorBoard becomes really slow and hard to use when a few hundred training runs are queried / compared.

Beloved TB visualizations to be added on Aim

  • Embedding projector.
  • Neural network visualization.
MLflow vs Aim

MLFlow is an end-to-end ML Lifecycle tool. Aim is focused on training tracking. The main differences of Aim and MLflow are around the UI scalability and run comparison features.

Aim and MLflow are a perfect match - check out the aimlflow - the tool that enables Aim superpowers on Mlflow.

Run comparison

  • Aim treats tracked parameters as first-class citizens. Users can query runs, metrics, images and filter using the params.
  • MLFlow does have a search by tracked config, but there are no grouping, aggregation, subplotting by hyparparams and other comparison features available.

UI Scalability

  • Aim UI can handle several thousands of metrics at the same time smoothly with 1000s of steps. It may get shaky when you explore 1000s of metrics with 10000s of steps each. But we are constantly optimizing!
  • MLflow UI becomes slow to use when there are a few hundreds of runs.
Weights and Biases vs Aim

Hosted vs self-hosted

  • Weights and Biases is a hosted closed-source MLOps platform.
  • Aim is self-hosted, free and open-source experiment tracking tool.

🛣️ Roadmap

Detailed milestones

The Aim product roadmap :sparkle:

  • The Backlog contains the issues we are going to choose from and prioritize weekly
  • The issues are mainly prioritized by the highly-requested features

High-level roadmap

The high-level features we are going to work on the next few months:

In progress

  • Aim SDK low-level interface
  • Dashboards – customizable layouts with embedded explorers
  • Ergonomic UI kit
  • Text Explorer
Next-up

Aim UI

  • Runs management
    • Runs explorer – query and visualize runs data(images, audio, distributions, ...) in a central dashboard
  • Explorers
    • Distributions Explorer

SDK and Storage

  • Scalability
    • Smooth UI and SDK experience with over 10.000 runs
  • Runs management
    • CLI commands
      • Reporting - runs summary and run details in a CLI compatible format
      • Manipulations – copy, move, delete runs, params and sequences
  • Cloud storage support – store runs blob(e.g. images) data on the cloud
  • Artifact storage – store files, model checkpoints, and beyond

Integrations

  • ML Frameworks:
    • Shortlist: scikit-learn
  • Resource management tools
    • Shortlist: Kubeflow, Slurm
  • Workflow orchestration tools
Done
  • Live updates (Shipped: Oct 18 2021)
  • Images tracking and visualization (Start: Oct 18 2021, Shipped: Nov 19 2021)
  • Distributions tracking and visualization (Start: Nov 10 2021, Shipped: Dec 3 2021)
  • Jupyter integration (Start: Nov 18 2021, Shipped: Dec 3 2021)
  • Audio tracking and visualization (Start: Dec 6 2021, Shipped: Dec 17 2021)
  • Transcripts tracking and visualization (Start: Dec 6 2021, Shipped: Dec 17 2021)
  • Plotly integration (Start: Dec 1 2021, Shipped: Dec 17 2021)
  • Colab integration (Start: Nov 18 2021, Shipped: Dec 17 2021)
  • Centralized tracking server (Start: Oct 18 2021, Shipped: Jan 22 2022)
  • Tensorboard adaptor - visualize TensorBoard logs with Aim (Start: Dec 17 2021, Shipped: Feb 3 2022)
  • Track git info, env vars, CLI arguments, dependencies (Start: Jan 17 2022, Shipped: Feb 3 2022)
  • MLFlow adaptor (visualize MLflow logs with Aim) (Start: Feb 14 2022, Shipped: Feb 22 2022)
  • Activeloop Hub integration (Start: Feb 14 2022, Shipped: Feb 22 2022)
  • PyTorch-Ignite integration (Start: Feb 14 2022, Shipped: Feb 22 2022)
  • Run summary and overview info(system params, CLI args, git info, ...) (Start: Feb 14 2022, Shipped: Mar 9 2022)
  • Add DVC related metadata into aim run (Start: Mar 7 2022, Shipped: Mar 26 2022)
  • Ability to attach notes to Run from UI (Start: Mar 7 2022, Shipped: Apr 29 2022)
  • Fairseq integration (Start: Mar 27 2022, Shipped: Mar 29 2022)
  • LightGBM integration (Start: Apr 14 2022, Shipped: May 17 2022)
  • CatBoost integration (Start: Apr 20 2022, Shipped: May 17 2022)
  • Run execution details(display stdout/stderr logs) (Start: Apr 25 2022, Shipped: May 17 2022)
  • Long sequences(up to 5M of steps) support (Start: Apr 25 2022, Shipped: Jun 22 2022)
  • Figures Explorer (Start: Mar 1 2022, Shipped: Aug 21 2022)
  • Notify on stuck runs (Start: Jul 22 2022, Shipped: Aug 21 2022)
  • Integration with KerasTuner (Start: Aug 10 2022, Shipped: Aug 21 2022)
  • Integration with WandB (Start: Aug 15 2022, Shipped: Aug 21 2022)
  • Stable remote tracking server (Start: Jun 15 2022, Shipped: Aug 21 2022)
  • Integration with fast.ai (Start: Aug 22 2022, Shipped: Oct 6 2022)
  • Integration with MXNet (Start: Sep 20 2022, Shipped: Oct 6 2022)
  • Project overview page (Start: Sep 1 2022, Shipped: Oct 6 2022)
  • Remote tracking server scaling (Start: Sep 11 2022, Shipped: Nov 26 2022)
  • Integration with PaddlePaddle (Start: Oct 2 2022, Shipped: Nov 26 2022)
  • Integration with Optuna (Start: Oct 2 2022, Shipped: Nov 26 2022)
  • Audios Explorer (Start: Oct 30 2022, Shipped: Nov 26 2022)
  • Experiment page (Start: Nov 9 2022, Shipped: Nov 26 2022)
  • HuggingFace datasets (Start: Dec 29 2022, Feb 3 2023)

👥 Community

Aim README badge

Add Aim badge to your README, if you've enjoyed using Aim in your work:

Aim

[![Aim](https://img.shields.io/badge/powered%20by-Aim-%231473E6)](https://github.com/aimhubio/aim)

Cite Aim in your papers

In case you've found Aim helpful in your research journey, we'd be thrilled if you could acknowledge Aim's contribution:

@software{Arakelyan_Aim_2020,
  author = {Arakelyan, Gor and Soghomonyan, Gevorg and {The Aim team}},
  doi = {10.5281/zenodo.6536395},
  license = {Apache-2.0},
  month = {6},
  title = {{Aim}},
  url = {https://github.com/aimhubio/aim},
  version = {3.9.3},
  year = {2020}
}

Contributing to Aim

Considering contibuting to Aim? To get started, please take a moment to read the CONTRIBUTING.md guide.

Join Aim contributors by submitting your first pull request. Happy coding! 😊

Made with contrib.rocks.

More questions?

  1. Read the docs
  2. Open a feature request or report a bug
  3. Join Discord community server

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

aim-3.30.0.dev20250606.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

aim-3.30.0.dev20250606-cp312-cp312-manylinux_2_28_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

aim-3.30.0.dev20250606-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aim-3.30.0.dev20250606-cp312-cp312-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_28_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_24_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

aim-3.30.0.dev20250606-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aim-3.30.0.dev20250606-cp311-cp311-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_24_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

aim-3.30.0.dev20250606-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aim-3.30.0.dev20250606-cp310-cp310-macosx_10_14_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_28_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_24_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

aim-3.30.0.dev20250606-cp39-cp39-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aim-3.30.0.dev20250606-cp39-cp39-macosx_10_14_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_24_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

aim-3.30.0.dev20250606-cp38-cp38-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

aim-3.30.0.dev20250606-cp38-cp38-macosx_10_14_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

aim-3.30.0.dev20250606-cp37-cp37m-manylinux_2_24_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ x86-64

aim-3.30.0.dev20250606-cp37-cp37m-macosx_10_14_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

File details

Details for the file aim-3.30.0.dev20250606.tar.gz.

File metadata

  • Download URL: aim-3.30.0.dev20250606.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.4

File hashes

Hashes for aim-3.30.0.dev20250606.tar.gz
Algorithm Hash digest
SHA256 01c5dd0638145f9c68186c47ea1866b5ae73a42d9fc4c9a0c20294ef2bec1f22
MD5 f41e569afd21d11348ccab82c522f4fb
BLAKE2b-256 99192e8001a83f091faa876caa0f1279846ac9d54c55b4a964ef437683b88110

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17cec073f39d1281161848efc7142048fff4a6cdf74a15971e93bdae8a5f67f6
MD5 1caa6777138429f29009ea8c68d2053a
BLAKE2b-256 ba44f497c5f3c42ac123ecd12318c9f83cd660e014d873f09da413fc61811cc6

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d8041205b966e504b225a86d98af6e7e49e0c2e33106aa7cf07dbce67df8f7e
MD5 501ef8df70896c7165b2e789c1ffd8b0
BLAKE2b-256 cac9a89d862a1b7746a0624ff736dc3ede887f8b34a5432ab907427154658d4a

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3b9e4f44f9cc582e715d7943af2846a50225d06ff5005c3307698a3a47badfba
MD5 4072c18615e3cb44db4a8431e99d58ea
BLAKE2b-256 b1386a82e9c66344f9995cc8e91fd827e5c95f893ba0e383096e168b55c8a443

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2daeb59468bd3f1f378c31c9047c19f7c556741b16ff3136ca21f2fbca7b7ea
MD5 16cf473756dd8445a0db314cc7481658
BLAKE2b-256 c439b6b2bc5e62db40138cf020b78ce622b26ba15422e879f564dce444a6b1b1

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 16b4303f3cd2a71628060c3abbea09ef911110c1d986a28afb5b68b8bf15d81b
MD5 4e040e6fd2451726966d6f9bae39cc72
BLAKE2b-256 3b40b3b4628050a3514b9adb17e5562a1e308711917db41ab2bbe7261cdb915f

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9897f49a3450c95f8839133591d96e644119b941d530d1bdfc9756f27cf7cadc
MD5 34d24ad23862b875b8a2656c1825be9a
BLAKE2b-256 34fb8e246c7b17bcaa54779822d1c5285fa4727ae8245f2a8448a0a06e2145bf

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4fb834ea408f78f0ee273a8d4fde38ed963cb1fcc7d09787e7334f6444d9337
MD5 54b2f36968b54288269b02ab54b23e78
BLAKE2b-256 29702056f8fc984ac9e6ce637a1d88b6c9d522cc8e10ae44943b167f00d4bb64

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8c7c2a333ca9217a2e5bc3fcde3663ea874f5f590c45dd0eb3cfe65a682afaa2
MD5 c6c65c84f0cb66c255aeee318073c8a4
BLAKE2b-256 492ef73e6796c825d805994c30145ac3157b4a2cb01c25cee851969956778a0c

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f4c58b8b6eb0eab66015d44448e84c3a991195b023c8cd984b0da0848a01dce
MD5 81219ce67daf8b40db48cfeb36968360
BLAKE2b-256 b9707ba75c344d6c8395c5dc1492dbd1bc0adb9c4ef4b03a9644ea536728adab

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 4f4f5b99de8a232b0c6ab2aa0791b29fb7929f0839ddd5ded0aae195c512fe91
MD5 af446137d6ab2fedc3c5be9fef8e3298
BLAKE2b-256 9831dbcb4854c49fefe56492cdd5206e671eb73faed4ddba964c41646153ea05

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a9544588459b878a9453278927bb90de2db5730db748df6d38d69b4c9e84304
MD5 1df2d76d7e2f8ef5dc05eebe9b81e511
BLAKE2b-256 4262f1020aae73e473453bd0e52bad6273d333a8117ede3d99a52105bde9ecf2

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a9a783bf28b39e5d46cb596784d9113d9b976ba057d6eceb1c83851f83b1a7e
MD5 db07cf9303d2c92040d8534d3ba131d6
BLAKE2b-256 5cb35a550461529d2198408b65ec24cf3134960ab814a9e72f8a734d1ba43e87

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a485a04a530ab88a4470e8f5bb60fc7c87286bc7e9ac203151a391994e89532e
MD5 883130136595067514f07ff18b8a7ecb
BLAKE2b-256 eb7a5d0ae09c558cd966580de73bfbe32d2971be98186fd288a748cf5e25838e

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9d992e41b9e80a1839e806e107c0c500cab941b8bbc6844d90c8a713e3d74c9
MD5 125875e554bcb7fa91dc181612fdc52e
BLAKE2b-256 9b78bab6158cd6ccf0b67971721c20b10d992f829f42f6f2d2e882e1ad3ebfa5

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e75cac56043b1742e9c96fb84b9cf78fde535bf475a2e2ef5e190ecf5f505412
MD5 766d931acf283d33af7ff1bab22d212e
BLAKE2b-256 bd3081030ebf2281a55881a0c1070320d780de6b64620044175addc0ddeca056

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2503f7b35992db25f343d1e35bd973b906fa08a550bc0af1ef64ca5f76ef18b4
MD5 cd32160685976d3f54c10a3bb93a4b77
BLAKE2b-256 11e574a38839325ea468849e7e90299dc38ccf2ee516d6f7455c5a35af1b98ff

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0fc5c0c6699a03fe0cceca1af851aa9ee26cb20e4d19290cbcf47405f0d8c58
MD5 837cee1e60cee5bbe614494ff2c28dbe
BLAKE2b-256 41d85f26b188f5a89b5d7aac37b152f3541f0545d21bf0867fb33e00d97750d5

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 4655ef16101bba14df30b10b27ec9fc98f23a807d7887a199f8820c4001eae0e
MD5 153e5184ca90ebfcb0984c04e17f1cbe
BLAKE2b-256 857198d28b4d624b127b5ac311058dbe9f0982031a8ac751dab7ace97fa0950e

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be93682d5e437e358def2a7ea62480235b975617cbe099f6d014462f4ba25c13
MD5 a864ee04a8271c063f2f656c623a2260
BLAKE2b-256 bd91c66887c15b8f088f4acb3766b21b8abf3e5d48181c310b0abdb6c5340666

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 05731bd23d9e1a16915a57ae0c77d48be27dbb8f5392995dae555ea4fec26061
MD5 c4138813692725b9bc5faeb702d9d73a
BLAKE2b-256 356420b88bc6d975842071e4a5cae7f9399dd1d77ee4efe2f0b6f2198494bca7

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a03e1235d7769be33383aa12dd68e7921c46c08410d70244508ce4a42f0a97
MD5 da6c5bdb79308cc5e0fb396ab927e963
BLAKE2b-256 f256d9997122200481615fe1bfa888dbdf14fc9d4265c4184aeddb0f35ff0f7e

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 501bb4e7fc8e4749d38636c671141f8452db10db138865299d619e0f4806cea1
MD5 60278fb83550ed6c9963ed62d5a8e933
BLAKE2b-256 179d1ed649ac5403583aed1c9e46b217545d2a7816ad5ad4c9fceeb905137896

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e5b75f847100d1ad4d96f1ee302ce286779c89afd096799327b0697ea1978a18
MD5 191816eb35bf0584ed6ea321e65fb50f
BLAKE2b-256 054700f3e6f60343c89bd90c70a746b38a53649b81f7903cf5a8ba6c93505f4f

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp37-cp37m-manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 92ac27782b992741e6caacf23d72fc16343d72cbe688019efecee51f2ac9d6f6
MD5 8b0735e366909251af9bccb3a427faaf
BLAKE2b-256 da4fbeeab91b911b236153464e317217aca717829a2f79aabe8e1eefab58b7d2

See more details on using hashes here.

File details

Details for the file aim-3.30.0.dev20250606-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for aim-3.30.0.dev20250606-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7e530132e06076b8c1432ba4e2e7093c544cfa5f71ff32c25ec2f23175306c46
MD5 b55ab09c9ae3cc64e667f7bc58b688ac
BLAKE2b-256 8a10735627b5ae513fd7a4bb8c0b21f6bb10cf620e6e09028b32d5227e2cac36

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