-
Notifications
You must be signed in to change notification settings - Fork 11
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
Some errors when running the example files #44
Comments
Solved in d3381dd |
Solved in 519be2c |
Solved in 3739a10 |
Yes, create your own dataset at 22k sample rate and you will be able to run the script. |
Rename |
Solved alongside 1. I hope this helps! |
Thank you @lostanlen for your quick response, you have been really helpful! I am sorry for posting on a closed issue, but I am not fully familiar with the issue etiquette and thought it would be noisier if I created a new issue for a similar topic. (please let me know if I did wrong for future reference). In the past few days I tried all the scripts (as given and with variations) and unfortunately some of them still gave me errors which I cannot understand. ///////////////////////////////////////////////////////////////////////////////////
////////////////
///////////////////////////////////////////////////////////////////////////////////
I saw the input args of "update_reconstruction" which were ///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////
and when added a different folder with wav files all of 16sec duration had the following error:
/////////////////////////////////////////////////////////////////////////////////// Maybe this goes off topic, but I wanted to ask about the amount of time that the transformations and reconstructions take in general to compute. I placed some of my audio files in the in the format of the recspiral folder examples and according to their length the timing was as follows: for joint: Elapsed time is 3743.506540 seconds. for 5 iteration of 2^18 length for spiral: I noticed that when wanted to analyse and re-synthesize a duration of greater than 2^16 the timing did not increase proportionally to the length of the audio, but much more. Also with spiral scattering time increases significantly. Are these times normal and can they become more manageable? If I wanted to do re-synthesis of a 1 min audio for instance, would that be possible? I saw on the scattering options that there is the "opts{1}.time.is_chunked = true; " In order for this to work for a signal of length 2^23 and chunks 2^16 do I need to do something like the following:
Any help with these would be really great since this is a very exciting toolbox to work with! Thank you again! |
Hi @lostanlen and happy new year! Thank you anyway!! |
Hello and thank you again for these wonderful tools!
As I was running the examples to get a grasp of how things work, some of the scripts gave me errors. It would be really helpful if you could offer some insight into them (especially the first 3).
in the research folder:
///////////////////////////////////////////////////////////////////////////////////
--chordsjoint_1015
Reference to non-existent field 'verbosity_period'.
Error in sc_reconstruct (line 160)
mod_iteration = mod(iteration,reconstruction_opt.verbosity_period);
Error in chordsjoint_1015 (line 47)
sc_reconstruct(target_signal, archs, reconstruction_opt);
///////////////////////////////////////////////////////////////////////////////////
Brace indexing is not supported for variables of this type.
Error in U_to_Y (line 8)
banks{1}.behavior.U.is_scattered && ...
Error in ravel_script (line 63)
target_Y{layer} = U_to_Y(target_U{1+previous_layer},arch);
///////////////////////////////////////////////////////////////////////////////////
--sequenza_joint
Error using sc_reconstruct
Too many input arguments.
Error in sequenza_joint (line 34)
sc_reconstruct(target_S,archs,rec_opt,nIterations);
///////////////////////////////////////////////////////////////////////////////////
--cras19_fig2
Dot indexing is not supported for variables of this type.
Error in cras19_fig2 (line 44)
S{3}{1,1}.data{j2}{1}(1, j1, 2);
///////////////////////////////////////////////////////////////////////////////////
Index exceeds array bounds.
Error in mlsp_companion (line 11)
file_name = file_infos(file_index).name;
///////////////////////////////////////////////////////////////////////////////////
Undefined function or variable 'run_synthesis'.
Error in mlsp_synthesize_mcdermott (line 6)
run_synthesis(P);
/////////////////////////////////////////////////////////////////////////////////
--example_plain
Reference to non-existent field 'verbosity_period'.
Error in sc_reconstruct (line 160)
mod_iteration = mod(iteration,reconstruction_opt.verbosity_period);
Error in example_plain (line 57)
sc_reconstruct(signal, archs, reconstruction_opt);
/////////////////////////////////////////////////////////////////////////////////
Thank you for you time! Any info would be really appreciated.
The text was updated successfully, but these errors were encountered: