English | [简体中文](README_CN.md) # Paddle Quantum (量桨) - [Features](#features) - [Install](#install) - [Install PaddlePaddle](#install-paddlepaddle) - [Install Paddle Quantum](#install-paddle-quantum) - [Environment setup for Quantum Chemistry module](#environment_setup_for_quantum_chemistry_module) - [Run Example](#run-example) - [Introduction and developments](#introduction-and-developments) - [Quick start](#quick-start) - [Tutorials](#tutorials) - [API documentation](#api-documentation) - [Feedbacks](#feedbacks) - [Research with Paddle Quantum](#research-based-on-paddle-quantum) - [Frequently Asked Questions](#frequently-asked-questions) - [Copyright and License](#copyright-and-license) - [References](#references) [Paddle Quantum (量桨)](https://qml.baidu.com/) is the world's first cloud-integrated quantum machine learning platform based on Baidu PaddlePaddle. It supports the building and training of quantum neural networks, making PaddlePaddle the first deep learning framework in China. Paddle Quantum is feature-rich and easy to use. It provides comprehensive API documentation and tutorials help users get started right away.

Paddle Quantum aims at establishing a bridge between artificial intelligence (AI) and quantum computing (QC). It has been utilized for developing several quantum machine learning applications. With the PaddlePaddle deep learning platform empowering QC, Paddle Quantum provides strong support for scientific research community and developers in the field to easily develop QML applications. Moreover, it provides a learning platform for quantum computing enthusiasts. ## Features - Easy-to-use - Many online learning resources (Nearly 50 tutorials) - High efficiency in building QNN with various QNN templates - Automatic differentiation - Versatile - Multiple optimization tools and GPU mode - Simulation with 25+ qubits - Flexible noise models - Featured Toolkits - Toolboxes for Chemistry & Optimization - LOCCNet for distributed quantum information processing - Self-developed QML algorithms ## Install ### Install PaddlePaddle This dependency will be automatically satisfied when users install Paddle Quantum. Please refer to [PaddlePaddle](https://www.paddlepaddle.org.cn/install/quick)'s official installation and configuration page. This project requires PaddlePaddle 2.2.0 to 2.3.0. ### Install Paddle Quantum We recommend the following way of installing Paddle Quantum with `pip`, ```bash pip install paddle-quantum ``` or download all the files and finish the installation locally, ```bash git clone https://github.com/PaddlePaddle/quantum cd quantum pip install -e . ``` ### Environment setup for Quantum Chemistry module Currently, our `qchem` module uses `PySCF` as its backend to compute molecular integrals, so before executing quantum chemistry, we have to install this Python package. > It is recommended that `PySCF` is installed in a Python environment whose Python version >=3.6. We highly recommend you to install `PySCF` via conda. **MacOS/Linux** user can use the command: ```bash conda install -c pyscf pyscf ``` > NOTE: For **Windows** user, if your operating system is Windows10, you can install `PySCF` in Ubuntu subsystem provided by Windows 10's App Store. `PySCF` can't run directly in Windows, so we are working hard to develop more quantum chemistry backends. Our support for Windows will be improved in the coming release of Paddle Quantum. **Note:** Please refer to [PySCF](https://pyscf.org/install.html) for more download options. ### Run example Now, you can try to run a program to verify whether Paddle Quantum has been installed successfully. Here we take quantum approximate optimization algorithm (QAOA) as an example. ```bash cd paddle_quantum/QAOA/example python main.py ``` > For the introduction of QAOA, please refer to our [QAOA tutorial](./tutorials/combinatorial_optimization/QAOA_EN.ipynb). ### Breaking Change In version 2.2.0 of Paddle Quantum, we have made an incompatible upgrade to the code architecture, and the new version's structure and usage can be found in our [tutorials](https://qml.baidu.com/tutorials/overview.html), [API documentation](https://qml.baidu.com/api/introduction.html), and [the source code](https://github.com/PaddlePaddle/Quantum). Also, we support connecting to a real quantum computer via [QuLeaf](https://github.com/baidu/QCompute), using `paddle_quantum.set_backend('quleaf')` to select QuLeaf as the backend. ## Introduction and developments ### Quick start [Paddle Quantum Quick Start Manual](./introduction) is probably the best place to get started with Paddle Quantum. Currently, we support online reading and running the Jupyter Notebook locally. The manual includes the following contents: - Detailed installation tutorials for Paddle Quantum - Introduction to quantum computing and quantum neural networks (QNNs) - Introduction to Variational Quantum Algorithms (VQAs) - Introduction to Paddle Quantum - PaddlePaddle optimizer tutorial - Introduction to the quantum chemistry module in Paddle Quantum - How to train QNN with GPU ### Tutorials We provide tutorials covering quantum simulation, machine learning, combinatorial optimization, local operations and classical communication (LOCC), and other popular QML research topics. Each tutorial currently supports reading on our website and running Jupyter Notebooks locally. For interested developers, we recommend them to download Jupyter Notebooks and play around with it. Here is the tutorial list, - [Quantum Simulation](./tutorials/quantum_simulation) 1. [Building Molecular Hamiltonian](./tutorials/quantum_simulation/BuildingMolecule_EN.ipynb) 2. [Variational Quantum Eigensolver (VQE)](./tutorials/quantum_simulation/VQE_EN.ipynb) 3. [Subspace Search-Quantum Variational Quantum Eigensolver (SSVQE)](./tutorials/quantum_simulation/SSVQE_EN.ipynb) 4. [Variational Quantum State Diagonalization (VQSD)](./tutorials/quantum_simulation/VQSD_EN.ipynb) 5. [Gibbs State Preparation](./tutorials/quantum_simulation/GibbsState_EN.ipynb) 6. [The Classical Shadow of Unknown Quantum States](./tutorials/quantum_simulation/ClassicalShadow_Intro_EN.ipynb) 7. [Estimation of Quantum State Properties Based on the Classical Shadow](./tutorials/quantum_simulation/ClassicalShadow_Application_EN.ipynb) 8. [Hamiltonian Simulation with Product Formula](./tutorials/quantum_simulation/HamiltonianSimulation_EN.ipynb) 9. [Simulate the Spin Dynamics on a Heisenberg Chain](./tutorials/quantum_simulation/SimulateHeisenberg_EN.ipynb) 10. [Distributed Variational Quantum Eigensolver Based on Schmidt Decomposition](./tutorials/quantum_simulation/DistributedVQE_EN.ipynb) 11. [Quantum Signal Processing and Quantum Singular Value Transformation](./tutorials/quantum_simulation/QSP_and_QSVT_EN.ipynb) 12. [Hamiltonian Simulation with qDRIFT](./tutorials/quantum_simulation/QDRIFT_EN.ipynb) 13. [Quantum Phase Processing](./tutorials/quantum_simulation/QPP_EN.ipynb) 14. [Variational Quantum Metrology](./tutorials/quantum_simulation/VariationalQM_EN.ipynb) - [Machine Learning](./tutorials/machine_learning) 1. [Encoding Classical Data into Quantum States](./tutorials/machine_learning/DataEncoding_EN.ipynb) 2. [Quantum Classifier](./tutorials/machine_learning/QClassifier_EN.ipynb) 3. [Variational Shadow Quantum Learning (VSQL)](./tutorials/machine_learning/VSQL_EN.ipynb) 4. [Quantum Kernel Methods](./tutorials/machine_learning/QKernel_EN.ipynb) 5. [Quantum Autoencoder](./tutorials/machine_learning/QAutoencoder_EN.ipynb) 6. [Quantum GAN](./tutorials/machine_learning/QGAN_EN.ipynb) 7. [Variational Quantum Singular Value Decomposition (VQSVD)](./tutorials/machine_learning/VQSVD_EN.ipynb) 8. [Data Encoding Analysis](./tutorials/machine_learning/EncodingAnalysis_EN.ipynb) 9. [Quantum Neural Network Approximating Functions](./tutorials/machine_learning/QApproximating_EN.ipynb) 10. [Variational quantum amplitude estimation](./tutorials/machine_learning/VQAE_EN.ipynb) - [Combinatorial Optimization](./tutorials/combinatorial_optimization) 1. [Quantum Approximation Optimization Algorithm (QAOA)](./tutorials/combinatorial_optimization/QAOA_EN.ipynb) 2. [Solving Max-Cut Problem with QAOA](./tutorials/combinatorial_optimization/MAXCUT_EN.ipynb) 3. [Large-scale QAOA via Divide-and-Conquer](./tutorials/combinatorial_optimization/DC-QAOA_EN.ipynb) 4. [Travelling Salesman Problem](./tutorials/combinatorial_optimization/TSP_EN.ipynb) 5. [Quantum Finance Application on Arbitrage Opportunity Optimization](./tutorials/combinatorial_optimization/ArbitrageOpportunityOptimation_EN.ipynb) 6. [Quantum Finance Application on Portfolio Optimization](./tutorials/combinatorial_optimization/PortfolioOptimization_EN.ipynb) 7. [Quantum Finance Application on Portfolio Diversification](./tutorials/combinatorial_optimization/PortfolioDiversification_EN.ipynb) - [LOCC with QNN (LOCCNet)](./tutorials/locc) 1. [Local Operations and Classical Communication in QNN (LOCCNet)](./tutorials/locc/LOCCNET_Tutorial_EN.ipynb) 2. [Entanglement Distillation -- the BBPSSW protocol](./tutorials/locc/EntanglementDistillation_BBPSSW_EN.ipynb) 3. [Entanglement Distillation -- the DEJMPS protocol](./tutorials/locc/EntanglementDistillation_DEJMPS_EN.ipynb) 4. [Entanglement Distillation -- Protocol design with LOCCNet](./tutorials/locc/EntanglementDistillation_LOCCNET_EN.ipynb) 5. [Quantum Teleportation](./tutorials/locc/QuantumTeleportation_EN.ipynb) 6. [Quantum State Discrimination](./tutorials/locc/StateDiscrimination_EN.ipynb) - [QNN Research](./tutorials/qnn_research) 1. [The Barren Plateaus Phenomenon on Quantum Neural Networks (Barren Plateaus)](./tutorials/qnn_research/BarrenPlateaus_EN.ipynb) 2. [Noise Model and Quantum Channel](./tutorials/qnn_research/Noise_EN.ipynb) 3. [Expressibility of Quantum Neural Network](./tutorials/qnn_research/Expressibility_EN.ipynb) 4. [Variational Quantum Circuit Compiling](./tutorials/qnn_research/VQCC_EN.ipynb) 5. [Quantum Fisher Information](./tutorials/qnn_research/Fisher_EN.ipynb) 6. [VAns-Variable Ansatz](./tutorials/qnn_research/VAns_EN.ipynb) With the latest LOCCNet module, Paddle Quantum can efficiently simulate distributed quantum information processing tasks. Interested readers can start with this [tutorial on LOCCNet](./tutorials/locc/LOCCNET_Tutorial_EN.ipynb). In addition, Paddle Quantum supports QNN training on GPU. For users who want to get into more details, please check out the tutorial [Use Paddle Quantum on GPU](./introduction/PaddleQuantum_GPU_EN.ipynb). Moreover, Paddle Quantum could design robust quantum algorithms under noise. For more information, please see [Noise tutorial](./tutorials/qnn_research/Noise_EN.ipynb). In a recent update, the measurement-based quantum computation (MBQC) module has been added to Paddle Quantum. Unlike the conventional quantum circuit model, MBQC has its unique way of computing. Interested readers are welcomed to read our [tutorials](./tutorials/mbqc) on how to use the MBQC module and its use cases. ### API documentation For those who are looking for explanation on the python class and functions provided in Paddle Quantum, we refer to our [API documentation page](https://qml.baidu.com/api/introduction.html). > We, in particular, denote that the current docstring specified in source code **is written in simplified Chinese**, this will be updated in later versions. ## Feedbacks Users are encouraged to contact us through [GitHub Issues](https://github.com/PaddlePaddle/Quantum/issues) or email quantum@baidu.com with general questions, unfixed bugs, and potential improvements. We hope to make Paddle Quantum better together with the community! ## Research based on Paddle Quantum We also highly encourage developers to use Paddle Quantum as a research tool to develop novel QML algorithms. If your work uses Paddle Quantum, feel free to send us a notice via qml@baidu.com. We are always excited to hear that! Cite us with the following BibTeX: > @misc{Paddlequantum, > title = {{Paddle Quantum}}, > year = {2020}, > url = {https://github.com/PaddlePaddle/Quantum}, } So far, we have done several projects with the help of Paddle Quantum as a powerful QML development platform. [1] Wang, Youle, Guangxi Li, and Xin Wang. "Variational quantum Gibbs state preparation with a truncated Taylor series." Physical Review Applied 16.5 (2021): 054035. [[pdf](https://arxiv.org/pdf/2005.08797.pdf)] [2] Wang, Xin, Zhixin Song, and Youle Wang. "Variational quantum singular value decomposition." Quantum 5 (2021): 483. [[pdf](https://arxiv.org/pdf/2006.02336.pdf)] [3] Li, Guangxi, Zhixin Song, and Xin Wang. "VSQL: Variational Shadow Quantum Learning for Classification." Proceedings of the AAAI Conference on Artificial Intelligence. Vol. 35. No. 9. 2021. [[pdf]](https://arxiv.org/pdf/2012.08288.pdf) [4] Chen, Ranyiliu, et al. "Variational quantum algorithms for trace distance and fidelity estimation." Quantum Science and Technology (2021). [[pdf]](https://arxiv.org/pdf/2012.05768.pdf) [5] Wang, Kun, et al. "Detecting and quantifying entanglement on near-term quantum devices." arXiv preprint arXiv:2012.14311 (2020). [[pdf]](https://arxiv.org/pdf/2012.14311.pdf) [6] Zhao, Xuanqiang, et al. "Practical distributed quantum information processing with LOCCNet." npj Quantum Information 7.1 (2021): 1-7. [[pdf]](https://arxiv.org/pdf/2101.12190.pdf) [7] Cao, Chenfeng, and Xin Wang. "Noise-Assisted Quantum Autoencoder." Physical Review Applied 15.5 (2021): 054012. [[pdf]](https://journals.aps.org/prapplied/abstract/10.1103/PhysRevApplied.15.054012) ## Frequently Asked Questions 1. **Question:** What is quantum machine learning? What are the applications? **Answer:** Quantum machine learning (QML) is an interdisciplinary subject that combines quantum computing (QC) and machine learning (ML). On the one hand, QML utilizes existing artificial intelligence technology to break through the bottleneck of quantum computing research. On the other hand, QML uses the information processing advantages of quantum computing to promote the development of traditional artificial intelligence. QML is not only suitable for quantum chemical simulations (with Variational Quantum Eigensolver) and other quantum problems. It also help researchers to solve classical optimization problems including knapsack problem, traveling salesman problem, and Max-Cut problem through the Quantum Approximate Optimization Algorithm. 2. **Question:** I want to study QML, but I don't know much about quantum computing. Where should I start? **Answer:** *Quantum Computation and Quantum Information* by Nielsen & Chuang is the classic introductory textbook to QC. We recommend readers to study Chapter 1, 2, and 4 of this book first. These chapters introduce the basic concepts, provide solid mathematical and physical foundations, and discuss the quantum circuit model widely used in QC. Readers can also go through Paddle Quantum's quick start guide, which contains a brief introduction to QC and interactive examples. After building a general understanding of QC, readers can try some cutting-edge QML applications provided as tutorials in Paddle Quantum. 3. **Question:** Currently, there is no fault-tolerant large-scale quantum hardware. How can we develop quantum applications? **Answer:** The development of useful algorithms does not necessarily require a perfect hardware. The latter is more of an engineering problem. With Paddle Quantum, one can develop, simulate, and verify the validity of self-innovated quantum algorithms. Then, researchers can choose to implement these tested quantum algorithms in a small scale hardware and see the actual performance of it. Following this line of reasoning, we can prepare ourselves with many candidates of useful quantum algorithms before the age of matured quantum hardware. 4. **Question:** What are the advantages of Paddle Quantum? **Answer:** Paddle Quantum is an open-source QML toolkit based on Baidu PaddlePaddle. As the first open-source and industrial level deep learning platform in China, PaddlePaddle has the leading ML technology and rich functionality. With the support of PaddlePaddle, especially its dynamic computational graph mechanism, Paddle Quantum could easily train a QNN and with GPU acceleration. In addition, based on the high-performance quantum simulator developed by Institute for Quantum Computing (IQC) at Baidu, Paddle Quantum can simulate more than 20 qubits on personal laptops. Finally, Paddle Quantum provides many open-source QML tutorials for readers from different backgrounds. ## Copyright and License Paddle Quantum uses [Apache-2.0 license](LICENSE). ## References [1] [Quantum Computing - Wikipedia](https://en.wikipedia.org/wiki/Quantum_computing) [2] Nielsen, M. A. & Chuang, I. L. Quantum computation and quantum information. (2010). [3] Phillip Kaye, Laflamme, R. & Mosca, M. An Introduction to Quantum Computing. (2007). [4] [Biamonte, J. et al. Quantum machine learning. Nature 549, 195–202 (2017).](https://www.nature.com/articles/nature23474) [5] [Schuld, M., Sinayskiy, I. & Petruccione, F. An introduction to quantum machine learning. Contemp. Phys. 56, 172–185 (2015).](https://www.tandfonline.com/doi/abs/10.1080/00107514.2014.964942) [6] [Benedetti, M., Lloyd, E., Sack, S. & Fiorentini, M. Parameterized quantum circuits as machine learning models. Quantum Sci. Technol. 4, 043001 (2019).](https://iopscience.iop.org/article/10.1088/2058-9565/ab4eb5)