This commit is contained in:
aufr33 2021-06-01 05:06:03 +03:00 committed by GitHub
parent 721350b0df
commit 76cc144cb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ def main():
print('loading & stft of wave source...', end=' ')
X_wave, y_wave, X_spec_s, y_spec_s = {}, {}, {}, {}
basename = os.path.splitext(os.path.basename(args.input))[0]
basename = '"{}"'.format(os.path.splitext(os.path.basename(args.input))[0])
bands_n = len(mp.param['band'])
for d in range(bands_n, 0, -1):
@ -354,4 +354,4 @@ def main():
print('Complete!')
if __name__ == '__main__':
main()
main()