<?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: عبدالله عياد | Abdullah Ayad</title>
    <description>The latest articles on Forem by عبدالله عياد | Abdullah Ayad (@ayad).</description>
    <link>https://forem.com/ayad</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%2F885870%2F1c4379f0-d661-4809-b617-86c9b3a67ea8.jpg</url>
      <title>Forem: عبدالله عياد | Abdullah Ayad</title>
      <link>https://forem.com/ayad</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ayad"/>
    <language>en</language>
    <item>
      <title>LLM on AWS with Bedrock and Understanding Non-Determinism in Generative Models</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Sat, 22 Nov 2025 18:11:22 +0000</pubDate>
      <link>https://forem.com/aws-builders/llm-on-aws-with-bedrock-and-understanding-non-determinism-in-generative-models-1nm1</link>
      <guid>https://forem.com/aws-builders/llm-on-aws-with-bedrock-and-understanding-non-determinism-in-generative-models-1nm1</guid>
      <description>&lt;h1&gt;
  
  
  Foundation Models on AWS
&lt;/h1&gt;

&lt;p&gt;AWS provides access to several foundation models through &lt;strong&gt;Amazon Bedrock&lt;/strong&gt;, offering users a selection of state-of-the-art models from providers such as &lt;strong&gt;Anthropic&lt;/strong&gt;, &lt;strong&gt;AI21 Labs&lt;/strong&gt;, &lt;strong&gt;Cohere&lt;/strong&gt;, &lt;strong&gt;Meta&lt;/strong&gt;, &lt;strong&gt;Mistral&lt;/strong&gt;, &lt;strong&gt;Stability AI&lt;/strong&gt;, and &lt;strong&gt;Amazon Titan&lt;/strong&gt;. These models can be easily integrated into applications for tasks like text summarization, code generation, chatbots, and more.&lt;/p&gt;

&lt;h1&gt;
  
  
  Large Language Models (LLMs) on AWS
&lt;/h1&gt;

&lt;p&gt;A Large Language Model (LLM) is a type of foundation model specifically trained to understand, generate, and manipulate human language at scale. According to AWS, LLMs are built using deep learning techniques, particularly transformer architectures, and are pre-trained on massive datasets containing text from books, articles, websites, and other sources. These models are capable of performing a wide range of natural language processing (NLP) tasks, including text generation, translation, summarization, question-answering, and conversational AI.&lt;/p&gt;

&lt;p&gt;AWS enables businesses and developers to leverage LLMs through services such as Amazon Bedrock, which provides access to state-of-the-art models from multiple providers, and Amazon SageMaker, which supports custom model training and deployment.&lt;/p&gt;

&lt;h1&gt;
  
  
  LLMs on AWS
&lt;/h1&gt;

&lt;p&gt;AWS provides access to multiple LLMs through Amazon Bedrock, offering models from providers like &lt;strong&gt;Anthropic (Claude)&lt;/strong&gt;, &lt;strong&gt;AI21 Labs (Jurassic)&lt;/strong&gt;, &lt;strong&gt;Cohere (Command R)&lt;/strong&gt;, &lt;strong&gt;Meta (Llama)&lt;/strong&gt;, &lt;strong&gt;Mistral&lt;/strong&gt;, and &lt;strong&gt;Amazon Titan&lt;/strong&gt;. These models can be integrated into applications for various business needs, including automated content generation, AI-driven chat interfaces, and knowledge retrieval systems.&lt;/p&gt;

&lt;h1&gt;
  
  
  Use Cases of LLMs
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Chatbots and Virtual Assistants&lt;/strong&gt; – Powering customer support agents and interactive AI assistants.&lt;br&gt;
&lt;strong&gt;Text Summarization&lt;/strong&gt; – Condensing lengthy articles, reports, and emails into concise summaries.&lt;br&gt;
&lt;strong&gt;Code Generation and Assistance&lt;/strong&gt; – Helping developers write, review, and debug code more efficiently.&lt;br&gt;
&lt;strong&gt;Search and Knowledge Retrieval&lt;/strong&gt; – Enhancing search engines and enterprise knowledge bases with AI-driven understanding.&lt;br&gt;
&lt;strong&gt;Language Translation&lt;/strong&gt; – Providing real-time and accurate multilingual translations.&lt;/p&gt;

&lt;h1&gt;
  
  
  Understanding Non-Determinism in Generative Models
&lt;/h1&gt;

&lt;p&gt;Generative language models, such as Large Language Models (LLMs), are inherently &lt;strong&gt;non-deterministic&lt;/strong&gt;, meaning they do not always produce the same output given the same input.&lt;/p&gt;

