titanic-amueval/README.md

24 lines
811 B
Markdown
Raw Permalink Normal View History

2024-10-04 15:55:20 +02:00
## Titatnic Challenge
2024-10-04 15:57:34 +02:00
Predict whether Titanic passengers survived based on features like ticket class, age etc.
2024-10-04 15:55:20 +02:00
2024-10-04 15:57:34 +02:00
in.tsv data features:
* PassengerId - id of given passenger
* Pclass - Ticket class 1 = 1st, 2 = 2nd, 3 = 3rd
* Name - passenger name
* Sex - passenger sex (male/female)
* Age - passenger age
* SibSp - number of siblings / spouses aboard the Titanic
* Parch - number of parents / children aboard the Titanic
* Ticket - ticket number
* Fare - passenger fare
* Cabin - cabin number
* Embarked - port of embarkation C = Cherbourg, Q = Queenstown, S = Southampton
2024-10-04 15:55:20 +02:00
2024-10-04 16:00:30 +02:00
expected.tsv data features:
2024-10-04 15:57:34 +02:00
* Survival - whether passenger survived (1 = yes, 0 = no)
2024-10-04 16:18:41 +02:00
## Important note
expected.tsv file does not contain header for the "survival" column and the out.tsv also must not have header (only predictions)