gpt4 book ai didi

tensorflow - 如何修复 "Invalid argument: Key: feature. Can' t 解析序列化示例。”

转载 作者:行者123 更新时间:2023-12-05 05:08:15 27 4
gpt4 key购买 nike

我正在尝试使用 TFRecordDataset 加载我的数据,但是,我陷入了这个错误,我搜索了很多但仍然无法修复。

我的 TensorFlow 版本是 1.14.0。

写入 tfrecords:

raw_data = pd.read_csv(data_file, header=None, delim_whitespace=True)
data_x = raw_data.iloc[:, 1:-4].values
data_y = raw_data.iloc[:, -3:].values
writer = tf.io.TFRecordWriter('test.tfrecord')
for i in range(100):
example = tf.train.Example(features=tf.train.Features(
feature={
'feature': tf.train.Feature(float_list=tf.train.FloatList(value=data_x[i])),
'target': tf.train.Feature(float_list=tf.train.FloatList(value=data_y[i]))
}))
writer.write(example.SerializeToString())

其中 data_x 的形状为 (n, 736),data_y 的形状为 (n, 3)。

解析tfrecords:

def parse_function(record):
features = {
'feature': tf.FixedLenFeature([736], dtype=tf.float32),
'target': tf.FixedLenFeature([3], dtype=tf.float32)
}
example = tf.io.parse_single_example(record, features)
return example['feature'], example['target']

然后从tfrecords中读取数据:

dataset = tf.data.TFRecordDataset('test.tfrecord')
dataset = dataset.shuffle(BUFFER_SIZE)
dataset = dataset.map(parse_function)
dataset = dataset.batch(BATCH_SIZE)
dataset = dataset.prefetch(BUFFER_SIZE)

以同样的方式创建test_dataset。然后构建并编译模型:

model = keras.Sequential([
keras.layers.Dense(400, activation=tf.nn.tanh),
keras.layers.Dense(400, activation=tf.nn.tanh),
keras.layers.Dense(400, activation=tf.nn.tanh),
keras.layers.Dense(3)
])
# print(model.summary())
optim = tf.train.AdamOptimizer(learning_rate=LEARNING_RATE)
model.compile(optimizer=optim,
loss=rmse_and_norm_mae,
metrics=[rmse_and_norm_mae])

最后,训练模型并触发错误:

cp_callback = keras.callbacks.ModelCheckpoint(save_weights_path, verbose=0, save_weights_only=True,save_freq=SAVE_PERIOD)
model.fit(dataset, epochs=EPOCHS,steps_per_epoch=10, validation_data=test_dataset,validation_steps=10, callbacks=[cp_callback], verbose=2)

错误:

InvalidArgumentError: 2 root error(s) found.
(0) Invalid argument: Key: feature. Can't parse serialized Example.
[[{{node ParseSingleExample/ParseSingleExample}}]]
[[IteratorGetNext_64]]
[[training_32/gradients/loss_16/dense_139_loss/Sum_grad/Shape/_2055]]
(1) Invalid argument: Key: feature. Can't parse serialized Example.
[[{{node ParseSingleExample/ParseSingleExample}}]]
[[IteratorGetNext_64]]
0 successful operations.
0 derived errors ignored.

我怎样才能让它发挥作用?非常感谢您的帮助!

最佳答案

问题出在您创建数据时。您的 data_x 的形状是 (100, 734) 而不是 (100, 736)。运行此行时,您排除了第一列和第 736 列:

data_x = raw_data.iloc[:, 1:-4].values

如果这是摆脱这两列的理想方式,您必须在 tf.FixedLenFeature 中指定大小为 734,如下所示:

'feature': tf.FixedLenFeature([734], dtype=tf.float32),

关于tensorflow - 如何修复 "Invalid argument: Key: feature. Can' t 解析序列化示例。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58475029/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com