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
Hello, what's the best way to generate predictions on new mutations? I have a data frame of double mutations to test but was not sure about the best way to query a trained ECNet model.
I tried test_results = ecnet.test(test_df=double_df, save_prediction=True), but this resulted in an error regarding a test_loader being non-iterable (as it is set to None).
Any thoughts would be greatly appreciated! Thanks.
The text was updated successfully, but these errors were encountered:
I pushed a commit. Now you can use ECNet to predict for another new dataset.
The following example shows how to train ECNet on single-mutant fitness data of RRM (passed via --train) and test it on double-mutants dataset (passed via --test).
Hello, what's the best way to generate predictions on new mutations? I have a data frame of double mutations to test but was not sure about the best way to query a trained ECNet model.
I tried
test_results = ecnet.test(test_df=double_df, save_prediction=True)
, but this resulted in an error regarding atest_loader
being non-iterable (as it is set toNone
).Any thoughts would be greatly appreciated! Thanks.
The text was updated successfully, but these errors were encountered: