a question
See original GitHub issueHi,
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 the mentioned paper? I mean, maybe you wrote a blog post about your algorithm or something like this.
Kind regards, Paddy
update:
Also, could you please tell how I can reuse the model which I’ve trained. I mean I finished the training and want to apply it for sorting a list, f.e.:
python model.py [3,4,6,5,1,2]
And the output would be a sorted list:
[1,2,3,4,5,6]
Issue Analytics
- State:
- Created 6 years ago
- Comments:36 (19 by maintainers)
Top Results From Across the Web
Question Definition & Meaning - Merriam-Webster
noun ; b · a subject or aspect in dispute or open for discussion : issue ; d · the specific point at...
Read more >Meaning of question in English - Cambridge Dictionary
a sentence or phrase used to find out information: The police asked me questions all day. Why won't you answer my question?
Read more >Question definition and meaning | Collins English Dictionary
1. an asking; inquiry ; 2. something that is asked; interrogative sentence, as in seeking to learn or in testing another's knowledge; query...
Read more >Question - Wikipedia
A question is an utterance which serves as a request for information. Questions are sometimes distinguished from interrogatives, which are the grammatical ...
Read more >What Is a Question? - Scientific American
Questions, Cohen argues, are not simply a “psychological provocation, on a par with pinpricks and miracles, to the formation of assertions.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@unnir Yep! That’s the general framework. The critic helps to reduce the variance when updating the actor (policy) parameters
@ricgama I contacted the authors of Learning Combinatorial Optimization Algorithms Over Graphs, as they present some results comparing this to their proposed algorithm, and got the following reply about their attempt to replicate the results
“We also use single GPU card for PN-AC (as Hanjun mentioned we use K80 for experiments). It is indeed painful to make Bello et.al.’s method work on TSP2D. We carefully read their paper for many times, and used all the tricks they mentioned. We also found it not working at all, and tried to use exponential moving average as the critic, instead of a separate critic neural network. Finally it works (the loss goes down), but not as good as the performance reported in their paper.”
Hmm… I would just recommend using the reward function I have in
tsp_task.py
, which is the one from the paper. Basically just average tour length. With gradient clipping, it shouldn’t cause any funny business during backprop. Check out issue #5 though-- it turns out our issue was not cloning the mask!