GithubHelp home page GithubHelp logo

science-bowl-2018's Introduction

Hi there ๐Ÿ‘‹

science-bowl-2018's People

Contributors

milani avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

science-bowl-2018's Issues

Some suggestions to improve your score

Hi, thanks for your code. I checked your current score about 0.36 LB. It is too low than standard implementation of mask rcnn ( I got 0.41). I would like to suggest you some schemes:

  1. Randomly crop training image into some fixed size such as 128x128 then train on the size. Don't add the zero padding to a larger size such as 1024x1024, it may lost the image distribution. In the inference, you can split the testing image into sub-images of 128x128 and combine together to make final result (I did not complete the combination step)
  2. Set larger RPN_TRAIN_ANCHORS_PER_IMAGE such as 512
  3. Use smaller network such as resnet-50 instead of resnet-101
  4. Augmentation data as you did

This is my setting to achieve above score

IMAGES_PER_GPU = 2 
GPU_COUNT = 1
NUM_CLASSES = 1 + 1 # Background + Nuclei 
USE_MINI_MASK=True 
MINI_MASK_SHAPE = (56,56) 
RPN_ANCHOR_SCALES = (8, 16, 32, 64,128) 
RPN_ANCHOR_RATIOS = [0.25, 0.5, 1, 2, 4] 
RPN_NMS_THRESHOLD = 0.7 
IMAGE_CROP_WIDTH=128
IMAGE_CROP_HEIGHT=128
DETECTION_MAX_INSTANCES = 200 
RPN_TRAIN_ANCHORS_PER_IMAGE = 512
RPN_NMS_THRESHOLD = 0.6 
MAX_GT_INSTANCES = 200 
DETECTION_MIN_CONFIDENCE = 0.6

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.