Next Article in Journal
Smart Risk Assessment and Adaptive Control Strategy Selection for Human–Robot Collaboration in Industry 5.0: An Intelligent Multi-Criteria Decision-Making Approach
Previous Article in Journal
Integrated Algorithmic Strategies for Online Food Delivery Routing: A Multi-Stakeholder Optimization Approach
Previous Article in Special Issue
Innovative Application of High-Precision Seismic Interpretation Technology in Coalbed Methane Exploration
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Research and Application of Conditional Generative Adversarial Network for Predicting Gas Content in Deep Coal Seams

CNOOC Research Institute Ltd., Beijing 100028, China
*
Author to whom correspondence should be addressed.
Processes 2025, 13(10), 3215; https://doi.org/10.3390/pr13103215
Submission received: 19 September 2025 / Revised: 5 October 2025 / Accepted: 7 October 2025 / Published: 9 October 2025
(This article belongs to the Special Issue Coalbed Methane Development Process)

Abstract

Accurate assessment of coalbed methane (CBM) content is essential for characterizing subsurface reservoir distribution, guiding well placement, and estimating reserves. Current methods for determining coal seam gas content mainly rely on direct laboratory measurements of core samples or indirect interpretations derived from well log data. However, conventional coring is costly, while log-based approaches often depend on linear empirical formulas and are restricted to near-wellbore regions. In practice, the relationships between elastic properties and gas content are highly complex and nonlinear, leading conventional linear models to produce substantial prediction errors and inadequate performance. This study introduces a novel method for predicting gas content in deep coal seams using a Conditional Generative Adversarial Network (CGAN). First, elastic parameters are obtained through pre-stack inversion. Next, sensitivity analysis and attribute optimization are applied to identify elastic attributes that are most sensitive to gas content. A CGAN is then employed to learn the nonlinear mapping between multiple fluid-sensitive seismic attributes and gas content distribution. By integrating multiple constraints to refine the discriminator and guide generator training, the model achieves accurate gas content prediction directly from seismic data. Applied to a real dataset from a CBM block in the Ordos Basin, China, the proposed CGAN-based method produces predictions that align closely with measured gas content trends at well locations. Validation at blind wells shows an average prediction error of 1.6 m3/t, with 83% of samples exhibiting errors less than 3 m3/t. This research presents an effective and innovative deep learning approach for predicting coalbed methane content.

1. Introduction

The quantitative seismic prediction of coalbed methane (CBM) content plays a crucial role in oil and gas exploration and production, directly influencing well placement strategies and resource evaluation [1,2,3]. Current approaches to estimating CBM content primarily depend on core desorption experiments and well log interpretation. While core analysis offers accurate measurements, it is expensive and impractical for seismic prediction in unexplored areas. Seismic-based prediction methods typically require establishing a relationship between gas content and elastic parameters—such as P-wave velocity, S-wave velocity, and density [4,5]. These methods often rely on petrophysical templates derived from log data to infer gas content. However, the linear approximations commonly used in such models fail to capture the complex nonlinear behavior of actual reservoirs, leading to limited predictive accuracy. Consequently, there is a pressing need to develop high-precision seismic prediction techniques to improve CBM content estimation.
Significant efforts have been made to enhance CBM content prediction. Ramos [6] pioneered the application of AVO analysis and modeling for characterizing fractured CBM reservoirs. Cui [7] and Tang [8] integrated azimuthal anisotropy analysis, spectral decomposition, and wave impedance inversion to identify CBM enrichment zones. Chen [9,10] reported that CBM reservoirs exhibit only Class IV AVO anomalies, while Chen [11] identified density and shear modulus as key sensitive parameters for sweet spot detection. The latter also successfully applied seismic attribute analysis to predict CBM content in the Ordos Basin. Huo [12] used pre-stack inversion based on an assumed linear relationship between elastic parameters and gas content for qualitative prediction, and Zhang [13] achieved high correlation using the P + G attribute from AVO analysis. Although methods such as AVO analysis [14,15,16], seismic attribute prediction [17,18,19], and elastic parameter inversion [20,21] have been widely used, they predominantly rely on linear assumptions and tend to produce generalized results that fall short of the resolution required for detailed reservoir characterization. In recent years, advances in deep learning have opened new avenues for high-precision reservoir prediction [22,23]. Hampson [24] successfully applied probabilistic neural networks (PNN) to predict porosity by integrating multiple seismic attributes. Ross [25] demonstrated that neural network-based AVO attributes provide superior accuracy and resolution compared to conventional methods for mapping reservoir distribution and sand thickness. Zhong [26] used convolutional neural networks (CNN) with well log data to predict permeability, outperforming genetic algorithms. Kim [27] showed that artificial neural network (ANN) inversion offers higher resolution than least-squares inversion in both synthetic and real data examples. Chen [28] introduced an iterative CNN architecture for simultaneous wavelet estimation and high-resolution reflectivity inversion. Chen [29] applied recurrent neural networks (RNN) to porosity prediction, achieving better results than support vector machines (SVM) and random forests (RF). More recently, Sun [30] employed Mixture Density Networks (MDN) to predict water saturation in sandstones with uncertainty quantification. These studies underscore the considerable potential of deep learning techniques in reservoir parameter prediction and provide valuable insights for predicting gas content in deep coal seams.
In this paper, we propose a novel method for predicting gas content in deep coal seams using a conditional generative adversarial network. The approach begins with pre-stack inversion to obtain elastic parameters, followed by sensitivity analysis and attribute optimization to identify predictive factors. A CGAN is then trained on extensive well log data from the study area, incorporating multiple geological constraints to establish a nonlinear mapping from seismic attributes to gas content. Validation with blind well data confirms that the method achieves high predictive accuracy, offering a robust and innovative technical solution for detailed reservoir characterization and development optimization.

