Fixed incorrectly scanning directories
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b3770a6de9
commit
beaf53c7e0
@ -39,9 +39,10 @@ class Classifier(object):
|
|||||||
librosa.display.specshow(librosa.power_to_db(spectogram, ref=numpy.max))
|
librosa.display.specshow(librosa.power_to_db(spectogram, ref=numpy.max))
|
||||||
|
|
||||||
target_dir = tempfile.mkdtemp()
|
target_dir = tempfile.mkdtemp()
|
||||||
|
wav_basename = os.path.basename(wav_filename)
|
||||||
|
|
||||||
# Change extension to jpg... mert 110% biztos vagyok benne hogy a keras nem bírná beolvasni máshogy
|
# Change extension to jpg... mert 110% biztos vagyok benne hogy a keras nem bírná beolvasni máshogy
|
||||||
file_name = os.path.join(target_dir, "unknown", f"{wav_filename[:-4]}.jpg")
|
file_name = os.path.join(target_dir, "unknown", f"{wav_basename[:-4]}.jpg")
|
||||||
|
|
||||||
matplotlib.pyplot.savefig(file_name, dpi=400, bbox_inches='tight', pad_inches=0)
|
matplotlib.pyplot.savefig(file_name, dpi=400, bbox_inches='tight', pad_inches=0)
|
||||||
matplotlib.pyplot.close()
|
matplotlib.pyplot.close()
|
||||||
|
Loading…
Reference in New Issue
Block a user