Tuesday, 12 March 2019

Cannot interpret feed_dict key as Tensor: Tensor Tensor("Placeholder 8:0", shape=(60000, 512), dtype=float32) is not an element of this graph. [12/Mar/2019 09:26:02]

Type API Error:

Solution:
Please Import this line

from keras import backend as K



Before load training file add this line



K.clear_session()



This is work for me

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...