2. Methodology

2.1. Generative Adversarial Networks

Based on game theory, Generative Adversarial Networks (GAN) [31] represent one of the most innovative concepts in the field of machine learning in recent years. In seismic exploration, GANs have been widely applied to various tasks, including seismic facies classification [32], velocity model building [33], seismic data interpolation [34], image processing [35], and seismic interpretation [36,37]. The basic architecture of a GAN is illustrated in Figure 1. In this study, all GAN-based models were implemented and trained using TensorFlow (v2.18.0). This framework was developed and is maintained by Google (Mountain View, CA, USA). It consists of two competing neural network modules: a Generator (G) and a Discriminator (D). The Generator aims to learn the distribution p g of the real data x, constructing a mapping function G ( z ; θ g ) from a prior noise distribution p z ( z ) to the data space. The Discriminator receives both real data and generated samples G ( z ; θ g ) as input and outputs a scalar probability value, estimating the likelihood that the input data originates from the real data x rather than from the Generator G ( z ; θ g ) . Here, θ g and θ d represent the trainable parameters of G and D, respectively. During training, the G and the D are optimized alternately:
  • The Discriminator is fixed, and the parameters θ g of the Generator are adjusted to minimize the loss function log ( 1 D ( G ( z ) ) ) .
  • The Generator is fixed, and the parameters θ d of the Discriminator are adjusted to maximize its ability to distinguish real samples from generated ones, represented by maximizing log D ( x ) .
The original training objective of GANs can be expressed by the following minimax function V ( G , D ) :
min G   max D V ( D , G ) = E x p d a t a ( x ) [ log D ( x ) ] + E z p z ( z ) [ log ( 1 D ( G ( z ) ) ) ]

2.2. Conditional Generative Adversarial Networks

If conditional control information is introduced into both the Generator and Discriminator of a GAN, enabling the generation of corresponding outputs based on specific input conditions, the architecture can be extended into a Conditional Generative Adversarial Network (CGAN) [38]. In this study, we incorporate gas-sensitive factors of the coal seam as conditional input to the generator, thereby constraining the generation process and guiding the network training. Simultaneously, the discriminator D is trained to distinguish between real and generated samples, further guiding the optimization of the generator. Upon completion of training, the corresponding gas content can be obtained by inputting the sensitive factors into the generator. Figure 2 illustrates the CGAN architecture used for gas content prediction. In the generator, the gas-sensitive factors x serve as the conditional input. The generated gas saturation G ( x ; θ g ) is concatenated with x and fed into the discriminator. The discriminator employs three conditional control strategies to enhance its discriminative capability:
  • The sensitive factors x input to the generator G and the corresponding generated gas saturation G ( x ; θ g ) ;
  • The sensitive factors x1 from the real data and their corresponding true gas saturation y1;
  • The sensitive factors x2 from the real data paired with an incorrect gas saturation y ^ 2 (i.e., mismatched samples).
