#aiml #ibm #sentimentclassifier #max #mlx #textsentiment #comprehend #sagemaker
IBM Machine Learning Model
IBM Build Train Deploy
AWS Comprehend Alternative
AWS Sagemaker Alternative
IBM / MAX Text Sentiment Classifier
IBM / MAX Text Sentiment Analyzer
Model Asset eXchange (MAX)
Machine Learning Exchange (MLX)
Sentiment Analysis using Pyhton
Sentiment Analyzer Project
NLP Sentiment Analysis
Natural Language Processing Sentiment Analyzer
IBM NLP
Commands :
Run an already trained model instance
git clone https://github.com/IBM/MAX-Text-Senti...
cd MAX-Text-Sentiment-Classifier
docker build -t max-text-sentiment-classifier .
docker run -it -p 5000:5000 max-text-sentiment-classifier
It will create a build in a docker container. We can check the application on port 5000.
http://localhost:5000
curl -d "{ \"text\": [ \"The Model Asset Exchange is a crucial element of a developer's toolkit.\" ]}" -X POST "http://localhost:5000/model/predict" -H "Content-Type: application/json"
____________________________