Sung Kim

Results 183 comments of Sung Kim

Inspired by this project, and this issue, I created one: https://github.com/hunkim/DeepLearningStars/ Please check it out and send a PR to update the list.txt.

Thanks for the information. I was wondering if DeepQA2 is just refactoring or do you add new algorithms to enhance the performance of DeepQA.

@ngarneau Wow this demo (matrix visualization) is amazing. I have two questions for you. 1. I am making slides for RNN (http://bit.ly/PyTorchZeroAll). May I use your matrix visualization in my...

@ngarneau Take your time. I'll finalize my slides and video lectures next week. I really appreciate it.

@ngarneau Do you know how to use pack-pad for decoder? In the example in this repos, he only used pack-pad in the encoder, but the decoder is just batch based...

FYI, I also added data parallel. Please check it out at https://github.com/hunkim/PyTorchZeroToAll/blob/master/12_4_name_classify.py.

@ngarneau However, for this small dataset, it actually takes more time. :-)

Try this one: https://github.com/hunkim/PyTorchZeroToAll/blob/master/12_5_char_rnn.py I modified this code.

Did you add a relu between linear layers? ```python output = self.i2o(combined) output = self.i2o2(output) output = self.i2o3(output) ``` Also try dropout.