Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
csv
Languages:
English
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,7 @@ source_datasets:
|
|
9 |
- stanfordnlp/imdb
|
10 |
task_categories:
|
11 |
- text-classification
|
12 |
-
|
|
|
|
|
|
|
|
9 |
- stanfordnlp/imdb
|
10 |
task_categories:
|
11 |
- text-classification
|
12 |
+
|
13 |
+
---
|
14 |
+
|
15 |
+
For this manipulation, we followed these steps: (1) We fine-tuned the RoBERTa model (roberta-base) \cite{roberta} on the raw IMDb dataset, achieving a classification accuracy of 94.6\% for sentiment analysis. We published this fine-tuned sentiment classifier on HuggingFace under EgehanEralp/roberta-base-imdb-ft for public access. (2) We split the sentences in each train and test sample of the IMDb dataset's input reviews. (3) For each sentence in every review, we queried our fine-tuned RoBERTa sentiment classifier model to obtain sentiment predictions. (4) For positive reviews, we selected the sentences with the highest confidence positive label predictions by the model, retaining these sentences within the original multi-sentence reviews and deleting all other sentences. (5) For negative reviews, we selected the sentences with the highest confidence negative label predictions by the model, retaining these sentences within the original multi-sentence reviews and deleting all other sentences.
|