Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- feature-extraction
|
| 5 |
+
tags:
|
| 6 |
+
- geophysics
|
| 7 |
+
- electromagnetic
|
| 8 |
+
- inversion
|
| 9 |
+
- surrogate-model
|
| 10 |
+
- prior-falsification
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1KB<n<11GB
|
| 13 |
---
|
| 14 |
+
|
| 15 |
+
# 3D EM Inversion - Pre-generated Prior Datasets
|
| 16 |
+
|
| 17 |
+
## Overview
|
| 18 |
+
This dataset contains the pre-generated prior data utilized for **3D Electromagnetic (EM) Prior Falsification and Stochastic Inversion with MCMC**. Due to the substantial file size (~1.29 GB), these large NumPy binary files (`.npy`) are hosted here on Hugging Face to supplement the main GitHub repository.
|
| 19 |
+
|
| 20 |
+
These files serve as the input/output training data or pre-computed structures for building a surrogate model to accelerate 3D EM geophysical inversions.
|
| 21 |
+
|
| 22 |
+
## File Structure & Descriptions
|
| 23 |
+
|
| 24 |
+
Inside this dataset, you will find the following core files:
|
| 25 |
+
|
| 26 |
+
* **`EMsigma_padded.npy` (962.3 MB):** The padded 3D electrical conductivity ($\sigma$) models used for forward modeling or training the surrogate network.
|
| 27 |
+
* **`EMsigma_core.npy` (324 MB):** The core region of the 3D conductivity models, excluding padding boundaries, optimized for inversion/falsification analysis.
|
| 28 |
+
* **`dpred.npy` (1.82 MB):** Predicted data responses corresponding to the prior models.
|
| 29 |
+
* **`Hyper_Param.npy` (64.1 KB):** Hyperparameters and configuration settings used during the prior generation process.
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## Usage & Integration with GitHub
|
| 34 |
+
|
| 35 |
+
To use these files in your local environment alongside the source code, please clone the GitHub repository and place these files in the designated directory.
|
| 36 |
+
|
| 37 |
+
### Recommended Directory Structure:
|
| 38 |
+
```text
|
| 39 |
+
EM_Surrogate_Inv3D/
|
| 40 |
+
└── Prior falsification/
|
| 41 |
+
├── 3D EM prior falsification.ipynb
|
| 42 |
+
└── Generated prior/ <-- Create this folder if it doesn't exist
|
| 43 |
+
├── EMsigma_padded.npy
|
| 44 |
+
├── EMsigma_core.npy
|
| 45 |
+
├── dpred.npy
|
| 46 |
+
└── Hyper_Param.npy
|