Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/guildai/guildai-r

Track machine learning experiments
https://github.com/guildai/guildai-r

deep-learning keras machine-learning

Last synced: 3 months ago
JSON representation

Track machine learning experiments

Awesome Lists containing this project

README

        

# R interface to Guild AI

[![R-CMD-check](https://github.com/guildai/guildai-r/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/guildai/guildai-r/actions/workflows/R-CMD-check.yaml)

| | | |
|:----------------------------------------------------------:|:---------------------------------------------------:|:------------------------------------------------------:|
| | | |

*guildai* provides a suite of tools for tracking, visualizing, and
managing machine learning experiments. The {guildai} R package is a
successor to the {tfruns} package.

- Track the hyperparameters, metrics, output, and source code of every
training run.

- Compare hyperparmaeters and metrics across runs to find the best
performing model.

- No changes to source code required.

# Installation

The R package provides an interface to [Guild AI
Core](https://guild.ai/). The R package will automatically download and
install Guild AI Core on first use, or you can call `install_guild()`
directly to customize the installation.

To install the release version:

``` r
install.packages("guildai")
guildai::install_guild()
```

To install the development version:

``` r
remotes::install_github("guildai/guildai-r")
guildai::install_guild("dev")
```

Guild AI can be used with any machine learning framework, or no
framework at all.

[Get Started](https://guildai.github.io/guildai-r/articles/guildai.html)