shahlaebrahimi
shahlaebrahimi
@mavillan Hi This error is due to [this ](https://github.com/danielhomola/mifs/blob/master/mi.py#L47)and [this ](https://github.com/danielhomola/mifs/blob/master/mi.py#L74)line. If they will be replaced by zero, this result will be displayed: ``` C:\Users\Markazi.co\Anaconda3\python.exe D:/mifs-master_2/mifs-master/untitled0.py Auto selected feature #1...
Hi @limi44 Thanks a lot for your detailed answer. I will try it. here (https://github.com/jundongl/scikit-feature/tree/master/skfeature/function/information_theoretical_based) there is another implementation of MRMR but the optimum number of selected features should be...
@limi44 Sorry, is it possible to ask a question about the data division into test and train for feature selection?
@limi44 Thanks for sharing your knowledge and time. I did these steps to do wrapper based feature selection: 1-Load and prepare data 2-Apply NSGA II to randomly select features 3-Apply...
@limi44 Thank you very much for your all exquisite responses. Excuse me, since my targets are discrete: I change line 225 in mifs.py from: `feature_mi_matrix[s, F] = mi.get_mi_vector(self, F, s)`...
@limi44 Hi To tell you the truth, I found [this ](http://www.codegur.club/34346140/applying-sklearn-function-to-pandas-dataframe-gives-valueerrorunknown-label-ty)but I could not figure it out. Thanks.
Hi @limi44 First, Thanks a lot. Then, I am so sorry. If mutual_info is to be used for "JMI" as well as "JMIM", what changes would be necessary? When "JMI"...
@limi44 Hi. Special thanks to you for your good comments. It seems MRMR does not select the first and last features. Specially, for the data set including 14 features, it...
For "JMI" and "JMIM", I change line 225 to: `feature_mi_matrix[s, F] = mutual_info_._compute_mi_cd(self.X[:, F], self.[:, S[-1]],n_neighbors=k) ` Unfortunately, it displays this error: ``` C:\Users\Markazi.co\Anaconda3\python.exe D:/mifs-master_2/mifs-master/MRMR/untitled0.py C:\Users\Markazi.co\Anaconda3\lib\site-packages\sklearn\utils\validation.py:515: DataConversionWarning: A column-vector y...
@limi44 Sorry, again in Python 3.5, I changed line 206 from: `for i, k in enumerate(xrange(k_min, k_max)):` to `for i, k in enumerate(range(k_min, k_max)):` should it change to this? `for...