Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3dd9287
Add: H Molecule Generator
RishiNandha May 12, 2025
9da8481
Add Unittests
RishiNandha May 12, 2025
b83ef1d
Merge branch 'main' into VFF_PR
woodsp-ibm May 14, 2025
652b06e
lint and spell fixes
RishiNandha May 14, 2025
48f9961
Merge branch 'VFF_PR' of https://github.com/RishiNandha/qiskit-ml-con…
RishiNandha May 14, 2025
5b63ada
Reno and unittest fix
RishiNandha May 14, 2025
2f2ef60
Fixes related to make html
RishiNandha May 14, 2025
c212bff
Merge branch 'main' into VFF_PR
edoaltamura May 16, 2025
3b11e78
Merge branch 'main' into VFF_PR
edoaltamura May 16, 2025
6a24503
Update h_molecule_evolution.py
RishiNandha May 17, 2025
40b2540
Merge branch 'VFF_PR' of https://github.com/RishiNandha/qiskit-ml-con…
RishiNandha May 17, 2025
dcd0992
Made black
RishiNandha May 20, 2025
499939a
Update qiskit_machine_learning/datasets/h_molecule_evolution.py
woodsp-ibm May 20, 2025
cb31e1b
Update qiskit_machine_learning/datasets/h_molecule_evolution.py
woodsp-ibm May 20, 2025
7fb02df
Merge branch 'main' into VFF_PR
edoaltamura May 22, 2025
fa7613e
Merge branch 'main' into VFF_PR
edoaltamura May 29, 2025
07437ed
Merge branch 'main' into VFF_PR
woodsp-ibm May 30, 2025
8cabe62
Merge branch 'main' into VFF_PR
edoaltamura Jun 12, 2025
6344bca
Merge branch 'main' into VFF_PR
RishiNandha Jun 29, 2025
b8aedea
Merge branch 'main' into VFF_PR
edoaltamura Jul 10, 2025
a204987
Merge branch 'main' into VFF_PR
RishiNandha Jul 22, 2025
c2ae287
Merge branch 'main' into VFF_PR
OkuyanBoga Sep 2, 2025
04214c2
Merge branch 'main' into VFF_PR
edoaltamura Sep 3, 2025
27caa90
Update qiskit_machine_learning/datasets/__init__.py
edoaltamura Sep 3, 2025
4b0d169
Update qiskit_machine_learning/datasets/__init__.py
edoaltamura Sep 3, 2025
729f916
Merge branch 'main' into VFF_PR
OkuyanBoga Sep 3, 2025
f717d43
Merge branch 'main' into VFF_PR
RishiNandha Sep 5, 2025
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
25 changes: 24 additions & 1 deletion .pylintdict
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ borujeni
boyer
brassard
broyden
brisbane
callables
cambridge
cancelled
Expand All @@ -70,6 +71,8 @@ cerezo
chernoff
choi
chuang
cincio
cîrstoiu
clbit
clbits
clopper
Expand Down Expand Up @@ -170,14 +173,18 @@ fae
failsafe
farhi
farrokh
fermionic
fi
fidelities
fidelity
fidelityquantumkernel
filippo
filip
fitzpatrick
fletcher
fm
fmin
fock
formatter
fourier
frac
Expand Down Expand Up @@ -226,6 +233,7 @@ hermitian
hessians
hilbert
hoc
holmes
homebrew
hopkins
hoyer
Expand All @@ -235,6 +243,7 @@ hubbard
hyperparameter
hyperparameters
hyperplanes
ibm
idx
im
imag
Expand All @@ -247,6 +256,7 @@ instantiations
interatomic
interdependencies
ints
iosue
iprint
iqft
isaac
Expand All @@ -260,13 +270,16 @@ izaac
izz
jac
jacobian
jhp
jl
johnson
jm
jonathan
jones
jordan
july
jupyter
jw
kandala
kernelized
killoran
Expand All @@ -290,6 +303,7 @@ leq
lin
linalg
loglik
longterm
loglikelihood
lov
lr
Expand Down Expand Up @@ -335,6 +349,7 @@ msg
multiclass
multinomial
multioutput
muñoz
mxd
mypy
nabla
Expand Down Expand Up @@ -364,6 +379,7 @@ nones
nonlocal
nosignatures
np
npj
ns
ntangled
num
Expand Down Expand Up @@ -464,6 +480,7 @@ quantile
quantumcircuit
qubit
qubits
ramo
rangle
raymond
rbf
Expand Down Expand Up @@ -511,14 +528,15 @@ scipy
sdg
seealso
semidefinite
sep
sep
seperate
seperable
serializable
serializablemodelmixin
shalev
shanno
shende
shortterm
shwartz
sigmoid
sima
Expand All @@ -529,6 +547,7 @@ slsqp
sobol
softmax
soloviev
sornborger
spall
sparsearray
spedalieri
Expand Down Expand Up @@ -595,6 +614,7 @@ transpiling
trotterization
trotterized
tunable
uncertainities
uncompiled
uncompress
uncompute
Expand All @@ -603,6 +623,7 @@ univariate
uno
unscaled
unsymmetric
usecase
utf
utils
varadarajan
Expand All @@ -611,6 +632,7 @@ vatan
vec
vectorized
veeravalli
vff
vicente
vicentini
vigo
Expand All @@ -624,6 +646,7 @@ vx
vy
vz
wavefunction
wigner
wikipedia
wilhelm
williams
Expand Down
5 changes: 4 additions & 1 deletion qiskit_machine_learning/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@
:nosignatures:

ad_hoc_data
h_molecule_evolution_data
entanglement_concentration_data

"""

from .ad_hoc import ad_hoc_data
from .h_molecule_evolution import h_molecule_evolution_data
from .entanglement_concentration import entanglement_concentration_data

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