AI Notes For Learning

  • Apache Spark

    Let’s illustrate Apache Spark with a classic “word count” example using PySpark (the Python API for Spark). This example demonstrates the fundamental concepts of distributed data processing with…

    Continue Reading

  • Inner workings of Apache Spark

    Here’s a breakdown of key internal aspects of the inner workings of Apache Spark. : 1. Architecture: 2. Execution Model: 3. Data Partitioning: 4. Shuffle Operations: 5. Memory…

    Continue Reading

  • MLOps pipeline

    While a full-fledged MLOps pipeline involves integrating various tools and platforms, here are some illustrative code snippets demonstrating key MLOps concepts using popular Python libraries and tools. These…

    Continue Reading

  • Workflow of MLOps

    The workflow of MLOps is an iterative and cyclical process that encompasses the entire lifecycle of a machine learning model, from initial ideation to ongoing monitoring and maintenance…

    Continue Reading

  • Developing and training machine learning models within an MLOps framework

    The “MLOps training workflow” specifically focuses on the steps involved in developing and training machine learning models within an MLOps framework. It’s a subset of the broader MLOps…

    Continue Reading

  • Output of machine learning (ML) model

    The output of a machine learning (ML) training process is a trained model. This model is an artifact that has learned patterns and relationships from the training data.…

    Continue Reading