├── README.md ├── data └── test │ └── test.segy ├── download_data.py ├── gain.py ├── get_patch.py ├── main_test_denoise.py ├── main_test_inter.py ├── main_train_denoise.py ├── main_train_inter.py ├── models_denoise ├── DnCNN_sigma25 │ └── model.pth └── DnCNN_sigma50 │ └── model.pth └── models_inter └── DnCNN_rate2 └── model.pth /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/README.md -------------------------------------------------------------------------------- /data/test/test.segy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/data/test/test.segy -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/download_data.py -------------------------------------------------------------------------------- /gain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/gain.py -------------------------------------------------------------------------------- /get_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/get_patch.py -------------------------------------------------------------------------------- /main_test_denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/main_test_denoise.py -------------------------------------------------------------------------------- /main_test_inter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/main_test_inter.py -------------------------------------------------------------------------------- /main_train_denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/main_train_denoise.py -------------------------------------------------------------------------------- /main_train_inter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/main_train_inter.py -------------------------------------------------------------------------------- /models_denoise/DnCNN_sigma25/model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/models_denoise/DnCNN_sigma25/model.pth -------------------------------------------------------------------------------- /models_denoise/DnCNN_sigma50/model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/models_denoise/DnCNN_sigma50/model.pth -------------------------------------------------------------------------------- /models_inter/DnCNN_rate2/model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sevenysw/python_segy/HEAD/models_inter/DnCNN_rate2/model.pth --------------------------------------------------------------------------------