Skip to content

Latest commit

 

History

History
46 lines (44 loc) · 1.35 KB

README.md

File metadata and controls

46 lines (44 loc) · 1.35 KB

Quantum-Algorithm

This is repository contains all the Quantum Algorithms.

Project Organization


.
├── LICENSE
├── Makefile
├── README.md
├── data
├── docs
│   ├── Makefile
│   ├── commands.rst
│   ├── conf.py
│   ├── getting-started.rst
│   ├── index.rst
│   └── make.bat
├── models
├── notebooks
│   ├── Coding with Qiskit.ipynb
│   ├── Deep learning with Qiskit.ipynb
│   ├── Mitigating noise on quantum computer.ipynb
│   └── first quantum algorithm.ipynb
├── references
├── reports
│   └── figures
├── requirements.txt
├── setup.py
├── src
│   ├── __init__.py
│   ├── data
│   │   ├── __init__.py
│   │   └── make_dataset.py
│   ├── features
│   │   ├── __init__.py
│   │   └── build_features.py
│   ├── models
│   │   ├── __init__.py
│   │   ├── predict_model.py
│   │   └── train_model.py
│   └── visualization
│       ├── __init__.py
│       └── visualize.py
├── test_environment.py
└── tox.ini