├── .github └── workflows │ ├── pytest.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── DEVELOPMENT_GUIDE.md ├── Doxyfile ├── LICENSE.txt ├── LICENSE_cereal-1.2.2 ├── LICENSE_doxy2swig ├── LICENSE_rapidjson ├── LICENSE_rapidxml ├── README.md ├── benchmarks ├── benchmark_rss_v1.cpp ├── benchmark_sorting.cpp └── run_benchmark.sh ├── docs ├── .buildinfo ├── _modules │ ├── index.html │ └── pyrfr │ │ └── regression.html ├── _sources │ ├── index.txt │ ├── installation.txt │ └── regression.txt ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── classic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── file.png │ ├── jquery-1.11.1.js │ ├── jquery.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sidebar.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── genindex.html ├── index.html ├── installation.html ├── objects.inv ├── py-modindex.html ├── regression.html ├── search.html └── searchindex.js ├── documentation ├── .gitignore ├── Makefile ├── conf.py ├── index.rst ├── installation.rst └── regression.rst ├── include ├── cereal │ ├── access.hpp │ ├── archives │ │ ├── adapters.hpp │ │ ├── binary.hpp │ │ ├── json.hpp │ │ ├── portable_binary.hpp │ │ └── xml.hpp │ ├── cereal.hpp │ ├── details │ │ ├── helpers.hpp │ │ ├── polymorphic_impl.hpp │ │ ├── polymorphic_impl_fwd.hpp │ │ ├── static_object.hpp │ │ ├── traits.hpp │ │ └── util.hpp │ ├── external │ │ ├── base64.hpp │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ └── writer.h │ │ └── rapidxml │ │ │ ├── license.txt │ │ │ ├── manual.html │ │ │ ├── rapidxml.hpp │ │ │ ├── rapidxml_iterators.hpp │ │ │ ├── rapidxml_print.hpp │ │ │ └── rapidxml_utils.hpp │ ├── macros.hpp │ └── types │ │ ├── array.hpp │ │ ├── base_class.hpp │ │ ├── bitset.hpp │ │ ├── boost_variant.hpp │ │ ├── chrono.hpp │ │ ├── common.hpp │ │ ├── complex.hpp │ │ ├── concepts │ │ └── pair_associative_container.hpp │ │ ├── deque.hpp │ │ ├── forward_list.hpp │ │ ├── functional.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── memory.hpp │ │ ├── polymorphic.hpp │ │ ├── queue.hpp │ │ ├── set.hpp │ │ ├── stack.hpp │ │ ├── string.hpp │ │ ├── tuple.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── valarray.hpp │ │ └── vector.hpp └── rfr │ ├── data_containers │ ├── array_wrapper.hpp │ ├── data_container.hpp │ ├── data_container_utils.hpp │ ├── default_data_container.hpp │ └── default_data_container_with_instances.hpp │ ├── forests │ ├── classification_forest.hpp │ ├── fanova_forest.hpp │ ├── forest_options.hpp │ ├── mondrian_forest.hpp │ ├── quantile_regression_forest.hpp │ └── regression_forest.hpp │ ├── nodes │ ├── k_ary_mondrian_node.hpp │ ├── k_ary_node.hpp │ └── temporary_node.hpp │ ├── splits │ ├── binary_split_one_feature_rss_loss.hpp │ ├── classification_split.hpp │ └── split_base.hpp │ ├── trees │ ├── binary_fanova_tree.hpp │ ├── k_ary_mondrian_tree.hpp │ ├── k_ary_tree.hpp │ ├── tree_base.hpp │ └── tree_options.hpp │ └── util.hpp ├── lib └── doxy2swig │ ├── LICENSE │ ├── README.md │ └── doxy2swig.py ├── local_lcov.sh ├── pyproject.toml ├── pyrfr ├── MANIFEST.in ├── examples │ ├── pyrfr_covariance_example.py │ ├── pyrfr_oob_error.py │ ├── pyrfr_pickle_example.py │ ├── pyrfr_simple_example.py │ └── pyrfr_with_instances_example.py ├── pyrfr │ ├── .gitignore │ ├── __init__.py │ ├── regression.i │ └── util.i └── setup.py ├── test_data_sets ├── Skin_NonSkin_features.csv ├── Skin_NonSkin_responses.csv ├── corrupted_toy_data_set_responses.csv ├── corrupted_toy_data_set_weights.csv ├── diabetes_features.csv ├── diabetes_responses.csv ├── features13.csv ├── online_lda_features.csv ├── online_lda_responses.csv ├── responses13.csv ├── sat_instance_features.csv ├── sat_performance_matrix.csv ├── sat_saps_configurations.csv ├── sinx_features.csv ├── sinx_features_test.csv ├── sinx_noise_features.csv ├── sinx_noise_features_test.csv ├── sinx_noise_responses.csv ├── sinx_noise_responses_test.csv ├── sinx_responses.csv ├── sinx_responses_test.csv ├── sinxy_features.csv ├── sinxy_features_test.csv ├── sinxy_responses.csv ├── sinxy_responses_test.csv ├── toy_data_set_features.csv ├── toy_data_set_responses.csv ├── toy_data_set_weights.csv └── ut_reference.py └── tests ├── CMakeLists.txt ├── __init__.py ├── profiling_example.cpp ├── pyrfr_unit_test_basics.py ├── pyrfr_unit_test_binary_regression_forest.py ├── pyrfr_unit_test_binary_regression_forest_transformed_data.py ├── pyrfr_unit_test_fanova_forest.py ├── pyrfr_unit_test_mondrian_forest.py ├── pyrfr_unit_test_quantile_regression_forest.py ├── unit_test_binary_nodes.cpp ├── unit_test_binary_splits.cpp ├── unit_test_binary_tree.cpp ├── unit_test_classification_forest.cpp ├── unit_test_data_containers.cpp ├── unit_test_fanova.cpp ├── unit_test_mondrian_forest.cpp ├── unit_test_regression_forest.cpp └── unit_test_utils.cpp /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | benchmarks/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE_cereal-1.2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/LICENSE_cereal-1.2.2 -------------------------------------------------------------------------------- /LICENSE_doxy2swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/LICENSE_doxy2swig -------------------------------------------------------------------------------- /LICENSE_rapidjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/LICENSE_rapidjson -------------------------------------------------------------------------------- /LICENSE_rapidxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/LICENSE_rapidxml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmark_rss_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/benchmarks/benchmark_rss_v1.cpp -------------------------------------------------------------------------------- /benchmarks/benchmark_sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/benchmarks/benchmark_sorting.cpp -------------------------------------------------------------------------------- /benchmarks/run_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/benchmarks/run_benchmark.sh -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_modules/index.html -------------------------------------------------------------------------------- /docs/_modules/pyrfr/regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_modules/pyrfr/regression.html -------------------------------------------------------------------------------- /docs/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_sources/index.txt -------------------------------------------------------------------------------- /docs/_sources/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_sources/installation.txt -------------------------------------------------------------------------------- /docs/_sources/regression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_sources/regression.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/classic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/sidebar.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/regression.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/documentation/conf.py -------------------------------------------------------------------------------- /documentation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/documentation/index.rst -------------------------------------------------------------------------------- /documentation/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/documentation/installation.rst -------------------------------------------------------------------------------- /documentation/regression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/documentation/regression.rst -------------------------------------------------------------------------------- /include/cereal/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/access.hpp -------------------------------------------------------------------------------- /include/cereal/archives/adapters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/archives/adapters.hpp -------------------------------------------------------------------------------- /include/cereal/archives/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/archives/binary.hpp -------------------------------------------------------------------------------- /include/cereal/archives/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/archives/json.hpp -------------------------------------------------------------------------------- /include/cereal/archives/portable_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/archives/portable_binary.hpp -------------------------------------------------------------------------------- /include/cereal/archives/xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/archives/xml.hpp -------------------------------------------------------------------------------- /include/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/cereal.hpp -------------------------------------------------------------------------------- /include/cereal/details/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/helpers.hpp -------------------------------------------------------------------------------- /include/cereal/details/polymorphic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/polymorphic_impl.hpp -------------------------------------------------------------------------------- /include/cereal/details/polymorphic_impl_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/polymorphic_impl_fwd.hpp -------------------------------------------------------------------------------- /include/cereal/details/static_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/static_object.hpp -------------------------------------------------------------------------------- /include/cereal/details/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/traits.hpp -------------------------------------------------------------------------------- /include/cereal/details/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/details/util.hpp -------------------------------------------------------------------------------- /include/cereal/external/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/base64.hpp -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/allocators.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/document.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/encodings.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/error/en.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/error/error.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/fwd.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/memorystream.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/pointer.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/reader.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/schema.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/stream.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /include/cereal/external/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidjson/writer.h -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/license.txt -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/manual.html -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /include/cereal/external/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/external/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /include/cereal/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/macros.hpp -------------------------------------------------------------------------------- /include/cereal/types/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/array.hpp -------------------------------------------------------------------------------- /include/cereal/types/base_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/base_class.hpp -------------------------------------------------------------------------------- /include/cereal/types/bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/bitset.hpp -------------------------------------------------------------------------------- /include/cereal/types/boost_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/boost_variant.hpp -------------------------------------------------------------------------------- /include/cereal/types/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/chrono.hpp -------------------------------------------------------------------------------- /include/cereal/types/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/common.hpp -------------------------------------------------------------------------------- /include/cereal/types/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/complex.hpp -------------------------------------------------------------------------------- /include/cereal/types/concepts/pair_associative_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/concepts/pair_associative_container.hpp -------------------------------------------------------------------------------- /include/cereal/types/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/deque.hpp -------------------------------------------------------------------------------- /include/cereal/types/forward_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/forward_list.hpp -------------------------------------------------------------------------------- /include/cereal/types/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/functional.hpp -------------------------------------------------------------------------------- /include/cereal/types/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/list.hpp -------------------------------------------------------------------------------- /include/cereal/types/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/map.hpp -------------------------------------------------------------------------------- /include/cereal/types/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/memory.hpp -------------------------------------------------------------------------------- /include/cereal/types/polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/polymorphic.hpp -------------------------------------------------------------------------------- /include/cereal/types/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/queue.hpp -------------------------------------------------------------------------------- /include/cereal/types/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/set.hpp -------------------------------------------------------------------------------- /include/cereal/types/stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/stack.hpp -------------------------------------------------------------------------------- /include/cereal/types/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/string.hpp -------------------------------------------------------------------------------- /include/cereal/types/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/tuple.hpp -------------------------------------------------------------------------------- /include/cereal/types/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/unordered_map.hpp -------------------------------------------------------------------------------- /include/cereal/types/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/unordered_set.hpp -------------------------------------------------------------------------------- /include/cereal/types/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/utility.hpp -------------------------------------------------------------------------------- /include/cereal/types/valarray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/valarray.hpp -------------------------------------------------------------------------------- /include/cereal/types/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/cereal/types/vector.hpp -------------------------------------------------------------------------------- /include/rfr/data_containers/array_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/data_containers/array_wrapper.hpp -------------------------------------------------------------------------------- /include/rfr/data_containers/data_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/data_containers/data_container.hpp -------------------------------------------------------------------------------- /include/rfr/data_containers/data_container_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/data_containers/data_container_utils.hpp -------------------------------------------------------------------------------- /include/rfr/data_containers/default_data_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/data_containers/default_data_container.hpp -------------------------------------------------------------------------------- /include/rfr/data_containers/default_data_container_with_instances.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/data_containers/default_data_container_with_instances.hpp -------------------------------------------------------------------------------- /include/rfr/forests/classification_forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/classification_forest.hpp -------------------------------------------------------------------------------- /include/rfr/forests/fanova_forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/fanova_forest.hpp -------------------------------------------------------------------------------- /include/rfr/forests/forest_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/forest_options.hpp -------------------------------------------------------------------------------- /include/rfr/forests/mondrian_forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/mondrian_forest.hpp -------------------------------------------------------------------------------- /include/rfr/forests/quantile_regression_forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/quantile_regression_forest.hpp -------------------------------------------------------------------------------- /include/rfr/forests/regression_forest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/forests/regression_forest.hpp -------------------------------------------------------------------------------- /include/rfr/nodes/k_ary_mondrian_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/nodes/k_ary_mondrian_node.hpp -------------------------------------------------------------------------------- /include/rfr/nodes/k_ary_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/nodes/k_ary_node.hpp -------------------------------------------------------------------------------- /include/rfr/nodes/temporary_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/nodes/temporary_node.hpp -------------------------------------------------------------------------------- /include/rfr/splits/binary_split_one_feature_rss_loss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/splits/binary_split_one_feature_rss_loss.hpp -------------------------------------------------------------------------------- /include/rfr/splits/classification_split.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/splits/classification_split.hpp -------------------------------------------------------------------------------- /include/rfr/splits/split_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/splits/split_base.hpp -------------------------------------------------------------------------------- /include/rfr/trees/binary_fanova_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/trees/binary_fanova_tree.hpp -------------------------------------------------------------------------------- /include/rfr/trees/k_ary_mondrian_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/trees/k_ary_mondrian_tree.hpp -------------------------------------------------------------------------------- /include/rfr/trees/k_ary_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/trees/k_ary_tree.hpp -------------------------------------------------------------------------------- /include/rfr/trees/tree_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/trees/tree_base.hpp -------------------------------------------------------------------------------- /include/rfr/trees/tree_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/trees/tree_options.hpp -------------------------------------------------------------------------------- /include/rfr/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/include/rfr/util.hpp -------------------------------------------------------------------------------- /lib/doxy2swig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/lib/doxy2swig/LICENSE -------------------------------------------------------------------------------- /lib/doxy2swig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/lib/doxy2swig/README.md -------------------------------------------------------------------------------- /lib/doxy2swig/doxy2swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/lib/doxy2swig/doxy2swig.py -------------------------------------------------------------------------------- /local_lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/local_lcov.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrfr/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/MANIFEST.in -------------------------------------------------------------------------------- /pyrfr/examples/pyrfr_covariance_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/examples/pyrfr_covariance_example.py -------------------------------------------------------------------------------- /pyrfr/examples/pyrfr_oob_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/examples/pyrfr_oob_error.py -------------------------------------------------------------------------------- /pyrfr/examples/pyrfr_pickle_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/examples/pyrfr_pickle_example.py -------------------------------------------------------------------------------- /pyrfr/examples/pyrfr_simple_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/examples/pyrfr_simple_example.py -------------------------------------------------------------------------------- /pyrfr/examples/pyrfr_with_instances_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/examples/pyrfr_with_instances_example.py -------------------------------------------------------------------------------- /pyrfr/pyrfr/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.cpp 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /pyrfr/pyrfr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/pyrfr/__init__.py -------------------------------------------------------------------------------- /pyrfr/pyrfr/regression.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/pyrfr/regression.i -------------------------------------------------------------------------------- /pyrfr/pyrfr/util.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/pyrfr/util.i -------------------------------------------------------------------------------- /pyrfr/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/pyrfr/setup.py -------------------------------------------------------------------------------- /test_data_sets/Skin_NonSkin_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/Skin_NonSkin_features.csv -------------------------------------------------------------------------------- /test_data_sets/Skin_NonSkin_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/Skin_NonSkin_responses.csv -------------------------------------------------------------------------------- /test_data_sets/corrupted_toy_data_set_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/corrupted_toy_data_set_responses.csv -------------------------------------------------------------------------------- /test_data_sets/corrupted_toy_data_set_weights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/corrupted_toy_data_set_weights.csv -------------------------------------------------------------------------------- /test_data_sets/diabetes_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/diabetes_features.csv -------------------------------------------------------------------------------- /test_data_sets/diabetes_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/diabetes_responses.csv -------------------------------------------------------------------------------- /test_data_sets/features13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/features13.csv -------------------------------------------------------------------------------- /test_data_sets/online_lda_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/online_lda_features.csv -------------------------------------------------------------------------------- /test_data_sets/online_lda_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/online_lda_responses.csv -------------------------------------------------------------------------------- /test_data_sets/responses13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/responses13.csv -------------------------------------------------------------------------------- /test_data_sets/sat_instance_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sat_instance_features.csv -------------------------------------------------------------------------------- /test_data_sets/sat_performance_matrix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sat_performance_matrix.csv -------------------------------------------------------------------------------- /test_data_sets/sat_saps_configurations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sat_saps_configurations.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_features.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_features_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_features_test.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_noise_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_noise_features.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_noise_features_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_noise_features_test.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_noise_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_noise_responses.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_noise_responses_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_noise_responses_test.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_responses.csv -------------------------------------------------------------------------------- /test_data_sets/sinx_responses_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinx_responses_test.csv -------------------------------------------------------------------------------- /test_data_sets/sinxy_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinxy_features.csv -------------------------------------------------------------------------------- /test_data_sets/sinxy_features_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinxy_features_test.csv -------------------------------------------------------------------------------- /test_data_sets/sinxy_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinxy_responses.csv -------------------------------------------------------------------------------- /test_data_sets/sinxy_responses_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/sinxy_responses_test.csv -------------------------------------------------------------------------------- /test_data_sets/toy_data_set_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/toy_data_set_features.csv -------------------------------------------------------------------------------- /test_data_sets/toy_data_set_responses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/toy_data_set_responses.csv -------------------------------------------------------------------------------- /test_data_sets/toy_data_set_weights.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/toy_data_set_weights.csv -------------------------------------------------------------------------------- /test_data_sets/ut_reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/test_data_sets/ut_reference.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/profiling_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/profiling_example.cpp -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_basics.py -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_binary_regression_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_binary_regression_forest.py -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_binary_regression_forest_transformed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_binary_regression_forest_transformed_data.py -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_fanova_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_fanova_forest.py -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_mondrian_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_mondrian_forest.py -------------------------------------------------------------------------------- /tests/pyrfr_unit_test_quantile_regression_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/pyrfr_unit_test_quantile_regression_forest.py -------------------------------------------------------------------------------- /tests/unit_test_binary_nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_binary_nodes.cpp -------------------------------------------------------------------------------- /tests/unit_test_binary_splits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_binary_splits.cpp -------------------------------------------------------------------------------- /tests/unit_test_binary_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_binary_tree.cpp -------------------------------------------------------------------------------- /tests/unit_test_classification_forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_classification_forest.cpp -------------------------------------------------------------------------------- /tests/unit_test_data_containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_data_containers.cpp -------------------------------------------------------------------------------- /tests/unit_test_fanova.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_fanova.cpp -------------------------------------------------------------------------------- /tests/unit_test_mondrian_forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_mondrian_forest.cpp -------------------------------------------------------------------------------- /tests/unit_test_regression_forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_regression_forest.cpp -------------------------------------------------------------------------------- /tests/unit_test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/random_forest_run/HEAD/tests/unit_test_utils.cpp --------------------------------------------------------------------------------