-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME.Rmd
44 lines (31 loc) · 1.15 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# NNTools
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
The goal of NNTools is to facilitate the use of Machine Learning' technics wrapping all the pipeline in easy to use
functions (`pipe_*`). The functions take care of the cross-validation, data scaling and return the predictions (also for rasters), SHAP in a single call.
## Pre-requisites
Install keras and tensorflow (only needed for `pipe_keras` and `pipe_keras_timeseries`):
``` r
keras::install_keras()
```
## Installation
You can install the development version of NNTools like so:
``` r
# install.packages("remotes")
remotes::install_github("jmaspons/MLTools")
## The package "data.table" (>= 1.14.9) is required.
# data.table::update_dev_pkg() # requires unreleased features for reshaping 3D data
```