Well Log Measurement Prediction Using Neural Networks with Keras | by Andy McDonald | Oct, 2023

Category:

Harness the Potential of AI Tools with ChatGPT. Our blog offers comprehensive insights into the world of AI technology, showcasing the latest advancements and practical applications facilitated by ChatGPT’s intelligent capabilities.

An example of predicting bulk density (RHOB) with Keras and illustrating impacts of normalisation on prediction results

Andy McDonald

Towards Data Science

Image representing neural networks combined with natural landscapes. Image generated by DALL-E 3.

Large amounts of data are acquired daily from wells around the world. However, the quality of that data can vary significantly from missing data to data impacted by sensor failure and borehole conditions. This can have knock-on consequences on other parts of a subsurface project, such as delays and inaccurate assumptions and conclusions.

As missing data is one of the most common issues we face with well log data quality, numerous methods and techniques have been developed to estimate values and fill in the gaps. This includes the application of machine learning technology — which has increased in popularity over the past few decades with libraries such as TensorFlow and PyTorch.

In this tutorial, we will be using Keras, which is a high-level neural networks API that runs on top of TensorFlow. We will use it to illustrate the process of building a machine-learning model to allow predictions of bulk density (RHOB). This is a commonly acquired logging measurement, however, it can be significantly impacted by bad hole conditions or, in some cases, tools can fail, resulting in no measurements over key intervals.

We will start with a very simple model, that does not account for normalising the inputs, a common step in the machine learning workflow. Then, we will then build a second model with normalised inputs and illustrate its impact on the final prediction result.

The first step in this tutorial is to import the libraries we will be working with.

For this tutorial, we need 4 libraries:

These are imported as follows:

import pandas as pd
from…

Discover the vast possibilities of AI tools by visiting our website at
https://chatgptoai.com/ to delve deeper into this transformative technology.

Reviews

There are no reviews yet.

Be the first to review “Well Log Measurement Prediction Using Neural Networks with Keras | by Andy McDonald | Oct, 2023”

Your email address will not be published. Required fields are marked *

Back to top button