Template
Add homework 04
This commit is contained in:
@@ -1,18 +1,24 @@
|
||||
# Titanic
|
||||
# Report 2 - Titanic
|
||||
|
||||
## Competition Description
|
||||
The sinking of the RMS Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the Titanic sank after colliding with an iceberg, killing 1502 out of 2224 passengers and crew. This sensational tragedy shocked the international community and led to better safety regulations for ships.
|
||||
## Task Description
|
||||
The sinking of the [RMS Titanic](https://en.wikipedia.org/wiki/RMS_Titanic) is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the Titanic sank after colliding with an iceberg, killing 1502 out of 2224 passengers and crew. This sensational tragedy shocked the international community and led to better safety regulations for ships.
|
||||
|
||||
One of the reasons that the shipwreck led to such loss of life was that there were not enough lifeboats for the passengers and crew. Although there was some element of luck involved in surviving the sinking, some groups of people were more likely to survive than others, such as women, children, and the upper-class.
|
||||
|
||||
In this challenge, we ask you to complete the analysis of what sorts of people were likely to survive. In particular, we ask you to apply the tools of machine learning to predict which passengers survived the tragedy.
|
||||
In this challenge, we ask you to complete **the analysis of what sorts of people were likely to survive**. In particular, we ask you to apply the tools of machine learning to predict which passengers survived the tragedy.
|
||||
|
||||
|
||||
|
||||
## Practice Skills
|
||||
|
||||
* Binary classification
|
||||
* Python & SKLearn
|
||||
|
||||
|
||||
|
||||
## Data
|
||||
The data ziped into 'data.zip', please first extract it. There are two groups:
|
||||
|
||||
The data ziped into `data.zip`, please first extract it. There are two groups:
|
||||
|
||||
* training set (train.csv)
|
||||
* test set (test.csv)
|
||||
@@ -23,17 +29,36 @@ The test set should be used to see how well your model performs on unseen data.
|
||||
|
||||
We also include `gender_submission.csv`, a set of predictions that assume all and only female passengers survive, as an example of what a submission file should look like.
|
||||
|
||||
|
||||
|
||||
### Data description
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
|
||||
### Variable Notes
|
||||
pclass: A proxy for socio-economic status (SES)
|
||||
|
||||
`pclass`: A proxy for socio-economic status (SES)
|
||||
|
||||
* 1st = Upper
|
||||
* 2nd = Middle
|
||||
* 3rd = Lower
|
||||
|
||||
|
||||
|
||||
## Requirements
|
||||
|
||||
* Design the classification model, implement the code
|
||||
* Think methods to resolve the problem of missing data of some column
|
||||
* How to convert the `pclass`, `embarked` fields to vector field
|
||||
* Submit your result to [the website](https://www.kaggle.com/c/titanic)
|
||||
* Finish the report by using the template `report_template.ipynb`
|
||||
* Submit code, report through `git`
|
||||
|
||||
|
||||
|
||||
## Links
|
||||
|
||||
* [Titanic: Machine Learning from Disaster](https://www.kaggle.com/c/titanic)
|
||||
|
||||
Reference in New Issue
Block a user