python 3 compatibility fix
This commit is contained in:
Родитель
6264182e44
Коммит
cc378e3f6c
|
@ -5,7 +5,7 @@ import string
|
|||
import os
|
||||
|
||||
def usage():
|
||||
print 'convert_scp_to_cntk.py -in [fea_list] [label_list]'
|
||||
print ('convert_scp_to_cntk.py -in [fea_list] [label_list]')
|
||||
|
||||
def createDir(d):
|
||||
if not os.path.isdir(d):
|
||||
|
@ -27,5 +27,5 @@ else:
|
|||
labs = [x.rstrip() for x in fr]
|
||||
fr.close()
|
||||
lenLab = len(labs)-1
|
||||
print line + "[0,"+str(lenLab)+"]"
|
||||
print (line + "[0,"+str(lenLab)+"]")
|
||||
frnum = frnum + 1
|
||||
|
|
Загрузка…
Ссылка в новой задаче