5 lines
198 B
Python
5 lines
198 B
Python
# mappings
|
|
binary_map = {'Yes': 1, 'No': 0}
|
|
aspect_map = {'App': 0, 'Driver': 1, 'General': 2, 'Payment': 3, 'Pricing': 4, 'Service': 5}
|
|
sentiment_map = {'Positive': 0, 'Neutral': 1, 'Negative': 2}
|