├── .gitattributes ├── README.md ├── RIS.py ├── Transformer_model.py ├── __pycache__ ├── RIS.cpython-37.pyc └── Transformer_model.cpython-37.pyc ├── baseline_channelAcquisition.ipynb └── precoding_RSMA.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/README.md -------------------------------------------------------------------------------- /RIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/RIS.py -------------------------------------------------------------------------------- /Transformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/Transformer_model.py -------------------------------------------------------------------------------- /__pycache__/RIS.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/__pycache__/RIS.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/Transformer_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/__pycache__/Transformer_model.cpython-37.pyc -------------------------------------------------------------------------------- /baseline_channelAcquisition.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/baseline_channelAcquisition.ipynb -------------------------------------------------------------------------------- /precoding_RSMA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuminghui123/DL_RSMA/HEAD/precoding_RSMA.ipynb --------------------------------------------------------------------------------