Skip to main content

Quantum-inspired algorithms for linear regression.

Project description

TNO Quantum: Machine Learning - Regression - Linear regression

TNO Quantum provides generic software components aimed at facilitating the development of quantum applications.

This package contains implementations of quantum-inspired algorithms for linear regression. It assumes a linear system of the form Ax=b, where A is the training data, x is a vector of unknown coefficients, and b is a vector of target values.

The class QILinearEstimator provides three methods: fit, predict_x, and predict_b. Once the fit method has been called using A and b, predict_x can be used to sample entries of the estimated coefficient vector. Alternatively, predict_b can be used to sample entries of predictions corresponding to (un)observed target values.

Limitations in (end-)use: the content of this software package may solely be used for applications that comply with international export control laws.

Documentation

Documentation of the linear regression package can be found [here](https://tno-
quantum.github.io/documentation/).

Install

Easily install the tno.quantum.ml.regression.linear_regression package using pip:

$ python -m pip install tno.quantum.ml.regression.linear_regression

Example

See example below. More examples can be found in the test directory.

import numpy as np
from sklearn.datasets import make_low_rank_matrix
from sklearn.model_selection import train_test_split
from tno.quantum.ml.regression.linear_regression import QILinearEstimator

rng = np.random.RandomState(7)

# Generate example data
m = 700
n = 100
A = make_low_rank_matrix(n_samples=m, n_features=n, effective_rank=3, random_state=rng, tail_strength=0.1)
x = rng.normal(0, 1, A.shape[1])
b = A @ x

# Create training and test datasets
A_train, A_test, b_train, b_test = train_test_split(A, b, test_size=0.3, random_state=rng)

# Fit quantum-inspired model
rank = 3
r = 100
c = 30
n_samples = 100  # for Monte Carlo methods
qi = QILinearEstimator(r, c, rank, n_samples, rng, sketcher_name="fkv")
qi = qi.fit(A_train, b_train)

# Sample from b (vector of predictions)
n_entries_b = 1000
sampled_indices_b, sampled_b = qi.predict_b(A_test, n_entries_b)

Credits

The algorithms found in this repository have been developed in collaboration with the Quantum Application Lab and have been based on:

This work was supported by the Dutch National Growth Fund (NGF), as part of the Quantum Delta NL programme.

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

Built Distribution

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

File details

Details for the file tno_quantum_ml_regression_linear_regression-1.0.0.tar.gz.

File metadata

File hashes

Hashes for tno_quantum_ml_regression_linear_regression-1.0.0.tar.gz
Algorithm Hash digest
SHA256 f32c41a3e16502494d64d59cab78b68cfe3bbf30bcf8f818e02a9f274a4be3f2
MD5 fe6ffd994a3ed6fab6602acea8c34d22
BLAKE2b-256 9b561a48942f3528bf336c857ced308860651de8de866f126c744e10e567ca43

See more details on using hashes here.

File details

Details for the file tno_quantum_ml_regression_linear_regression-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for tno_quantum_ml_regression_linear_regression-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8c6ee5a385c561d8555e90acfb82656c1695fec2db4a48647a4b7931075c194c
MD5 27a04b552954d1ed38889f347a6f59b6
BLAKE2b-256 4daa16ec32c115e3ee9474f6668db19038ebebc8f92605c825bbb96bb805b550

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