├── .gitignore ├── .idea ├── .gitignore ├── MIMO检测程序.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Dataset.py ├── DetNet.py ├── DetNetDemod.py ├── DetNetPIC.py ├── DetNetPIC2.py ├── DetNetSIC.py ├── DetNetSIC2.py ├── DetNetSIC3.py ├── Detector.py ├── MMNet.py ├── MMNetiid.py ├── OAMPNet.py ├── OAMPNet2.py ├── Readme.md ├── bug1.py ├── drawfigure.py ├── figures ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.eps ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.jpg ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.eps ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.jpg ├── Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.eps ├── Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.jpg ├── Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.eps ├── Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.jpg ├── Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.eps ├── Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.jpg ├── Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.eps ├── Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.jpg ├── Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.eps ├── Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.jpg ├── Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.eps ├── Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.jpg ├── Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.eps ├── Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.jpg ├── Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.eps ├── Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.jpg ├── Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.eps └── Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.jpg ├── loss_all.npy ├── loss_all_DetNetSIC.npy ├── main.py ├── main_DetNetSIC2_test.py ├── main_DetNetSIC3_test.py ├── main_DetNet_test.py ├── main_MMNet_test.py ├── main_MMNetiid_test.py ├── results ├── Nr16_Nt16_modQAM_16 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020201232.npy ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.npy ├── Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.npy ├── Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.npy ├── Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.npy ├── Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.npy ├── Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.npy ├── Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.npy ├── Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.npy ├── Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.npy ├── Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.npy └── Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.npy ├── test.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/MIMO检测程序.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.idea/MIMO检测程序.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/Dataset.py -------------------------------------------------------------------------------- /DetNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNet.py -------------------------------------------------------------------------------- /DetNetDemod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetDemod.py -------------------------------------------------------------------------------- /DetNetPIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetPIC.py -------------------------------------------------------------------------------- /DetNetPIC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetPIC2.py -------------------------------------------------------------------------------- /DetNetSIC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetSIC.py -------------------------------------------------------------------------------- /DetNetSIC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetSIC2.py -------------------------------------------------------------------------------- /DetNetSIC3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/DetNetSIC3.py -------------------------------------------------------------------------------- /Detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/Detector.py -------------------------------------------------------------------------------- /MMNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/MMNet.py -------------------------------------------------------------------------------- /MMNetiid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/MMNetiid.py -------------------------------------------------------------------------------- /OAMPNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/OAMPNet.py -------------------------------------------------------------------------------- /OAMPNet2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/OAMPNet2.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/Readme.md -------------------------------------------------------------------------------- /bug1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/bug1.py -------------------------------------------------------------------------------- /drawfigure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/drawfigure.py -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.eps -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.jpg -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.eps -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.jpg -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.eps -------------------------------------------------------------------------------- /figures/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.jpg -------------------------------------------------------------------------------- /figures/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.eps -------------------------------------------------------------------------------- /figures/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.jpg -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.eps -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.jpg -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.eps -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.jpg -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.eps -------------------------------------------------------------------------------- /figures/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.jpg -------------------------------------------------------------------------------- /figures/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.eps -------------------------------------------------------------------------------- /figures/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.jpg -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.eps -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.jpg -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.eps -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.jpg -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.eps -------------------------------------------------------------------------------- /figures/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/figures/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.jpg -------------------------------------------------------------------------------- /loss_all.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/loss_all.npy -------------------------------------------------------------------------------- /loss_all_DetNetSIC.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/loss_all_DetNetSIC.npy -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main.py -------------------------------------------------------------------------------- /main_DetNetSIC2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main_DetNetSIC2_test.py -------------------------------------------------------------------------------- /main_DetNetSIC3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main_DetNetSIC3_test.py -------------------------------------------------------------------------------- /main_DetNet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main_DetNet_test.py -------------------------------------------------------------------------------- /main_MMNet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main_MMNet_test.py -------------------------------------------------------------------------------- /main_MMNetiid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/main_MMNetiid_test.py -------------------------------------------------------------------------------- /results/Nr16_Nt16_modQAM_16 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020201232.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr16_Nt16_modQAM_16 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020201232.npy -------------------------------------------------------------------------------- /results/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020204110.npy -------------------------------------------------------------------------------- /results/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr16_Nt16_modQAM_16 _SNR0_35_train_batchsize500_maxEpoch1000_Layer10_20191020205025.npy -------------------------------------------------------------------------------- /results/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr16_Nt16_modQAM_4 _SNR0_15_train_batchsize500_maxEpoch10000_Layer10_20191020111629.npy -------------------------------------------------------------------------------- /results/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr16_Nt8_modQAM_4 _SNR0_11_train_batchsize500_maxEpoch1000_Layer10_20191020154508.npy -------------------------------------------------------------------------------- /results/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr4_Nt4_modQAM_16_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152544.npy -------------------------------------------------------------------------------- /results/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr4_Nt4_modQAM_16_SNR10_40_train_batchsize500_maxEpoch1000_Layer10_20191017143516.npy -------------------------------------------------------------------------------- /results/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr4_Nt4_modQAM_4_SNR0_35_train_batchsize500_maxEpoch10000_Layer10_20191018152208.npy -------------------------------------------------------------------------------- /results/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr64_Nt32_modQAM_16_SNR0_17_train_batchsize500_maxEpoch1000_Layer10_20191017105628.npy -------------------------------------------------------------------------------- /results/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr8_Nt8_modQAM_16 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018165157.npy -------------------------------------------------------------------------------- /results/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr8_Nt8_modQAM_16 _SNR15_40_train_batchsize500_maxEpoch10000_Layer10_20191018174401.npy -------------------------------------------------------------------------------- /results/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/results/Nr8_Nt8_modQAM_4 _SNR0_25_train_batchsize500_maxEpoch10000_Layer10_20191018155515.npy -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/test.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-zhanghao/MIMO_detection_algorithms/HEAD/utils.py --------------------------------------------------------------------------------