Compare commits

..

No commits in common. "197c5321131445a1b01472d894089dac82d95edd" and "3b2b6c4af92fa4d1cf329d247a89748b85185ef4" have entirely different histories.

2 changed files with 0 additions and 12 deletions

View File

@ -39,11 +39,3 @@ nix-shell
After running these commands, you will find yourself in a shell that After running these commands, you will find yourself in a shell that
contains all the needed dependencies. contains all the needed dependencies.
## Usage
The following creates the dataset, trains the Deep Learning model and shows the accuracy:
```bash
poetry run python src/model.py
```

View File

@ -85,7 +85,3 @@ def run(data_file, label_file, seed_value=42) -> None:
) )
print("Training complete. Obtaining final metrics...") print("Training complete. Obtaining final metrics...")
show_metrics(model, eval_data, test_data) show_metrics(model, eval_data, test_data)
if __name__ == "__main__":
run(data_file="data/curesim-HVR.fastq", label_file="data/HVR.fastq")