&lt;h1&gt;
  
  
  Why Are Generative Language Models Non-Deterministic?
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Probability-Based Predictions&lt;br&gt;
Generative models use probabilistic token selection when generating text. Instead of selecting a single "correct" next word, they compute a probability distribution over possible next words and select one based on a sampling strategy.&lt;br&gt;
For example, given the prompt "The sky is", a model might assign probabilities to different words:&lt;br&gt;
"blue" (85%)&lt;br&gt;
"clear" (10%)&lt;br&gt;
"cloudy" (5%)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Depending on the sampling method, the model may return "blue" most of the time but occasionally choose "clear" or "cloudy".&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Temperature and Sampling&lt;/strong&gt; Techniques (Important for Exam!)&lt;br&gt;
Temperature: This parameter controls the randomness of the model’s outputs. A higher temperature (e.g., 1.0) increases randomness, making the responses more creative and diverse. A lower temperature (e.g., 0.1) makes the model more deterministic and focused on high-probability outputs.&lt;br&gt;
&lt;br&gt; &lt;strong&gt;Top-k Sampling&lt;/strong&gt;: Limits the selection to the top-k most probable words, reducing randomness but maintaining variability.&lt;br&gt;
&lt;strong&gt;Top-p (Nucleus) Sampling&lt;/strong&gt;: Dynamically selects from the smallest set of words whose cumulative probability meets a certain threshold, balancing creativity and coherence.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Context Dependence and Variability&lt;br&gt;
Generative models consider the context of the input but may weigh words differently in each run, leading to slight variations.&lt;br&gt;
Small changes in punctuation, word choice, or sentence length in the input can lead to significantly different outputs.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fine-Tuning and Model Updates&lt;br&gt;
When LLMs are fine-tuned with new data or updated with improved training methodologies, their internal probability distributions shift, making previously common responses less likely and introducing new variations.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h1&gt;
  
  
  Implications of Non-Determinism
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Creativity &amp;amp; Diversity&lt;/strong&gt; – Non-determinism allows AI-generated text to feel more natural, avoiding repetitive or overly predictable responses.&lt;br&gt;
&lt;strong&gt;Challenges in Consistency&lt;/strong&gt; – For applications requiring precise, repeatable outputs (e.g., legal documents or financial reports), fine-tuning model parameters and using lower temperatures can help achieve more deterministic behavior.&lt;br&gt;
&lt;strong&gt;Bias &amp;amp; Uncertainty&lt;/strong&gt; – Since responses are probabilistic, slight variations in prompts can lead to different biases or interpretations, requiring careful prompt engineering and model adjustments.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>cloud</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>What is Generative AI For AWS and What is Amazon Bedrock Service?</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Fri, 17 Oct 2025 19:36:49 +0000</pubDate>
      <link>https://forem.com/aws-builders/what-is-generative-ai-for-aws-and-what-is-amazon-bedrock-service-part-1-2m4e</link>
      <guid>https://forem.com/aws-builders/what-is-generative-ai-for-aws-and-what-is-amazon-bedrock-service-part-1-2m4e</guid>
      <description>&lt;h1&gt;
  
  
  Generative AI definition for AWS
&lt;/h1&gt;

&lt;p&gt;AWS defines &lt;strong&gt;Generative AI (Gen AI)&lt;/strong&gt; as a subset of artificial intelligence that focuses on creating new content, including text, images, code, audio, and more. It is powered by &lt;strong&gt;foundation models (FMs)&lt;/strong&gt;, which are large-scale machine learning models trained on vast datasets and capable of performing a wide range of tasks with minimal fine-tuning.&lt;/p&gt;

&lt;p&gt;AWS provides &lt;strong&gt;Amazon Bedrock&lt;/strong&gt;, a managed service that enables users to build and scale Gen AI applications using foundation models from leading AI providers without needing to manage infrastructure. Additionally, &lt;strong&gt;AWS Trainium&lt;/strong&gt; and &lt;strong&gt;AWS Inferentia&lt;/strong&gt; offer high-performance, cost-efficient hardware for training and deploying large AI models.&lt;/p&gt;

&lt;h1&gt;
  
  
  Foundation Models: The Backbone of Generative AI
&lt;/h1&gt;

&lt;p&gt;A foundation model (FM) is a large-scale machine learning model trained on vast amounts of data, enabling it to perform a wide range of tasks with minimal fine-tuning. According to AWS, foundation models serve as the core technology behind generative AI, allowing users to generate text, images, code, and other types of content by leveraging advanced deep learning techniques.&lt;/p&gt;

&lt;p&gt;These models are designed to be general-purpose, meaning they can be adapted for multiple applications, such as natural language understanding, text summarization, image generation, and chatbot interactions. Unlike traditional machine learning models, which are trained for specific tasks, foundation models are pre-trained on diverse datasets and can be fine-tuned to suit specialized needs.&lt;/p&gt;

