0 votes
in Deep Learning by

You have a pet dog whose mood is heavily dependent on the current and past few days’ weather. You’ve collected data for the past 365 days on the weather, which you represent as a sequence as x<1>,…,x<365>. You’ve also collected data on your dog’s mood, which you represent as y<1>,…,y<365>. You’d like to build a model to map from x→y. Should you use a Unidirectional RNN or Bidirectional RNN for this problem?

1 Answer

0 votes
by
Unidirectional RNN, because the value of y depends only on x<1>,…,x, but not on x<t+1>,…,x<365>
...