Skip to content

Commit

Permalink
Initial commit - brought to you by Dev Portal
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorKraevTransferwise committed Sep 19, 2024
0 parents commit a8dea1d
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @transferwise/data-scientists
26 changes: 26 additions & 0 deletions .gitignore
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/
13 changes: 13 additions & 0 deletions README.md
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
24 changes: 24 additions & 0 deletions docs/index.md
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/>.
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
site_name: Repository docs

nav:
- Introduction: index.md

0 comments on commit a8dea1d

Please sign in to comment.