test_Tucker: Perform 'cold start' prediction for Tucker models

Description Usage Arguments Value Examples

View source: R/test_Tucker.R

Description

Perform 'cold start' prediction for Tucker models

Usage

1

Arguments

d

an input data object created with input_data

m

a Tucker_model object created with mk_model

Value

Response tensor generated by multiplying the input data through the trained model

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
data.params <- get_data_params(c('decomp=Tucker'))
toy <- mk_toy(data.params)
train.data <- input_data$new(mode1.X=toy$mode1.X[,-1],
                             mode2.X=toy$mode2.X[,-1],
                             mode3.X=toy$mode3.X[,-1],
                             resp=toy$resp)
model.params <- get_model_params(c('decomp=Tucker'))
toy.model <- mk_model(train.data, model.params)
toy.model$rand_init(model.params)

resp <- test_Tucker(train.data, toy.model)

BaTFLED3D documentation built on May 2, 2019, 2:38 p.m.