All Projects → Scinawa → quantumalgorithms.org

Scinawa / quantumalgorithms.org

Licence: other
This is the repository for https://quantumalgorithms.org

Programming Languages

TeX
3793 projects
CSS
56736 projects

Projects that are alternatives of or similar to quantumalgorithms.org

unitaryhack
Rules and information for the 2021 unitaryHACK event hosted by @unitaryfund
Stars: ✭ 16 (-76.81%)
Mutual labels:  quantum-machine-learning, unitaryhack
Pulser
Library for pulse-level/analog control of neutral atom devices. Emulator with QuTiP.
Stars: ✭ 55 (-20.29%)
Mutual labels:  unitaryhack
Quantum-Computing-Resources
This repository contains the best resources for learning practical quantum computing. This repository will be updated frequently.
Stars: ✭ 60 (-13.04%)
Mutual labels:  quantum-machine-learning
Quantum-Machine-Learning
This repository contains implementations of Quantum Machine Learning algorithms, feature maps, variational circuits and research papers.
Stars: ✭ 47 (-31.88%)
Mutual labels:  quantum-machine-learning
cusp cirq demo
Demonstration of CUSP algorithm using Cirq
Stars: ✭ 35 (-49.28%)
Mutual labels:  quantum-machine-learning
QuantumSpeech-QCNN
IEEE ICASSP 21 - Quantum Convolution Neural Networks for Speech Processing and Automatic Speech Recognition
Stars: ✭ 71 (+2.9%)
Mutual labels:  quantum-machine-learning
qram
Library for Q# implementing various qRAM proposals
Stars: ✭ 46 (-33.33%)
Mutual labels:  quantum-machine-learning
IBM-Quantum-QCE20-Tutorials
Repository of code notebooks for tutorials at IEEE Quantum Week (QCE20) https://qce.quantum.ieee.org/tutorials/
Stars: ✭ 38 (-44.93%)
Mutual labels:  quantum-machine-learning
QuAlgorithmZoo.jl
A curated implementation of quantum algorithms with Yao.jl
Stars: ✭ 78 (+13.04%)
Mutual labels:  quantum-machine-learning
QCompress-1
Quantum Autoencoder Implementation using Forest and OpenFermion
Stars: ✭ 20 (-71.01%)
Mutual labels:  quantum-machine-learning
launchpad
Resources to get started in Quantum Computing!
Stars: ✭ 21 (-69.57%)
Mutual labels:  quantum-machine-learning

quantumalgorithms.org

README

Unitary Fund

Program is an embodiment of an algorithm. Algorithms works on information Programs works on data. - Donald Knuth.

This is the repository for QuantumAlgorithms.org.

This webiste is meant to be a set of lecture notes for students in quantum algorithms and quantum machine learning. It will be updated regularly with new research material. The scope is to bridge the gap between introductory material in quantum computing and research-grade papers, standardize notation, and be an overfiew on the state of useful algorithms for quantum machine learning and information processing.

How to contribute:

The book is written in bookdown, an R-based extension of markdown (even if you don't need to know R at all, it's simply markdown with some latex). Download RStudio and make sure you can compile a book with bookdown on your computer. Once you have it, you can work on the book and submit a PR.

Feel free to submit a PR with improvements in

  • proofreading
  • checking and expanding steps in calculations,
  • pointing out sections are ambigious or hard to understand, or that can be explained better,
  • create and solve new exercise.

For major contributions (like new chapters or new content), drop us a line!

How to write an algorithm

The book has some algorithms that are rendered as latex algorithms with a package for writing pseudocode. These algorithms are rendered as pdfs, and successively these files are rendered as png via a python script. The text of the pseudocode of the algorithm is in the folder /algpseudocode/ When writing new algorithms, please use the template that you find there. You can obtain a .png, which can be included in the .Rmd files with a small caption. There are countless examples of algorithms included in the book, so you can copy that.

Style guide, tips&tricks.

  • Use \ket{} and \bra{} instead of |x\rangle
  • \begin{equation} and \end{equation} should be used throughout the whole book, as math books have all equation numbered.
  • Always put a citation with [@citationname] to theorems you are citing from papers.
  • Labels for equation equations in bookdown are documented in the bookdown documentation https://bookdown.org/yihui/bookdown/markdown-extensions-by-bookdown.html ( tldr; the way to number equation is the following: (#eq:raylight) )
  • Take the references from google scholar. Select that paper you want, go to cite, and use the biblatex paper. Be sure to include always the year of the document, becuase otherwise you will get an error when trying to compile the pdf version of the document.
  • Every time you compile, (and before doing the pull request) be sure to compile also the pdf version of the document. This becuase there are cases where the generation of the book in htlm succeed, but the pdf is failing.
  • We use runtime not run-time or run time.
  • no space between a dollar sign for equations $ and the first character of the formula (otherwise you get an error)
  • currently, it's not possible to put latex in the names of the theorems,lemma, definitions. (do we know how to do it?) For example in the definition of the parametereization of the function $\mu$, I had to use the greek letter μ...
  • itemize made with - should start and end with a newline
  • always use thm, lem, cor, in references: @ref(thm:qla).
  • Use the bash comand grep "\{lemma" * to have the list of all lemmas (or theorems) so after we can check if they are used correctly with @ref() and there are no wrong \ref{}.
  • If you need a fast way for translating citation from latex \cite{ciao} to markdown [@ciao], you can use \cite{(.*?)} -----> [@$1]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].