You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installation requirement: conda install tensorflow (or tensorflow-gpu for GPU support)
For training, KERAS_BACKEND=tensorflow <training-script> <args> should be enough.
Tested with BiRNN models, similar results observed so far, but further tests need to be conducted, to make sure that there is no side-effect.
The text was updated successfully, but these errors were encountered:
fredblain
changed the title
Update the documentation about the use DeepQuest w/ Tensorflow as backend
Update the documentation about running DeepQuest w/ Tensorflow as backend
Oct 23, 2018
AFAIK the ready-made scripts (train-test-*) expect the backend to be Theano, since they manipulate the standard output from this backend with the commands:
The documentation will be updated along with the code-base within the next few weeks.
Meanwhile, one can retrieve the best epoch as follows, when using Tensorflow as backend: best_epoch=$(grep "Best pearson found at epoch" ${wdir}/log-${model_name}.txt | tr ":" "\n" | tr ' ' '\n' | tail -3 | head -1)
Installation requirement:
conda install tensorflow
(ortensorflow-gpu
for GPU support)For training,
KERAS_BACKEND=tensorflow <training-script> <args>
should be enough.Tested with BiRNN models, similar results observed so far, but further tests need to be conducted, to make sure that there is no side-effect.
The text was updated successfully, but these errors were encountered: