-
Notifications
You must be signed in to change notification settings - Fork 111
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 cindex_score function #18
Comments
Hi @Kotober, thanks a lot for your interest in DeepDTA. I think both should work since they aim the same thing. Did you try it with |
Hi! Yes. It changed definitely. Would it be possible for you to check the c-index function again by yourself? because I guess you are developing another method, starting from this DeepDTA. I appreciate if you could be able to publish the modified function. Also, another question here: could you explain which function you used to report the value in DeepDTA's paper? Try this block of code for your reference.
Thank you very much! |
Hi @Kotober, thank you! I really appreciate your effort for this! Well, this is interesting - get_cindex is my original code without tf and I used it and cindex_score monitor both, they usually produced scores with only slight differences. For paper, I remember using get_cindex values because that was the function I used for other methods - but I have to make sure. I remember using cindex_score for monitoring the training. I'll check this for myself soon, and let you know. Best! |
Hi! Thank you very much for the awesome work!
I have a question regarding the c-index below.
DeepDTA/deepdta-toy/run_experiments.py
Line 404 in 62b157c
My question is: should the line
tf.cast(g == 0.0, tf.float32)
betf.cast(tf.math.equal(g, 0.0), tf.float32)
?Thank you very much in advance.
Kyohei
The text was updated successfully, but these errors were encountered: