1.ValueError: Cannot feed value of shape (0,) for Tensor 'Placeholder:0', which has shape '(?, 3000,2048)
原因:训练时使用了num_batches = num_eamples/batch_size,由于是自己写的代码,这里的num_examples代表了所有的样本,而我在训练时只使用了训练集里面的样本,循环到训练集样本个数后就报错了。
训练时循环的次数改为num_batches = num_training_examples/batch_size。
2.使用matlab时,注意fopen和fclose要成对使用,否者很有可能出错。