├── Data_Generation_matlab ├── DeepMIMO_generator.m ├── Gan_Data │ └── Gan_0_dBIndoor2p4_64ant_32users_8pilot.mat ├── GenerateData_Main.m ├── RayTracing Scenarios │ └── Readme.txt ├── construct_DeepMIMO_channel.m ├── read_raytracing.m └── uniformPilotsGen.m ├── README.md └── cGAN_python ├── GAN ├── __pycache__ │ ├── cGANDiscriminator.cpython-37.pyc │ ├── cGANGenerator.cpython-37.pyc │ └── data_preprocess.cpython-37.pyc ├── cGANDiscriminator.py ├── cGANGenerator.py └── data_preprocess.py ├── Results ├── Eest_cGAN_1_0db_Indoor2p4_64ant_32users_8pilot.mat └── Eest_cGAN_2_0db_Indoor2p4_64ant_32users_8pilot.mat ├── generated_img ├── img_1.png └── img_2.png └── main_cGAN.py /Data_Generation_matlab/DeepMIMO_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/DeepMIMO_generator.m -------------------------------------------------------------------------------- /Data_Generation_matlab/Gan_Data/Gan_0_dBIndoor2p4_64ant_32users_8pilot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/Gan_Data/Gan_0_dBIndoor2p4_64ant_32users_8pilot.mat -------------------------------------------------------------------------------- /Data_Generation_matlab/GenerateData_Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/GenerateData_Main.m -------------------------------------------------------------------------------- /Data_Generation_matlab/RayTracing Scenarios/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/RayTracing Scenarios/Readme.txt -------------------------------------------------------------------------------- /Data_Generation_matlab/construct_DeepMIMO_channel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/construct_DeepMIMO_channel.m -------------------------------------------------------------------------------- /Data_Generation_matlab/read_raytracing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/read_raytracing.m -------------------------------------------------------------------------------- /Data_Generation_matlab/uniformPilotsGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/Data_Generation_matlab/uniformPilotsGen.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/README.md -------------------------------------------------------------------------------- /cGAN_python/GAN/__pycache__/cGANDiscriminator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/__pycache__/cGANDiscriminator.cpython-37.pyc -------------------------------------------------------------------------------- /cGAN_python/GAN/__pycache__/cGANGenerator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/__pycache__/cGANGenerator.cpython-37.pyc -------------------------------------------------------------------------------- /cGAN_python/GAN/__pycache__/data_preprocess.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/__pycache__/data_preprocess.cpython-37.pyc -------------------------------------------------------------------------------- /cGAN_python/GAN/cGANDiscriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/cGANDiscriminator.py -------------------------------------------------------------------------------- /cGAN_python/GAN/cGANGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/cGANGenerator.py -------------------------------------------------------------------------------- /cGAN_python/GAN/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/GAN/data_preprocess.py -------------------------------------------------------------------------------- /cGAN_python/Results/Eest_cGAN_1_0db_Indoor2p4_64ant_32users_8pilot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/Results/Eest_cGAN_1_0db_Indoor2p4_64ant_32users_8pilot.mat -------------------------------------------------------------------------------- /cGAN_python/Results/Eest_cGAN_2_0db_Indoor2p4_64ant_32users_8pilot.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/Results/Eest_cGAN_2_0db_Indoor2p4_64ant_32users_8pilot.mat -------------------------------------------------------------------------------- /cGAN_python/generated_img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/generated_img/img_1.png -------------------------------------------------------------------------------- /cGAN_python/generated_img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/generated_img/img_2.png -------------------------------------------------------------------------------- /cGAN_python/main_cGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YudiDong/Channel_Estimation_cGAN/HEAD/cGAN_python/main_cGAN.py --------------------------------------------------------------------------------