summaryrefslogtreecommitdiff
path: root/classifier.py
blob: 471c645a19000d4b97bb5c4231120a3e8eddde56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#!/usr/bin/python

import os
import json
import itertools
import logging
import tensorflow as tf
import psycopg2
import psycopg2.extras


class Classifier(object):
    def __init__(self, name):
        self._name = name
        self.model = None
        self.modeldir = os.path.realpath(
            os.path.join(os.getcwd(), os.path.dirname(__file__))) + "/models/" + self._name

        self._conn = None

        # empty defaults
        self._categories = []
        self._continuous = []
        self._classes = []

        # learn configuration
        self._steps = 0  # per batch
        self._batchsize = 0
        self._max_batches = 0  # number of batches to train
        self._dimension = 0  # embeddings dimension, log_2(num of unique features)
        self._bucketsize = 0  # sparse column hash bucket size
        self._hidden = []  # hidden layers http://stats.stackexchange.com/a/1097

        # db SQL mappings
        # TODO use cache
        # override these
        self._trainquery = ""
        self._testquery = ""
        self._insertquery = ""
        self._label = ""

        #
        self._binary = False
        self._label_available = True  # label is in data

    def connect(self, **args):
        self._conn = psycopg2.connect(**args)

    def _model_setup(self):
        """Sets up a model that takes the `num_features` features as input."""
        feature_columns = [
            tf.contrib.layers.sparse_column_with_hash_bucket(feat, self._bucketsize)
            for feat in self._categories
        ]
        emb_columns = [
            tf.contrib.layers.embedding_column(
                sparse_id_column=col,
                dimension=self._dimension
            )
            for col in feature_columns
        ] + [
            tf.contrib.layers.real_valued_column(feat)
            for feat in self._continuous
        ]

        self.model = tf.contrib.learn.DNNClassifier(
            feature_columns=emb_columns,
            hidden_units=self._hidden,
            n_classes=len(self._classes),
            model_dir=self.modeldir,
            config=tf.contrib.learn.RunConfig(
                save_checkpoints_secs=2
            )
        )

    def _get_sample(self, size=None, filter=None):
        """Return a data set from the database.
        :param size: (optional) The number of items to get. Defaults to `All`.
        :type size: int or str
        :param offset: (optional) The SQL OFFSET parameter.
        :type offset: int or str
        """
        cur = self._conn.cursor(cursor_factory=psycopg2.extras.DictCursor)

        assert (filter is None) ^ (size is None)
        if filter is None:
            cur.execute(self._trainquery, (size,))
        else:
            cur.execute(self._testquery, (filter,))

        ids = []
        data = {name: [] for name in self._continuous + [self._label]}
        for rec in cur:
            for key in data.keys():
                if key == self._label and not self._label_available:
                    val = self.guess_label(rec)
                else:
                    val = rec[key]
                data[key].append(val)
                ids.append(rec["id"])
        cur.close()
        return data, ids

    def guess_label(self, data):
        """Return a label based on data."""
        # override
        pass

    # TODO tf warning - dimensions are wrong
    def _toinput(self, sample, train=True):
        """Convert sample to Tensors.
        :param sample: Data dictionary.
        :type sample: dict
        :param train: (optional) Whether to return labels too.
        :type train: bool
        :return: features, label
        :rtype: tuple
        """
        continuous = {k: tf.constant(sample[k])
                      for k in self._continuous}
        categories = {k: tf.SparseTensor(
            indices=[[i, 0] for i in range(len(sample[k]))],
            values=sample[k],
            shape=[len(sample[k]), 1])
                    for k in self._categories}

        features = {**continuous, **categories}

        if train:
            label = tf.constant(sample[self._label])
            return features, label
        else:
            return features

    def _more(self):
        """Fetches up to `limit` number of training items
           from the database in batches."""
        # TODO maybe you can use an iterator?
        sample = self._get_sample(size=self._batchsize)[0]
        return self._toinput(sample, train=True)

    def train(self):
        """Train a DNN on a static, algorithmic guess."""
        self._model_setup()

        if os.path.isdir(self.modeldir):
            logging.warning("already trained, not training again")
            return

        # get one batch of testing data
        # TODO either terminate with `eval_steps` or with OutOfRangeError
        validation_monitor = tf.contrib.learn.monitors.ValidationMonitor(
            input_fn=lambda: self._toinput(self._get_sample(size=1000)[0], train=True),
            eval_steps=1,
            every_n_steps=10
        )

        for _ in range(self._max_batches):
            self.model.fit(
                input_fn=lambda: self._more(),
                steps=self._steps,
                monitors=[validation_monitor]
            )

    def classify(self, sample):
        """Classify a data set.

        :param only_best: (optional) Return the predicted result
                          instead of a dict of propabilities.
        :type only_best: bool
        :return: Prediction results.
        :rtype: list of dict or list
        """
        return self.model.predict_proba(input_fn=lambda: self._toinput(sample, train=False))

    def windup(self):
        pass

    def teardown(self, failed=False):
        if failed:
            pass
        else:
            self._conn.commit()

    def classify_db(self, objids):
        """Classify all data in the data base and insert."""
        # split sample (with participant ids) into data and ids
        # TODO use parameters
        sample, ids = self._get_sample(filter=objids)
        d = self.classify(sample)
        cnt = 0
        cur = self._conn.cursor()
        for l in itertools.islice(d, len(objids)):
            # TODO use executemany?
            cur.execute(self._insertquery, {
                "id": ids[cnt],
                self._label: json.dumps(l.tolist())
            })
            cnt += 1
        cur.close()

class KDAClassifier(Classifier):
    """A DNN that classifies loss/win based on KDA."""
    def __init__(self):
        super().__init__("kda-win")

        # DNN configuration
        self._continuous = ["kills", "deaths", "assists", "cs", "teamkills"]
        self._classes = ["loss", "win"]
        self._label = "win"
        self._binary = True

        self._steps = 200
        self._batchsize = 500
        self._max_batches = 5

        self._trainquery = """
            SELECT
                participant.kills,
                participant.deaths,
                participant.assists,
                participant.farm AS cs,
                roster.hero_kills AS teamkills,
                participant.winner AS win,
                participant.api_id AS id
            FROM participant
            TABLESAMPLE BERNOULLI(5)
            JOIN roster on participant.roster_api_id=roster.api_id
            JOIN match on roster.match_api_id=match.api_id
            LIMIT %s
        """
        self._testquery = """
            SELECT
                participant.kills,
                participant.deaths,
                participant.assists,
                participant.farm AS cs,
                roster.hero_kills AS teamkills,
                participant.winner AS win,
                participant.api_id AS id
            FROM participant
            JOIN roster on participant.roster_api_id=roster.api_id
            JOIN match on roster.match_api_id=match.api_id
            WHERE participant.api_id=ANY(%s)
        """
        self._insertquery = """
            INSERT INTO participant_stats
            (patch_version, participant_api_id, score)
            VALUES(2.2, %(id)s, (%(win)s::json->>1)::float)
            ON CONFLICT(participant_api_id) DO
            UPDATE SET score=(%(win)s::json->>1)::float
        """

        self._dimension = 5
        self._bucketsize = 100
        self._hidden = [2]


class RoleClassifier(Classifier):
    """A DNN that classifies participants into roles based on CS."""
    def __init__(self):
        super().__init__("roles")

        # DNN configuration
        self._continuous = ["lanefarm", "junglefarm"]
        self._classes = ["carry", "jungler", "captain"]
        self._label = "role"
        self._binary = True
        self._label_available = False

        self._steps = 200
        self._batchsize = 500
        self._max_batches = 5

        self._trainquery = """
            SELECT
                participant.hero AS hero,
                participant.jungle_kills AS junglefarm,
                (participant.minion_kills-participant.jungle_kills) AS lanefarm,
                participant.api_id AS id
            FROM participant
            TABLESAMPLE BERNOULLI(5)
            LIMIT %s
        """
        self._testquery = """
            SELECT
                participant.hero AS hero,
                participant.jungle_kills AS junglefarm,
                (participant.minion_kills-participant.jungle_kills) AS lanefarm,
                participant.api_id AS id
            FROM participant
            WHERE participant.api_id=ANY(%s)
        """
        self._insertquery = """
            INSERT INTO participant_stats
            (patch_version, participant_api_id, role)
            VALUES(2.2, %(id)s, %(role)s::json)
            ON CONFLICT(participant_api_id) DO
            UPDATE SET role=%(role)s::json
        """

        self._dimension = 5
        self._bucketsize = 100
        self._hidden = [3]

    def guess_label(self, data):
        hero_map = {
            '*Adagio*': 'captain',
            '*Alpha*': 'jungler',
            '*Ardan*': 'captain',
            '*Baron*': 'carry',
            '*Blackfeather*': 'jungler',
            '*Catherine*': 'captain',
            '*Celeste*': 'carry',
            '*Flicker*': 'captain',
            '*Fortress*': 'captain',
            '*Glaive*': 'jungler',
            '*Grumpjaw*': 'jungler',
            '*Gwen*': 'carry',
            '*Idris*': 'jungler',
            '*Joule*': 'jungler',
            '*Kestrel*': 'carry',
            '*Koshka*': 'jungler',
            '*Hero009*': 'jungler',
            '*Lance*': 'captain',
            '*Lyra*': 'captain',
            '*Ozo*': 'jungler',
            '*Petal*': 'jungler',
            '*Phinn*': 'captain',
            '*Reim*': 'jungler',
            '*Ringo*': 'carry',
            '*Hero016*': 'jungler',
            '*Samuel*': 'carry',
            '*SAW*': 'carry',
            '*Hero010*': 'carry',
            '*Sayoc*': 'jungler',
            '*Skye*': 'carry',
            '*Taka*': 'jungler',
            '*Vox*': 'carry'
        }

        score = {"carry": 0, "jungler": 0, "captain": 0}
#        score["carry"] += data["lanefarm"] / 100  # TODO average lane cs
#        score["jungler"] += data["junglefarm"] / 80  # TODO avg jungle cs
        score[hero_map[data["hero"]]] += 1
        return self._classes.index(max(score, key=score.get))