The training objective of the CGAN can be expressed as the following minimax function V c ( G , D ) :
min G   max D V c ( D , G ) = E x , y p d a t a ( x , y ) [ D ( x 1 , y 1 ) + ( 1 D ( x , G ( x ) ) ) + ( 1 D ( x 2 , y ^ 2 ) ) ] + E x , y G [ D ( x , G ( x ) ) + ( y G ( x ) ) 2 ]
The detailed workflow of the CGAN algorithm is summarized in Algorithm 1. Both the generator and discriminator are constructed using an encoder–decoder architecture. The generator begins with three deconvolutional layers that extract 256, 128, and 64 feature maps, respectively. These are followed by three convolutional layers producing 128, 256, and 1 feature maps. The network concludes with two fully connected layers. The discriminator consists of three convolutional layers extracting 256, 128, and 64 feature maps, followed by three deconvolutional layers generating 128, 256, and 1 feature maps, and ends with two fully connected layers. Traditional regression methods typically employ L2 distance as a loss metric, which assumes independence among variables. However, seismic waveforms—as time-series data—encapsulate integrated information from subsurface strata, where variables exhibit strong intrinsic correlations. Classical GANs utilize Jensen-Shannon (JS) divergence for optimization [39], which captures interdependencies among variables by measuring similarity between the distributions of generated and real samples. A significant limitation arises when the JS divergence reaches the constant log2: the distributions of real and generated samples often exhibit no overlap in high-dimensional space, resulting in vanishing gradients and halting parameter updates. This leads the generator to produce identical outputs for different inputs, a failure mode known as mode collapse. To mitigate this issue, we incorporate the Wasserstein distance [40,41], which effectively measures the distance between non-overlapping distributions in high-dimensional space. Several modifications were made to the original GAN framework to accommodate the Wasserstein distance:
  • The final sigmoid activation function in the discriminator—designed for classification—was removed to adapt the model to regression tasks compatible with the Wasserstein metric. Logarithmic operators in the loss functions of both generator and discriminator were also eliminated;
  • Gradient penalty techniques [42] were introduced to improve training stability and promote convergence;
  • To address instability in the discriminator’s loss gradients, the RMSProp optimizer was adopted in place of Adam. An initial learning rate of 0.002 was used alongside a dynamic exponential decay strategy. The Leaky ReLU activation function [43] was selected for all layers to further enhance gradient flow.
Algorithm 1. CGANs algorithm
Input:  x j j = 1 n : Sensitivity factors, y j j = 1 n : Gas saturation
Notation:  θ g : parameters in generator, θ d : parameters in discriminator, h: batch size, num: number of training sets. η : learning rate of network.
1: Prepare training sets: 124 well logs in working area.
2: Initialization: Initialize θ g for Generator and θ d for discriminator.
3: For T = 1:1: epoch do
    For t = 1:1: num/h do
     3.1 Fixing generator and updating discriminator:
     Sampling n positive examples x 1 , y 1 , x 2 , y 2 , , x n , y n from database; Sampling n objects y ^ 1 , y ^ 2 , , y ^ n from database;
     Obtaining generated y ~ 1 , x 1 , y ~ 2 , x 2 , , y ~ n , x n , y ~ n = G ( x n ) ;
     Updating discriminator parameters θ d to minimize:
         V ~ ( θ d ) = 1 n j = 1 n D ( x j , y j ) 1 n j = 1 n 1 D ( x j , G ( x j ) )
                     1 n j = 1 n 1 D ( x j , y ^ j )
         θ d θ d η V ~ ( θ d )
     3.2 Fixing discriminator and updating generator:
     Updating generator parameters θ g to minimize:
         V ~ ( θ g ) = 1 n j = 1 n D ( G ( x j ) ) + 1 n j = 1 n ( y j G ( x j ) ) 2
         θ g θ g η V ~ ( θ g )
    End for
End for

3. Case Study

3.1. Target Formation Overview

The study area is situated in the northeastern sector of the Yishan Slope, Ordos Basin. The primary target intervals are the Lower Permian Benxi Formation and the Upper Carboniferous Taiyuan Formation. As illustrated in Figure 3, stratigraphic correlation and well-to-seismic calibration reveal that the coal-bearing strata in this region generally display seismic reflections with moderate-to-strong amplitude and high continuity. The lithology of the target intervals is complex, consisting mainly of coal seams, limestone, sandstone, and mudstone. Among these, the coal seams are distinguished by their characteristic physical properties—low density and high acoustic interval transit time—resulting in a pronounced impedance contrast with the overlying and underlying formations. Consequently, the coal seams are typically identifiable on seismic profiles as reflections exhibiting low frequency, high continuity, and strong amplitude. Rock physics analysis indicates that coal seams are characterized by low velocity, low density, and elevated natural gamma ray readings. Their P-wave impedance is markedly lower than that of surrounding rocks such as sandstone, mudstone, and limestone, allowing effective lithological discrimination based on impedance contrast. Based on pre-stack inversion to obtain P-wave velocity, S-wave velocity, and density, a series of elastic attribute volumes can be further derived through mathematical transformations.

