3
Posted by antoine •
dataset = FIDataset(dataset_type, ".aqora/data/data")
2
Posted by antoine •
torch v2.4.1
supports Python 3.8-3.12 on Windows (amd64 only), Linux (both amd64 and arm64), and macOS (arm64 only).$ python3 -V
Python 3.12.8
$ python3 -m platform
macOS-15.2-arm64-arm-64bit
uv python install X.Y.X
.2
Posted by antoine •
2
Posted by antoine •
aqora test
for now. We are currently working on integrating aqora test
with python notebook runners, but for now you will have to use aqora test
.ValueError: Found input variables with inconsistent numbers of samples: [1, 32]
sklearn
as part of their function check_consistent_length
. Have you tried to return different output in your notebook?2
Posted by antoine •
Hi there, I am getting below error when running the notebook.
aqora test
as expected? Or do you run it using Visual Studio Code?Anyways I tried to change that part and runaqora test
but got another error.
1
Posted by antoine •
pyproject.toml
in order to include all txt
files for example:[tool.setuptools.package-data]
# this is a list of glob patterns that will include matching files into your submission
submission = ["*.txt"]
2
Posted by antoine •
3
Posted by antoine •
2
Posted by antoine •
3
Posted by antoine • (edited)
classiq.synthesis(test_qmod)
, you'll want to use await classiq.synthesis_async(test_qmod)
, which is specifically designed for this asynchronous environment.asyncio
works in this context, I recommend reviewing this tutorial on the subject. This should help you better understand the underlying principles.