auzxb

Results 2 comments of auzxb

同样的问题

with open(os.path.join(self.features_log_directory, "feat-to-dim.log"), "w") as log_file: subset_proc = subprocess.Popen( [ thirdparty_binary("subset-feats"), "--n=1", feature_string, "ark:-", ], stderr=log_file, stdout=subprocess.PIPE, ) dim_proc = subprocess.Popen( [thirdparty_binary("feat-to-dim"), "ark:-", "-"], stdin=subset_proc.stdout, stdout=subprocess.PIPE, stderr=log_file, ) stdout, stderr...