You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if self.train:
# index of continous features are zero
Xi_coutinous = np.zeros_like(dataI[:continous_features])
else:
# index of continous features are one
Xi_coutinous = np.ones_like(dataI[:continous_features])
Why are the indexes generated by the continuous variables of the training set and the test set zero and one respectively? And should index for each continuous variable be the same?
The text was updated successfully, but these errors were encountered:
in data/dataset.py
Why are the indexes generated by the continuous variables of the training set and the test set zero and one respectively? And should index for each continuous variable be the same?
The text was updated successfully, but these errors were encountered: