Is there any Deep forest implementation in julia.???
What is that? Is there a publication linked to it?
Deep forest is a non-neural algorithm for the sentimental analysis in Natural language processing.
Paper : https://arxiv.org/pdf/1702.08835.pdf
Pretty interesting paper; I do not think anything similar is implemented, supervised learning is in a bad state in Julia for now (very few methods)… The closest thing I can think of is GitHub - bicycle1885/RandomForests.jl: Random Forests in Julia , looks unmantained. This would make a pretty good Julia package if you care taking a whack at it.
I would love to contribute to this.
https://github.com/bensadeghi/DecisionTree.jl is in pretty good shape and supports random forests
1 Like
Thankyou, I will check that out.