Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 857 Bytes

data_iterator.md

File metadata and controls

24 lines (17 loc) · 857 Bytes

Data Iterators

Data iteratotrs act as an mediator between the data set and models.

                    IDataIteerator               FeatureType
                            |                        |
                            ---------     ------------
                                     |    |
                                CustomDataIterator

Interface

IDataIterator

Example: CoNLL DataIterator

What is expected?

We are following Tensorflow dataset APIs from here

Each data iterator has to tackle the feature generation from the data set, and construct Tensorflow data iterators, such that Tensorflow estimatore can use them in batches while training, validation and testing/predicting.