Skip to content

Added Entanglement Concentration Dataset for 3 and 4 qubits for Benchmarking Binary Classifiers #915

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .pylintdict
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ arg
argmax
args
armijo
arrasmith
arxiv
asmatrix
aspuru
Expand All @@ -39,6 +40,8 @@ barkoutsos
batchsize
bayes
bayesian
beckey
benchmarked
benchmarking
bergholm
bfgs
Expand All @@ -63,6 +66,7 @@ carleo
carlo
cbit
centroid
cerezo
chernoff
choi
chuang
Expand Down Expand Up @@ -188,6 +192,7 @@ gellmann
generalised
getter
getters
gigena
gilliam
giuseppe
globals
Expand Down Expand Up @@ -253,6 +258,7 @@ izaac
izz
jac
jacobian
jl
johnson
jm
jonathan
Expand Down Expand Up @@ -357,6 +363,7 @@ nonlocal
nosignatures
np
ns
ntangled
num
numpy
nxd
Expand Down Expand Up @@ -398,7 +405,9 @@ pearson
pedro
pegasos
peruzzo
physrevlett
pixelated
pj
platt
polyfit
postprocess
Expand Down Expand Up @@ -490,6 +499,7 @@ satisfiability
satyen
sbplx
scalability
schatzki
schroediger
schroedinger
schrödinger
Expand All @@ -499,6 +509,9 @@ scipy
sdg
seealso
semidefinite
sep
seperate
seperable
serializable
shalev
shanno
Expand Down
16 changes: 8 additions & 8 deletions qiskit_machine_learning/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This code is part of a Qiskit project.
#
# (C) Copyright IBM 2019, 2024.
# (C) Copyright IBM 2019, 2025.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
Expand All @@ -14,23 +14,23 @@
Datasets (:mod:`qiskit_machine_learning.datasets`)
==================================================

A set of sample datasets to test machine learning algorithms.
A collection of synthetic datasets used to test and benchmark machine-learning
algorithms implemented in Qiskit Machine Learning.

.. currentmodule:: qiskit_machine_learning.datasets

Datasets
--------
Synthetic dataset generators
----------------------------

.. autosummary::
:toctree: ../stubs/
:nosignatures:

ad_hoc_data

entanglement_concentration_data
"""

from .ad_hoc import ad_hoc_data
from .entanglement_concentration import entanglement_concentration_data

__all__ = [
"ad_hoc_data",
]
__all__ = ["ad_hoc_data", "entanglement_concentration_data"]
Loading