Questions tagged [reproducible-research]

Reproducible research is the idea that the result of scientific research should be published with data and code in order to make it possible for other researchers to verify the results.

Reproducible research is the idea that the result of scientific research should be published with data and code in order to make it possible for other researchers to verify the results.

Reproducible research may be especially important to you if your investigation involves large amount of data or very complex calculations.

One possible set of tools for reproducible research is using with or .

Related links:

227 questions
-2
votes
1 answer

RandomizedSearchCV and GridsearchCV results are not reproducible

I'm performing RandomForest and AdaBoost Regression in python My results are not reproducible [ My prediction changes everytime run the with same data and code] seed = np.random.seed(22) rng = np.random.RandomState(1) param_grid =…
-5
votes
1 answer

Random Forest Regressor- Python is not reproducible

I'm trying to check for Random Forest regressor performance effected by n_estimators. seed = np.random.seed(1962) rng = np.random.RandomState(1962) np.random.seed(1962) estimators =…
1 2 3
15
16