I have a UWP application that streams tweets and saves them to database. Now i have a Keras LSTM model that predicts the sentiments. One way of calling the model in UWP Application and display results would be through python script but since UWP does not allow any sort of interaction with any process. This is a dead end and i have looked everywhere for a solution.
Is there any way i can call my Keras model saved as .h5 file inside my UWP application directly?
Or if there is a way to bypass the Access Denied error when calling processes from UWP.
P.S Any kind help would be appreciated , I am new to these domains.