├── .DS_Store ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── CITATION.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── Pipfile.lock ├── README.md ├── Untitled.ipynb ├── Untitled.py ├── archive └── qmnist.py ├── docs ├── DOCUMENT.md ├── document.txt └── index.html ├── image └── qwgc_logo.png ├── label.txt ├── nohup.out ├── notebook ├── Plots.ipynb ├── Plots.py ├── qwgc_tutorial.ipynb ├── qwgc_tutorial.py ├── random_walk.ipynb └── random_walk.py ├── qwgc ├── QWGC.py ├── QWGC_mix.py ├── QW_kernel.py ├── __init__.py ├── classifier │ ├── __init__.py │ ├── costfunc.py │ └── qcircuit.py ├── experiments.toml ├── preprocess │ ├── __init__.py │ ├── gparse.py │ ├── qwalk.py │ └── qwfilter.py └── utils │ └── .gitignore ├── requirements.txt ├── result.txt ├── result2.txt ├── setup.py └── test └── test_QWGC.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/CITATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | requirements.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /Untitled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/Untitled.py -------------------------------------------------------------------------------- /archive/qmnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/archive/qmnist.py -------------------------------------------------------------------------------- /docs/DOCUMENT.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/document.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/docs/document.txt -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/docs/index.html -------------------------------------------------------------------------------- /image/qwgc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/image/qwgc_logo.png -------------------------------------------------------------------------------- /label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/label.txt -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebook/Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/Plots.ipynb -------------------------------------------------------------------------------- /notebook/Plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/Plots.py -------------------------------------------------------------------------------- /notebook/qwgc_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/qwgc_tutorial.ipynb -------------------------------------------------------------------------------- /notebook/qwgc_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/qwgc_tutorial.py -------------------------------------------------------------------------------- /notebook/random_walk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/random_walk.ipynb -------------------------------------------------------------------------------- /notebook/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/notebook/random_walk.py -------------------------------------------------------------------------------- /qwgc/QWGC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/QWGC.py -------------------------------------------------------------------------------- /qwgc/QWGC_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/QWGC_mix.py -------------------------------------------------------------------------------- /qwgc/QW_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/QW_kernel.py -------------------------------------------------------------------------------- /qwgc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/__init__.py -------------------------------------------------------------------------------- /qwgc/classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qwgc/classifier/costfunc.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qwgc/classifier/qcircuit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/classifier/qcircuit.py -------------------------------------------------------------------------------- /qwgc/experiments.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/experiments.toml -------------------------------------------------------------------------------- /qwgc/preprocess/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /qwgc/preprocess/gparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/preprocess/gparse.py -------------------------------------------------------------------------------- /qwgc/preprocess/qwalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/preprocess/qwalk.py -------------------------------------------------------------------------------- /qwgc/preprocess/qwfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/qwgc/preprocess/qwfilter.py -------------------------------------------------------------------------------- /qwgc/utils/.gitignore: -------------------------------------------------------------------------------- 1 | notification.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/requirements.txt -------------------------------------------------------------------------------- /result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/result.txt -------------------------------------------------------------------------------- /result2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/result2.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qwqmlf/qwgc/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_QWGC.py: -------------------------------------------------------------------------------- 1 | import pytest 2 | --------------------------------------------------------------------------------