-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about getting the best entire route cost before ValueMLP network is ready #9
Comments
Hi Mike, the route cost is the sum of the costs of the individual reactions in the route. The reaction costs can be arbitrary and should be defined by the user. In our experiment, the reaction cost is defined as the negative log-likelihood of the reaction (sec 5.2), which is given by the one-step model (Eq. 1). You don't need to use the value network to generate the cost before building the dataset. |
Thanks for your answer sincerely. I still got some question when I trying to build resulting dataset.
|
I don't remember the exact numbers. But it seems that you are talking about the total number of data points in the whole dataset and in the training split. If that is the case, the training data points were sampled randomly from the entire dataset. The remaining data points are used for validation and testing.
Yes, that's what I did.
Yes.
Yes, the best route cost.
Yes. |
Hi, I am sincerely thankful for your code and paper.
I'm currently trying to train ValueMLP network on my own resulting dataset. But I got some problem when I trying to construct resulting dataset from training routes. The resulting dataset need the best entire route cost vi. But I have no idea to get the best entire route cost before ValueMLP network is ready. It's something like the chicken and egg problem.
The text was updated successfully, but these errors were encountered: