File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
tensorflow/core/framework Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -317,8 +317,16 @@ class Runner {
317
317
static Runner* get ();
318
318
};
319
319
320
- // A class which provides a sequence of splits. Iterators created with a split
321
- // provider will iterate over only the splits provided by the split provider.
320
+ // A class which provides a sequence of splits. Splits represent subdivisions of
321
+ // a dataset, e.g. filenames or ranges within files. We use splitting to
322
+ // partition input data into smaller pieces for distributed processing (see
323
+ // go/tf-data-splitting-design).
324
+ //
325
+ // Datasets provide a `MakeSplitProvider` method to expose a listing of their
326
+ // splits.
327
+ //
328
+ // Iterators created with a split provider will only iterate over the splits
329
+ // provided by the split provider.
322
330
class SplitProvider {
323
331
public:
324
332
virtual ~SplitProvider () {}
You can’t perform that action at this time.
0 commit comments