Cahya Wirawan

Results 38 comments of Cahya Wirawan

You can take the scores to calculate the probability using softmax function. Please have a look at my implementation to get the probability of each class: [eval.py](https://github.com/cahya-wirawan/cnn-text-classification-tf/blob/master/eval.py)

I would use softmax if I want to get also the probabilities such as: self.scores = tf.nn.xw_plus_b(self.h_drop, W, b, name="scores") self.probabilities = tf.nn.softmax(self.scores) self.predictions = tf.argmax(self.scores, 1, name="predictions") But I...

I have pre-trained data https://nofile.io/f/6ZkDvJH0nT4 which is used for my project https://github.com/cahya-wirawan/opentc

Agree that we need to have access to the original sound files. Few days ago I was looking for these original files because I suspected there is bug in the...

I fixed the kernel restarting after I use CUDA 9.2 instead of CUDA 10.0. It seems the model doesn't like the latest cuda version. Now the notebook runs properly to...

I have also the same problem, it's annoying if we can't see the progress anymore after we close the tab or disconnected for a while, especially during the training which...

Hi @bryanwilie, sorry for the late action. I am working on it.

Hi @bryanwilie, I am working on it.