├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Hybrid_jobs_for_community_detection.ipynb ├── LICENSE ├── Notebook_QBSolv_community_detection.ipynb ├── README.md ├── image └── Karate_DwaveQBSolv_4comm_modu0.4198.png ├── plots ├── .DS_Store └── whitepaper.mplstyle ├── requirements.txt └── src ├── .DS_Store ├── graph_community.py ├── hybrid_job_community_detection.py ├── qbsolv_community.py ├── qubo_community.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Hybrid_jobs_for_community_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/Hybrid_jobs_for_community_detection.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /Notebook_QBSolv_community_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/Notebook_QBSolv_community_detection.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/README.md -------------------------------------------------------------------------------- /image/Karate_DwaveQBSolv_4comm_modu0.4198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/image/Karate_DwaveQBSolv_4comm_modu0.4198.png -------------------------------------------------------------------------------- /plots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/plots/.DS_Store -------------------------------------------------------------------------------- /plots/whitepaper.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/plots/whitepaper.mplstyle -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/graph_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/graph_community.py -------------------------------------------------------------------------------- /src/hybrid_job_community_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/hybrid_job_community_detection.py -------------------------------------------------------------------------------- /src/qbsolv_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/qbsolv_community.py -------------------------------------------------------------------------------- /src/qubo_community.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/qubo_community.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-braket-community-detection/HEAD/src/utils.py --------------------------------------------------------------------------------