MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / call

Method call

tensorflow/contrib/seq2seq/python/ops/decoder.py:183–193  ·  view source on GitHub ↗
(self, inputs, initial_state=None, **kwargs)

Source from the content-addressed store, hash-verified

181 super(BaseDecoder, self).__init__(**kwargs)
182
183 def call(self, inputs, initial_state=None, **kwargs):
184 init_kwargs = kwargs
185 init_kwargs["initial_state"] = initial_state
186 return dynamic_decode(self,
187 output_time_major=self.output_time_major,
188 impute_finished=self.impute_finished,
189 maximum_iterations=self.maximum_iterations,
190 parallel_iterations=self.parallel_iterations,
191 swap_memory=self.swap_memory,
192 decoder_init_input=inputs,
193 decoder_init_kwargs=init_kwargs)
194
195 @property
196 def batch_size(self):

Callers

nothing calls this directly

Calls 1

dynamic_decodeFunction · 0.85

Tested by

no test coverage detected