All Projects → pascal1129 → Kaggle_airbus_ship_detection

pascal1129 / Kaggle_airbus_ship_detection

Licence: apache-2.0
Kaggle airbus ship detection challenge 21st solution

Projects that are alternatives of or similar to Kaggle airbus ship detection

Keras Segmentation Deeplab V3.1
An awesome semantic segmentation model that runs in real time
Stars: ✭ 156 (-34.45%)
Mutual labels:  jupyter-notebook, segmentation
Hair Segmentation
hair segmentation in mobile device
Stars: ✭ 160 (-32.77%)
Mutual labels:  jupyter-notebook, segmentation
Machine Learning Workflow With Python
This is a comprehensive ML techniques with python: Define the Problem- Specify Inputs & Outputs- Data Collection- Exploratory data analysis -Data Preprocessing- Model Design- Training- Evaluation
Stars: ✭ 157 (-34.03%)
Mutual labels:  kaggle, jupyter-notebook
Benchmarks
Comparison tools
Stars: ✭ 139 (-41.6%)
Mutual labels:  kaggle, jupyter-notebook
Girls In Ai
免费学代码系列:小白python入门、数据分析data analyst、机器学习machine learning、深度学习deep learning、kaggle实战
Stars: ✭ 2,309 (+870.17%)
Mutual labels:  kaggle, jupyter-notebook
Data Analysis
主要是爬虫与数据分析项目总结,外加建模与机器学习,模型的评估。
Stars: ✭ 142 (-40.34%)
Mutual labels:  kaggle, jupyter-notebook
Open Solution Data Science Bowl 2018
Open solution to the Data Science Bowl 2018
Stars: ✭ 159 (-33.19%)
Mutual labels:  kaggle, segmentation
Dstl unet
Dstl Satellite Imagery Feature Detection
Stars: ✭ 117 (-50.84%)
Mutual labels:  jupyter-notebook, segmentation
Deeptoxic
top 1% solution to toxic comment classification challenge on Kaggle.
Stars: ✭ 180 (-24.37%)
Mutual labels:  kaggle, jupyter-notebook
Competition Baseline
数据科学竞赛知识、代码、思路
Stars: ✭ 2,553 (+972.69%)
Mutual labels:  kaggle, jupyter-notebook
Kaggle Web Traffic
1st place solution
Stars: ✭ 1,641 (+589.5%)
Mutual labels:  kaggle, jupyter-notebook
Machine Learning
从零基础开始机器学习之旅
Stars: ✭ 209 (-12.18%)
Mutual labels:  kaggle, jupyter-notebook
Ml Dl Scripts
The repository provides usefull python scripts for ML and data analysis
Stars: ✭ 119 (-50%)
Mutual labels:  kaggle, jupyter-notebook
Tfvos
Semi-Supervised Video Object Segmentation (VOS) with Tensorflow. Includes implementation of *MaskRNN: Instance Level Video Object Segmentation (NIPS 2017)* as part of the NIPS Paper Implementation Challenge.
Stars: ✭ 151 (-36.55%)
Mutual labels:  jupyter-notebook, segmentation
Ml Fraud Detection
Credit card fraud detection through logistic regression, k-means, and deep learning.
Stars: ✭ 117 (-50.84%)
Mutual labels:  kaggle, jupyter-notebook
Severstal Steel Defect Detection
Kaggle Segmentation Challenge
Stars: ✭ 160 (-32.77%)
Mutual labels:  jupyter-notebook, segmentation
Ds bowl 2018
Kaggle Data Science Bowl 2018
Stars: ✭ 116 (-51.26%)
Mutual labels:  kaggle, jupyter-notebook
Dogbreed gluon
kaggle Dog Breed Identification
Stars: ✭ 116 (-51.26%)
Mutual labels:  kaggle, jupyter-notebook
Keraspersonlab
Keras-tensorflow implementation of PersonLab (https://arxiv.org/abs/1803.08225)
Stars: ✭ 163 (-31.51%)
Mutual labels:  jupyter-notebook, segmentation
Portraitnet
Code for the paper "PortraitNet: Real-time portrait segmentation network for mobile device" @ CAD&Graphics2019
Stars: ✭ 207 (-13.03%)
Mutual labels:  jupyter-notebook, segmentation

Kaggle Airbus Ship Detection Challenge : 21st solution

This project is for Kaggle competiton Airbus Ship Detection Challenge.

It can help you quickly get a baseline solution, which is not bad.

infer_example

Related article

These guides are only in Chinese:

Kaggle新手银牌(21st):Airbus Ship Detection 卫星图像分割检测

用Mask R-CNN训练自己的COCO数据集(Detectron)

辅助操作指南:Docker使用、镜像制作、Demo运行...

File strcture

airbus                         
├─0_rle_to_coco                0、turn rle to coco
│  └─pycococreatortools
|
├─1_detectron_infer            1、files needed to be changed in detectron
|  ├─dataset_catalog.py            # ./detectron/datasets/dataset_catalog.py
│  ├─dummy_datasets.py             # ./detectron/datasets/dummy_datasets.py 
│  └─infer_airbus.py               # ./tools/infer_simple.py    
|
├─2_model                      2、model and trainning log
│  ├─log                           log and visualization script
│  └─model                         configure file and .pkl (.pkl not be uploaded)
|
└─3_submit                     3、generate your submission
   └─csv                           reference .csv file

Steps

1. Generate COCO standard dataset

Run codes in ./0_rle_to_coco. The guide has been written in markdwon file ./0_rle_to_coco/README.md

dataset annotation

2. Get Detectron environment

My codes are based on Detectron. So before using it, you need to install caffe2, which is quite troublesome. You can use my docker image, which is a little out of date, by the following command:

$ docker pull pascal1129/detectron:caffe2_cuda9_aliyun

In order to get the latest docker image, you can build the latest image with the official dockerfile: Detectron/docker/Dockerfile.

3. Msodify the source code in detectron

My codes are in the folder ./1_detectron_infer/, you can replace the origin files in detectron with my codes.

my code origin code needed to be replaced
dataset_catalog.py ./detectron/datasets/dataset_catalog.py
dummy_datasets.py ./detectron/datasets/dummy_datasets.py
infer_airbus.py ./tools/infer_simple.py

4. Change the configuration file and run

Confirm the .yaml file in ./2_model/model/ and start training. In addition, remember to use |tee command, so you can get the log file like ./2_model/log/20181103.log

5. Visualization

Run ./2_model/analyse_log.py, then you can get the visualization picture.

result

6. Get the final submission

Run ./3_submit/get_final_csv.py.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].