I have a response from a kerras prediction that looks like this (y_pred):
array([[127450.63 ],
[181983.39 ],
[150607.72 ],
...,
[460400. ],
[ 92920.234],
[244455.97 ]], dtype=float32)
I need to compare the results to another array that looks like this (t_pred):
[105000. 172000. 189900. ... 131000. 132000. 188000.]
How would I go about converting array 1 to look like array 2 so I can calculate its mean_square_log_error, like this?:
mean_squared_log_error(t_pred, y_pred)