Es scheint, dass dies mit Amazon Comprehend möglich ist.
Siehe Gefühl erkennen https://docs.aws.amazon.com/comprehend/latest/dg/API_DetectSentiment.html
Ich werde es diesmal mit Python versuchen, also werde ich mir das für Python ansehen. https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/comprehend.html#Comprehend.Client.detect_sentiment
Oben ist was zu importieren. https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/comprehend.html
Der Code sieht so aus.
import boto3
client = boto3.client('comprehend')
response = client.detect_sentiment(
Text='Die Verschiebung der Olympischen Spiele in Tokio ist genau wie in der Welt von Akira.',
LanguageCode='ja'
)
print(response)
Das Ergebnis sieht so aus.
{'Sentiment': 'NEUTRAL', 'SentimentScore': {'Positive': 0.12571793794631958, 'Negative': 0.006899271160364151, 'Neutral': 0.8673694729804993, 'Mixed': 1.3250895790406503e-05}, 'ResponseMetadata': {'RequestId': 'e458bcfd-c85e-4314-bb01-f11b8e72ec8f', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amzn-requestid': 'e458bcfd-c85e-4314-bb01-f11b8e72ec8f', 'content-type': 'application/x-amz-json-1.1', 'content-length': '164', 'date': 'Fri, 27 Mar 2020 04:44:21 GMT'}, 'RetryAttempts': 0}}
Recommended Posts