&lt;h1&gt;
  
  
  Key Characteristics of Foundation Models
&lt;/h1&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Pre-Trained at Scale – Foundation models are trained on massive datasets using self-supervised learning techniques. This allows them to develop a deep understanding of language, images, or other structured data without the need for explicit labels.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Multi-Task Capability – Unlike traditional AI models that are trained for a single task, foundation models can be used for a variety of applications with minimal modifications. For example, the same model can be used for sentiment analysis, machine translation, and content generation.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Fine-Tuning and Adaptability – While foundation models are powerful in their raw form, they can be further optimized for specific tasks through fine-tuning. This process involves training the model on a smaller, domain-specific dataset to improve accuracy and performance in a particular field.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Efficient Deployment via APIs – AWS provides access to foundation models through services such as Amazon Bedrock, which allows businesses to integrate these models into their applications without needing to build or maintain the underlying infrastructure.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Optimized for Performance and Cost – AWS offers specialized hardware such as AWS Trainium and AWS Inferentia, which are designed to accelerate the training and inference of foundation models while optimizing cost efficiency.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>cloud</category>
      <category>aws</category>
      <category>deeplearning</category>
    </item>
    <item>
      <title>Generate-Blogs-using-Amazon-Bedrock-Service</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Fri, 03 Jan 2025 11:48:32 +0000</pubDate>
      <link>https://forem.com/aws-builders/generate-blogs-using-amazon-bedrock-service-1i65</link>
      <guid>https://forem.com/aws-builders/generate-blogs-using-amazon-bedrock-service-1i65</guid>
      <description>&lt;h3&gt;
  
  
  Before you start, here are some prerequisites:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Python&lt;/li&gt;
&lt;li&gt;AWS Background&lt;/li&gt;
&lt;li&gt;AWS Lambda Function&lt;/li&gt;
&lt;li&gt;Machine Learning Skills&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  So, let's get started...
&lt;/h3&gt;

&lt;h1&gt;
  
  
  Steps:
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;Here is the code repo we need &lt;a href="https://github.com/a00ayad00/Generate-Blogs-using-Amazon-Bedrock-Service" rel="noopener noreferrer"&gt;https://github.com/a00ayad00/Generate-Blogs-using-Amazon-Bedrock-Service&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Go to AWS Lamda Function and &lt;strong&gt;Create a function&lt;/strong&gt; with Python 3.11&lt;/li&gt;
&lt;li&gt;Create a layer in the function:
Go to the repo and download the zip file &lt;em&gt;boto3_layer.zip&lt;/em&gt; or:&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Go to any terminal and run the following command line:&lt;br&gt;
&lt;code&gt;pip install boto3 -t python/&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add this &lt;em&gt;python&lt;/em&gt; folder to another folder and zip the folder&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go to the layer section and start to create one&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F609u9csdzlhu8uomas7f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F609u9csdzlhu8uomas7f.png" alt="Image description" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;. Upload this zip file when you create the layer&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8etmlrgalh1aamtf0avd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8etmlrgalh1aamtf0avd.png" alt="Image description" width="800" height="449"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Put the code that is in the repo (&lt;em&gt;app.py&lt;/em&gt;) in the function&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can test it by creating an event that its body looks like&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
    'blog_topic': any_topic_you_want
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Next, you can make an API from this app (API Gateway).
Please tell me if you want me to write another blog explaining how to create an API from this function.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>cloud</category>
      <category>deeplearning</category>
    </item>
    <item>
      <title>How did I pass the AWS Machine Learning Speciality Exam?</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Fri, 26 Jul 2024 18:40:15 +0000</pubDate>
      <link>https://forem.com/aws-builders/how-did-i-pass-the-aws-machine-learning-speciality-exam-23io</link>
      <guid>https://forem.com/aws-builders/how-did-i-pass-the-aws-machine-learning-speciality-exam-23io</guid>
      <description>&lt;h1&gt;
  
  
  Intro
&lt;/h1&gt;

&lt;p&gt;On June 24, 2024, I passed the AWS Machine Learning Speciality Exam and became Amazon certified.&lt;br&gt;
You can see my certification from &lt;a href="https://drive.google.com/file/d/1kkZ9pTxGPc53OUwSFrETrJBs3FZc8-qs/view?usp=drive_link" rel="noopener noreferrer"&gt;here&lt;/a&gt; and my badge on &lt;strong&gt;credly&lt;/strong&gt; from &lt;a href="https://www.credly.com/badges/77c7be56-13e9-43c1-b52e-39a8ea565e7c/public_url" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;br&gt;
Book your exam from &lt;a href="https://www.aws.training/certification?banner=mlexam" rel="noopener noreferrer"&gt;https://www.aws.training/certification?banner=mlexam&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  1- Official Certification Resource
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Certification Home Page — &lt;a href="https://training.resources.awscloud.com/get-certified-machine-learning-specialty" rel="noopener noreferrer"&gt;https://training.resources.awscloud.com/get-certified-machine-learning-specialty&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Certification Prep Page — &lt;a href="https://aws.amazon.com/certification/certified-machine-learning-specialty/" rel="noopener noreferrer"&gt;https://aws.amazon.com/certification/certified-machine-learning-specialty/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  2- Udemy Courses
&lt;/h1&gt;

