├── CITATION.cff ├── LICENSE ├── README.md ├── code ├── FWI_real_SB1.ipynb ├── FWI_synthetic.ipynb └── util │ ├── HNO.py │ ├── figplot.py │ ├── fwi_wrap.py │ └── process.py ├── data_generation ├── generation.ipynb └── generator.py ├── environment.yml └── model ├── init_1D_syn.pth ├── init_1dli_real.pth ├── init_cvms_real.pth ├── init_li_real.pth ├── inv_1D_syn_noise0.pth ├── inv_1D_syn_noise10.pth ├── inv_1D_syn_noise5.pth ├── inv_1dli_real.pth ├── inv_cvms_real.pth ├── inv_li_real.pth ├── vsbg.npy ├── x_normalizer.sav └── y_normalizer.sav /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/README.md -------------------------------------------------------------------------------- /code/FWI_real_SB1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/FWI_real_SB1.ipynb -------------------------------------------------------------------------------- /code/FWI_synthetic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/FWI_synthetic.ipynb -------------------------------------------------------------------------------- /code/util/HNO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/util/HNO.py -------------------------------------------------------------------------------- /code/util/figplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/util/figplot.py -------------------------------------------------------------------------------- /code/util/fwi_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/util/fwi_wrap.py -------------------------------------------------------------------------------- /code/util/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/code/util/process.py -------------------------------------------------------------------------------- /data_generation/generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/data_generation/generation.ipynb -------------------------------------------------------------------------------- /data_generation/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/data_generation/generator.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/environment.yml -------------------------------------------------------------------------------- /model/init_1D_syn.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/init_1D_syn.pth -------------------------------------------------------------------------------- /model/init_1dli_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/init_1dli_real.pth -------------------------------------------------------------------------------- /model/init_cvms_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/init_cvms_real.pth -------------------------------------------------------------------------------- /model/init_li_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/init_li_real.pth -------------------------------------------------------------------------------- /model/inv_1D_syn_noise0.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_1D_syn_noise0.pth -------------------------------------------------------------------------------- /model/inv_1D_syn_noise10.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_1D_syn_noise10.pth -------------------------------------------------------------------------------- /model/inv_1D_syn_noise5.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_1D_syn_noise5.pth -------------------------------------------------------------------------------- /model/inv_1dli_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_1dli_real.pth -------------------------------------------------------------------------------- /model/inv_cvms_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_cvms_real.pth -------------------------------------------------------------------------------- /model/inv_li_real.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/inv_li_real.pth -------------------------------------------------------------------------------- /model/vsbg.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/vsbg.npy -------------------------------------------------------------------------------- /model/x_normalizer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/x_normalizer.sav -------------------------------------------------------------------------------- /model/y_normalizer.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caifeng-zou/ANFWI_HNO/HEAD/model/y_normalizer.sav --------------------------------------------------------------------------------