neural-combinatorial-rl-pytorch icon indicating copy to clipboard operation
neural-combinatorial-rl-pytorch copied to clipboard

PyTorch implementation of Neural Combinatorial Optimization with Reinforcement Learning https://arxiv.org/abs/1611.09940

Results 11 neural-combinatorial-rl-pytorch issues
Sort by recently updated
recently updated
newest added

Is this implementation useable for tasks where not all of the input is selected, but some subset of the input? I have seen partial implementation (such as the finish_symbol variable),...

![image](https://user-images.githubusercontent.com/44637000/50414166-ee4ce980-084e-11e9-856a-7f3a05dedde3.png)

Hi, for both the sorting task and the TSP task, when I run with any n_epochs > 1, toward the beginning of the 2nd epoch I get the following error...

The To Do mentions "Finish implementing beam search decoding to support > 1 beam". It looks like you have various beam width variables in different places of the code. Was...

Hi, first thank you for your repo! I just want to ask you, is there a source from where I can understand more about the architecture of your work, besides...

Hello @pemami4911, The problem really was with the mask. I've fixed it and the network started to learn. My Decoder now is: ``` class Decoder(nn.Module): def __init__(self, feactures_dim,hidden_size, n_layers=1): super(Decoder,...

can't find the SGD in criticnetwork and cant find the temperture in softmax

I ran main.sh (bash . /main.sh), I got this error. ~Validating~ 0%| | 0/1000 [00:00

It was a paper I was interested in and I am very grateful for your program. I have a question about the program. Sorry for the rudimentary question, I have...