<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Shukurat Bello</title>
    <description>The latest articles on Forem by Shukurat Bello (@ladys).</description>
    <link>https://forem.com/ladys</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3548693%2F4fcfd4a0-a52e-4b47-8269-98f07ba4b002.jpg</url>
      <title>Forem: Shukurat Bello</title>
      <link>https://forem.com/ladys</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ladys"/>
    <language>en</language>
    <item>
      <title>Machine Learning Zoomcamp Week 5</title>
      <dc:creator>Shukurat Bello</dc:creator>
      <pubDate>Tue, 04 Nov 2025 11:06:02 +0000</pubDate>
      <link>https://forem.com/ladys/machine-learning-zoomcamp-week-5-25a3</link>
      <guid>https://forem.com/ladys/machine-learning-zoomcamp-week-5-25a3</guid>
      <description>&lt;p&gt;🎉 Week 5 of ML Zoomcamp was all about Deployment and getting our ML models into production.&lt;/p&gt;

&lt;p&gt;Learned about&lt;/p&gt;

&lt;p&gt;Saving and loading models&lt;/p&gt;

&lt;p&gt;Flask web services&lt;/p&gt;

&lt;p&gt;Churn model deployment with Flask&lt;/p&gt;

&lt;p&gt;Virtual environments with Pipenv&lt;/p&gt;

&lt;p&gt;Docker containerization&lt;/p&gt;

&lt;p&gt;AWS Elastic Beanstalk deployment&lt;/p&gt;

&lt;p&gt;From local development to cloud deployment, models can now be used by end users&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>api</category>
      <category>python</category>
    </item>
    <item>
      <title>Machine Learning Zoomcamp Week 4</title>
      <dc:creator>Shukurat Bello</dc:creator>
      <pubDate>Wed, 22 Oct 2025 14:11:34 +0000</pubDate>
      <link>https://forem.com/ladys/machine-learning-zoomcamp-week-4-5cil</link>
      <guid>https://forem.com/ladys/machine-learning-zoomcamp-week-4-5cil</guid>
      <description>&lt;p&gt;Week 4 of #mlzoomcamp was all about ML Evaluation&lt;/p&gt;

&lt;p&gt;The lessons covered Evaluation Metrics on classification models.&lt;/p&gt;

&lt;p&gt;After training a model, it’s performance needs to be evaluated on a test set. This helps to understand how well the model will generalize on a new data.&lt;br&gt;
There are a number of different evaluation metrics that we can use for binary classification problems. &lt;/p&gt;

&lt;p&gt;Some of the most common evaluation metrics and concepts include:&lt;br&gt;
☑ Accuracy&lt;br&gt;
☑ Confusion Matrix&lt;br&gt;
☑ Precision &lt;br&gt;
☑ Recall &lt;br&gt;
☑ Class Imbalance and it's importance&lt;br&gt;
☑ F1 Score &lt;br&gt;
☑ Receiver Operating Characteristic Area Under the Curve (ROC AUC).&lt;br&gt;
☑ ROC Curve&lt;br&gt;
☑ K-Fold Cross Validation&lt;/p&gt;

&lt;p&gt;The goal of the homework was to apply the evaluation metrics on the classification problem (Bank Marketing dataset - desired target for classification task will be the 'converted' variable - has the client signed up to the platform or not?) from Week 3 &lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>evaluation</category>
      <category>programming</category>
      <category>python</category>
    </item>
    <item>
      <title>ML Zoomcamp Week 3</title>
      <dc:creator>Shukurat Bello</dc:creator>
      <pubDate>Tue, 14 Oct 2025 01:12:21 +0000</pubDate>
      <link>https://forem.com/ladys/ml-zoomcamp-week-3-aep</link>
      <guid>https://forem.com/ladys/ml-zoomcamp-week-3-aep</guid>
      <description>&lt;p&gt;This is week 3 of #mlzoomcamp and it was all about ML for Classification&lt;/p&gt;

&lt;p&gt;I learned how to predict the likelihood of a customer churning using a telco dataset from kaggle. I have worked on this problem before so it was easy to understand.&lt;br&gt;
The assignment was to to use the lead scoring dataset Bank Marketing dataset to classify if the client signed up to the platform or not; using the converted variable (column).&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>classification</category>
      <category>python</category>
      <category>learning</category>
    </item>
    <item>
      <title>Machine Learning Zoomcamp Week 2</title>
      <dc:creator>Shukurat Bello</dc:creator>
      <pubDate>Mon, 06 Oct 2025 11:42:40 +0000</pubDate>
      <link>https://forem.com/ladys/machine-learning-zoomcamp-week-2-1lp5</link>
      <guid>https://forem.com/ladys/machine-learning-zoomcamp-week-2-1lp5</guid>
      <description>&lt;p&gt;This is week 2 of #mlzoomcamp and it was all about Linear Regression.&lt;/p&gt;

&lt;p&gt;You can view this weeks &lt;a href="https://github.com/ShukrohBello/Machine-Learning-Zoomcamp/blob/main/02-regression/homework2_2025.ipynb" rel="noopener noreferrer"&gt;homework&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;The goal of this homework was to create a regression model for predicting the car fuel efficiency (column 'fuel_efficiency_mpg') and I did that in the following steps: 1️⃣ EDA and preparing the dataset by splitting it into training, validation and testing set. 2️⃣ Shuffling and normalizing the data by applying log transformation. 3️⃣ Building a linear regression from scratch using Numpy. 4️⃣ Evaluating a model on a validation set by using the Root Mean Squared Error (RMSE). 5️⃣ Making predictions with the model.&lt;/p&gt;

&lt;p&gt;The focus of the lessons for this week was learning how to perform Linear Regression from scratch, without using any machine learning library, and it was great to know how the 🚗 Case study: Car price prediction 🤖 Data Cleaning &amp;amp; Exploration 🧮 Linear Regression 🔄 Root Mean Squared Error 🐍 Feature Engineering 📚 Regularization 📊 Model training and using the model and others.&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>mlzoomcamp</category>
      <category>linearregression</category>
      <category>python</category>
    </item>
  </channel>
</rss>
