Same Sentiment Classification Train/Dev/Test Pair IDs
收藏资源简介:
This "dataset" only includes the compiled pairings of the Yelp Business Review Dataset. To get access to the actual review texts, please follow the instructions on the Yelp Dataset webpage. The data format is <em>JSONlines</em>.<br> Python Load Example: <pre><code class="language-python">import pandas as pd traindev_df = pd.read_json("df_traindev.jsonl", lines=True) test_df = pd.read_json("df_test.jsonl", lines=True) # example access to single business/review id s1_bid = test_df.iloc[0]["sent1_business_id"] s1_rid = test_df.iloc[0]["sent1_review_id"] s2_bid = test_df.iloc[0]["sent2_business_id"] s2_rid = test_df.iloc[0]["sent2_review_id"] label = test_df.iloc[0]["is_same_side"]</code></pre> See documentation at: Yelp Dataset Schemata (only <em>business.json</em> and <em>review.json</em> were used) Yelp Business Category Hierarchy (download the json file as <em>all_category_list.json</em>) For details on how the data was compiled and used in our experiments, please refer to our code repository. Other derived data splits can be reproduced deterministically by using the same random seed as in our experiments.



