-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit - brought to you by Dev Portal
- Loading branch information
0 parents
commit a8dea1d
Showing
5 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @transferwise/data-scientists |
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,26 @@ | ||
# Compiled class file | ||
*.class | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
#idea files | ||
*.iml | ||
*.ipr | ||
*.iws | ||
/.idea | ||
|
||
#vscode files | ||
.project | ||
.classpath | ||
/.settings | ||
/.vscode | ||
|
||
#logs | ||
/logs | ||
|
||
#build folders | ||
build/ | ||
out/ | ||
.gradle/ | ||
bin/ |
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,13 @@ | ||
# Repository created from the dev portal | ||
|
||
Owner: data-scientists | ||
|
||
Slack channels: #shap-select | ||
|
||
## Table of Contents | ||
|
||
- [Overview](#overview) | ||
|
||
## Overview | ||
|
||
A library for feature selection for gradient boosting models using regression on feature Shapley values |
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,24 @@ | ||
## Repo created from the dev portal | ||
|
||
A library for feature selection for gradient boosting models using regression on feature Shapley values | ||
|
||
## Getting started | ||
|
||
Start writing your documentation by adding more markdown (.md) files to this folder (/docs) or replace the content in this file. | ||
|
||
## Table of Contents | ||
|
||
The Table of Contents on the right is generated automatically based on the hierarchy | ||
of headings. Only use one H1 (`#` in Markdown) per file. | ||
|
||
## Site navigation | ||
|
||
For new pages to appear in the left hand navigation you need edit the `mkdocs.yml` | ||
file in root of your repo. The navigation can also link out to other sites. | ||
|
||
Alternatively, if there is no `nav` section in `mkdocs.yml`, a navigation section | ||
will be created for you. However, you will not be able to use alternate titles for | ||
pages, or include links to other sites. | ||
|
||
Note that MkDocs uses `mkdocs.yml`, not `mkdocs.yaml`, although both appear to work. | ||
See also <https://www.mkdocs.org/user-guide/configuration/>. |
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,4 @@ | ||
site_name: Repository docs | ||
|
||
nav: | ||
- Introduction: index.md |