Hi
I installed selene_sdk with conda, and have set up a conda environment using selene-cpu.yml.
However, I sitll couldn't running the script with selene_cli.py, always with an error "ModuleNotFoundError: No module named 'selene_sdk.sequences._sequence'" and I don't know how to deal with it.
Then I do the training with the codes below (similar training with case1):
from selene_sdk.utils import load_path
from selene_sdk.utils import parse_configs_and_run
configs = load_path("/path/selene/manuscript/case1/test/train_and_eval.yml")
parse_configs_and_run(configs, lr=0.01)
It runs well without any error messages.
However, the training_outputs missing roc_curves.svg, precision_recall_curves.svg, test_predictions.npz, test_targets.npz, test_data.bed and test_performance.txt. Totally missing half of the result!
Only has these outputs:
best_model.pth.tar
selene_sdk.train_model.log
selene_sdk.train_model.validation.txt
validate_data.bed
checkpoint.pth.tar
selene_sdk.train_model.train.txt
train_data.bed
Could you please help me check what the problem with it?
Many thanks.