MCPcopy Index your code
hub / github.com/tensorflow/tfjs / iteratorFromZipped

Function iteratorFromZipped

tfjs-data/src/iterators/lazy_iterator.ts:136–140  ·  view source on GitHub ↗
(
    iterators: IteratorContainer,
    mismatchMode: ZipMismatchMode = ZipMismatchMode.FAIL)

Source from the content-addressed store, hash-verified

134 * in nulls for the exhausted streams, until all streams are exhausted.
135 */
136export function iteratorFromZipped<O extends tf.TensorContainer>(
137 iterators: IteratorContainer,
138 mismatchMode: ZipMismatchMode = ZipMismatchMode.FAIL): LazyIterator<O> {
139 return new ZipIterator<O>(iterators, mismatchMode);
140}
141
142/**
143 * An asynchronous iterator, providing lazy access to a potentially

Callers 2

zipFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…