Hi, I have a few questions regarding the outputs of f = fitted_params(mach) and r = report(mach) on a trained mach
- What are each of the objects in the
fitted_params(mach) output? After navigating this repo I could find out that the first element is f[1].W, the second element is f[1].b, and the third element is f[1].P; but this is not very clear and definitely not straightforward. It would be nice to have a description of how to access these objects and what they are in the docs of this package -there is a lot of inconsistency in terminology out there, and it is not easy to know what they actually are.
- Is
report(mach) expected to return nothing?
- What is the best way to report feature importance with the matrices available (
W, b, P)? Alternatively, it would be nice to have some metric of feature importance after fitting a model. (https://learnche.org/pid/latent-variable-modelling/projection-to-latent-structures/coefficient-plots-in-pls)
Hi, I have a few questions regarding the outputs of
f = fitted_params(mach)andr = report(mach)on a trainedmachfitted_params(mach)output? After navigating this repo I could find out that the first element isf[1].W, the second element isf[1].b, and the third element isf[1].P; but this is not very clear and definitely not straightforward. It would be nice to have a description of how to access these objects and what they are in the docs of this package -there is a lot of inconsistency in terminology out there, and it is not easy to know what they actually are.report(mach)expected to return nothing?W,b,P)? Alternatively, it would be nice to have some metric of feature importance after fitting a model. (https://learnche.org/pid/latent-variable-modelling/projection-to-latent-structures/coefficient-plots-in-pls)