Neural-Dialogue-Generation
Neural-Dialogue-Generation copied to clipboard
Just curious ... will you be adding the code for your paper 'Deep Reinforcement Learning for Dialogue Generation' in this repository?
run:th train_atten.lua -train_file ../data/weibo.qa.train.txt -dev_file ../data/weibo.qa.dev.txt -test_file ../data/weibo.qa.test.txt -saveFolder ../result -dictPath ../data/word2num.weibo.qa -gpu_index 2 My GPU is a single K80 and my vocabulary is 25000. Then only 50,000 training sets,...
I followed the instructions in REAME and downloaded the *OpenSubData* from [link](http://nlp.stanford.edu/data/OpenSubData.tar) and unpacked to 8.9GB and I though everything was set. I was wrong. An accident run of `head...
The paper I am reading recently, Data Distillation for Controlling Specificity in Dialogue Generation, feels like a very interesting and novel idea to me, so I am trying out some...
I just run Neural-Dialogue-Generation/Adversarial/discriminative$ th train_dis.lua
There is a bug in `Persona_Addressee/data.lua`, the `read_train(open_train_file)` function. When `self.params.speakerSetting == "speaker"`, the `AddresseeID` won't be set to a non-nil value. So the line `AddresseeID = AddresseeID:cuda()` will trigger...
Hi, I am trying to run test code but I get the following error: /home/user/torch/install/bin/lua: /home/user/torch/install/share/lua/5.3/trepl/init.lua:389: /home/user/torch/install/share/lua/5.1/trepl/init.lua:389: module 'fb.util' not found:No LuaRocks module found for fb.util I think the requirements...
The paper mentioned that the baseline is built by the "hierarchical network" with a linear regression after taking the input. But, I only found that the baseline implementation is just...