Feature extraction and PCA 3 – Predictions Don’t Grow on Trees, or Do They?

Our goal is to predict whether or not a person gave a 5- or 1-star review based on the words they used in the review. Let’s set a baseline with logistic regression and see how well we can predict this binary category:from sklearn.linear_model import LogisticRegression lr = LogisticRegression()X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=100) […]

Read More

Measuring bias – Mitigating Algorithmic Bias and Tackling Model and Data Drift

Measuring bias To successfully combat bias, we must first measure its existence and understand its impact on our ML models. Several statistical methods and techniques have been developed for this purpose, each offering a different perspective on bias and fairness. Here are a few essential methods: These methods offer diverse perspectives on measuring bias and […]

Read More

Data management: crafting the bedrock – AI Governance

Data management: crafting the bedrock At the heart of a compelling data governance strategy lies proficient data management. This sphere encompasses the meticulous aggregation, fusion, orchestration, and retention of trustworthy datasets, acting as a catalyst for businesses to harness maximum value. With the contemporary business landscape rapidly evolving, an organization’s merit hinges significantly on its […]

Read More


          Terms of Use | About Whystephanie | Privacy Policy | Cookies | Accessibility Help | Contact whystephanie