3.2. Sensitivity Analysis and Attribute Optimization

Based on measured gas content data from well logs in the study area, a systematic sensitivity analysis was performed to assess the relationship between gas content and various elastic parameters—including both individual properties and combined attributes. This analysis was followed by attribute optimization to identify the most gas-sensitive factors for input into the GAN. Figure 4a–f present the correlations between gas content per ton (TGAS) of coal and the following parameters: P-wave velocity ( V p ), S-wave velocity ( V s ), density ( ρ ), Vp/Vs ratio ( V p / V s ), P-wave impedance ( Z p ), S-wave impedance ( Z s ). The results reveal a significant negative correlation between gas content and density, P- and S-wave impedance. Negative correlations are also observed with P- and S-wave velocities, though these are comparatively weaker. The V p / V s shows the weakest correlation among all parameters. Overall, gas content still exhibits a weak correlation with pre-stack inversion-derived elastic parameters and their combinations. This observation elucidates the underlying reason for the limited accuracy of traditional gas-bearing property estimation methods based on petrophysical templates.
To further screen for effective features, additional elastic factors were constructed based on the elastic parameters, including Young’s modulus ( E ), bulk modulus ( K ), shear modulus ( μ ), shear modulus multiplied by density ( μ × ρ ), Lamé coefficient ( λ ), and Lamé coefficient multiplied by density ( λ × ρ ). A deep neural network (DNN) was employed for attribute optimization. The input features consisted of elastic parameters and their combinations, with gas content as the output. The dataset was divided into training and validation subsets. Network parameters were optimized using the training set, and prediction error was evaluated on the validation set. As shown in Figure 5, the horizontal axis represents the number of input attributes, and the vertical axis represents the prediction error for the corresponding number of attribute combinations. The black and red curves indicate errors on the full dataset and the validation set, respectively. The error decreases as the number of attributes increases, but begins to rise on the validation set once the number exceeds eight—suggesting potential overfitting. Additionally, an excessive number of features substantially increases computational demands. Balancing prediction accuracy and efficiency, eight key attributes were selected as input to the generative adversarial network based on their contribution to error reduction. The optimized attribute combination is detailed in Table 1.

3.3. CGAN-Based Gas Saturation Prediction

In this section, the optimized attribute combination was employed as a conditional input to train the CGAN for predicting gas content in deep coal seams. To evaluate the model’s generalization ability, 12 wells were reserved as blind tests. Figure 6 presents the network’s training performance across multiple wells, where yellow shading indicates coal seams, the black solid line denotes measured gas content, and the red solid line represents the CGAN predictions. The results indicate that the model achieves excellent fitting performance on the training well segments. Figure 7 further demonstrates the prediction outcomes on blind-test wells from the validation set. The CGAN model maintains high predictive accuracy across these unseen samples, confirming its strong generalization capability. The trained model was subsequently applied to predict the spatial distribution of gas content throughout the study area. As illustrated in Figure 8, gas content is represented by a color gradient from blue (low) to red (high). The predicted distribution aligns closely with well-based interpretations, affirming the reliability and applicability of the CGAN method for quantitative gas content prediction.
A comparison with coal seam thickness predictions reveals a significant positive correlation between gas content and seam thickness. Regions with thicker coal seams—such as the central, southeastern, and northern parts of the study area—exhibit more stable structural conditions, which are conducive to gas accumulation and preservation, resulting in higher gas content. In contrast, the western area is characterized by thinner, more discontinuous coal seams with numerous partings, leading to inferior gas-bearing properties. Error statistics from the 12 blind-test wells (Table 2) show an average root mean square error (RMSE) of 1.67 m3/t, a maximum absolute error of 4.12 m3/t, and 83% of predictions falling within 3 m3/t of the measured values. These metrics confirm that the deep learning-based gas content prediction method, which integrates multiple seismic attributes through CGAN, provides high prediction accuracy and strong practical utility.

4. Discussion

