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
Is posssible to create a autput function in C?
For example I learn my network and need embeding this function to my program in C
is possible to save in file a C function (pieces of program) with all variables, bies etc.
only one big function
The text was updated successfully, but these errors were encountered:
The best way to do this is probably to simply export your trained network to a TINN file with the xtsave() function. You can then package this file with your application. When you want to use the network, use the xtload() function. This will make your source much neater than defining a function that contains every weight for the network.
Thats correct. just xtsave() it and xtload() it next time. You can use xtpredict() all you like with the loaded network. I do so in an embedded setting where I train on a powerful desktop and xtload() and xtpredict() on a MCU.
Is posssible to create a autput function in C?
For example I learn my network and need embeding this function to my program in C
is possible to save in file a C function (pieces of program) with all variables, bies etc.
only one big function
The text was updated successfully, but these errors were encountered: