Views
No views yet
ImprovedCashFlowLSTM) for forecasting store sales over a 13-week horizon, trained on the Kaggle Store Sales Time Series Forecasting dataset.


1from inference import load_model_and_artifacts, predict
2model, scaler, feature_names, config = load_model_and_artifacts()
3sequences = scaler.transform(your_data[feature_names].values).reshape(1, 21, 20)
4predictions, uncertainties = predict(model, scaler, sequences)
5print("Predictions:", predictions)