Also available in🇻🇳
One of the most important factors in evaluating an oil reservoir is porosity, permeability & water saturation cutoff. These are 3 very important factors to assess whether an oil reservoir is economically viable or not.
In the paper, the two authors used GAN to create unconditional simulations of Ketton limestone and Maules (Australia) sandstone models. This post focuses on the processing of the Ketton limestone dataset.
GAN, a deep learning model belonging to the generative model group, is a model capable of generating data, created with the expectation of producing highly accurate systems that require less human intervention in the training process.
GAN consists of two networks: Generator G(z) maps samples obtained from a multivariate standard normal distribution to an image x, and Discriminator D(z) assumes the role of a classifier to distinguish between the generated simulations x ~ G(z). Both networks are trained in an alternating two-step process to optimize the min-max objective function:
One of the convenient points of the paper is that the notebook file and pre-trained GAN models are available. You can view them at the author's Github repo:
Some results after putting the notebook on Google Colab and running:
Compare the data by visualizing the conditioned image with the image from GAN:
The top images are the conditioned data, and the bottom images are generated from GAN. Next, we will calculate the error by subtracting the data generated from GAN from the conditioned data, with the expectation that the error approaches 0 when the cross-section passes through the origin, and noise at other locations:
Simulation images from the original paper:
Models (b) and (c) are obtained by conditioning the adversarial network with three orthogonal cross-sections from (a) (Ketton limestone data)
Arjovsky, M., Chintala, S. and Bottou, L. [2017] Wasserstein GAN. arXiv preprint arXiv:1701.07875.
Generative Adversarial Networks. arXiv preprint arXiv:1708.01810. Goodfellow, I. [2017] NIPS 2016 Tutorial: Generative Adversarial Networks. arXiv preprint arXiv:1701.00160.
Goodfellow, I., Pouget-Abadie, J., Mirza, M., Xu, B., Warde-Farley, D., Ozair, S., Courville, A. and Bengio, Y. [2014] Generative adversarial nets. In: Advances in Neural Information Processing Systems. 2672–2680.