&lt;p&gt;For AWS Machine Learning Specialty Certification, I chose the Udemy course taught by &lt;strong&gt;Frank Kane&lt;/strong&gt;. — &lt;a href="https://www.udemy.com/course/aws-machine-learning/?couponCode=ST3MT72524" rel="noopener noreferrer"&gt;https://www.udemy.com/course/aws-machine-learning/?couponCode=ST3MT72524&lt;/a&gt;&lt;br&gt;
It's very beautiful to see this course too taught by &lt;strong&gt;Neal Davis&lt;/strong&gt; &lt;a href="https://www.udemy.com/course/aws-certified-machine-learning-specialty-mls/?couponCode=ST3MT72524" rel="noopener noreferrer"&gt;https://www.udemy.com/course/aws-certified-machine-learning-specialty-mls/?couponCode=ST3MT72524&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  3- Tutorials Dojo — AWS Certified Machine Learning Specialty Practice Exams
&lt;/h1&gt;

&lt;p&gt;They have the best and the cheapest à la carte option to buy the practice exam for the certification you're interested in — &lt;a href="https://portal.tutorialsdojo.com/courses/aws-certified-machine-learning-specialty-practice-exams/" rel="noopener noreferrer"&gt;https://portal.tutorialsdojo.com/courses/aws-certified-machine-learning-specialty-practice-exams/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  4- Exam Topics
&lt;/h1&gt;

&lt;p&gt;One of the best collections for many international exams you want and their exam materials are up to date — &lt;a href="https://www.examtopics.com/" rel="noopener noreferrer"&gt;https://www.examtopics.com/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  5- More Practice Questions
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Questions and answers for the year 2021 — &lt;a href="https://drive.google.com/file/d/1X25zgOl_MWSM83LRlJShlabghmyKRQCK/view?usp=drive_link" rel="noopener noreferrer"&gt;https://drive.google.com/file/d/1X25zgOl_MWSM83LRlJShlabghmyKRQCK/view?usp=drive_link&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Sample 10 Questions — &lt;a href="https://d1.awsstatic.com/training-and-certification/docs-ml/AWS-Certified-Machine-Learning-Specialty_Sample-Questions.pdf" rel="noopener noreferrer"&gt;https://d1.awsstatic.com/training-and-certification/docs-ml/AWS-Certified-Machine-Learning-Specialty_Sample-Questions.pdf&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each AWS Certification exam has 10 sample questions as a standard.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Practice 20 Questions — &lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/12469/aws-certified-machine-learning-specialty-practice-question-set-mls-c01-english" rel="noopener noreferrer"&gt;https://explore.skillbuilder.aws/learn/course/external/view/elearning/12469/aws-certified-machine-learning-specialty-practice-question-set-mls-c01-english&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each AWS Certification exam also has 20 practice questions as a standard.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Exam Readiness Course with almost 60 Questions
&lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/27/exam-readiness-aws-certified-machine-learning-specialty" rel="noopener noreferrer"&gt;https://explore.skillbuilder.aws/learn/course/external/view/elearning/27/exam-readiness-aws-certified-machine-learning-specialty&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  6- My Drive and GitHub for more
&lt;/h1&gt;

&lt;p&gt;You can see many resources, books, and courses on my &lt;a href="https://github.com/a00ayad00/Machine-Learning-and-Data-Science-Resourses" rel="noopener noreferrer"&gt;GitHub Repo&lt;/a&gt; and my collections on &lt;a href="https://drive.google.com/drive/folders/1eAYEvcnd66wMYQqNXDihIdFwZx5vdLFc" rel="noopener noreferrer"&gt;Google Drive&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Good Luck with your preparation 💖❤️👌&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/a00ayad00" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>cloud</category>
      <category>ai</category>
    </item>
    <item>
      <title>How did I pass the AWS Machine Learning Speciality Exam?</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Fri, 26 Jul 2024 18:40:15 +0000</pubDate>
      <link>https://forem.com/ayad/how-did-i-pass-the-aws-machine-learning-speciality-exam-5fl7</link>
      <guid>https://forem.com/ayad/how-did-i-pass-the-aws-machine-learning-speciality-exam-5fl7</guid>
      <description>&lt;h1&gt;
  
  
  Intro
