spiltData = {
let telcoDataTransformed = new dfd.DataFrame(telcoDataNormalized.getData())
const x = telcoDataTransformed.drop({columns: "churn"}).tensor
const X_t = tf.tensor2d(await x.array())
const y = telcoDataTransformed.loc({columns: ["churn"]}).tensor
let testSize = 0.1;
const splitIdx = parseInt((1- testSize) * telcoDataNormalized.getLength(), 10);
const [xTrain, xTest] = tf.split(X_t, [splitIdx, telcoDataNormalized.getLength() - splitIdx]);
const [yTrain, yTest] = tf.split(y, [splitIdx, telcoDataNormalized.getLength() - splitIdx]);
return [xTrain, xTest, yTrain, yTest];
};