How to cite classification algorithm of raidminer
Find more posts tagged with
Sort by:
1 - 10 of
101
Thank you for your reply. Indeed, I will cite rapidminer as software, but I need determined citation for the algorithms used within rapidminer. You may have a look for WEKA extension for rapidminer, and you will find inside each operator description, you will find the scientific reference.
hi @summer_helmi I don't know the protocols for the journal(s) you're planning to publish but I would cite the code (and authors therewithin) via GitHub.
so again it depends on your journal but just as an example this is MLA8. I am going to defer to academics on this forum for critique or affirmation 

Mierswa, Ingo, and Sebastian Land. “RandomForestLearner.java Source Code.” GitHub, RapidMiner, Inc., 6 Feb. 2019, github.com/rapidminer/rapidminer-studio/blob/3a2da3e40bbadaf5515e04093867798c27d0654d/src/main/java/com/rapidminer/operator/learner/tree/RandomForestLearner.java.
Yep, @sgenzer citation works. Again APA, Chicago etc. differs only in pattern and not much in content. The creation date and retrieval date are specified. The only thing need to add in this retrieval date.
The authors are different, you need to look at rapidminer open source Github.
https://github.com/rapidminer/rapidminer-studio/tree/master/src/main/java/com/rapidminer/operator/learner/tree

The authors are different, you need to look at rapidminer open source Github.
https://github.com/rapidminer/rapidminer-studio/tree/master/src/main/java/com/rapidminer/operator/learner/tree

Sort by:
1 - 1 of
11
Yep, @sgenzer citation works. Again APA, Chicago etc. differs only in pattern and not much in content. The creation date and retrieval date are specified. The only thing need to add in this retrieval date.
The authors are different, you need to look at rapidminer open source Github.
https://github.com/rapidminer/rapidminer-studio/tree/master/src/main/java/com/rapidminer/operator/learner/tree

The authors are different, you need to look at rapidminer open source Github.
https://github.com/rapidminer/rapidminer-studio/tree/master/src/main/java/com/rapidminer/operator/learner/tree

In scientific papers, especially when you talk about machine learning algorithms it is important to inform about hyperparameters. Most of the time it is not possible to cite exact algorithm papers as they are slightly modified versions in tools. If you want to cite you can look for base papers of these algorithms. Decision trees and random forest in rapidminer uses different backend algorithms based on the criterion "gain_ratio", "Information Gain", "gini_index" etc. These will trigger either CART or C4.5 algorithms based on selection. But these are modified versions as well.
Citing rapidminer as software and providing a table with hyperparameters is stronger. If you really want to cite papers, you can cite the base decision tree papers related to C4.5 by Ross Quinlan or CART algorithms.
For GBT, its H2o. "Malohlava, M., & Candel, A. (2017). Gradient boosting machine with H2O."
Just my 2 cents. @mschmitz or @IngoRM any insights here?