jjgarau / GNND

MIT License
22 stars 5 forks source link

value_y #5

Open gitWayneZhang opened 1 year ago

gitWayneZhang commented 1 year ago

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