Added config folder with TSV columns for each model

This commit is contained in:
DiG 2022-02-05 21:05:19 +01:00
parent dcb271a571
commit 4fb8e43a35
1 changed files with 2 additions and 2 deletions

View File

@ -16,9 +16,9 @@ with open(".modelignore", "r") as file:
conf_files = os.listdir( CONFDIR )
keyword = 'your_keyword'
for file in conf_files:
if os.path.isfile(file):
if os.path.isfile( os.path.join(CONFDIR,file) ):
if file.endwith('.tsv'):
eprint( 'Conf file: ', file )
f = open(os.path.join(CONFDIR,file),'r')
f = open( os.path.join(CONFDIR,file), 'r' )
eprint( file[:-4], f.split() )
f.close()