I'm testing an ML model on a small dataset
data = pd.read_csv("house.csv")
x=data.iloc[:,0:3]
y=data["price"]
sd=preprocessing.scale(x)
#print(sd)
#print(data.head())
from keras.models import Sequential
from keras.layers import Dense
from keras.optimizers import Adam
model = Sequential()
model.add(Dense(1, input_shape=(3,)))
model.compile(Adam(lr=0.8), "mean_squared_error", metrics=["accuracy"])
model.fit(sd,y,epochs=100)
yp=model.predict(sd)
data ["pred"] = yp
but when the model starts training it gave me accuracy Zero and the loss is unbelievable !!
Epoch 100/100 32/47 [===================>..........] - ETA: 0s - loss: 125331226624.0000 - accuracy: 0.0000e+00 47/47 [==============================] - 0s 85us/step - loss: 131038484959.3192 - accuracy: 0.0000e+00
here is the dataset https://uinedu-my.sharepoint.com/:x:/g/personal/26636_myoffice_site/EWXspQfJBUVErTuYUuupaUoBO7kY8n1T5j-8I7k_V2zzMQ?e=lJvwaI