There was a problem hiding this comment.
Looks good! @aniketpalu can you please rebase to resolve conflicts ?
Sorry, something went wrong.
There was a problem hiding this comment.
Handle empty entity_df in offline server.
Sorry, something went wrong.
| datetime.fromisoformat(command["start_date"]) | ||
| ) | ||
| end_date = utils.make_tzaware(datetime.fromisoformat(command["end_date"])) | ||
| entity_df = pd.DataFrame( |
There was a problem hiding this comment.
We should not need to create dummy entity_df at all. We should handle empty(entity_df=None) entity_df for and in offline_store.get_historical_features which we are returning in this function.
Sorry, something went wrong.
There was a problem hiding this comment.
You are right, its not needed to create mock dataframe with timestamps, just had to make sure that empty_df is being passed.
Sorry, something went wrong.
What this PR does / why we need it:
Problem
Root Cause
Changes
Which issue(s) this PR fixes:
Misc