&lt;/h1&gt;

&lt;p&gt;On June 24, 2024, I passed the AWS Machine Learning Speciality Exam and became Amazon certified.&lt;br&gt;
You can see my certification from &lt;a href="https://drive.google.com/file/d/1kkZ9pTxGPc53OUwSFrETrJBs3FZc8-qs/view?usp=drive_link" rel="noopener noreferrer"&gt;here&lt;/a&gt; and my badge on &lt;strong&gt;credly&lt;/strong&gt; from &lt;a href="https://www.credly.com/badges/77c7be56-13e9-43c1-b52e-39a8ea565e7c/public_url" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;br&gt;
Book your exam from &lt;a href="https://www.aws.training/certification?banner=mlexam" rel="noopener noreferrer"&gt;https://www.aws.training/certification?banner=mlexam&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  1- Official Certification Resource
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Certification Home Page — &lt;a href="https://training.resources.awscloud.com/get-certified-machine-learning-specialty" rel="noopener noreferrer"&gt;https://training.resources.awscloud.com/get-certified-machine-learning-specialty&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Certification Prep Page — &lt;a href="https://aws.amazon.com/certification/certified-machine-learning-specialty/" rel="noopener noreferrer"&gt;https://aws.amazon.com/certification/certified-machine-learning-specialty/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  2- Udemy Courses
&lt;/h1&gt;

&lt;p&gt;For AWS Machine Learning Specialty Certification, I chose the Udemy course taught by &lt;strong&gt;Frank Kane&lt;/strong&gt;. — &lt;a href="https://www.udemy.com/course/aws-machine-learning/?couponCode=ST3MT72524" rel="noopener noreferrer"&gt;https://www.udemy.com/course/aws-machine-learning/?couponCode=ST3MT72524&lt;/a&gt;&lt;br&gt;
It's very beautiful to see this course too taught by &lt;strong&gt;Neal Davis&lt;/strong&gt; &lt;a href="https://www.udemy.com/course/aws-certified-machine-learning-specialty-mls/?couponCode=ST3MT72524" rel="noopener noreferrer"&gt;https://www.udemy.com/course/aws-certified-machine-learning-specialty-mls/?couponCode=ST3MT72524&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  3- Tutorials Dojo — AWS Certified Machine Learning Specialty Practice Exams
&lt;/h1&gt;

&lt;p&gt;They have the best and the cheapest à la carte option to buy the practice exam for the certification you're interested in — &lt;a href="https://portal.tutorialsdojo.com/courses/aws-certified-machine-learning-specialty-practice-exams/" rel="noopener noreferrer"&gt;https://portal.tutorialsdojo.com/courses/aws-certified-machine-learning-specialty-practice-exams/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  4- Exam Topics
&lt;/h1&gt;

&lt;p&gt;One of the best collections for many international exams you want and their exam materials are up to date — &lt;a href="https://www.examtopics.com/" rel="noopener noreferrer"&gt;https://www.examtopics.com/&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  5- More Practice Questions
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Questions and answers for the year 2021 — &lt;a href="https://drive.google.com/file/d/1X25zgOl_MWSM83LRlJShlabghmyKRQCK/view?usp=drive_link" rel="noopener noreferrer"&gt;https://drive.google.com/file/d/1X25zgOl_MWSM83LRlJShlabghmyKRQCK/view?usp=drive_link&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Sample 10 Questions — &lt;a href="https://d1.awsstatic.com/training-and-certification/docs-ml/AWS-Certified-Machine-Learning-Specialty_Sample-Questions.pdf" rel="noopener noreferrer"&gt;https://d1.awsstatic.com/training-and-certification/docs-ml/AWS-Certified-Machine-Learning-Specialty_Sample-Questions.pdf&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each AWS Certification exam has 10 sample questions as a standard.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Practice 20 Questions — &lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/12469/aws-certified-machine-learning-specialty-practice-question-set-mls-c01-english" rel="noopener noreferrer"&gt;https://explore.skillbuilder.aws/learn/course/external/view/elearning/12469/aws-certified-machine-learning-specialty-practice-question-set-mls-c01-english&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each AWS Certification exam also has 20 practice questions as a standard.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Exam Readiness Course with almost 60 Questions
&lt;a href="https://explore.skillbuilder.aws/learn/course/external/view/elearning/27/exam-readiness-aws-certified-machine-learning-specialty" rel="noopener noreferrer"&gt;https://explore.skillbuilder.aws/learn/course/external/view/elearning/27/exam-readiness-aws-certified-machine-learning-specialty&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  6- My Drive and GitHub for more
&lt;/h1&gt;

