20 lines
710 B
Python
20 lines
710 B
Python
from flask import(
|
|
request,
|
|
jsonify,
|
|
Blueprint,
|
|
)
|
|
from application.functions.sentiment import sentiment_prediction, count_predictions
|
|
|
|
sentiment_service = Blueprint("sentiment_service", __name__)
|
|
|
|
@sentiment_service.route("/get_sentiment_data", methods=['POST'])
|
|
def get_data():
|
|
data = request.get_json()
|
|
predicitons = sentiment_prediction(data['sentences']) #predykcje
|
|
count_labels = count_predictions(predicitons) #dane do wykresu
|
|
|
|
for i in range(0, len(predicitons)):
|
|
predicitons[i]['sentence'] = data['sentences'][i]
|
|
predicitons[i]['label'] = predicitons[i]['label'][6:]
|
|
|
|
return jsonify({"predictions": predicitons, "count_labels": count_labels}) |