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 am some kind of confused about the implementation of ntm_cell, especially the call() part.
According to the code, it seems that the new_output has nothing to do with the memory part.
Should it be more plausible if the new_output adapts itself with memory part?
`
output_list, hidden_list = self.build_controller(input_, read_list_prev,
output_list_prev,
hidden_list_prev)
# last output layer from LSTM controller
last_output = output_list[-1]
# build a memory
M, read_w_list, write_w_list, read_list = self.build_memory(M_prev,
read_w_list_prev,
write_w_list_prev,
last_output)
# get a new output
new_output, new_output_logit = self.new_output(last_output)
`
The text was updated successfully, but these errors were encountered:
Hi
I am some kind of confused about the implementation of ntm_cell, especially the call() part.
According to the code, it seems that the new_output has nothing to do with the memory part.
Should it be more plausible if the new_output adapts itself with memory part?
`
output_list, hidden_list = self.build_controller(input_, read_list_prev,
output_list_prev,
hidden_list_prev)
`
The text was updated successfully, but these errors were encountered: