VKontakte communities can belong to one of several predefined categories. But even among the sports communities there is a fairly strong division by subject! The same authors can write about only one sport or at once about a large number.
Based on a given set of posts, determine the topic - what kind of sport is being discussed in the selected community?
Here is a list of available categories:
- athletics,
- autosport,
- basketball,
- boardgames,
- esport,
- extreme,
- football,
- hockey,
- martial arts,
- motosport,
- tennis,
- volleyball,
- winter_sport
evaluate metric look like:
def score(true, pred, n_samples):
counter = 0
if true == pred:
counter += 1
else:
counter -= 1
return counter / n_samples