Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saanidhyam/alien-comm-classifier
Classifying the transmissions, where each message is associated with specific attributes such as the alien species, number of fingers, and whether they possess a tail using Random Forest Classifier
https://github.com/saanidhyam/alien-comm-classifier
machine-learning python
Last synced: 16 days ago
JSON representation
Classifying the transmissions, where each message is associated with specific attributes such as the alien species, number of fingers, and whether they possess a tail using Random Forest Classifier
- Host: GitHub
- URL: https://github.com/saanidhyam/alien-comm-classifier
- Owner: SaanidhyaM
- Created: 2024-09-17T09:43:23.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-08T17:25:11.000Z (about 1 month ago)
- Last Synced: 2024-12-08T18:24:59.594Z (about 1 month ago)
- Topics: machine-learning, python
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alien-Comm-Classifier
Upon landing on the planet Xernia, your crew intercepts a flood of mysterious
transmissions from various alien species. To achieve your mission objectives,
you must analyze and decode these messages to identify which species sent each
one.You are provided with a dataset (data.csv) containing intercepted alien
messages, where each message is associated with specific attributes such as the
alien species, number of fingers, and whether they possess a tail. Your task is
to classify these transmissions based on these attributes.# Dataset (Alien Messages Corpus)
The intercepted transmissions are structured as follows:• Message: The alien communication in text form.
• Species: The species that sent the message.
• Number of Fingers: The typical number of fingers for the species.
• Tail: A yes/no field indicating whether the species has a tail.
# Task
You talked to a lot of aliens this time and want to test how accurate your
prediction skill has become. You thus log all your conversations, observe the
number of fingers and the existence of tails for these new aliens in test.csv.
Your goal is to identify the species of aliens in test.csv based on the intercepted
messages, number of fingers, and presence of a tail with a result.csv file
only containing a column titled ’Species’ that contains species for each row of
test.csv based on your predictions.