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
Hi!
If you use degrade_dataset it is supposed that the raw data is perfect and you want to create missing values.
By the way, if your raw data has already some missing values, you can still use degrade_dataset to add some noise. In this case, you have to sum the original mask of missing values to the one produced by the function
If so, why 'mask_1d = np.ones(n)' rather than 'mask_1d = #where X is not nan'?
Hi Indro,
Does input X in degrade_dataset(...) possibly have nan (missing values, I mean the raw data has intrinsic missing values)?
If so, why
mask_1d = np.ones(n)
rather thanmask_1d = #where X is not nan
?The text was updated successfully, but these errors were encountered: