-
Notifications
You must be signed in to change notification settings - Fork 235
Description
Hello,
First, thank you for the code, it's very interesting and usefull, i've also read your paper and i'm interested in TSP and VRP problem.
I want to use this model but with a "real" dataset. The point is that if I want to respect all distances between my "n" cities, I have to project them into dimensions "n-1".
I've seen the next parameter in your Env class (both TSP and VRP) :
- args['input_dim']: dimension of the problem which is 2
I want to change it (it's set into task_specific_params.py) to solve "real world" problem.
Have you tried change this into "n-1" dimension (9 for TSP 10) to maintain all distances you have between each pair of the 10 nodes ?
I'm triing to use your code, to adapt it to "real" problems, in which you can not consider distances as the crow flies. The real agent need to follow roads.
I'm triing to work on such an issue, by generating new structure of datas to train and test in some new dimensions.
Maybe you also did ?
I've work on a paper and I know that it's dificult to adapt some code made to illustrate progress in a field to an industrial real world big problem.
I'll appreciate if you could tell me if you have been considering my type of approach.
Thanks again !