This study identifies several aspects that merit further investigation and improvement. First, from a theoretical standpoint, directly inverting gas saturation from seismic waveforms could potentially circumvent the cumulative errors inherent in the conventional two-step workflow, which first inverts for elastic parameters. However, seismic waveforms are predominantly influenced by lithology and fundamental elastic properties—such as P-wave velocity, S-wave velocity, and density—which constitute the structural and lithological framework of the seismic response. As a fluid property, gas saturation does not directly govern seismic signals. Rather, its influence is indirect, mediated through fluid substitution effects that modify the bulk modulus and density of the rock. These alterations subsequently affect elastic parameters (e.g., P-wave velocity and impedance), which in turn perturb the seismic response. Given that the effect of gas saturation on seismic waveforms is generally subtle and susceptible to obscuration by noise, direct saturation inversion remains a considerable challenge and represents a critical direction for future research. Second, the deep learning approaches applied in this study currently operate without explicit guidance from physical principles. Although data-driven, their prediction process lacks strong interpretability, and their generalization capability may be constrained when applied beyond the training distribution. Future work should focus on integrating rock physics models with artificial intelligence techniques to develop hybrid methods that embed physical constraints into deep learning frameworks, for example, combining deep coal seam rock physics models, AVO forward modeling (such as Zoeppritz equations), and neural networks. Such an approach would not only improve the mechanistic rationality of predictions but also enhance the robustness and reliability of gas content estimation models.

5. Conclusions

This study presents a novel method for predicting gas content in deep coal seams using a conditional generative adversarial network. The proposed approach effectively estimates gas content and offers critical support for well placement design and reservoir development optimization. The workflow consists of three main stages: First, pre-stack inversion is applied to obtain key elastic parameters and delineate the spatial distribution of coal seams. Second, sensitivity analysis and attribute optimization are conducted to identify an optimal set of gas-sensitive factors. Finally, a CGAN model incorporating multiple geological constraints is constructed to achieve intelligent prediction of gas content. When applied to a real-world dataset from a coalbed methane block in the Ordos Basin, China, the method demonstrates a strong agreement between predicted and measured gas content trends at well locations. Validation at blind wells shows an average prediction error of 1.6 m3/t, with 83% of predictions falling within 3 m3/t of the measured values. These results indicate that the CGAN-based method offers both high accuracy and practical utility. This research provides a new, effective technical framework for predicting coalbed methane content, with potential value for application in similar geological settings.

Author Contributions

Conceptualization, L.T. and Y.Q.; Methodology, L.T., S.S. and Y.Q.; Investigation, J.S.; Writing—original draft, S.S.; Writing—review & editing, S.S. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Availability Statement

The original contributions presented in this study are included in the article. Further inquiries can be directed to the corresponding author.

Conflicts of Interest

Authors Lixin Tian, Shuai Sun, Yu Qi and Jingxue Shi were employed by CNOOC Research Institute Ltd.

