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

Function NextIteration

tensorflow/go/op/wrappers.go:8124–8136  ·  view source on GitHub ↗

Makes its input available to the next iteration. Arguments: data: The tensor to be made available to the next iteration. Returns The same tensor as `data`.

(scope *Scope, data tf.Output)

Source from the content-addressed store, hash-verified

8122//
8123// Returns The same tensor as `data`.
8124func NextIteration(scope *Scope, data tf.Output) (output tf.Output) {
8125 if scope.Err() != nil {
8126 return
8127 }
8128 opspec := tf.OpSpec{
8129 Type: "NextIteration",
8130 Input: []tf.Input{
8131 data,
8132 },
8133 }
8134 op := scope.AddOperation(opspec)
8135 return op.Output(0)
8136}
8137
8138// Makes a new iterator from the given `dataset` and stores it in `iterator`.
8139//

Callers 12

TESTFunction · 0.85
TESTFunction · 0.85
TESTFunction · 0.85
TESTFunction · 0.85
CreateInductionVariableFunction · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85
TEST_FFunction · 0.85
TEST_FFunction · 0.85
TEST_FFunction · 0.85
BuildWhileLoopFunction · 0.85

Calls 3

ErrMethod · 0.45
AddOperationMethod · 0.45
OutputMethod · 0.45

Tested by 11

TESTFunction · 0.68
TESTFunction · 0.68
TESTFunction · 0.68
TESTFunction · 0.68
CreateInductionVariableFunction · 0.68
TESTFunction · 0.68
TEST_FFunction · 0.68
TEST_FFunction · 0.68
TEST_FFunction · 0.68
TEST_FFunction · 0.68