Skip to content

Feat: Add graceful import handling for QML frameworks #37

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 1 commit 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
15 changes: 11 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
# Core Python dependencies for qml-benchmarks
# QML Frameworks (PennyLane, TFQ, TorchQuantum) and their base
# ML libraries (PyTorch, TensorFlow) should be installed separately
# following their respective documentation due to version complexities.

numpy~=1.23
scikit-learn~=1.3
jax~=0.4
optax~=0.1
flax~=0.7
matplotlib~=3.8
pandas~=2.0
# pandas~=2.0 # Removed duplicate/older constraint
seaborn~=0.12
pyyaml~=6.0
pennyLane~=0.34
# pennyLane~=0.34 # Removed - Install separately
scipy~=1.11
pandas~=2.2
numpyro~=0.14.0
pandas~=2.2 # Kept the later version constraint
numpyro~=0.14.0
# Add other core utils like tqdm if needed by the scripts
tqdm
Loading