Move hardcorded data to a constants module

This commit is contained in:
2021-06-01 19:27:10 +02:00
parent 44ff69dc9e
commit 220c0482f1
3 changed files with 17 additions and 7 deletions

3
src/constants.py Normal file
View File

@@ -0,0 +1,3 @@
BASES = "ACGT"
TRAIN_DATASET = "data/train_data.tfrecords"
TEST_DATASET = "data/test_data.tfrecords"