An open API service indexing awesome lists of open source software.

https://github.com/wangg12/deepboost.jl

deep boosting algorithm implementation in Julia
https://github.com/wangg12/deepboost.jl

deep-boosting-algorithm julia

Last synced: 8 months ago
JSON representation

deep boosting algorithm implementation in Julia

Awesome Lists containing this project

README

          

# DeepBoost.jl
deep boosting algorithm implementation in Julia

Adapted from:
* google's original c++ implementation: [https://github.com/google/deepboost](https://github.com/google/deepboost)
* dmarcous's c++ and R implementation [https://github.com/dmarcous/CRAN_deepboost](https://github.com/dmarcous/CRAN_deepboost).

### Examples
See `ionosphere_deepboost.jl` for detailed usage, it should be easy to understand.

Note that this work can only do binary classification.

For multi-class deep boosting, please refer to this paper:

[Vitaly Kuznetsov, Mehryar Mohri, Umar Syed, Multi-Class Deep Boosting, NIPS'14](https://papers.nips.cc/paper/5514-multi-class-deep-boosting)

### Reference Paper
See this paper for details
[Corinna Cortes, Mehryar Mohri, Umar Syed, Deep Boosting, JMLR'14](http://www.jmlr.org/proceedings/papers/v32/cortesb14.html)

### Credits
Written and maintained by:

[Gu Wang](https://github.com/wangg12)

[Yu Yang](https://github.com/yangyu12)