Classification Of Robots From Their Conversation
Develop an ML model that predicts the robot from their sequence
@kaggle.msk1097_classification_of_robots_from_their_conversation
Develop an ML model that predicts the robot from their sequence
@kaggle.msk1097_classification_of_robots_from_their_conversation
**Description:
**
5 Robots, named quite unexpectedly **0,1,2,3,4 **are having a uniform conversation, where each of them spits out a series of 10 numbers at a time in a round-robin fashion. The task is to train a model which can predict the robot when given the 10 numbers spoken by it, with a good accuracy. A log of a long conversation between these 5 robots has been given, this is your datasets.
**A snippet of their conversation: **
Task - Develop an ML model that predicts the robot from their sequence with a good accuracy
Help Notes:
CREATE TABLE classification_of_robots_from_their_conversation_sequence (
"source" BIGINT,
"num1" BIGINT,
"num2" BIGINT,
"num3" BIGINT,
"num4" BIGINT,
"num5" BIGINT,
"num6" BIGINT,
"num7" BIGINT,
"num8" BIGINT,
"num9" BIGINT,
"num10" BIGINT
);
Anyone who has the link will be able to view this.