mfbalin / Concrete-Autoencoders

112 stars 31 forks source link

Unsupervised feature selection on a structured data in CSV format, the program can't run. #6

Open postyear opened 3 years ago

postyear commented 3 years ago

Hello! I want to use this auto encoder for unsupervised feature selection, but alaways fails.

If ues fit(X), then reporting error'fit() missing 1 required positional argument: 'Y'';

if use fir(X, Y=None) , reporting 'have no len()'

if comment out the code 'assert len(X) == len(Y)' , reporting error while epochs begin.

So how do we start unsupervised training?

mfbalin commented 3 years ago

Hello,

To do unsupervised learning, you should pass X for both X and Y parameters of fit.

Best, Fatih

On Mon, Nov 23, 2020, 09:00 子在川上 notifications@github.com wrote:

Hello! I want to use this auto encoder for unsupervised feature selection, but alaways fails.

If ues fit(X), then reporting error'fit() missing 1 required positional argument: 'Y'';

if use fir(X, Y=None) , reporting 'have no len()'

if comment out the code 'assert len(X) == len(Y)' , reporting error while epochs begin.

So how do we start unsupervised training?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/mfbalin/Concrete-Autoencoders/issues/6, or unsubscribe https://github.com/notifications/unsubscribe-auth/AD3QVFIIZL7RCDOQB2VCS5DSRJTHTANCNFSM4T7QXVKQ .

tanvirraihan142 commented 3 years ago

This happens if I pass X for both X and Y -

https://pastebin.com/raw/4y04VLxf

Any idea how to get past this