How do I build a sentiment analysis app with mendix?

0
Hello everyone, I want to build a sentiment analysis app using Mendix. I know that the backend can be written with Python and consumed on Mendix, but I do not know how to consume them on mendix. I am not very good with python either. Please assist. You may also suggest if and how this can be done with other platforms. Thank you
asked
2 answers
2

1- use easy to use  Amazon Comprehend  rest api.

2- there is another way is to use ML Kit in mendix by using the pre-trained model 

https://github.com/onnx/models/tree/main/validated/text/machine_comprehension/robertahttps://github.com/onnx/models/tree/main/validated/text/machine_comprehension/roberta

but you need to customize java action for pre and post processing. base on documentation on github.

 

cheer.

 

answered
0

Hi,

you can script your Python for example in AWS Lamda and expose it there via REST (AWS API Gateway).

Hope that helps. :-)

answered