The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
How to cite classification algorithm of raidminer
How I can cite decision tree, CHAID, Random Forest, Gradient boosted Trees in scientific research. I mean the scientific reference for implementation of the algorithm themselves not rapidminer as whole.
Tagged:
0
Best Answer
-
varunm1 Member Posts: 1,207 UnicornYep, @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
Regards,
Varun
https://www.varunmandalapu.com/Be Safe. Follow precautions and Maintain Social Distancing
7
Answers
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?
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing
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.
Varun
https://www.varunmandalapu.com/
Be Safe. Follow precautions and Maintain Social Distancing