Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <adam2392@gmail.com>
  • Loading branch information
adam2392 committed Oct 17, 2023
1 parent 45fd7f0 commit 79af44b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
31 changes: 15 additions & 16 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,27 @@
---
# Metadata for citation of this software according to the CFF format (https://citation-file-format.github.io/)
cff-version: 1.2.0
title: 'Scikit-tree: Modern decision-trees compatible with scikit-learn in Python.'
abstract: 'scikit-tree is a scikit-learn compatible API for building state-of-the-art decision trees. These include unsupervised trees, oblique trees, uncertainty trees, quantile trees and causal trees.'
title: "Scikit-tree: Modern decision-trees compatible with scikit-learn in Python."
abstract: "scikit-tree is a scikit-learn compatible API for building state-of-the-art decision trees. These include unsupervised trees, oblique trees, uncertainty trees, quantile trees and causal trees."
authors:
- given-names: Adam
family-names: Li
affiliation: 'Department of Computer Science, Columbia University, New York, NY, USA'
orcid: 'https://orcid.org/0000-0001-8421-365X'
- given-names: Sambit
family-names: Panda
affiliation: 'Department of Biomedical Engineering, Johns Hopkins University, Baltimore, MD, USA'
orcid: 'https://orcid.org/0000-0001-8455-4243'
- given-names: Haoyin
family-names: Xu
affiliation: 'Department of Biomedical Engineering, Johns Hopkins University, Baltimore, MD, USA'
orcid: 'https://orcid.org/0000-0001-8235-4950'
- given-names: Adam
family-names: Li
affiliation: "Department of Computer Science, Columbia University, New York, NY, USA"
orcid: "https://orcid.org/0000-0001-8421-365X"
- given-names: Sambit
family-names: Panda
affiliation: "Department of Biomedical Engineering, Johns Hopkins University, Baltimore, MD, USA"
orcid: "https://orcid.org/0000-0001-8455-4243"
- given-names: Haoyin
family-names: Xu
affiliation: "Department of Biomedical Engineering, Johns Hopkins University, Baltimore, MD, USA"
orcid: "https://orcid.org/0000-0001-8235-4950"
type: software
repository-code: 'https://github.com/neurodata/scikit-tree'
repository-code: "https://github.com/neurodata/scikit-tree"
license: BSD-3
keywords:
- random forest
- oblique trees
- honest forests
- statisical learning
- machine learning
...
2 changes: 1 addition & 1 deletion sktree/_lib/sklearn_fork
Submodule sklearn_fork updated 33 files
+1 −1 benchmarks/bench_plot_nmf.py
+2 −2 benchmarks/bench_plot_polynomial_kernel_approximation.py
+4 −0 build_tools/cirrus/arm_tests.yml
+4 −1 doc/conf.py
+1 −1 doc/modules/grid_search.rst
+312 −228 doc/modules/linear_model.rst
+9 −3 doc/modules/model_evaluation.rst
+1 −0 doc/themes/scikit-learn-modern/layout.html
+13 −0 doc/themes/scikit-learn-modern/static/css/theme.css
+47 −0 doc/themes/scikit-learn-modern/static/js/details-permalink.js
+17 −0 doc/whats_new/v1.3.rst
+24 −0 doc/whats_new/v1.4.rst
+42 −15 examples/applications/plot_cyclical_feature_engineering.py
+1 −1 examples/linear_model/plot_poisson_regression_non_normal_loss.py
+1 −1 examples/linear_model/plot_tweedie_regression_insurance_claims.py
+2 −2 setup.py
+4 −3 sklearn/cluster/tests/test_hdbscan.py
+1 −1 sklearn/decomposition/_kernel_pca.py
+14 −1 sklearn/decomposition/tests/test_kernel_pca.py
+34 −0 sklearn/inspection/_plot/tests/test_boundary_decision_display.py
+12 −6 sklearn/metrics/_classification.py
+1 −1 sklearn/metrics/_regression.py
+165 −212 sklearn/metrics/_scorer.py
+27 −0 sklearn/metrics/tests/test_classification.py
+150 −49 sklearn/metrics/tests/test_score_objects.py
+5 −3 sklearn/tests/metadata_routing_common.py
+1 −1 sklearn/tree/_tree.pxd
+5 −3 sklearn/tree/_tree.pyx
+13 −0 sklearn/tree/tests/test_tree.py
+3 −0 sklearn/utils/_param_validation.py
+9 −4 sklearn/utils/_response.py
+3 −0 sklearn/utils/tests/test_param_validation.py
+28 −0 sklearn/utils/tests/test_response.py

0 comments on commit 79af44b

Please sign in to comment.