&lt;p&gt;You can see many resources, books, and courses on my &lt;a href="https://github.com/a00ayad00/Machine-Learning-and-Data-Science-Resourses" rel="noopener noreferrer"&gt;GitHub Repo&lt;/a&gt; and my collections on &lt;a href="https://drive.google.com/drive/folders/1eAYEvcnd66wMYQqNXDihIdFwZx5vdLFc" rel="noopener noreferrer"&gt;Google Drive&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Good Luck with your preparation 💖❤️👌&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/a00ayad00" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/" rel="noopener noreferrer"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>cloud</category>
      <category>ai</category>
    </item>
    <item>
      <title>High Level Machine Learning services on AWS</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Sun, 17 Mar 2024 20:31:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/machine-learning-services-on-aws-4jpk</link>
      <guid>https://forem.com/aws-builders/machine-learning-services-on-aws-4jpk</guid>
      <description>&lt;p&gt;&lt;strong&gt;Recognition&lt;/strong&gt; is a way for you to do face detections, to do labeling, and celebrity recognition.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Transcribe&lt;/strong&gt; is for you to get, a way to get subtitles, for example, to convert your audio into text.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Polly&lt;/strong&gt; is the opposite. It allows you to get, to use your text and create audio out of it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Translate&lt;/strong&gt; is for you to get translations.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lex&lt;/strong&gt; is to build conversational robots or chatbots.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Connect&lt;/strong&gt; if you bundle &lt;em&gt;Lex&lt;/em&gt; with &lt;em&gt;Connect&lt;/em&gt;, then you can create a cloud contact center.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Comprehend&lt;/strong&gt; is a way for you to do natural language processing.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SageMaker&lt;/strong&gt; is a fully featured machine learning service that is accessible to developer and data scientist.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Forecast&lt;/strong&gt; allows you to build highly accurate forecast.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Kendra&lt;/strong&gt; is going to be an ML-powered document search engine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Personalize&lt;/strong&gt; is used for real-time personalized recommendations for your customers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Textract&lt;/strong&gt; is used to detect text and data, and extract them from various documents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Amazon Textracts Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Mon, 11 Mar 2024 20:45:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-textracts-overview-2713</link>
      <guid>https://forem.com/aws-builders/amazon-textracts-overview-2713</guid>
      <description>&lt;p&gt;Amazon Textract is used to &lt;strong&gt;extract texts&lt;/strong&gt;, so, hence the name.&lt;br&gt;
So you extract text, handwriting, or data from any scanned document and behind the scenes, of course, uses &lt;strong&gt;AI&lt;/strong&gt; or &lt;strong&gt;machine learning&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;So we have, for example, a driver license, and then we upload it into Amazon Textract, and then, automatically, will be analyzed, and the results will be given to you as a data file, and so you'll be able to, for example, extract the &lt;em&gt;date of birth&lt;/em&gt;, &lt;em&gt;document ID&lt;/em&gt;, and so on.&lt;/p&gt;

&lt;p&gt;So you can extract any data, even from forms and tables, and you can read PDFs, images, and so on.&lt;/p&gt;

&lt;p&gt;The use cases for extracting texts are multiple, but you could be for financial services to process &lt;em&gt;invoices&lt;/em&gt; or &lt;em&gt;financial reports&lt;/em&gt;, could be for &lt;em&gt;healthcare&lt;/em&gt;, for &lt;em&gt;medical records&lt;/em&gt;, and &lt;em&gt;insurance claims&lt;/em&gt;, or for the public sector, for example, for &lt;em&gt;tax forms&lt;/em&gt;, &lt;em&gt;ID documents&lt;/em&gt;, and &lt;em&gt;passports&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Amazon Personalize Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Tue, 05 Mar 2024 20:37:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-personalize-overview-487o</link>
      <guid>https://forem.com/aws-builders/amazon-personalize-overview-487o</guid>
      <description>&lt;p&gt;It is a &lt;strong&gt;fully machine learning service&lt;/strong&gt; to build apps with real-time personalized &lt;strong&gt;recommendations&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;So what could be a recommendation?&lt;br&gt;
For example, a personalized product recommendation, or re-ranking, or customized direct marketing.&lt;/p&gt;

&lt;p&gt;For example, a user has bought a lot of gardening tools, and you want to provide recommendations on the next one to buy based on a personalized service.&lt;/p&gt;

&lt;p&gt;So this is the same technology used by &lt;a href="//Amazon.com"&gt;Amazon.com&lt;/a&gt;.&lt;br&gt;
When you go and shop on &lt;a href="//Amazon.com"&gt;Amazon.com&lt;/a&gt; and after buying a few products, what you will see is that Amazon.com start recommending products in the same category or in completely different categories based on how you've been searching and how you've been buying and user interest and that kind of things.&lt;/p&gt;

