The tutorial of converters needs to explain how solutions are interpreted
See original GitHub issueWhat is the expected enhancement?
The tutorial of converters explains how we apply convert
only.
But, it is also important how we interpret solutions from the converted problem to the original problem.
Moreover, we need to explain that users don’t need to use converters manually in most cases and the algorithms apply converters properly.
https://qiskit.org/documentation/optimization/tutorials/02_converters_for_quadratic_programs.html
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Analogue to Digital Converter (ADC) Basics
Electronics Tutorials about the analogue to digital converter, or ADC, which perform the conversion of analogue signals into a digital code.
Read more >Digital to Analog Converters - Tutorialspoint
A Digital to Analog Converter (DAC) converts a digital input signal into an analog output signal. The digital signal is represented with a...
Read more >Unit Conversion the Easy Way (Dimensional Analysis)
This is a whiteboard animation tutorial of one step and two step dimensional analysis (aka factor label method, aka unit factor method) for ......
Read more >Converting Units With Conversion Factors - Metric System ...
This metric system review video tutorial provides an overview / review of how to convert from one unit to another using a technique...
Read more >DC to DC Buck Converter Tutorial & Diagram - Analog Devices
A basic boost configuration is depicted in Figure 5. Assuming that the switch has been open for a long time and that the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can work on it if you wish. I suggest checking out the guide first and investigate the details of
interpret
.Somewhat related, it would also be very nice if the documentation explained any special considerations to consider when choosing the order in which to apply multiple converters. For instance, in the constructor to
QuadraticProgramToQubo
:https://github.com/Qiskit/qiskit-optimization/blob/d3bcf30941010068dc89031bb0a2cd5bc1835b7c/qiskit_optimization/converters/quadratic_program_to_qubo.py#L48-L56
Is there any particular reason that
IntegerToBinary
is beforeLinearEqualityToPenalty
yet is afterLinearInequalityToPenalty
andInequalityToEquality
?(Ideally, there should also be a comment at that location in the code to explain why the above order makes sense there.)