<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Keras on AI VOID</title><link>https://ai-blog.noorshomelab.dev/tags/keras/</link><description>Recent content in Keras on AI VOID</description><generator>Hugo</generator><language>en</language><lastBuildDate>Sat, 17 Jan 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ai-blog.noorshomelab.dev/tags/keras/index.xml" rel="self" type="application/rss+xml"/><item><title>TensorFlow Guide: Building Your First Neural Network with Keras</title><link>https://ai-blog.noorshomelab.dev/tensorflow-guide/building-your-first-neural-network-with-keras/</link><pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/tensorflow-guide/building-your-first-neural-network-with-keras/</guid><description>&lt;h2 id="3-building-your-first-neural-network-with-keras"&gt;3. Building Your First Neural Network with Keras&lt;/h2&gt;
&lt;p&gt;Keras is a high-level API for building and training deep learning models, fully integrated into TensorFlow (&lt;code&gt;tf.keras&lt;/code&gt;). It&amp;rsquo;s designed for fast experimentation and ease of use, making it perfect for beginners. In this chapter, you&amp;rsquo;ll learn how to build, compile, and train your first neural networks using Keras.&lt;/p&gt;
&lt;h3 id="31-understanding-neural-network-basics"&gt;3.1 Understanding Neural Network Basics&lt;/h3&gt;
&lt;p&gt;Before we build, let&amp;rsquo;s briefly revisit what a neural network is at a high level:&lt;/p&gt;</description></item><item><title>Chapter 7: Convolutional Neural Networks (CNNs) for Computer Vision</title><link>https://ai-blog.noorshomelab.dev/ai-ml-career-path-2026/convolutional-neural-networks/</link><pubDate>Sat, 17 Jan 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/ai-ml-career-path-2026/convolutional-neural-networks/</guid><description>&lt;h2 id="chapter-7-convolutional-neural-networks-cnns-for-computer-vision"&gt;Chapter 7: Convolutional Neural Networks (CNNs) for Computer Vision&lt;/h2&gt;
&lt;p&gt;Welcome back, future AI architect! In our journey, we&amp;rsquo;ve explored the basics of neural networks and understood how they can learn patterns from data. But what about images? Images are special: they have spatial relationships, and a simple dense neural network might struggle to capture these effectively.&lt;/p&gt;
&lt;p&gt;This chapter introduces you to &lt;strong&gt;Convolutional Neural Networks (CNNs)&lt;/strong&gt;, the powerhouse behind most modern computer vision applications. From recognizing faces on your phone to autonomous driving, CNNs are everywhere. You&amp;rsquo;ll learn the fundamental building blocks of CNNs, understand why they are so effective for image data, and get hands-on experience building and training your very own image classifier using TensorFlow and Keras.&lt;/p&gt;</description></item><item><title>TensorFlow Guide: Guided Project 1 - Image Classification with CNNs</title><link>https://ai-blog.noorshomelab.dev/tensorflow-guide/guided-project-1-image-classification-with-cnns/</link><pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/tensorflow-guide/guided-project-1-image-classification-with-cnns/</guid><description>&lt;h2 id="7-guided-project-1-image-classification-with-cnns"&gt;7. Guided Project 1: Image Classification with CNNs&lt;/h2&gt;
&lt;p&gt;This project will guide you through building a Convolutional Neural Network (CNN) to classify images from the CIFAR-10 dataset. CIFAR-10 consists of 60,000 32x32 color images in 10 classes (e.g., airplane, automobile, bird, cat). This project will solidify your understanding of data pipelines, model building with Keras, and training strategies.&lt;/p&gt;
&lt;h3 id="project-objective"&gt;Project Objective&lt;/h3&gt;
&lt;p&gt;Build and train a CNN model capable of classifying CIFAR-10 images with reasonable accuracy.&lt;/p&gt;</description></item><item><title>TensorFlow Guide: Further Learning and Resources</title><link>https://ai-blog.noorshomelab.dev/tensorflow-guide/further-learning-and-resources/</link><pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/tensorflow-guide/further-learning-and-resources/</guid><description>&lt;h2 id="9-bonus-section-further-learning-and-resources"&gt;9. Bonus Section: Further Learning and Resources&lt;/h2&gt;
&lt;p&gt;Congratulations on making it this far! You&amp;rsquo;ve built a strong foundation in TensorFlow 2.20.0, from basic tensors to building and deploying complex deep learning models. The world of machine learning is vast and ever-evolving, and continuous learning is key. Here&amp;rsquo;s a curated list of resources to help you continue your journey.&lt;/p&gt;
&lt;h3 id="recommended-online-coursestutorials"&gt;Recommended Online Courses/Tutorials&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;TensorFlow in Practice Specialization (DeepLearning.AI on Coursera)&lt;/strong&gt;: Taught by Laurence Moroney, this specialization is excellent for a practical, code-first approach to TensorFlow, covering CNNs, LSTMs, and more.
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.coursera.org/specializations/tensorflow-in-practice"&gt;Link to Coursera Specialization&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deep Learning Specialization (DeepLearning.AI on Coursera)&lt;/strong&gt;: Taught by Andrew Ng, this covers the foundational theory of deep learning with practical applications, often using TensorFlow/Keras.
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.coursera.org/specializations/deep-learning"&gt;Link to Coursera Specialization&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Udemy/edX Courses&lt;/strong&gt;: Search for &amp;ldquo;TensorFlow 2.x&amp;rdquo; or &amp;ldquo;Deep Learning with Python and Keras&amp;rdquo; on platforms like Udemy or edX for project-based courses. Look for courses updated for TensorFlow 2.x and Keras.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="official-documentation"&gt;Official Documentation&lt;/h3&gt;
&lt;p&gt;The official documentation is your ultimate source for in-depth information, API references, and up-to-date guides.&lt;/p&gt;</description></item><item><title>Learn TensorFlow 2.20.0: A Beginner&amp;#39;s Guide to Machine Learning</title><link>https://ai-blog.noorshomelab.dev/guides/learn-tensorflow-2-20-0/</link><pubDate>Sun, 26 Oct 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/guides/learn-tensorflow-2-20-0/</guid><description>&lt;p&gt;This comprehensive learning guide will take you on a journey through the exciting world of TensorFlow 2.20.0. Designed for absolute beginners, this document will equip you with the knowledge and practical skills to confidently build, train, and deploy machine learning models. We&amp;rsquo;ll start with the very basics, explaining what TensorFlow is and why it&amp;rsquo;s a powerful tool for AI. From there, we&amp;rsquo;ll progressively move through core concepts, intermediate techniques, and advanced topics, reinforcing your understanding with numerous code examples and hands-on exercises. By the end of this guide, you&amp;rsquo;ll have completed several guided projects, applying your newfound skills to real-world problems and setting a strong foundation for your machine learning journey.&lt;/p&gt;</description></item></channel></rss>