References

  1. Lan, C.; Zhang, J.; Tao, W.; Zhang, Y.; Yang, M.; Wang, J. Sedimentary characteristics and evolution of the upper carboniferous Taiyuan formation, Shenmu Gasfield, Northeastern Ordos Basin. Acta Geol. Sin. 2011, 85, 533–542. [Google Scholar]
  2. Li, X.; Ren, Z.; Cao, Z.; Ren, H. Study on coal drawing parameters of deeply buried hard coal seams based on PFC. Sci. Rep. 2025, 15, 21934. [Google Scholar] [CrossRef] [PubMed]
  3. Wang, L.; Zhu, L.; Cao, Z.; Liu, J.; Xue, Y.; Wang, P.; Cao, X.; Liu, Y. Thermo-mechanical degradation and fracture evolution in low-permeability coal subjected to cyclic heating–cryogenic cooling. Phys. Fluids 2025, 37, 086617. [Google Scholar] [CrossRef]
  4. Mukerji, T.; Avseth, P.; Mavko, G.; Takahashi, I. Statistical rock physics: Combining rock physics, information theory, and geostatistics to reduce uncertainty in seismic reservoir characterisation. Lead. Edge 2001, 20, 313–319. [Google Scholar] [CrossRef]
  5. Avseth, P.; Janke, A.; Horn, F. AVO inversion in exploration-Key learnings from a Norwegian Sea prospect. Lead. Edge 2016, 35, 405–414. [Google Scholar] [CrossRef]
  6. Ramos, A.; Davis, T. 3-D AVO analysis and modeling applied to fracture detection in coalbed methane reservoirs. Geophysics 1997, 62, 1683–1695. [Google Scholar] [CrossRef]
  7. Cui, R.; Chen, T.; Qian, J.; Sun, X.; Cui, D.; Qin, K. CBM(Gas) Seismic Prospecting Technology. Coal Geol. China 2012, 24, 48–56. [Google Scholar]
  8. Tang, H. Exploratory Study on Seismic Exploration Technology for Predicting Coalbed Methane Enrichment Zones. China Coal 2012, 38, 46–49. [Google Scholar]
  9. Chen, X.; Huo, Q.; Lin, J.; Wang, Y.; Sun, F.; Li, W.; Li, G. The inverse correlations between methane content and elastic parameters of coal-bed methane reservoirs. Geophysics 2013, 78, D237–D248. [Google Scholar] [CrossRef]
  10. Chen, X.; Huo, Q.; Lin, J.; Wang, Y.; Sun, F.; Li, W.; Li, G. Theory of CBM AVO: I. Characteristics of anomaly and why it is so. Geophysics 2014, 79, D55–D65. [Google Scholar] [CrossRef]
  11. Chen, Y.; Guan, D.; Chen, H.; Liu, Y.; Zheng, S. Application of Seismic Attribute Technology in Prediction of Coal Seams and Coalbed Methane Reservoirs. J. Oil Gas Technol. 2014, 36, 65–69+5–6. [Google Scholar]
  12. Huo, L.; Xu, L.; Shao, L.; Ding, L.; Wang, Q. Seismic prediction technologies of CBM sweet spots and their application. Nat. Gas Ind. 2014, 34, 46–52. [Google Scholar]
  13. Zhang, P.; Li, F.; Yang, T.; Han, F.; Gao, G.; Zhang, C. Application of AVO technique in the prediction of low-rank CBM in Jiergalangtu Sag of Erlian Basin. Pet. Geol. Oilfield Dev. Daqing 2021, 40, 129–136. [Google Scholar] [CrossRef]
  14. Gray, D. Seismic Anisotropy in Coal Beds. In SEG Technical Program Expanded Abstracts; Society of Exploration Geophysicists: Houston, TX, USA, 2005; pp. 142–145. [Google Scholar] [CrossRef]
  15. Peng, S.; Gao, Y.; Yang, R.; Yang, R.; Chen, H.; Chen, X. Theory and application of AVO for detection of coalbed methane—A case from the Huainan coalfield. Chin. J. Geophys. 2005, 48, 1475–1486. (In Chinese) [Google Scholar]
  16. Peng, S.; Chen, H.; Yang, R.; Gao, Y.; Chen, X. Factors facilitating or limiting the use of AVO for coal-bed methane. Geophysics 2006, 71, C49–C56. [Google Scholar] [CrossRef]
  17. Feng, X.; Qin, F.; Jiao, Y.; Wang, Y.; Wang, J.; Tang, Y. Study on Seismic Reservoir Prediction Technology for Coalbed Methane in Qinshui Basin. China Coalbed Methane 2011, 8, 8–12. [Google Scholar]
  18. Meng, M.; Wang, Y.; Mao, Q.; Zheng, X.; Xie, W. The application of frequency attenuation gradient in Coalbed Methane prediction in southern Qinshui Basin. Sci. Technol. Eng. 2016, 16, 139–145. [Google Scholar]
  19. Dong, Y.; Liu, Y.; Shen, Y.; Zhu, Y.; Tian, Z.; Huang, H. Prediction of CBM sweet spots via matching trace decomposition-based fluid activity factor. Coal Geol. Explor. 2018, 46, 90–96+101. [Google Scholar]
  20. Chang, S.; Liu, D.; Wang, M. Discussion on the Role and Application Methods of Seismic Exploration Technology in Coalbed Methane Exploration and Development. China Coalbed Methane 2008, 5, 23–27. [Google Scholar] [CrossRef]
  21. Tian, Z.; Zhang, Y.; Wang, J.; Yang, X.; Shen, Y.; Huang, H.; Xiang, K.; Xue, G. Study on the pre-stack seismic inversion prediction method for rich coal-bed-gas reservoirs: A case in southeastern Shanxi province. Chin. J. Geophys. 2016, 59, 4494–4504. (In Chinese) [Google Scholar]
  22. Bergen, K.; Johnson, P.; De Hoop, M.; Beroza, G. Machine learning for data-driven discovery in solid Earth geoscience. Science 2019, 363, eaau0323. [Google Scholar] [CrossRef]
  23. Feng, R.; Mejer, H.; Grana, D.; Balling, N. An unsupervised deep-learning method for porosity estimation based on poststack seismic data. Geophysics 2020, 85, M97–M105. [Google Scholar] [CrossRef]
  24. Hampson, D.; Schuelke, J.; Quirein, J. Use of multi-attribute transforms to predict log properties from seismic data. Geophysics 2001, 66, 220–236. [Google Scholar] [CrossRef]
  25. Ross, C. Comparison of popular AVO attributes, AVO inversion, and calibrated AVO predictions. Lead. Edge 2002, 21, 244–252. [Google Scholar] [CrossRef]
  26. Zhong, Z.; Carr, T.; Wu, X.; Wang, G. Application of a convolutional neural network in permeability prediction: A case study in the Jacksonburg-Stringtown oil field, West Virginia, USA. Geophysics 2019, 84, B363–B373. [Google Scholar] [CrossRef]
  27. Kim, Y.; Nakata, N. Geophysical inversion versus machine learning in inverse problems. Lead. Edge 2018, 37, 894–901. [Google Scholar] [CrossRef]
  28. Chen, D.; Gao, J.; Hou, Y.; Gao, Z. High-resolution inversion of seismic wavelet and reflectivity using iterative deep neural networks. In Proceedings of the 2019 SEG International Exposition and Annual Meeting, San Antonio, TX, USA, 15–20 September 2019; SEG: Houston, TX, USA, 2019; pp. 2538–2542. [Google Scholar] [CrossRef]
  29. Chen, W.; Yang, L.; Zha, B.; Zhang, M.; Chen, Y. Deep learning reservoir porosity prediction based on multilayer long short-term memory network. Geophysics 2020, 85, WA213–WA225. [Google Scholar] [CrossRef]
  30. Sun, S.; Nie, J.; Qu, Z.; Chen, Y.; Wang, X.; Zhu, J.; Geng, J. Oil saturation estimation and uncertainty evaluation by modeling-data-driven Gaussian mixture conditional generative adversarial networks. In First International Meeting for Applied Geoscience & Energy Expanded Abstracts; SEG: Houston, TX, USA, 2021; pp. 1691–1695. [Google Scholar] [CrossRef]
  31. Goodfellow, I.; Pouget-Abadie, J.; Mirza, M.; Xu, B. Generative adversarial nets. In Proceedings of the NIPS’14: Proceedings of the 28th International Conference on Neural Information Processing Systems, Montreal, QC, Canada, 8–13 December 2014; Available online: https://dl.acm.org/doi/10.5555/2969033.2969125 (accessed on 8 May 2022).
  32. Liu, M.; Jervis, W.; Li, W.; Nivlet, P. Seismic facies classification using supervised convolutional neural networks and semi-supervised generative adversarial networks. Geophysics 2020, 85, O47–O58. [Google Scholar] [CrossRef]
  33. Araya-Polo, M.; Farris, S.; Florez, M. Deep learning-driven velocity model building workflow. Lead. Edge 2019, 38, a871–a872. [Google Scholar] [CrossRef]
  34. Kaur, H.; Pham, N.; Fomel, S. Seismic data interpolation using deep learning with generative adversarial networks. Geophys. Prospect. 2020, 69, 307–326. [Google Scholar] [CrossRef]
  35. Picetti, F.; Lipari, V.; Bestagini, P.; Tubaro, S. Seismic image processing through the generative adversarial network. Interpretation 2019, 7, SF15–SF26. [Google Scholar] [CrossRef]
  36. Lu, P.; Morris, M.; Brazell, S.; Comiskey, C.; Xiao, Y. Using generative adversarial networks to improve deep-learning fault interpretation networks. Lead. Edge 2018, 37, 578–583. [Google Scholar] [CrossRef]
  37. Durall, R.; Tschannen, V.; Keuper, J. Generative models for the transfer of knowledge in seismic interpretation with deep learning. Lead. Edge 2021, 40, 534–542. [Google Scholar] [CrossRef]
  38. Mirza, M.; Osindero, S. Conditional generative adversarial nets. arXiv 2014, arXiv:1411.1784. [Google Scholar] [CrossRef]
  39. Lin, J. Divergence measures based on the Shannon entropy. IEEE Trans. Inf. Theory 1991, 37, 145–151. [Google Scholar] [CrossRef]
  40. Arjovsky, M.; Chintala, S.; Bottou, L. Wasserstein generative adversarial networks. In Proceedings of the ICML’17: Proceedings of the 34th International Conference on Machine Learning, Sydney, Australia, 6–11 August 2017; Volume 70, pp. 214–223. Available online: https://dl.acm.org/doi/abs/10.5555/3305381.3305404 (accessed on 8 May 2022).
  41. Yang, Y.; Engquist, B.; Sun, J.; Hamfeldt, F. Application of optimal transport and the quadratic Wasserstein metric to full-waveform inversion. Geophysics 2018, 83, R43–R62. [Google Scholar] [CrossRef]
  42. Gulrajani, I.; Ahmed, F.; Arjovsky, M.; Dumoulin, V. Improved training of wasserstein GANs. In Proceedings of the NIPS’17: Proceedings of the 31st International Conference on Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; pp. 5769–5779. Available online: https://dl.acm.org/doi/10.5555/3295222.3295327 (accessed on 4 July 2023).
  43. Maas, A.; Hannun, A.; Ng, A. Rectifier nonlinearities improve neural network acoustic models. Proc. Int. Conf. Mach. Learn. 2013, 30, 3. [Google Scholar]
