dcc00e1dd4524d4ec4ad2b69e52eaaeb0e144cda,tensorflow_datasets/image/cifar.py,Cifar100,_info,#Cifar100#,176
Before Change
specs=features.SpecDict({
"image": features.Image(shape=cifar_shape),
"label": features.OneOf(choice=label_to_use, feature_dict={
"coarse_labels": tf.int64,
"fine_labels": tf.int64,
}),
}),
After Change
specs=features.SpecDict({
"image": features.Image(shape=cifar_shape),
"label": features.OneOf(choice=label_to_use, feature_dict={
"coarse_labels": features.ClassLabel(num_classes=10),
"fine_labels": features.ClassLabel(num_classes=100),
}),
}),
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances
Project Name: tensorflow/datasets
Commit Name: dcc00e1dd4524d4ec4ad2b69e52eaaeb0e144cda
Time: 2018-11-11
Author: rsepassi@google.com
File Name: tensorflow_datasets/image/cifar.py
Class Name: Cifar100
Method Name: _info
Project Name: tensorflow/datasets
Commit Name: dcc00e1dd4524d4ec4ad2b69e52eaaeb0e144cda
Time: 2018-11-11
Author: rsepassi@google.com
File Name: tensorflow_datasets/image/mnist.py
Class Name: MNIST
Method Name: _info
Project Name: tensorflow/datasets
Commit Name: dcc00e1dd4524d4ec4ad2b69e52eaaeb0e144cda
Time: 2018-11-11
Author: rsepassi@google.com
File Name: tensorflow_datasets/image/cifar.py
Class Name: Cifar10
Method Name: _info