-
Notifications
You must be signed in to change notification settings - Fork 3
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
Verbose setting not passed on to db.getFile #19
Comments
I am getting errors concerning the old API of the database. After fixing that, I'm getting warnings concerning missing files.
I had a look the database and it seems that the label text files for sound_databases/IEEE_AASP/void/ are missing. I will look them up in the internal database. |
The files are missing in the database, because they are supposed to be empty. That was also the main reason for hiding the warning, to avoid that a user is worried. |
But you are right, maybe it would be better to avoid requesting non-existing files at all. |
There are no label files for the void sounds. Our current mechanism for checking that annotation files exist would need to be extended to allow the user to specify when no annotation files are expected. |
The easy way out here is not to not request the file (as the pipeline has no way of knowing which ones don't have annotation files, beforehand), but to create empty annotation files instead of no files. |
By setting
sim.Verbose = false;
,db.getFile()
is still used in verbose mode. See for example https://github.com/TWOEARS/examples/blob/master/identification/identify.m#L16It would be nice if the verbose setting can past to
db.getFile()
as well. This should be easily possible asbVerbose
is already an input parameter to it.The text was updated successfully, but these errors were encountered: