Create a dummy textmodel_lss object from external objects
Source:R/as.textmodel.R
as.textmodel_lss.Rd
Create a dummy textmodel_lss object from a numeric vector, dense matrix or an existing textmodel_lss object. Pre-trained word-embedding models could used to perform LSS through this function.
Arguments
- x
an object from which a dummy textmodel_lss object is created.
- ...
arguments used to create a dummy object.
seeds
must be given whenx
is a dense matrix.
Value
a dummy textmodel_lss object
Details
A named numeric vector and a dense matrix are set to beta
and
embedding
respectively. A dense matrix should have column names for
words.
Examples
v <- c("a" = 0.1, "z" = -0.2, "d" = 0.3, "h" = -0.05)
lss <- as.textmodel_lss(v)