@@ -13,13 +13,6 @@ abstract type AbstractSemCollection <: AbstractSem end
1313" Supertype for all loss functions of SEMs. If you want to implement a custom loss function, it should be a subtype of `SemLossFunction`."
1414abstract type SemLossFunction end
1515
16- """
17- params(semobj)
18-
19- Return the vector of SEM model parameters.
20- """
21- params (model:: AbstractSem ) = model. params
22-
2316"""
2417 SemLoss(args...; loss_weights = nothing, ...)
2518
@@ -225,37 +218,6 @@ Returns the optimizer part of an ensemble model.
225218"""
226219optimizer (ensemble:: SemEnsemble ) = ensemble. optimizer
227220
228- # ###########################################################################################
229- # additional methods
230- # ###########################################################################################
231- """
232- observed(model::AbstractSemSingle) -> SemObserved
233-
234- Returns the observed part of a model.
235- """
236- observed (model:: AbstractSemSingle ) = model. observed
237-
238- """
239- imply(model::AbstractSemSingle) -> SemImply
240-
241- Returns the imply part of a model.
242- """
243- imply (model:: AbstractSemSingle ) = model. imply
244-
245- """
246- loss(model::AbstractSemSingle) -> SemLoss
247-
248- Returns the loss part of a model.
249- """
250- loss (model:: AbstractSemSingle ) = model. loss
251-
252- """
253- optimizer(model::AbstractSemSingle) -> SemOptimizer
254-
255- Returns the optimizer part of a model.
256- """
257- optimizer (model:: AbstractSemSingle ) = model. optimizer
258-
259221"""
260222Base type for all SEM specifications.
261223"""
0 commit comments