bb6fbcd93b38969d424fcc5dbf720d603d775658,molecules/pubchem/pipeline.py,,,#,28
Before Change
INPUT_SCHEMA = {
// Features (inputs)
"TotalC": dataset_schema.ColumnSchema(
tf.int64, [], dataset_schema.FixedColumnRepresentation()),
"TotalH": dataset_schema.ColumnSchema(
tf.int64, [], dataset_schema.FixedColumnRepresentation()),
"TotalO": dataset_schema.ColumnSchema(
tf.int64, [], dataset_schema.FixedColumnRepresentation()),
"TotalN": dataset_schema.ColumnSchema(
tf.int64, [], dataset_schema.FixedColumnRepresentation()),
// Labels (outputs/predictions)
"Energy": dataset_schema.ColumnSchema(
After Change
FEATURE_SPEC = {
// Features (inputs)
"TotalC": tf.io.FixedLenFeature([], tf.int64),
"TotalH": tf.io.FixedLenFeature([], tf.int64),
"TotalO": tf.io.FixedLenFeature([], tf.int64),
"TotalN": tf.io.FixedLenFeature([], tf.int64),
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/pubchem/pipeline.py
Class Name:
Method Name:
Project Name: GoogleCloudPlatform/cloudml-samples
Commit Name: bb6fbcd93b38969d424fcc5dbf720d603d775658
Time: 2019-06-04
Author: davido262@gmail.com
File Name: molecules/pubchem/pipeline.py
Class Name:
Method Name:
Project Name: tensorflow/transform
Commit Name: d07e6b17f75f83295a461ac39140741ba24f0026
Time: 2018-09-05
Author: tf-transform-dev@google.com
File Name: examples/simple_example.py
Class Name:
Method Name: main
Project Name: tensorflow/transform
Commit Name: d07e6b17f75f83295a461ac39140741ba24f0026
Time: 2018-09-05
Author: tf-transform-dev@google.com
File Name: examples/sentiment_example.py
Class Name:
Method Name: