Hey guys, any suggestion regarding this: int n = rand() % 2; if (n==0) { doSomthing() } doSomething() function will be executed at a probable (random) intervals based o...
Is it fine to have both binary and integer (numerical) features in a dataset for training a model? Or all features have to be the same data type (i.e., encode the integer fea...
Hello guys, How to deal with imbalanced or skewed label distribution for regression problems?? I have a dataset where the continuous target variable (regression) is very ske...
Hi, Why Liner Regression provides very bad results compared to others? I have a dataset of 270,000 samples and 100 features. I want to compare the results between them but it...
Hi guys I have a list of probabilities such as p =[0.12,0.1,0.9,….,0.08] about a hundred of them where the sum =1. Each one refers to a list to select values from. Now the q...
Hi, Can we limit the highest prediction of a model? For example, not to make predictions more than the value 100, so possible predictions should be between the range 0-100. Th...
Is it an okay thing to have in a dataset features with integer numbers and others with binary?