2024-06-14 09:06 PM
Hi,there
I'm a new learner and I'm trying to deploy an AI example given by ST official ,I trained the model using example dataset and generated an MDK file.I see there has some APIs for users to create and init neural net work like these:
AI_API_ENTRY
ai_error ai_network_create_and_init(
ai_handle* network, const ai_handle activations[ ], const ai_handle weights[ ]);
And my questions :Where can I find "network" handle ,"activations" and "weights"?Or does any one can offer me your project as an example?Much thanks.
Solved! Go to Solution.
2024-06-18 04:05 AM
Hello @KevinZake,
Please take a look at the ModelZoo GitHub repository, it contains code examples, showing how to interface the Cube.AI generated source code to your project. Don't forget to read the Cube.AI documentation to be sure to understand the details on how to use this source code.
Guillaume
2024-06-18 04:05 AM
Hello @KevinZake,
Please take a look at the ModelZoo GitHub repository, it contains code examples, showing how to interface the Cube.AI generated source code to your project. Don't forget to read the Cube.AI documentation to be sure to understand the details on how to use this source code.
Guillaume
2024-06-22 01:59 AM
thank you!I didn't think that I can find those things in CubeAI documentation.Now I read it briefly and that's exactly what I want! Soooo much thanks!