LSTM , keras ( , ), .
keras , , , . , , - keras, , .
-, call() keras/layers/recurrent.py , keras :
def call(self, x, mask=None):
input_shape = self.input_spec[0].shape
if K._BACKEND == 'tensorflow':
if not input_shape[1]:
raise Exception('When using TensorFlow, you should define '
'explicitly the number of timesteps of '
'your sequences.\n'
'If your first layer is an Embedding, '
'make sure to pass it an "input_length" '
'argument. Otherwise, make sure '
'the first layer has '
'an "input_shape" or "batch_input_shape" '
'argument, including the time axis. '
'Found input shape at layer ' + self.name +
': ' + str(input_shape))
if self.stateful:
initial_states = self.states
else:
initial_states = self.get_initial_states(x)
constants = self.get_constants(x)
preprocessed_input = self.preprocess_input(x)
last_output, outputs, states = K.rnn(self.step, preprocessed_input,
initial_states,
go_backwards=self.go_backwards,
mask=mask,
constants=constants,
unroll=self.unroll,
input_length=input_shape[1])
if self.stateful:
self.updates = []
for i in range(len(states)):
self.updates.append((self.states[i], states[i]))
if self.return_sequences:
return outputs
else:
return last_output
-, , script:
import keras.backend as K
from keras.layers import Input, LSTM
class MyLSTM(LSTM):
def call(self, x, mask=None):
self.extra_output = states
if self.return_sequences:
I = Input(shape=(...))
lstm = MyLSTM(20)
output = lstm(I)
extra_output = lstm.extra_output
calculate_function = K.function(inputs=[I], outputs=extra_output+[output])