how get FRUFS loadings in python?

24 Views Asked by At

I need loading Feature Relevance based Unsupervised Feature Selection (FRUFS)

I use the code L = model_frufs.loadings_ but it does not deliver the loadings

    from FRUFS import FRUFS
    model_frufs = FRUFS(
        model_r=lgb.LGBMRegressor(random_state=42, device="gpu"),
        k=0.90)
    
    model_frufs.fit(X)
    X_pruned = model_frufs.transform(X)
    L = model_frufs.loadings_
0

There are 0 best solutions below