[1c0e03]: / man / model_card_cb.Rd

Download this file

29 lines (26 with data), 936 Bytes

 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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/callbacks.R
\name{model_card_cb}
\alias{model_card_cb}
\title{Create model card}
\usage{
model_card_cb(model_card_path = NULL, run_name, argumentList)
}
\arguments{
\item{model_card_path}{Directory for model card logs.}
\item{run_name}{Name of training run.}
\item{argumentList}{List of training arguments.}
}
\value{
Keras callback writing model cards every epoch.
}
\description{
Log information about model, hyperparameters, generator options, training data, scores etc
}
\examples{
\dontshow{if (reticulate::py_module_available("tensorflow")) (if (getRversion() >= "3.4") withAutoprint else force)(\{ # examplesIf}
model_card_cb <- function(model_card_path = NULL, run_name, argumentList)
mc <- model_card_cb(model_card_path = tempdir(), run_name = 'run_1',
argumentList = list(learning_rate = 0.01))
\dontshow{\}) # examplesIf}
}