Skip to main content

QXMT is a experiment management tool for quantum computing and quantum machine learning.

Project description

MIT License PyPI - Python Version PyPI version Document CI/CD Downloads

Documentation: qyusu.github.io


QXMT (Quantum Experiment Management Tool) is an open-source tool designed for managing experiments in quantum machine learning. Its primary focus is on minimizing the cost of managing experiments and ensuring reproducibility. To reduce costs, QXMT aims to minimize the amount of implementation code needed for experiment management, allowing developers and researchers to focus on implementing new experiments. For reproducibility, QXMT manages experimental configurations via configuration files, enabling not only the original developers but also collaborators to easily reproduce the same results without significant additional effort.

QXMT includes a variety of datasets, machine learning models, and visualization methods to support experiment management. By using these components together, users can avoid the need to develop entire workflows from scratch while also ensuring that experiments can be evaluated under consistent conditions. These default features will continue to be expanded in future updates.

Limitation

QXMT is a newly released tool, and its features are currently limited. We are currently developing with the assumption of usage in PennyLane. PennyLane allows the use of simulators from other quantum libraries as plugins. Please refer to the documentation for details on how to use them. Additionally, as of now, support for real quantum hardware is limited to IBMQ and Amazon Braket.

Even if your environment is not listed, you can still manage experiments by implementing according to the interfaces provided by QXMT. For details on how to implement these interfaces, please refer to the documentation.

Installation

QXMT is tested and supported on 64-bit systems. You can install QXMT with Python's pip package manager:

pip install qxmt

When installing QXMT, you have the option to enable the LLM functionality. By default, it is not installed. By enabling the LLM feature, you can automatically generate experiment summaries based on code differences. If needed, please install it using the following command:

pip install qxmt[llm]

Tool Overview

QXMT manages experiments in the following folder structure.

<your_project>
├── data
├── configs
│   ├── config_1.yaml
│   ├──   ⋮
│   └── config_n.yaml
└── experiments
    ├── <your_experiment_1>
       ├── experiment.json
       ├── run_1
          ├── config.yaml
          ├── shots.h5
          └── model.pkl
       ├── run_2
       ├──          └── run_n
           └── <your_experiment_n>

Keywords

  • data: Contains the raw data used in the experiments.
  • configs: Holds YAML files that define the configurations for each experiment run.
  • experiments: Contains the results of the experiments.
    • A dedicated folder is automatically created for each experiment, based on the name provided when the experiment is initialized.
    • Each experiment folder includes an experiment.json file and subfolders that manage the individual runs of the experiment.

Getting Started

1. Start new experiment

import qxmt

# initialize experiment setting
experiment = qxmt.Experiment(
    name="operation_check",  # set your experiment name
    desc="operation check of experiment package",  # set your experiment description
    auto_gen_mode=False,  # if True, each experimental description is automatically generated by LLM
).init()

# run experiment. each experiment defined in config file or instance.
# see documentation for details on instance mode
# run from config
artifact, result = experiment.run(config_source="configs/qkernel_models/template-openml-classification.yaml")

# get instance of each experiment artifact
dataset = artifact.dataset
model = artifact.model

# output result
# result table convert to pandas dataframe
experiment.runs_to_dataframe()

# visualization (Below are some of the features. See documentation for details.)
model.plot_train_test_kernel_matrix(dataset.X_train, dataset.X_test, n_jobs=5)

2. Load existing experiment

# load existing experiment from json file
experiment = qxmt.Experiment().load_experiment(
    "experiments/operation_check/experiment.json")

# reproduction target run artifact
reproduction_model = experiment.reproduce(run_id=1)

# run new experiment
artifact, result = experiment.run(config_source="configs/qkernel_models/template-openml-classification.yaml")

# output result
experiment.runs_to_dataframe()

Contributing

We happily welcome contributions to QXMT. For details on how to contribute, please refer to our Contribution Guide.

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

qxmt-0.5.10.tar.gz (90.7 kB view details)

Uploaded Source

Built Distribution

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

qxmt-0.5.10-py3-none-any.whl (136.6 kB view details)

Uploaded Python 3

File details

Details for the file qxmt-0.5.10.tar.gz.

File metadata

  • Download URL: qxmt-0.5.10.tar.gz
  • Upload date:
  • Size: 90.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/23.6.0

File hashes

Hashes for qxmt-0.5.10.tar.gz
Algorithm Hash digest
SHA256 a6d1da4d7bfbf493d58eb2af9131c9d68e38482ec99f3b17bc231fe7598e6559
MD5 e46426b7a2aca4fde5dfcc76b3c37124
BLAKE2b-256 4ec0226c0ba303a78a526531c94d9664b9f3d9075da58a9099cf420bed7da770

See more details on using hashes here.

File details

Details for the file qxmt-0.5.10-py3-none-any.whl.

File metadata

  • Download URL: qxmt-0.5.10-py3-none-any.whl
  • Upload date:
  • Size: 136.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.13.0 Darwin/23.6.0

File hashes

Hashes for qxmt-0.5.10-py3-none-any.whl
Algorithm Hash digest
SHA256 1cc8ab66097f0e99a13706bc1bcdeee8ea4bd727bcc5a2926aa0c92e856a6432
MD5 c597946bd7aaba5417fb6eb398716b53
BLAKE2b-256 0fd441985d28b0d6ac032ea6bfba52a7a48c5c1041afff8db09630e0774a82f5

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