Sung Kim

Results 40 issues of Sung Kim

Simply put href="{null}" would do the job.

This is really wonderful! This is one example. Is it possible to get the tensorshape of the very first (input) and final output? It would be very useful. ![image](https://user-images.githubusercontent.com/901975/85916325-c5197900-b88a-11ea-955e-f5a6c1abebb7.png)

In this https://github.com/spro/practical-pytorch/blob/master/seq2seq-translation/seq2seq-translation.ipynb, why do we need to feed the last_context as an rnn input? ```python # Combine embedded input word and last context, run through RNN rnn_input = torch.cat((word_embedded,...

Cannot reproduce it anymore, but for the record: ``` bash hunkim:~/word-rnn-tensorflow$ python sample.py --prime="kmalloc" kmalloc Traceback (most recent call last): File "sample.py", line 42, in main() File "sample.py", line 25,...

Currently, we are using weighted_pick to select outputs: ```python def weighted_pick(weights): t = np.cumsum(weights) s = np.sum(weights) return(int(np.searchsorted(t, np.random.rand(1)*s))) ``` Should we also add beam search as an option? See...

Exciting news! https://github.com/tensorflow/tensorflow/releases/tag/v1.0.0-alpha However, it includes some API breaking changes. Perhaps, we need to refactor our code. Please feel free to test and send us PR for TF 1.0!

Should we put the save directory under the data directory? Or at least, we need to check if the directory exists.

We need to change native python IO to support Google Storage, `gs://`. Some hits are: * http://stackoverflow.com/questions/40133223/pickled-scipy-sparse-matrix-as-input-data * https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/lib/io/file_io.py

Could you please check if this code is easy/correct enough to show the basic concepts? https://github.com/hunkim/PyTorchZeroToAll/blob/master/13_1_seq2seq.py https://github.com/hunkim/PyTorchZeroToAll/blob/master/12_5_char_rnn.py @yunjey @kkweon, thanks in advance!

I just added years wonderful list to get the chronological sense.