Public static methods
object calculate_sequence_by_mask_dyn(object mask, object time_major)
ValueTuple<Tensor, object, object, object> cudnn_gru(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, IGraphNodeBase mask, object time_major, object go_backwards)
object cudnn_gru_dyn(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards)
ValueTuple<Tensor, object, object, object, object> cudnn_lstm(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, IGraphNodeBase mask, object time_major, object go_backwards)
object cudnn_lstm_dyn(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards)
ValueTuple<object, object, object, object> gru_with_backend_selection(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards, object activation, object recurrent_activation)
object gru_with_backend_selection_dyn(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards, object activation, object recurrent_activation)
Tensor is_sequence_right_padded(IEnumerable<IGraphNodeBase> mask, bool time_major)
object is_sequence_right_padded_dyn(object mask, object time_major)
ValueTuple<object, object, object, object, object> lstm_with_backend_selection(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards, object activation, object recurrent_activation)
object lstm_with_backend_selection_dyn(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, object mask, object time_major, object go_backwards, object activation, object recurrent_activation)
ValueTuple<object, object, object, Tensor> standard_gru(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, object activation, object recurrent_activation, IGraphNodeBase mask, object time_major, object go_backwards)
object standard_gru_dyn(object inputs, object init_h, object kernel, object recurrent_kernel, object bias, object activation, object recurrent_activation, object mask, object time_major, object go_backwards)
ValueTuple<object, object, object, object, Tensor> standard_lstm(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, object activation, object recurrent_activation, IGraphNodeBase mask, object time_major, object go_backwards)
object standard_lstm_dyn(object inputs, object init_h, object init_c, object kernel, object recurrent_kernel, object bias, object activation, object recurrent_activation, object mask, object time_major, object go_backwards)
Public properties