├── .gitignore ├── Hello.py ├── README.md ├── __init__.py ├── appdata └── geophysics │ ├── faults │ └── faultSeg │ │ ├── README.md │ │ ├── model │ │ ├── README.md │ │ └── model3.json │ │ ├── results │ │ ├── PR_and_ROC_curves.jpeg │ │ ├── camposCnnFaultByWu.png │ │ ├── clydeCnnFaultByWu.png │ │ ├── comparison.jpeg │ │ ├── crfCnnFaultByWu.png │ │ ├── f3CnnFaultByWu.png │ │ ├── kerryCnnFaultByWu.png │ │ ├── opunakeCnnFaultByWu.png │ │ └── wu2019FaultSeg3D.pdf │ │ └── unet3.py │ └── post_processing │ └── Transform2022_SelfSupervisedDenoising │ ├── README.md │ ├── tutorial_utils.py │ └── unet.py ├── custom_blocks.py ├── data_classes.py ├── environment.yml ├── images ├── Check Out My AIML Solutions.png ├── GeoplatLogo.png ├── GeoplatMarket.jpg ├── Square-YouTube-Logo-PNG-1024x1024.png ├── YouTube.jpg ├── YouTube.png └── linkedin.png ├── pages ├── .DS_Store ├── 0_💾Import_seismic.py ├── 1_🟢SELF-SUPERVISED DENOISING.py ├── 2_🟢FAULT SEGMENTATION-FaultSeg3D.py ├── 3_🟢FAULT SEGMENTATION-FaultNet.py ├── 4_🟢3D Seismic Denoising+SuperResolution.py ├── 5_⚪3D Seismic Facies Prediction.py ├── 6_⚪Reconstruction of Missing Seismic Data.py └── 7_⚪Neural Network for Acoustic Impedance prediction.py ├── tests └── data_classes_test.py ├── utils.py └── visualization_helpers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /Hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/Hello.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/README.md -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/model/README.md -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/model/model3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/model/model3.json -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/PR_and_ROC_curves.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/PR_and_ROC_curves.jpeg -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/camposCnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/camposCnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/clydeCnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/clydeCnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/comparison.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/comparison.jpeg -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/crfCnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/crfCnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/f3CnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/f3CnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/kerryCnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/kerryCnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/opunakeCnnFaultByWu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/opunakeCnnFaultByWu.png -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/results/wu2019FaultSeg3D.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/results/wu2019FaultSeg3D.pdf -------------------------------------------------------------------------------- /appdata/geophysics/faults/faultSeg/unet3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/faults/faultSeg/unet3.py -------------------------------------------------------------------------------- /appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/README.md -------------------------------------------------------------------------------- /appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/tutorial_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/tutorial_utils.py -------------------------------------------------------------------------------- /appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/appdata/geophysics/post_processing/Transform2022_SelfSupervisedDenoising/unet.py -------------------------------------------------------------------------------- /custom_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/custom_blocks.py -------------------------------------------------------------------------------- /data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/data_classes.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/environment.yml -------------------------------------------------------------------------------- /images/Check Out My AIML Solutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/Check Out My AIML Solutions.png -------------------------------------------------------------------------------- /images/GeoplatLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/GeoplatLogo.png -------------------------------------------------------------------------------- /images/GeoplatMarket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/GeoplatMarket.jpg -------------------------------------------------------------------------------- /images/Square-YouTube-Logo-PNG-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/Square-YouTube-Logo-PNG-1024x1024.png -------------------------------------------------------------------------------- /images/YouTube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/YouTube.jpg -------------------------------------------------------------------------------- /images/YouTube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/YouTube.png -------------------------------------------------------------------------------- /images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/images/linkedin.png -------------------------------------------------------------------------------- /pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/.DS_Store -------------------------------------------------------------------------------- /pages/0_💾Import_seismic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/0_💾Import_seismic.py -------------------------------------------------------------------------------- /pages/1_🟢SELF-SUPERVISED DENOISING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/1_🟢SELF-SUPERVISED DENOISING.py -------------------------------------------------------------------------------- /pages/2_🟢FAULT SEGMENTATION-FaultSeg3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/2_🟢FAULT SEGMENTATION-FaultSeg3D.py -------------------------------------------------------------------------------- /pages/3_🟢FAULT SEGMENTATION-FaultNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/3_🟢FAULT SEGMENTATION-FaultNet.py -------------------------------------------------------------------------------- /pages/4_🟢3D Seismic Denoising+SuperResolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/4_🟢3D Seismic Denoising+SuperResolution.py -------------------------------------------------------------------------------- /pages/5_⚪3D Seismic Facies Prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/5_⚪3D Seismic Facies Prediction.py -------------------------------------------------------------------------------- /pages/6_⚪Reconstruction of Missing Seismic Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/6_⚪Reconstruction of Missing Seismic Data.py -------------------------------------------------------------------------------- /pages/7_⚪Neural Network for Acoustic Impedance prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/pages/7_⚪Neural Network for Acoustic Impedance prediction.py -------------------------------------------------------------------------------- /tests/data_classes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/tests/data_classes_test.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/utils.py -------------------------------------------------------------------------------- /visualization_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMiftakhov/EFramework/HEAD/visualization_helpers.py --------------------------------------------------------------------------------