fix github workflow

This commit is contained in:
PawelDopierala 2024-06-06 02:01:37 +02:00
parent 855fc593d8
commit 578976bbe4

9
github_project/helper.py Normal file
View File

@ -0,0 +1,9 @@
import tensorflow as tf
def prepare_tensors(df):
Y = df["Price"]
X = df.drop("Price", axis=1)
X_tensor = tf.convert_to_tensor(X, dtype=tf.float32)
Y_tensor = tf.convert_to_tensor(Y, dtype=tf.float32)
return X_tensor, Y_tensor