سلام
این رو باید در اصل در تنسورفلو 0.11 اجرا کنید اما به هر حال برای رفع این مشکل خاص خطی که خطا گرفتید یعنی خط 57
cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits
(current_logits, current_output)
رو باید به صورت زیر در بیارید
cross_entropy = tf.nn.sparse_softmax_cross_entropy_with_logits
(logits=current_logits, labels=current_output)