&lt;p&gt;So, you read your input data from Amazon S3, for example, it could be user interactions, those kind of things.&lt;/p&gt;

&lt;p&gt;Also, you can use the &lt;strong&gt;Amazon Personalize API&lt;/strong&gt; to have real-time data integration into the Amazon Personalize service, and then this will expose a customized personalized API for your &lt;strong&gt;websites and applications&lt;/strong&gt;, your &lt;strong&gt;mobile applications&lt;/strong&gt;.&lt;br&gt;
Also, you can send &lt;strong&gt;SMS&lt;/strong&gt; or &lt;strong&gt;emails&lt;/strong&gt; for personalization as well.&lt;/p&gt;

&lt;p&gt;You have all these integrations.&lt;br&gt;
&lt;strong&gt;It takes days to build this model&lt;/strong&gt;, not months, and you don't need to build, train, and deploy ML solutions, you can just use this bundled as is.&lt;/p&gt;

&lt;p&gt;Some use cases is going to be retail stores, and media, and entertainment.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>cloud</category>
      <category>ai</category>
    </item>
    <item>
      <title>Amazon Kendra Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Wed, 28 Feb 2024 20:29:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-kendra-overview-4ing</link>
      <guid>https://forem.com/aws-builders/amazon-kendra-overview-4ing</guid>
      <description>&lt;p&gt;This one is a &lt;strong&gt;fully-managed document search service&lt;/strong&gt; that is powered by machine learning and it allows you to extract answers from within a document.&lt;/p&gt;

&lt;p&gt;That document could be &lt;strong&gt;text&lt;/strong&gt;, &lt;strong&gt;PDF&lt;/strong&gt;, &lt;strong&gt;HTML&lt;/strong&gt;, &lt;strong&gt;PowerPoints&lt;/strong&gt;, &lt;strong&gt;Microsoft Word&lt;/strong&gt;, &lt;strong&gt;FAQs&lt;/strong&gt;, etc.&lt;/p&gt;

&lt;p&gt;So you have a lot of data sources where these documents may be like Google Drive, and they're going to be indexed by Amazon Kendra which is going to build internally a knowledge index powered by machine learning.&lt;/p&gt;

&lt;p&gt;And how does it help from an end-user perspective?&lt;br&gt;
Well, we get natural language search capabilities just like you go on Google.&lt;br&gt;
So for example, if a user says, where is the IT support desk into Amazon Kendra?&lt;br&gt;
Kendra can reply, 1st floor.&lt;br&gt;
And this could be due to the fact that Kendra knows from all the resources that it took that the IT support desk was on the 1st floor, which is quite awesome.&lt;/p&gt;

&lt;p&gt;And also, you can just do a normal search it will learn from the user interaction and feedback to promote preferred search results which is called &lt;strong&gt;incremental learning&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Finally, you can fine tune the search results, for example, based on the &lt;em&gt;importance of data&lt;/em&gt;, the &lt;em&gt;freshness&lt;/em&gt;, or whatever custom filters you have, okay?&lt;br&gt;
Okay.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>machinelearning</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Amazon Forecast Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Thu, 22 Feb 2024 20:28:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-forecast-overview-3eof</link>
      <guid>https://forem.com/aws-builders/amazon-forecast-overview-3eof</guid>
      <description>&lt;h2&gt;
  
  
  What is Amazon Forecast
&lt;/h2&gt;

&lt;p&gt;It allows you to do forecasts.&lt;br&gt;
So this is a &lt;strong&gt;fully managed&lt;/strong&gt; services that will use &lt;strong&gt;machine learning&lt;/strong&gt; to deliver a highly accurate forecast.&lt;br&gt;
For example, you want to predict the future sales of a raincoat.&lt;/p&gt;

&lt;h2&gt;
  
  
  Some features of using it
&lt;/h2&gt;

&lt;p&gt;The idea is that it's going to be &lt;strong&gt;50% more accurate&lt;/strong&gt;, than looking at the data itself, and you &lt;strong&gt;reduce forecasting time from months to hours&lt;/strong&gt; by using a managed service.&lt;/p&gt;

&lt;h2&gt;
  
  
  use cases
&lt;/h2&gt;

&lt;p&gt;For example, &lt;strong&gt;product demand planning&lt;/strong&gt;, &lt;strong&gt;financial planning&lt;/strong&gt;, &lt;strong&gt;resource planning&lt;/strong&gt;, and so on.&lt;/p&gt;

&lt;h2&gt;
  
  
  how does it work?
&lt;/h2&gt;

