Taehoon
                                            Taehoon
                                        
                                    https://github.com/carpedm20/between/blob/master/examples/echobot.py#L17 This code is not perfect echo bot because it cannot distinguish sender. Here, `msg['from']` looks like `session_id` not an `account_id`, which is used to distinguish `users`.
https://github.com/carpedm20/between/blob/master/between/bot.py#L92 This part is somewhat dirty because I didn't implement the clean `ping` command yet.. However, I think we can improve the error handling even without `ping`.
Need to complete https://github.com/carpedm20/between/blob/master/between/client.py#L325 I don't know how to send a GET request in python like ``` $.ajax({ type:"GET", url:"http://stackoverflow.com/byFileType", data: {"range":{"limit":64},"file_types":["FT_IMAGE","FT_VOUCHER"]} }); ``` which contains list of parameters.
After I read some of the codes, it's hard to fully understand how distributed training works with the code. I guess 'Experiments' is a wrapper that deals with the distributed...
Current implementation successfully works as a autoencoder but it can't generate from the beginning, from a blank image. This error should be related to masking.
Currently only `mnist` dataset is supported which has only one colour channel. Need to add flexible interface to train models with datasets like `cifar10` and `imagenet`. Current working branch is...
Maybe I or others can help you from [here](https://groups.google.com/forum/#!forum/line-python-developer)
I cannot answer to your questions because of the request of LINE corporation :(
It is clear that controller falls into a local optimal while it can't find better actions from REINFORCE. I think unknown `c` of `c/valid ppl`, moving average baseline and temperature...