-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plotPath in spectrogram.ipynb is not an actual file location #18
Comments
Hi @Debjoy10 |
Hi @kunakl07 |
Hi @Debjoy10 https://colab.research.google.com/drive/1np-Ipchx3A3Mvl5egukEg8_GaDly4SYV # Please replace this with YOUR path to orcadata
basePath = r"/content/"
plotPath = join(basePath, "orcadata", "Spectrogram", "Plots-Ford")
folderpath = join(basePath, "orcadata", "Sounds", "catalog", "flac")
onlyfiles = [f for f in listdir(folderpath) if isfile(join(join(folderpath, f))) Here are the changes that I feel would help you |
Hello @Debjoy10, the plot path is only used to store the spectrogram images in png format as you see in the end line of the program. So if you run the program and change the plots to Plots-Ford it saves your spectrograms to that folder and might alter the folder(as @kunakl07 suggests). So instead of doing this why don't you create a separate folder with the same name as 'Plots' in that particular directory and saves all your spectrograms over there. |
Thanks @nikhilrana015 , @kunakl07 i will make the necessary changes. |
Resolved by #23 |
In file Spectogram/Scripts/spectrogram.ipynb, cell 2, line-
does not correspond to an actual file path.
The text was updated successfully, but these errors were encountered: