-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into quantile_forest_exp
- Loading branch information
Showing
5 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: cffconvert | ||
|
||
on: | ||
push: | ||
paths: | ||
- CITATION.cff | ||
pull_request: | ||
paths: | ||
- CITATION.cff | ||
|
||
jobs: | ||
validate: | ||
name: "validate" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out a copy of the repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check whether the citation metadata from CITATION.cff is valid | ||
uses: citation-file-format/cffconvert-github-action@2.0.0 | ||
with: | ||
args: "--validate" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# YAML 1.2 | ||
--- | ||
# 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." | ||
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" | ||
type: software | ||
repository-code: "https://github.com/neurodata/scikit-tree" | ||
license: 'BSD-3-Clause' | ||
keywords: | ||
- random forest | ||
- oblique trees | ||
- honest forests | ||
- statisical learning | ||
- machine learning | ||
message: >- | ||
Please cite this software using the metadata from | ||
'preferred-citation' in the CITATION.cff file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sklearn_fork
updated
33 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
mypy | ||
black | ||
isort | ||
flake8 | ||
bandit | ||
pydocstyle | ||
codespell | ||
toml | ||
cython-lint |