Figure 1. The architecture of generative adversarial networks.
Figure 1. The architecture of generative adversarial networks.
Processes 13 03215 g001
Figure 2. Conditional generative adversarial network (CGAN) method for gas-bearing property prediction.
Figure 2. Conditional generative adversarial network (CGAN) method for gas-bearing property prediction.
Processes 13 03215 g002
Figure 3. Seismic reflection characteristic of research area.
Figure 3. Seismic reflection characteristic of research area.
Processes 13 03215 g003
Figure 4. Analysis of gas saturation sensitivity parameters. (a) V p -TGAS; (b) V s -TGAS; (c) ρ -TGAS; (d) V p / V s -TGAS; (e) Z p -TGAS; (f) Z s -TGAS.
Figure 4. Analysis of gas saturation sensitivity parameters. (a) V p -TGAS; (b) V s -TGAS; (c) ρ -TGAS; (d) V p / V s -TGAS; (e) Z p -TGAS; (f) Z s -TGAS.
Processes 13 03215 g004
Figure 5. Attribute optimization error analysis.
Figure 5. Attribute optimization error analysis.
Processes 13 03215 g005
Figure 6. Training results of CGANs.
Figure 6. Training results of CGANs.
Processes 13 03215 g006
Figure 7. Cross-plot of CGAN-predicted versus measured gas content.
Figure 7. Cross-plot of CGAN-predicted versus measured gas content.
Processes 13 03215 g007
Figure 8. Spatial distribution of coalbed methane content.
Figure 8. Spatial distribution of coalbed methane content.
Processes 13 03215 g008
Table 1. Optimal selection of eight attributes for generative adversarial network training.
Table 1. Optimal selection of eight attributes for generative adversarial network training.
NumberAttributesTraining Error (%)Validation Error (%)
1Bulk modulus2.0192.027
2Vp/Vs ratio2.0042.016
3Intercept-Gradient Attributes1.9962.014
4P-wave impedance1.9882.011
5Lamé constant × density1.9812.009
6Density1.9762.008
7Lamé constant1.9722.008
8shear modulus × density1.9682.007
Table 2. Prediction error statistics of validation datasets.
Table 2. Prediction error statistics of validation datasets.
Well NameMeasured (m3/t)Predicted (m3/t)Absolute Error (m3/t)RMSE (m3/t)
W214.215.91.71.82
W410.214.44.24.35
W1214.615.00.40.51
W1414.515.30.80.86
W1710.814.94.14.37
W1813.715.01.31.42
W1913.514.00.50.52
W2615.115.20.10.13
W2717.516.51.01.07
W3212.114.72.62.85
W3517.415.61.82.03
W3612.512.40.10.12
Average error 1.61.67
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Tian, L.; Sun, S.; Qi, Y.; Shi, J. Research and Application of Conditional Generative Adversarial Network for Predicting Gas Content in Deep Coal Seams. Processes 2025, 13, 3215. https://doi.org/10.3390/pr13103215

AMA Style

Tian L, Sun S, Qi Y, Shi J. Research and Application of Conditional Generative Adversarial Network for Predicting Gas Content in Deep Coal Seams. Processes. 2025; 13(10):3215. https://doi.org/10.3390/pr13103215

Chicago/Turabian Style

Tian, Lixin, Shuai Sun, Yu Qi, and Jingxue Shi. 2025. "Research and Application of Conditional Generative Adversarial Network for Predicting Gas Content in Deep Coal Seams" Processes 13, no. 10: 3215. https://doi.org/10.3390/pr13103215

APA Style

Tian, L., Sun, S., Qi, Y., & Shi, J. (2025). Research and Application of Conditional Generative Adversarial Network for Predicting Gas Content in Deep Coal Seams. Processes, 13(10), 3215. https://doi.org/10.3390/pr13103215

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop