Papers › Sentiment and Emotion Classification of Indonesian E-Commerce Reviews via Multi-Task...

Sentiment and Emotion Classification of Indonesian E-Commerce Reviews via Multi-Task BiLSTM and AutoML Benchmarking

27 Apr 2026arXiv:2604.24720added by Syntology

Hermawan Manurung, Ibrahim Al-Kahfi, Ahmad Rizqi, Martin Clinton Tosima Manullang

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Indonesian marketplace reviews mix standard vocabulary with slang, regional loanwords, numeric shorthands, and emoji, making lexicon-based sentiment tools unreliable in practice. This paper describes a two-track classification pipeline applied to the PRDECT-ID dataset, which contains 5,400 product reviews from 29 Indonesian e-commerce categories, each labeled for binary sentiment (Positive/Negative) and five-class emotion (Happy, Sad, Fear, Love, Anger). The first track applies TF-IDF vectorization with a PyCaret AutoML sweep across standard classifiers. The second track is a PyTorch Bidirectional Long Short-Term Memory (BiLSTM) network with a shared encoder and two task-specific output heads. A preprocessing module applies 14 sequential cleaning steps, including a 140-entry slang dictionary assembled from marketplace corpora. Four configurations are benchmarked: BiLSTM Baseline, BiLSTM Improved, BiLSTM Large, and TextCNN. Training uses class-weighted cross-entropy loss, ReduceLROnPlateau scheduling, and early stopping. Both tracks are deployed as Gradio applications on Hugging Face Spaces. Source code is publicly available at https://github.com/ikii-sd/pba2026-crazyrichteam.

PaperPDFCode Syntology ran

In Syntology For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2604.24720")

Code

Syntology Ran 7 of 14 code samples harvested from 1 repository linked to this paper; 7 have no recorded run. Of those that ran: 7 ran with no contract checked.

By repository: found in paper text by Syntology: 14 samples from 1 repository, 7 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

ikii-sd/pba2026-crazyrichteam found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 7 ran; 0 honoured the contract we drafted; 7 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

7ran
7unverified

Licence: 14 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from ikii-sd/pba2026-crazyrichteam. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

count_parameters ikii-sd/pba2026-crazyrichteam/models/model_design.py found in paper text by Syntology ran no licence file found · pointer only · 2d04b8a814d490f4 · report
ensure_dir ikii-sd/pba2026-crazyrichteam/src/utils.py found in paper text by Syntology ran no licence file found · pointer only · 64ec818fa8f21fdf · report
get_optimizer ikii-sd/pba2026-crazyrichteam/src/model.py found in paper text by Syntology ran no licence file found · pointer only · 38e8cb22dc8b3c3e · report
get_scheduler ikii-sd/pba2026-crazyrichteam/src/model.py found in paper text by Syntology ran no licence file found · pointer only · 0d77e8af1cc709ef · report
get_timestamp ikii-sd/pba2026-crazyrichteam/src/utils.py found in paper text by Syntology ran fingerprinted no licence file found · pointer only · 9f5518d781d79ca9 · report
load_raw_data ikii-sd/pba2026-crazyrichteam/src/dataloader.py found in paper text by Syntology ran no licence file found · pointer only · c466331dc08516d3 · report
setup_run_logger ikii-sd/pba2026-crazyrichteam/src/logger.py found in paper text by Syntology ran no licence file found · pointer only · 7264d0ad783b5f14 · report
batch_clean ikii-sd/pba2026-crazyrichteam/src/preprocessing.py found in paper text by Syntology unverified no licence file found · pointer only · 3f00e382b379ed91 · report
build ikii-sd/pba2026-crazyrichteam/src/models/model_baseline.py found in paper text by Syntology unverified no licence file found · pointer only · 862c10c06cda19eb · report
build ikii-sd/pba2026-crazyrichteam/src/models/model_improved.py found in paper text by Syntology unverified no licence file found · pointer only · 6e1c1d75d4a820c2 · report
build ikii-sd/pba2026-crazyrichteam/src/models/model_large.py found in paper text by Syntology unverified no licence file found · pointer only · 91c5a0e971609b59 · report
build_model ikii-sd/pba2026-crazyrichteam/src/model.py found in paper text by Syntology unverified no licence file found · pointer only · b79931a1936e4453 · report
clean_text ikii-sd/pba2026-crazyrichteam/src/preprocessing.py found in paper text by Syntology unverified no licence file found · pointer only · a0244a869f42339c · report
get_logger ikii-sd/pba2026-crazyrichteam/src/logger.py found in paper text by Syntology unverified no licence file found · pointer only · d016d475578a1d97 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2604.24720, was issued in April 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections