a5dee8148cce0583a9f36779811f1e6a97e18ba3,census/tensorflowcore/trainer/model.py,,input_fn,#Any#Any#Any#Any#Any#,261
Before Change
if shuffle:
dataset = dataset.shuffle(buffer_size=batch_size * 10)
dataset = dataset.repeat(num_epochs)
dataset = dataset.batch(batch_size)
iterator = dataset.make_one_shot_iterator()
features = iterator.get_next()
return features, features.pop(LABEL_COLUMN)
After Change
if shuffle:
dataset = dataset.shuffle(buffer_size=batch_size * 10)
iterator = dataset.repeat(num_epochs).batch(
batch_size).make_one_shot_iterator()
features = iterator.get_next()
return features, features.pop(LABEL_COLUMN)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances
Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: a5dee8148cce0583a9f36779811f1e6a97e18ba3
Time: 2018-10-16
Author: gogasca@google.com
File Name: census/tensorflowcore/trainer/model.py
Class Name:
Method Name: input_fn
Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: a5dee8148cce0583a9f36779811f1e6a97e18ba3
Time: 2018-10-16
Author: gogasca@google.com
File Name: census/estimator/trainer/model.py
Class Name:
Method Name: input_fn
Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: a5dee8148cce0583a9f36779811f1e6a97e18ba3
Time: 2018-10-16
Author: gogasca@google.com
File Name: census/customestimator/trainer/model.py
Class Name:
Method Name: input_fn