"Orquestra's library with optimization routines and interfaces"
Project description
orquestra-opt
What is it?
orquestra-opt
is a library with core functionalities for optimizing cost functions developed by Zapata for our Orquestra platform.
orquestra-opt
provides:
- interfaces for implementing ansatzes including qaoa and qcbm.
- optimizers and cost functions tailored to opt
- misc functions such as grouping, qaoa interpolation, and estimators
Installation
Even though it's intended to be used with Orquestra, orquestra-opt
can be also used as a standalone Python module.
For a basic install, you just need to run pip install -e .
from the main directory.
If you need to make use of optimizers from qiskit or solve qubo problems, then you should instead run pip install -e '.[qiskit]'
or pip install -e '.[qubo]'
respectively. If you need both, you should run pip install -e '.[all]'
Usage
Here's an example of how to use methods from orquestra-opt
to solve a simple maximum cut problem.
from orquestra.opt.problems import MaxCut
import networkx as nx
def orquestra_opt_example_function()
graph = nx.complete_graph(4)
value, solutions = MaxCut().solve_by_exhaustive_search(graph)
return solutions
Development and Contribution
You can find the development guidelines in the orquestra-quantum
repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file orquestra-opt-0.10.0.tar.gz
.
File metadata
- Download URL: orquestra-opt-0.10.0.tar.gz
- Upload date:
- Size: 72.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f70bb13b1147336ae587ff4eba3b58264812125f9bb714cb48772bae9da3e92d |
|
MD5 | ddc26e16fa4ff3a4c2d9e475a4af19ac |
|
BLAKE2b-256 | dac33feebf512c0c1c87df10d038ae7086c22128bf4a309a7cb18f9f976ccf0c |