摘要


1. Introduction


2. Methods

2.1 BiLSTM

2.2 Attention Mechanism

2.3 1DCNN-BiLSTM-Attention Network

Image


3 Network Building and Training

3.1 Input Feature Selection

Image

3.2 Input Feature Normalization

输入特征归一化在机器学习和深度学习中广泛应用。由于不同测井曲线的数值变化范围较大,未处理的数据可能导致长时间的训练和网络无法收敛,从而影响预测模型的精度。因此,本研究采用最小-最大法将测井数据缩放到[0-1]的范围,公式如下:

$$ X_{norm} = \frac{X - X_{min}}{X_{max} - X_{min}} $$

其中,$X_{norm}$为归一化后的值,$X$为原始测井数据,$X_{max}$和$X_{min}$分别为测井数据的最大值和最小值。

3.3 Network Evaluation Approach

$$ RMSE = \sqrt{\frac{1}{N} \sum_{i=1}^{N} (y_i - p_i)^2} $$

$$ MAE = \frac{1}{N} \sum_{i=1}^{N} |y_i - p_i| $$

$$ R^2 = 1 - \frac{\sum_{i=1}^{N} (y_i - p_i)^2}{\sum_{i=1}^{N} (y_i - \bar{y})^2} $$

其中,$y_i$为真实值,$p_i$为预测值,$\bar{y}$为真实S波速度的平均值,$N$为测试集的数量。

4 Applications and Results

4.1 Comparison of the Same Well

Image

4.2 Comparison of the Different Wells


5 Discussion


6 Summary and Conclusion

Paper Link

转载请注明出处