↑↓ The Titanic Dataset Kaggle has a dataset containing the passenger list on the Titanic. The data contains passenger fe
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
↑↓ The Titanic Dataset Kaggle has a dataset containing the passenger list on the Titanic. The data contains passenger fe
↑↓ The Titanic Dataset Kaggle has a dataset containing the passenger list on the Titanic. The data contains passenger features such as age, gender, ticket class, as well as whether or not they survived. i Your job is to create a binary classifier using TensorFlow to determine if a passenger survived or not. The survived column lets you know if the person survived. Then, upload your predictions to Kaggle and submit your accuracy score at the end of this Colab, along with a brief conclusion. To get the dataset, you'll need to accept the competition's rules by clicking the "I understand and accept" button on the competition rules page. Then upload your kaggle.json file and run the code below. [ ] ! chmod 600 kaggle.json && (1s-/.kaggle 2>/dev/null || mkdir -/.kaggle) && cp kaggle.json -/.kaggle/ && echo ! kaggle competitions download -c titanic !1s
Step 2: The Model Build, fit, and evaluate a classification model. Perform any model-specific data processing that you need to perform. If the toolkit you use supports it, create visualizations for loss and accuracy improvements. Use as many text and code blocks as you need to explore the data. Note any findings. Student Solution [ ] # Your code goes here 1