&lt;p&gt;Well, you take your historical &lt;strong&gt;time-series data&lt;/strong&gt;, for example, and you also add your product features, &lt;em&gt;prices&lt;/em&gt;, &lt;em&gt;discounts&lt;/em&gt;, &lt;em&gt;website traffic&lt;/em&gt;, &lt;em&gt;store locations&lt;/em&gt;, &lt;em&gt;basically&lt;/em&gt;, any kind of data you can to then enhance your model.&lt;br&gt;
Then you upload this into &lt;strong&gt;Amazon S3&lt;/strong&gt;.&lt;br&gt;
You then start the Amazon Forecast service which will create a forecasting model.&lt;br&gt;
And you can use that forecasting model, for example, to say that your future sales of raincoats are going to be $500,000 next year.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>datascience</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Amazon SageMaker Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Fri, 16 Feb 2024 20:31:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-sagemaker-overview-2p7p</link>
      <guid>https://forem.com/aws-builders/amazon-sagemaker-overview-2p7p</guid>
      <description>&lt;p&gt;SageMaker is a &lt;strong&gt;fully managed&lt;/strong&gt; service for developers and data scientists to &lt;strong&gt;build machine learning model&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;So all of the services we've seen so far like &lt;em&gt;Amazon Comprehend&lt;/em&gt; or &lt;em&gt;Amzon Rekognition&lt;/em&gt; are managed machine learning service with a very specific purpose, for example translates some text, transcribes some audio, or convert text into audio or analyze parts of a text, but SageMaker is a higher level machine learning service where you have your actual developers or your data scientists within your organization create and build machine learning model.&lt;/p&gt;

&lt;p&gt;So it is a lot more involved and a lot more difficult to use.&lt;br&gt;
Now, when you want to do this kind of processes to build a machine learning model, you have to do a bunch of steps that you have to follow, and all these are quite difficult to do in one place, plus you need to provision some servers to perform these competitions to create these models, and that can be cumbersome as well.&lt;/p&gt;

&lt;p&gt;So this is where SageMaker comes in, it will try to help you all along the way for the process.&lt;/p&gt;

&lt;p&gt;to build your ML model, you can use SageMaker to do the following steps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Gather as much data as possible and label it.&lt;/li&gt;
&lt;li&gt;Build a machine learning model, so, you have to train it and tune it.&lt;/li&gt;
&lt;li&gt;Deploy your machine learning model&lt;/li&gt;
&lt;li&gt;Apply the machine learning model that you have created on any new data coming in to predict the labels.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>deeplearning</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Amazon Comprehend Medical Overview</title>
      <dc:creator>عبدالله عياد | Abdullah Ayad</dc:creator>
      <pubDate>Sat, 10 Feb 2024 20:22:00 +0000</pubDate>
      <link>https://forem.com/aws-builders/amazon-comprehend-medical-summary-2n02</link>
      <guid>https://forem.com/aws-builders/amazon-comprehend-medical-summary-2n02</guid>
      <description>&lt;p&gt;Comprehend Medical detects and returns useful information in unstructured clinical text.&lt;/p&gt;

&lt;p&gt;For example, if your doctor is &lt;strong&gt;taking notes&lt;/strong&gt;, or if you have &lt;strong&gt;discharge summaries&lt;/strong&gt;, or &lt;strong&gt;test results&lt;/strong&gt;, or &lt;strong&gt;case notes&lt;/strong&gt;, then it will use NLP.&lt;/p&gt;

&lt;p&gt;So it will use natural language processing to detect all the &lt;strong&gt;protected health information&lt;/strong&gt; within the document itself as well with a DetectPHI API.&lt;/p&gt;

&lt;p&gt;So from an architecture perspective you would store whatever documents you have in &lt;em&gt;Amazon S3&lt;/em&gt;, and then you would invoke the Comprehend Medical API.&lt;/p&gt;

&lt;p&gt;Or you could have &lt;em&gt;Kinesis Data Firehose&lt;/em&gt;, and then analyze that in real time.&lt;/p&gt;

&lt;p&gt;Or you can use &lt;em&gt;Amazon Transcribe&lt;/em&gt; to first transcribe the voice into text.&lt;/p&gt;

&lt;p&gt;Okay, as we understand from before, and then once it's in text form we can pass it to the Amazon Comprehend Medical service.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/a00ayad00"&gt;GitHub&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/a00ayad00"&gt;LinkedIn&lt;/a&gt;&lt;br&gt;
&lt;a href="https://m.facebook.com/a00ayad00"&gt;Facebook&lt;/a&gt;&lt;br&gt;
&lt;a href="https://a00ayad00.medium.com/"&gt;Medium&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>nlp</category>
      <category>deeplearning</category>
    </item>
  </channel>
</rss>
