├── .DS_Store ├── LICENSE ├── README.md ├── data ├── .DS_Store ├── high_pressure_ratio_LeBlanc │ ├── testing_dataset.mat │ └── training_dataset.mat ├── intermediate_pressure_ratio │ ├── testing_dataset.mat │ └── training_dataset.mat └── low_pressure_ratio │ ├── testing_dataset.mat │ └── training_dataset.mat ├── requirements.txt ├── runFolder ├── input.yaml └── main.py ├── src ├── deeponet_branch.py ├── deeponet_trunk.py └── predict.py └── src_unet ├── .DS_Store ├── full_package_list.txt ├── hp ├── __pycache__ │ └── unet_hp.cpython-312.pyc ├── train_model.py ├── unet │ ├── best_model.weights.h5 │ ├── convergence.png │ └── convergence_data.npz └── unet_hp.py ├── ip ├── __pycache__ │ └── unet_ip.cpython-312.pyc ├── train_model.py ├── unet │ ├── best_model.weights.h5 │ ├── convergence.png │ └── convergence_data.npz └── unet_ip.py ├── lp ├── __pycache__ │ └── unet_lp.cpython-312.pyc ├── train_model.py ├── unet │ ├── best_model.weights.h5 │ ├── convergence.png │ └── convergence_data.npz └── unet_lp.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/README.md -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/high_pressure_ratio_LeBlanc/testing_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/high_pressure_ratio_LeBlanc/testing_dataset.mat -------------------------------------------------------------------------------- /data/high_pressure_ratio_LeBlanc/training_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/high_pressure_ratio_LeBlanc/training_dataset.mat -------------------------------------------------------------------------------- /data/intermediate_pressure_ratio/testing_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/intermediate_pressure_ratio/testing_dataset.mat -------------------------------------------------------------------------------- /data/intermediate_pressure_ratio/training_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/intermediate_pressure_ratio/training_dataset.mat -------------------------------------------------------------------------------- /data/low_pressure_ratio/testing_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/low_pressure_ratio/testing_dataset.mat -------------------------------------------------------------------------------- /data/low_pressure_ratio/training_dataset.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/data/low_pressure_ratio/training_dataset.mat -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/requirements.txt -------------------------------------------------------------------------------- /runFolder/input.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/runFolder/input.yaml -------------------------------------------------------------------------------- /runFolder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/runFolder/main.py -------------------------------------------------------------------------------- /src/deeponet_branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src/deeponet_branch.py -------------------------------------------------------------------------------- /src/deeponet_trunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src/deeponet_trunk.py -------------------------------------------------------------------------------- /src/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src/predict.py -------------------------------------------------------------------------------- /src_unet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/.DS_Store -------------------------------------------------------------------------------- /src_unet/full_package_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/full_package_list.txt -------------------------------------------------------------------------------- /src_unet/hp/__pycache__/unet_hp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/__pycache__/unet_hp.cpython-312.pyc -------------------------------------------------------------------------------- /src_unet/hp/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/train_model.py -------------------------------------------------------------------------------- /src_unet/hp/unet/best_model.weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/unet/best_model.weights.h5 -------------------------------------------------------------------------------- /src_unet/hp/unet/convergence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/unet/convergence.png -------------------------------------------------------------------------------- /src_unet/hp/unet/convergence_data.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/unet/convergence_data.npz -------------------------------------------------------------------------------- /src_unet/hp/unet_hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/hp/unet_hp.py -------------------------------------------------------------------------------- /src_unet/ip/__pycache__/unet_ip.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/__pycache__/unet_ip.cpython-312.pyc -------------------------------------------------------------------------------- /src_unet/ip/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/train_model.py -------------------------------------------------------------------------------- /src_unet/ip/unet/best_model.weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/unet/best_model.weights.h5 -------------------------------------------------------------------------------- /src_unet/ip/unet/convergence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/unet/convergence.png -------------------------------------------------------------------------------- /src_unet/ip/unet/convergence_data.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/unet/convergence_data.npz -------------------------------------------------------------------------------- /src_unet/ip/unet_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/ip/unet_ip.py -------------------------------------------------------------------------------- /src_unet/lp/__pycache__/unet_lp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/__pycache__/unet_lp.cpython-312.pyc -------------------------------------------------------------------------------- /src_unet/lp/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/train_model.py -------------------------------------------------------------------------------- /src_unet/lp/unet/best_model.weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/unet/best_model.weights.h5 -------------------------------------------------------------------------------- /src_unet/lp/unet/convergence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/unet/convergence.png -------------------------------------------------------------------------------- /src_unet/lp/unet/convergence_data.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/unet/convergence_data.npz -------------------------------------------------------------------------------- /src_unet/lp/unet_lp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadpeyvan/RiemannONet/HEAD/src_unet/lp/unet_lp.py -------------------------------------------------------------------------------- /src_unet/requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.16.1 2 | matplotlib==3.8.4 3 | scipy==1.13.0 --------------------------------------------------------------------------------