You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Andrew,
In the max_min_values () function of theaudio_file_analysis.py file, you set the values max_value = 0 and min_value = 1e20, respectively.This puzzles me because it seems to be the opposite of the literal meaning of maximum and minimum. Hope to answer.
Looking forward to your reply.
Thank you very much.
Best
Stella
The text was updated successfully, but these errors were encountered:
So in that function we are trying to work out what size the max and min files are. To do this, I set two variables max_value and min_value. Max_value is set to 0 because we don't know what the maximum file length is but every file is longer than 0 so max_value will be updated correctly. The same idea is true for min_value, I have set the initial value to much greater than the length of any file in the dataset so that it will update correctly.
Hi Andrew,
In the
max_min_values ()
function of theaudio_file_analysis.py
file, you set the valuesmax_value = 0
andmin_value = 1e20
, respectively.This puzzles me because it seems to be the opposite of the literal meaning of maximum and minimum. Hope to answer.Looking forward to your reply.
Thank you very much.
Best
Stella
The text was updated successfully, but these errors were encountered: