-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.py
17 lines (14 loc) · 817 Bytes
/
env.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class BaseEnv:
available_fields = ['director', 'actor', 'genre', 'title', 'score']
recommendation_categories = ['Based on similar subjects',
'Based on the same story',
'From the same series',
'In the same genre',
'With the same performer (OST)',
'Similar inspirations']
recommandation_keys = ['topicLabel',
'basedOnLabel', 'seriesLabel']
recommandation_functions = ['recommendation_topic', 'recommendation_based_on', 'recommendation_part_of_series',
'recommendation_genre', 'recommendation_performer', 'recommendation_inspiredby']
num_fields_to_search = 1
env = BaseEnv