eternagame / EternaBrain

Deep learning to solve RNA design puzzles
https://software.eternagame.org/
Other
19 stars 11 forks source link

biorXiv paper comments #35

Closed dylanmmarshall closed 5 years ago

dylanmmarshall commented 6 years ago

Came across the recent biorXiv posting of this work - awesome stuff! I should probably comment through the official Disqus comment thread but whatever.

It was interesting to note how you honed down the input data and implemented a couple of regularization strategies to improve the accuracy of the tandem-CNN model. I'm curious if you have messed around with different loss functions? Though the probability vectors at hand that are being predicted are short, some probability theory can still be applied - I think. See this for some insight on choosing a loss function. If you know, or can reason out, the distribution of the noise, a tailored loss function may improve the accuracy.

Some other off the shelf loss functions: https://www.tensorflow.org/api_docs/python/tf/losses.

Best of luck!

dylanmmarshall commented 6 years ago

Quite impressive, just found out you're in high school - which college will you be going to, out of curiosity?

RK900 commented 6 years ago

Thanks for your input! I never changed the loss function; I always stuck with cross_entropy_with_logits.

By selecting only experts to train on, we significantly decreased the amount of noise in the data. Also, in the results section of the paper, we tested the accuracy when we trained on half of the experts and predicted on the other half, and we found that the accuracies (0.38 and 0.11) were significantly better than random guessing, while not meeting our best accuracies (0.51 and 0.34). So, I think that there is some variation in solving strategies, but not a drastic variation.