Segmentation for sentiment analysis

I have fine-tuned a model for on sentiment analysis task. If we are doing Sentiment Analysis on a long text which includes more than one sentence, should we feed the whole text to model or each sentence of the text separately to model and then make a decision about the whole sentiment?

Hello,
You can simply do

from transformers import pipeline
pipe = pipeline("text-classification", your_model)
pipe("I was very happy that day. It felt like a dream.")

It works on any document, including paragraphs.

That is true,
What I mean by that was, if I have two sentences, how can I know the sentiment of the whole text.
In your example, both sentences are positive, but what will happen when we have one positive and one negative sentence. Is it able to determine the whole sentiment of text or should we divide it to some sentences and calculate each one’s sentiment and then make a decision somehow based on those two results.