You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I see your value_y constructor in the covid_recurrent.py
values_y = df.iloc[(i + params.lookback_pattern[0]):(i + params.lookback_pattern[0] + 1), 1:].to_numpy().T
Is this just one day case value starting from 28th day?
Wondering should be a sequence from the second day to the 29th day? Like:
values_y = df.iloc[(i + 1):(i + params.lookback_pattern[0] + 1), 1:].to_numpy().T
Could you help explain this?
THANKS.
Wayne
The text was updated successfully, but these errors were encountered:
Hi,
I see your value_y constructor in the covid_recurrent.py
values_y = df.iloc[(i + params.lookback_pattern[0]):(i + params.lookback_pattern[0] + 1), 1:].to_numpy().T
Is this just one day case value starting from 28th day?
Wondering should be a sequence from the second day to the 29th day? Like:
values_y = df.iloc[(i + 1):(i + params.lookback_pattern[0] + 1), 1:].to_numpy().T
Could you help explain this?
THANKS.
Wayne
The text was updated successfully, but these errors were encountered: