StyleNet
StyleNet copied to clipboard
Is the Average error for summary wrongly computed?
Is there a lack of parentheses in the 165 line of model.py:
tf.summary.scalar("Average error", self.jazz_loss+self.classical_loss/2)
should it be like:
tf.summary.scalar("Average error", (self.jazz_loss+self.classical_loss)/2)
do you run it sucessfully?