data/Amazon/amazon_fader_process.py [181:203]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if hex_dig in male_names:
            gender_label = 0
        elif hex_dig in female_names:
            gender_label = 1
        else:
            gender_label = 2

    #########################
    ######## (Score) ########
    #########################
    score_label = int(float(score.strip()))
    assert score_label in [1, 2, 3, 4, 5]
    if score_label in [4, 5]:
        binary_score = 1
    elif score_label in [1, 2]:
        binary_score = -1
    else:
        binary_score = 0

    #########################
    ###### (Category) #######
    #########################
    category = category.strip()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



data/Yelp/yelp_fader_process.py [149:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if hex_dig in male_names:
            gender_label = 0
        elif hex_dig in female_names:
            gender_label = 1
        else:
            gender_label = 2

    #########################
    ######## (Score) ########
    #########################

    score_label = int(float(score.strip()))
    assert score_label in [1, 2, 3, 4, 5]
    if score_label in [4, 5]:
        binary_score = 1
    elif score_label in [1, 2]:
        binary_score = -1
    else:
        binary_score = 0

    #########################
    ###### (Category) #######
    #########################

    category = category.strip()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



