1. ホーム
  2. Machine Learning

複数の要素を持つ配列の真偽値が曖昧である問題を解決する a.any() または a.all() を使用する。

2022-02-17 02:25:23
def bottom_data_is(self, x, s_prev=None, h_prev=None):
    # if this is the first lstm node in the network
    if [s_prev == None]:
        s_prev = np.zeros_like(self.state.s)
    if [h_prev == None]:
        h_prev = np.zeros_like(self.state.h)
    # save data for use in backprop
    self.s_prev = s_prev
    self.h_prev = h_prev






Just put the parentheses on