Shi Yanpei
Shi Yanpei
Hi, I found the implementation of accuracy just take the logits and then pass it into a softmax. ``` pred = tf.nn.softmax(logit) acc = tf.reduce_mean(tf.cast(tf.equal(tf.argmax(pred, axis=1), labels), dtype=tf.float32)) ``` However,...
Hi ,Thanks for implementing!!! I am reading your code, and Could you please tell me whether you normalize the input data(waveform) to a certain range(e.g. -1 to 1) or you...
Hi I am using windows and I followed your command to install everything. However I got this error, it seems that there is no such function? Is there any idea?...