Error in "predict" in the "Gesture Recognition using Videos and Deep Learning" example
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
SM
el 16 de Sept. de 2022
Comentada: SM
el 20 de Sept. de 2022
Hello
However, when the code reaches to the line below
dlYPred = predict(slowFastClassifier,dlVideo);
Matlab returns the error below:
Error using predict
No valid system or dataset was specified.
Does anyone have any sugesttion how to resolve the issue?
Thanks
4 comentarios
Walter Roberson
el 17 de Sept. de 2022
The example worked for me on R2022a on MacOS Catalina. It took a bit of time to run.
Respuesta aceptada
Walter Roberson
el 19 de Sept. de 2022
Your code has
slowFastClassifier = pretrained.data.Params;
but the actual code (in both the posted example and the mlx file) is
slowFastClassifier = pretrained.data.slowFast;
Because of that, you were trying to run predict() on a struct(), which was getting you a predict() function defined by the System Identification Toolbox instead of the predict() method appropriate for the slowFastVideoClassifier object.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!