How to write the python script for Strength of Double Skin steel concrete composite wall using Artificial Neural Network. I have attached the figure for your reference.
following is a general tensorflow keras code and nothing fancy but will work for many applications, have to adapt it for your suiting while processing is the key for better output;
import numpy as np
import pandas as pd
from keras.models import Sequential
from keras.layers import Dense
x = #load data
y = #load data
# do the pre processing accordingly *essential step
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2)