-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What exactly do transform(X) method? #1
Comments
K is the number of features you want to select, and so after you transform, what you get is the input with only the selected features. |
this is my code:
My trainning data has 20000 sample and 250 features, but after transform I get |
Can you confirm that X_tr has the shape (20000, 250)? |
Actually, I looked at the code and there is a bug, you can use this instead: |
Yes |
I want to transform my data to new feature space because I want to feed it to my DNN. |
@FarshidShekari could you find a solution to transform your data into a new feature space? |
Hello I have a question about figure 1 from your paper. How is reconstruction supposed to be done? I only understand up to |
I applied on my dataset and that's shape changed to (K, N), that
k
is input to your model andn
is my X_train data features number. I supposedtransform
method is like dimensions reduction transform methods.The text was updated successfully, but these errors were encountered: