Updated lines 55-57, 149 with: # Final prediction final_prediction_scaled = model.predict(X_scaled[-1].reshape(1, -1)) final_prediction = scaler_y.inverse_transform(final_prediction_scaled) | st.write(f"Final Predicted Oil Temperature: {final_prediction[0][0]}")
verified