Skip to content

Commit b71ac86

Browse files
Update index.html
1 parent 5d53897 commit b71ac86

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

projects/GFI-framework/index.html

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h2 class="title is-3"> Abstract </h2>
9393
<p>
9494
In subsurface imaging, learning the mapping from velocity maps to seismic waveforms (forward problem) and waveforms to velocity (inverse problem) is important for several applications. While traditional techniques for solving forward and inverse problems are computationally prohibitive, there is a growing interest in leveraging recent advances in deep learning to learn the mapping between velocity maps and seismic waveform images directly from data.
9595
Despite the variety of architectures explored in previous works, several open questions remain unanswered such as the effect of latent space sizes, the importance of manifold learning, the complexity of translation models, and the value of jointly solving forward and inverse problems.
96-
We propose a unified framework to systematically characterize prior research in this area termed the Generalized Forward-Inverse (GFI) framework, building on the assumption of manifolds and latent space translations.
96+
We propose a unified framework to systematically characterize prior research in this area termed the Generalized Forward-Inverse (GFI) framework, building on the assumption of manifolds and latent space translations.
9797
We show that GFI encompasses previous works in deep learning for subsurface imaging, which can be viewed as specific instantiations of GFI.
9898
We also propose two new model architectures within the framework of GFI: Latent U-Net and Invertible X-Net, leveraging the power of U-Nets for domain translation and the ability of IU-Nets to simultaneously learn forward and inverse translations, respectively.
9999
We show that our proposed models achieve state-of-the-art performance for forward and inverse problems on a wide range of synthetic datasets and also investigate their zero-shot effectiveness on two real-world-like datasets.
@@ -106,18 +106,18 @@ <h2 class="title is-3"> Abstract </h2>
106106
<div class="container is-max-desktop has-text-justified">
107107
<h2 class="title is-3">Method Overview</h2>
108108
<p>
109-
We propose Generalized Forward-Inverse (GFI) framework based on two assumptions. First, according to the manifold assumption, we assume that the velocity maps v ∈ \(\mathcal{V}\) and seismic
110-
waveforms p ∈ \(\mathcal{P}\) can be projected to their corresponding latent space representations, v&#771; and p&#771;, respectively, which can be mapped back to their reconstructions in the original space, \(\hat{v}\) and \(\hat{p}\).
111-
Note that the sizes of the latent spaces can be smaller or larger than the original spaces. Further, the size of \(\tilde{v}\) may not match with the size of \(\tilde{p}\). Second, according to the latent space
109+
We propose Generalized Forward-Inverse (GFI) framework based on two assumptions. First, according to the manifold assumption, we assume that the velocity maps v ∈ v&#119985; and seismic
110+
waveforms p ∈ p&#119985; can be projected to their corresponding latent space representations, v&#771; and p&#771;, respectively, which can be mapped back to their reconstructions in the original space, v&#770; and p&#770;.
111+
Note that the sizes of the latent spaces can be smaller or larger than the original spaces. Further, the size of v&#771; may not match with the size of p&#771;. Second, according to the latent space
112112
translation assumption, we assume that the problem of learning forward and inverse mappings in the original spaces of velocity and waveforms can be reformulated as learning translations in their
113113
latent spaces.
114114
</p>
115115
<ol>
116116
<li>
117-
<b>Latent U-Net Architecture: </b> We propose a novel architecture to solve forward and inverse problems using two latent space translation models implemented using U-Nets, termed Latent U-Net. As shown in Figure below, Latent
118-
U-Net uses ConvNet backbones for both encoder-decoder pairs: (Ev, Dv) and (Ep, Dp), to project
117+
<b>Latent U-Net Architecture: </b> We propose a novel architecture to solve forward and inverse problems using two latent space translation models implemented using U-Nets, termed Latent U-Net. Latent
118+
U-Net uses ConvNet backbones for both encoder-decoder pairs: <code>E</code><sub>v</sub>, <code>D</code><sub>v</sub> and <code>E</code><sub>p</sub>, <code>D</code><sub>p</sub>, to project
119119
v and p to lower-dimensional representations. We also constrain the sizes of the latent spaces of
120-
\(\tilde{v}\) and \(\tilde{p}\) to be identical, i.e., dim(\(\tilde{v}\)) = dim(\(\tilde{p}\)), so that we can train two separate U-Net models to implement the latent space mappings L<sub>v&#771; &rarr; p&#771;</sub> and L<sub>p&#771; &rarr; v&#771;</sub>.
120+
v&#771; and p&#771;to be identical, i.e., dim(v&#771;) = dim(p&#771;), so that we can train two separate U-Net models to implement the latent space mappings L<sub>v&#771; &rarr; p&#771;</sub> and L<sub>p&#771; &rarr; v&#771;</sub>.
121121

122122
<div class="latent_unet">
123123
<figure>
@@ -128,7 +128,10 @@ <h2 class="title is-3">Method Overview</h2>
128128

129129
</li>
130130
<li>
131-
<b>Invertible X-Net Architecture: </b>
131+
<b>Invertible X-Net Architecture: </b> We propose another novel architecture within the GFI framework termed Invertible X-Net to answer
132+
the question: “can we learn a single latent space translation model that can simultaneously solve
133+
both forward and inverse problems?” We employ invertible U-Net in the latent spaces of velocity and waveforms, which can be constrained to be of the same size (just like Latent-UNets), i.e.,
134+
dim(v&#771;) = dim(p&#771;).
132135
<div class="inv_xnet">
133136
<figure>
134137
<img src="./static/images/InvertibleX-Net.png" alt="Invertible X-Net architecture" loading="lazy" width=45%>

0 commit comments

Comments
 (0)