Tag: get

  • How to not get discouraged while searching for a job?

    How to not get discouraged while searching for a job? The market has not been forgiving, especially when it comes to interviews. I am not sure if anyone else has noticed, but companies seem to expect flawless interviews and coding rounds. I have faced a few rejections over the past couple of months, and it…

  • why OneHotEncoder give better results than get.dummies/reindex?

    why OneHotEncoder give better results than get.dummies/reindex? I can’t figure out why I get a better score with OneHotEncoder : preprocessor = ColumnTransformer( transformers=[ (‘cat’, categorical_transformer, categorical_cols) ], remainder=’passthrough’ # <– this keeps the numerical columns ) model_GBR = GradientBoostingRegressor(n_estimators=1100, loss=’squared_error’, subsample = 0.35, learning_rate = 0.05,random_state=1) GBR_Pipeline = Pipeline(steps=[(‘preprocessor’, preprocessor),(‘model’, model_GBR)]) than get.dummies/reindex: X_test…

  • AI Agents Hype, Explained — What You Really Need to Know to Get Started

    AI Agents Hype, Explained — What You Really Need to Know to Get Started I’ll set the record straight — AI Agents are not new but advanced. Learn how they’ve evolved and where to get started. Continue reading on Towards Data Science » Marc Nehme Go to original source