Kaihu Chen

Results 24 comments of Kaihu Chen

@asetsuna If it is of any help, I did a bunch of bw-color experiments which are described [here http://www.terraai.org/cgan](http://www.terraai.org/cgan/index.html). One conclusion out of these experiments is that it very much...

The visualize option in this code lets you sample from the trained model to generate new images. Separately I have found two others ways to make use of a trained...

@wanghm92 In case you are not aware, OpenNMT-py does support a training option called "coverage_attn" which I have used to solve a problem somewhat similar to yours. My use case...

@wanghm92 FYI, I have been trying out the coverage_attn feature in OpenNMT-py since just yesterday. What I have observed from my experiments so far are as follows: - If I...

I also have problem running the MNIST experiment, but the symptom looks different from the above: $ PYTHONPATH='.' python launchers/run_mnist_exp.py I tensorflow/stream_executor/dso_loader.cc:108] successfully opened CUDA library libcublas.so.7.5 locally I tensorflow/stream_executor/dso_loader.cc:108]...

@frizfealer Got it. Thanks!

@lemonzi To clarify, I also thought the fact that WaveNet is able to work with raw audio is amazing, which was actually what attracted me to it in the first...

@fujimotomh Thanks for making your fork available. I find what you did with separating out some functions (such as pre-processing) quite useful, since it makes it easier for me to...

Upon further investigation I found that the error came from line #164 in decode_text.py: fetches["features.source_tokens"] = np.char.decode( fetches["features.source_tokens"].astype("S"), 'utf-8') If I change the statement to the following: fetches["features.source_tokens"] = np.char.decode(...

To answer my own question on **why training with character-level multibyte UTF-8 data results in a useless model**: I believe the training phase has failed due to a bug in...