All Projects → yuantangliang → softmaxfocalloss

yuantangliang / softmaxfocalloss

Licence: MIT license
the loss function in Aritcal ‘Focal Loss for Dense Object Detection‘’

Programming Languages

C++
36643 projects - #6 most used programming language
Cuda
1817 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to softmaxfocalloss

MXNet-GAN
MXNet Implementation of DCGAN, Conditional GAN, pix2pix
Stars: ✭ 23 (+43.75%)
Mutual labels:  mxnet
mlreef
The collaboration workspace for Machine Learning
Stars: ✭ 1,409 (+8706.25%)
Mutual labels:  mxnet
lipnet
LipNet with gluon
Stars: ✭ 16 (+0%)
Mutual labels:  mxnet
mxnet-SSH
Reproduce SSH (Single Stage Headless Face Detector) with MXNet
Stars: ✭ 91 (+468.75%)
Mutual labels:  mxnet
nih-chest-xray
Identifying diseases in chest X-rays using convolutional neural networks
Stars: ✭ 83 (+418.75%)
Mutual labels:  mxnet
Dog-Breed-Identification-Gluon
Kaggle 120种狗分类,Gluon实现
Stars: ✭ 45 (+181.25%)
Mutual labels:  mxnet
FCOS GluonCV
FCOS: Fully Convolutional One-Stage Object Detection.
Stars: ✭ 24 (+50%)
Mutual labels:  mxnet
sfd.gluoncv
Reproduce SFD face detector using gluon-cv
Stars: ✭ 23 (+43.75%)
Mutual labels:  mxnet
MXNetSharp
MXNet bindings for .NET/F#
Stars: ✭ 14 (-12.5%)
Mutual labels:  mxnet
mtomo
Multiple types of NN model optimization environments. It is possible to directly access the host PC GUI and the camera to verify the operation. Intel iHD GPU (iGPU) support. NVIDIA GPU (dGPU) support.
Stars: ✭ 24 (+50%)
Mutual labels:  mxnet
arcface retinaface mxnet2onnx
arcface and retinaface model convert mxnet to onnx.
Stars: ✭ 53 (+231.25%)
Mutual labels:  mxnet
ReadToMe
No description or website provided.
Stars: ✭ 51 (+218.75%)
Mutual labels:  mxnet
sentiment-analysis2
Sentiment ananlysis in keras and mxnet
Stars: ✭ 37 (+131.25%)
Mutual labels:  mxnet
Tengine-Convert-Tools
Tengine Convert Tool supports converting multi framworks' models into tmfile that suitable for Tengine-Lite AI framework.
Stars: ✭ 89 (+456.25%)
Mutual labels:  mxnet
python cv AI ML
用python做计算机视觉,人工智能,机器学习,深度学习等
Stars: ✭ 73 (+356.25%)
Mutual labels:  mxnet
age-gender-estimation
A Lightweight and Efficient Method for Face Age and Gender Estimation Implemented in MXNet
Stars: ✭ 61 (+281.25%)
Mutual labels:  mxnet
crnn.mxnet
crnn in mxnet.can train with chinese characters
Stars: ✭ 47 (+193.75%)
Mutual labels:  mxnet
OpSummary.MXNet
A tool to count operators and parameters of your MXNet-Gluon model.
Stars: ✭ 19 (+18.75%)
Mutual labels:  mxnet
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+350%)
Mutual labels:  mxnet
DLARM
DLARM: Dissertation for Computer Science Masters Degree at UFRGS
Stars: ✭ 24 (+50%)
Mutual labels:  mxnet

softmaxfocalloss

the focal loss in Aritcal Focal Loss for Dense Object Detection

Code is test on MxNet 0.11.0

Installation

  1. Clone the softmaxfocalloss repository, and we'll call the directory that you cloned softmaxfocalloss as ${FOCAL_LOSS_ROOT}.
git clone https://github.com/yuantangliang/softmaxfocalloss.git
  1. Install MXNet:

    3.1 Clone MXNet and checkout to MXNet by

    git clone --recursive https://github.com/dmlc/mxnet.git
    git submodule update
    

    3.2 Copy operators in $(FOCAL_LOSS_ROOT)/source/softmaxfocal_output.xxx by

    cp -r $(FOCAL_LOSS_ROOT)/source/* $(MXNET_ROOT)/src/operator/contrib/
    

    3.3 Compile MXNet

    cd ${MXNET_ROOT}
    make -j $(nproc) USE_OPENCV=1 USE_BLAS=openblas USE_CUDA=1 USE_CUDA_PATH=/usr/local/cuda USE_CUDNN=1
    

    3.4 Install the MXNet Python binding by

    cd python
    sudo python setup.py install
    

Test

  1. run test function to make sure everything is ok by
cd  $(FOCAL_LOSS_ROOT)
python softmaxfocaltest.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].