VectorInput is insanely slow. Am I doing something wrong...? #1363
jamiebullock
started this conversation in
General
Replies: 1 comment
-
Hey @jamiebullock My feeling is that your The In the EasyLoader's Let me know, if that helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using Essentia in streaming mode, using the C++ API.
If I feed my network with an
EasyLoader
, loading a 45 second WAV file, it takes less than a second to compute all the features.However, if I load the the WAV into memory (
std::vector<Real>
) and then use aVectorInput<Real>
to feed my network, it takes over 60 seconds to compute the features!The networks are of the form:
It just gets slower as I add more nodes the network, whereas
EasyLoader
is almost instant.Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions