Christina Theodoris commited on
Commit
c6d04a6
·
1 Parent(s): a13a2cf

edit imports in perturber_utils

Browse files
Files changed (1) hide show
  1. geneformer/perturber_utils.py +4 -4
geneformer/perturber_utils.py CHANGED
@@ -17,10 +17,10 @@ from transformers import (
17
  BitsAndBytesConfig,
18
  )
19
 
20
- GENE_MEDIAN_FILE = Path(__file__).parent / "gene_median_dictionary.pkl"
21
- TOKEN_DICTIONARY_FILE = Path(__file__).parent / "token_dictionary.pkl"
22
- ENSEMBL_DICTIONARY_FILE = Path(__file__).parent / "gene_name_id_dict.pkl"
23
-
24
 
25
  logger = logging.getLogger(__name__)
26
 
 
17
  BitsAndBytesConfig,
18
  )
19
 
20
+ from . import (
21
+ TOKEN_DICTIONARY_FILE,
22
+ ENSEMBL_DICTIONARY_FILE,
23
+ )
24
 
25
  logger = logging.getLogger(__name__)
26