question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

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 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:open
  • Created 6 years ago
  • Comments:36 (19 by maintainers)

github_iconTop GitHub Comments

2reactions
pemami4911commented, Oct 23, 2017

@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.”

1reaction
pemami4911commented, Nov 6, 2017

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!

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found