lileipisces / Sentires-Guide

A quick guide to Sentires: Phrase-level Sentiment Analysis toolkit, SIGIR'14
34 stars 5 forks source link

Sentires-Guide

A quick guide to Sentires: Phrase-level Sentiment Analysis toolkit

To obtain this tool, please check Sentires.

Motivation

The tool is very meaningful to the IR community, as many research works are built on top of its results. However, it may be difficult to obtain (feature, opinion, sentence, sentiment) quadruples from user reviews, since it did not have such a function in the first place. Moreover, nowadays people are usually more familiar with Python rather than Java on which this tool was developed. Therefore, here we present our data processing steps (mostly in Python) in the following paper to help researchers quickly obtain the aforementioned quadruples from user reviews.

A small ecosystem for Recommender Systems-based Natural Language Generation is available at NLG4RS!

Creation Steps

Friendly reminder

Results

You will find a file "reviews.pickle" in lei/output/, which is a python list, where each element is a python dict with the following keys:

'user',
'item',
'rating',
'text',
'sentence' # a list of tuples and each tuple looks like (feature, adjective, sentence, score). It could be empty, because the tool may fail to identify feature-opinion pairs from the review.

Datasets to download

Citations

@inproceedings{CIKM20-NETE,
    title={Generate Neural Template Explanations for Recommendation},
    author={Li, Lei and Zhang, Yongfeng and Chen, Li},
    booktitle={CIKM},
    year={2020}
}
@inproceedings{WWW20-NETE,
    title={Towards Controllable Explanation Generation for Recommender Systems via Neural Template},
    author={Li, Lei and Chen, Li and Zhang, Yongfeng},
    booktitle={WWW Demo},
    year={2020}
}
@inproceedings{SIGIR14-Sentires,
    title={Do users rate or review? Boost phrase-level sentiment labeling with review-level sentiment classification},
    author={Zhang, Yongfeng and Zhang, Haochen and Zhang, Min and Liu, Yiqun and Ma, Shaoping},
    booktitle={SIGIR},
    year={2014}
}