Tasks

All tasks consist of the detection of mental disorders in users based on their comments posted on Telegram. Given a history of messages about a user, the goal is to identify whether the user suffers from the disorder or not, and his/her attitude to it: against (intends to leave) or in favour of it (intends to continue). 

 

Task 1. Eating disorders detection

1.a. Binary classification

Detect if the user suffers from anorexia or bulimia. Labels will be 0 for “control” (negative, the user does not suffer from eating disorder) or 1 for “suffer” (positive). Let’s see some examples:

1.b. Simple regression

Provide a probability for the user to suffer anorexia or bulimia. A value of 0 means 100% negative and a value of 1 would be 100% positive.

Task 2. Depression detection 

2.a. Binary classification

Detect if the user suffers from depression. Labels will be 0 for “control” (negative, the user does not suffer from depression) or 1 for “suffer” (positive). Let’s see some examples:

2.b. Simple regression

Provide a probability for the user to suffer depression. A value of 0 means 100% negative and a value of 1 would be 100% positive.

2.c. Multiclass classification

Decide one among four different classes (“suffer+against”,  “suffer+in favour”, “suffer+other”, “control”). The system must return one of these labels for each case.


2.d. Multi-output regression

For each of the previous classes, the system has to provide a probability of belonging to that class. These values, as in task 1.b., are interpreted as 0 for a 100% confidence of the system to not assign the user to a class, and 1 for a 100% probability of assigning the user to a class. Note that the sum of the four probabilities must be 1.

Task 3. Non-defined disorder detection 

(cross-domain evaluation)

This is a binary classification (suffer, control) in which participants are encouraged to use the systems developed for subtasks 1.a, 1.b, 2.a, 2.b to identify a different disorder that is unknown to the participant but is related to the previous ones (eating disorder and depression). 

3.a. Binary classification

Detect if the user suffers from an unknown disorder. Labels will be 0 for “control” or 1 for “suffer” (positive). 

For this task, participants can use the systems developed for subtasks 1.a. and 2.a.

3.b. Simple regression

Provide a probability for the user to suffer from the unknown disorder. A value of 0 means 100% negative and a value of 1 would be 100% positive.

For this task, participants can use the systems developed for subtasks 1.b. and 2.b.