<?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: Nimmala NAGA SANTHOSH BABA</title>
    <description>The latest articles on Forem by Nimmala NAGA SANTHOSH BABA (@nimmala_nagasanthoshbab).</description>
    <link>https://forem.com/nimmala_nagasanthoshbab</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%2F2655335%2Fa8d339ca-3b09-46fe-9bf8-c1d3274ce43e.jpg</url>
      <title>Forem: Nimmala NAGA SANTHOSH BABA</title>
      <link>https://forem.com/nimmala_nagasanthoshbab</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/nimmala_nagasanthoshbab"/>
    <language>en</language>
    <item>
      <title>The Real Cost of AI: AWS Bedrock vs. OpenAI vs. Self-Hosting 💰</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sun, 23 Nov 2025 04:20:59 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/the-real-cost-of-ai-aws-bedrock-vs-openai-vs-self-hosting-236m</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/the-real-cost-of-ai-aws-bedrock-vs-openai-vs-self-hosting-236m</guid>
      <description>&lt;h1&gt;
  
  
  "How much will this cost?" 💸
&lt;/h1&gt;

&lt;p&gt;This is the #1 question every CTO asks. And usually, the answer is &lt;em&gt;"It depends."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;But "it depends" doesn't pay the bills.&lt;/p&gt;

&lt;p&gt;In this post, we are going to do the math. We will compare the costs of running a production AI app using &lt;strong&gt;AWS Bedrock&lt;/strong&gt;, &lt;strong&gt;OpenAI&lt;/strong&gt;, and &lt;strong&gt;Self-Hosted Open Source Models&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. The "Token" Economy (Bedrock vs. OpenAI) 🪙
&lt;/h2&gt;

&lt;p&gt;Most managed AI services charge by the "Token" (roughly 0.75 words).&lt;/p&gt;

&lt;h3&gt;
  
  
  The Heavyweights: GPT-4o vs. Claude 3.5 Sonnet
&lt;/h3&gt;

&lt;p&gt;As of late 2024, these are the two kings.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Input Cost (per 1M tokens)&lt;/th&gt;
&lt;th&gt;Output Cost (per 1M tokens)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;OpenAI GPT-4o&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$5.00&lt;/td&gt;
&lt;td&gt;$15.00&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Bedrock Claude 3.5 Sonnet&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$3.00&lt;/td&gt;
&lt;td&gt;$15.00&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;The Verdict:&lt;/strong&gt; &lt;strong&gt;Claude 3.5 Sonnet on Bedrock is cheaper on input.&lt;/strong&gt;&lt;br&gt;
If you are building a RAG app (where you send huge documents as input), Bedrock will save you ~40% on input costs.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. The "Hidden" Costs of OpenAI 🕵️‍♀️
&lt;/h2&gt;

&lt;p&gt;OpenAI is great, but for Enterprise, it has hidden costs:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Data Privacy:&lt;/strong&gt; If you need a private instance, "ChatGPT Enterprise" starts at ~$60/user/month with high minimums.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Latency:&lt;/strong&gt; You share the API with the world. During peak hours, it gets slow.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;AWS Bedrock Advantage:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Private by Default:&lt;/strong&gt; Your data &lt;em&gt;never&lt;/em&gt; leaves your AWS account. No extra "Enterprise" fee.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Provisioned Throughput:&lt;/strong&gt; You can reserve capacity to guarantee speed (expensive, but predictable).&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  3. The "Self-Hosted" Trap (EC2) 🪤
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;"Why don't we just run Llama 3 on our own servers? It's free!"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Spoiler:&lt;/strong&gt; It is not free.&lt;/p&gt;

&lt;p&gt;To run a decent model (like Llama 3 70B) fast enough for a chatbot, you need powerful GPUs.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Instance:&lt;/strong&gt; &lt;code&gt;g5.12xlarge&lt;/code&gt; (4x NVIDIA A10G GPUs)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Cost:&lt;/strong&gt; ~$5.67 per hour (On-Demand)&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Monthly Cost:&lt;/strong&gt; &lt;strong&gt;~$4,082 per month&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Math:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  If you are a startup with low traffic, &lt;strong&gt;$4k/month is insane&lt;/strong&gt;. You should use Bedrock (Pay-per-token).&lt;/li&gt;
&lt;li&gt;  If you are a massive company processing billions of tokens 24/7, &lt;strong&gt;$4k/month might be cheaper&lt;/strong&gt; than paying per token.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Rule of Thumb:&lt;/strong&gt;&lt;br&gt;
Don't self-host until your Bedrock/OpenAI bill hits &lt;strong&gt;$5,000/month&lt;/strong&gt;. Until then, the "Serverless" pay-per-token model is cheaper.&lt;/p&gt;




&lt;h2&gt;
  
  
  Summary: Which one should you pick? 🎯
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Bootstrapped Startup:&lt;/strong&gt; Use &lt;strong&gt;AWS Bedrock (Claude 3 Haiku)&lt;/strong&gt;. It's blazing fast and dirt cheap ($0.25 per 1M input tokens).&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Enterprise RAG App:&lt;/strong&gt; Use &lt;strong&gt;AWS Bedrock (Claude 3.5 Sonnet)&lt;/strong&gt;. Best balance of intelligence and data privacy.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Massive Scale (Millions of users):&lt;/strong&gt; Consider &lt;strong&gt;Self-Hosting on EC2/SageMaker&lt;/strong&gt; to cap your costs.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Stop overpaying for AI. Do the math first.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Want more Cloud FinOps tips? Follow me! 👇&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Meet Amazon Q: The AI Assistant That Actually Knows Your Codebase 🦄</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sun, 23 Nov 2025 04:17:46 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/meet-amazon-q-the-ai-assistant-that-actually-knows-your-codebase-4e3k</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/meet-amazon-q-the-ai-assistant-that-actually-knows-your-codebase-4e3k</guid>
      <description>&lt;h1&gt;
  
  
  The Problem with "Generic" AI 🤖
&lt;/h1&gt;

&lt;p&gt;We all love ChatGPT. But have you ever tried to ask it about a specific error in your company's private code?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"I'm sorry, I don't have access to your internal repositories."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Or asked it why your specific AWS bill is so high this month?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"I cannot access your real-time billing data."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the "Context Gap." Generic AI is smart, but it's blind to &lt;em&gt;your&lt;/em&gt; work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Enter Amazon Q.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What is Amazon Q? 🧐
&lt;/h2&gt;

&lt;p&gt;Think of Amazon Q as an AI assistant that lives &lt;em&gt;inside&lt;/em&gt; your AWS account and your IDE (VS Code / IntelliJ).&lt;/p&gt;

&lt;p&gt;It’s not just trained on the internet; it connects to &lt;strong&gt;your data&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Your Code:&lt;/strong&gt; It reads your private Git repos.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Your AWS Environment:&lt;/strong&gt; It knows what EC2 instances you have running.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Your Docs:&lt;/strong&gt; It can read your internal Confluence wikis and PDFs.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Feature 1: The "Senior Developer" in Your IDE 💻
&lt;/h2&gt;

&lt;p&gt;You can install Amazon Q as a plugin in VS Code. Here is what it can do:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. "Explain This Mess"
&lt;/h3&gt;

&lt;p&gt;Highlight a complex 200-line function written by a developer who left 3 years ago.&lt;br&gt;
&lt;strong&gt;You:&lt;/strong&gt; &lt;em&gt;"What does this code do?"&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Q:&lt;/strong&gt; &lt;em&gt;"This function processes user payments, but it has a potential bug on line 45 where it doesn't handle currency conversion."&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. The "Java Upgrade" Button
&lt;/h3&gt;

&lt;p&gt;This is the killer feature. If you have an app running on Java 8, Q can &lt;strong&gt;automatically upgrade it to Java 17&lt;/strong&gt;.&lt;br&gt;
It doesn't just give advice; it &lt;em&gt;rewrites the code&lt;/em&gt;, updates dependencies, and fixes breaking changes.&lt;/p&gt;




&lt;h2&gt;
  
  
  Feature 2: The "AWS Expert" in the Console ☁️
&lt;/h2&gt;

&lt;p&gt;Stop searching StackOverflow for "How to configure VPC peering."&lt;/p&gt;

&lt;p&gt;Just ask Q in the AWS Console:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Why can't my Lambda function connect to my S3 bucket?"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Q will analyze your &lt;strong&gt;actual IAM roles and Security Groups&lt;/strong&gt; and tell you:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Your Lambda execution role is missing the &lt;code&gt;s3:GetObject&lt;/code&gt; permission. Click here to fix it."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It debugs your infrastructure for you.&lt;/p&gt;




&lt;h2&gt;
  
  
  Feature 3: The "Business Analyst" 📊
&lt;/h2&gt;

&lt;p&gt;Amazon Q isn't just for coders. You can connect it to your company's Google Drive, Slack, or Salesforce.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Marketing Manager:&lt;/strong&gt; &lt;em&gt;"What is the latest brand guideline for our logo?"&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Q:&lt;/strong&gt; &lt;em&gt;"According to the PDF 'Brand_Kit_2024.pdf' in Google Drive, the logo must always have 20px padding."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;It turns your scattered documents into a searchable brain.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Get Started 🚀
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;For Devs:&lt;/strong&gt; Search for "Amazon Q" in the VS Code Marketplace. It has a free tier!&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;For Admins:&lt;/strong&gt; Go to the AWS Console and enable Amazon Q Business to connect your data sources.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;The future isn't just "AI." It's AI that knows &lt;em&gt;you&lt;/em&gt;.&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Have you tried Amazon Q yet? Let me know in the comments if it's better than Copilot! 👇&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>ai</category>
      <category>agents</category>
      <category>coding</category>
    </item>
    <item>
      <title>Build Your First AI App in 60 Seconds (No Coding, No Credit Card) 🎸</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sun, 23 Nov 2025 04:15:08 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/build-your-first-ai-app-in-60-seconds-no-coding-no-credit-card-4lhh</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/build-your-first-ai-app-in-60-seconds-no-coding-no-credit-card-4lhh</guid>
      <description>&lt;h1&gt;
  
  
  The "Fun" Side of AWS 🎉
&lt;/h1&gt;

&lt;p&gt;Usually, when people talk about AWS, they talk about servers, databases, and billing alarms. 😴&lt;/p&gt;

&lt;p&gt;But recently, AWS released something completely different. It’s called &lt;strong&gt;PartyRock&lt;/strong&gt;, and it’s the most fun I’ve had with AI in years.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here is the pitch:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;No AWS Account required.&lt;/strong&gt; (Yes, really).&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;No Credit Card required.&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;No Coding required.&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;100% Free&lt;/strong&gt; (for now).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It lets you build your own "Mini AI Apps" just by describing them.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Can You Build? 🏗️
&lt;/h2&gt;

&lt;p&gt;Anything that takes text in and gives text/images out.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;A "Dad Joke" Generator&lt;/strong&gt; 🥸&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;A "Meal Prep" Planner&lt;/strong&gt; 🥦&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;A "Dungeons &amp;amp; Dragons" Storyteller&lt;/strong&gt; 🐉&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;A "Professional Email" Rewriter&lt;/strong&gt; 📧&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Let's Build an App Together: "The Perfect Gift Generator" 🎁
&lt;/h2&gt;

&lt;p&gt;We are going to build an app where you type in a person's interests, and it suggests 3 unique gifts + generates an image of the wrapping paper.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 1: Go to PartyRock
&lt;/h3&gt;

&lt;p&gt;Head over to &lt;a href="https://partyrock.aws/" rel="noopener noreferrer"&gt;https://partyrock.aws/&lt;/a&gt; and sign in with Apple, Google, or Amazon.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 2: Describe Your App
&lt;/h3&gt;

&lt;p&gt;You will see a box that says "Describe the app you want to build."&lt;br&gt;
Type this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"An app that suggests 3 unique gift ideas based on a person's age and hobbies. It should also generate a custom image of festive wrapping paper based on those hobbies."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Click &lt;strong&gt;"Generate App"&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Step 3: Watch the Magic 🪄
&lt;/h3&gt;

&lt;p&gt;PartyRock will use AI (Bedrock) to &lt;em&gt;write the code for itself&lt;/em&gt;.&lt;br&gt;
In about 10 seconds, you will see a dashboard with:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;User Input:&lt;/strong&gt; Boxes for "Age" and "Hobbies".&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;AI Output:&lt;/strong&gt; A text box connected to Claude 3 (for the ideas).&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Image Output:&lt;/strong&gt; An image generator connected to Stable Diffusion (for the wrapping paper).&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Step 4: Play! 🎮
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Age:&lt;/strong&gt; 30&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Hobbies:&lt;/strong&gt; Coding, Coffee, Cats&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Result:&lt;/strong&gt;

&lt;ol&gt;
&lt;li&gt; &lt;em&gt;A programmable coffee mug.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt; &lt;em&gt;A mechanical keyboard with cat keycaps.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt; &lt;em&gt;A "Cat-puccino" maker.&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;em&gt;[Image of wrapping paper with neon code and cats]&lt;/em&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How It Works (Under the Hood) ⚙️
&lt;/h2&gt;

&lt;p&gt;Even though it looks like a toy, it's powered by serious tech.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;The Brain:&lt;/strong&gt; It uses &lt;strong&gt;Amazon Bedrock&lt;/strong&gt; to access models like &lt;strong&gt;Claude 3 (Anthropic)&lt;/strong&gt; and &lt;strong&gt;Llama 3 (Meta)&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;The Logic:&lt;/strong&gt; It uses "Prompt Engineering" automatically. When you typed your description, another AI wrote the specific prompts for the widgets.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why You Should Care 💡
&lt;/h2&gt;

&lt;p&gt;If you are a &lt;strong&gt;Startup Founder&lt;/strong&gt; or &lt;strong&gt;Product Manager&lt;/strong&gt;, this is the fastest way to &lt;strong&gt;prototype&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Have an idea for a "Legal Contract Summarizer"?&lt;br&gt;
Don't hire a dev team yet. Go to PartyRock, build it in 1 minute, and send the link to your friends. If they use it, &lt;em&gt;then&lt;/em&gt; build the real thing on AWS.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Go build something fun today!&lt;/strong&gt; 👇&lt;br&gt;
&lt;a href="https://partyrock.aws/" rel="noopener noreferrer"&gt;partyrock.aws&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built something cool? Drop the link in the comments! 👇&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>cloudcomputing</category>
    </item>
    <item>
      <title>The AWS AI Architect's Cheat Sheet: Patterns, POCs, and Blueprints 🏗️</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sun, 23 Nov 2025 04:10:34 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/the-aws-ai-architects-cheat-sheet-patterns-pocs-and-blueprints-oif</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/the-aws-ai-architects-cheat-sheet-patterns-pocs-and-blueprints-oif</guid>
      <description>&lt;h1&gt;
  
  
  Stop Reinventing the Wheel 🛑
&lt;/h1&gt;

&lt;p&gt;When you start building with AI on AWS, you'll realize something quickly: &lt;strong&gt;Everyone is trying to solve the same problems.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;em&gt;"How do I chat with my PDF documents?"&lt;/em&gt; (RAG)&lt;/li&gt;
&lt;li&gt;  &lt;em&gt;"How do I run this cheaply without managing servers?"&lt;/em&gt; (Serverless)&lt;/li&gt;
&lt;li&gt;  &lt;em&gt;"How do I make the AI take action, not just talk?"&lt;/em&gt; (Agents)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The good news? AWS has already published &lt;strong&gt;production-ready blueprints&lt;/strong&gt; for these.&lt;/p&gt;

&lt;p&gt;In this post, I’ve curated the &lt;strong&gt;best architectural patterns and Proof-of-Concept (POC) repositories&lt;/strong&gt; directly from the AWS team. Treat this as your "Cheat Sheet" for starting any AI project.&lt;/p&gt;




&lt;h2&gt;
  
  
  Pattern 1: The "Chat with Your Data" (RAG) 📚
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Problem:&lt;/strong&gt; LLMs (like Claude or GPT) don't know about &lt;em&gt;your&lt;/em&gt; private data. They hallucinate when asked about your specific company policies.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; &lt;strong&gt;Retrieval Augmented Generation (RAG)&lt;/strong&gt;. You "retrieve" the right page from your documents first, then send it to the AI to "generate" an answer.&lt;/p&gt;

&lt;h3&gt;
  
  
  🏗️ The Architecture
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Ingestion:&lt;/strong&gt; Upload PDFs to &lt;strong&gt;Amazon S3&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Embedding:&lt;/strong&gt; &lt;strong&gt;Amazon Titan&lt;/strong&gt; converts text into numbers (vectors).&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Storage:&lt;/strong&gt; &lt;strong&gt;Amazon OpenSearch Serverless&lt;/strong&gt; stores these vectors.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Retrieval:&lt;/strong&gt; &lt;strong&gt;Amazon Bedrock Knowledge Bases&lt;/strong&gt; finds the right chunk and answers the question.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  🚀 The "One-Click" POC
&lt;/h3&gt;

&lt;p&gt;Don't build this from scratch. AWS provides a fully managed solution where you just point to your S3 bucket.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;🔗 Official Repository:&lt;/strong&gt; &lt;a href="https://github.com/aws-samples/amazon-bedrock-rag-workshop" rel="noopener noreferrer"&gt;Amazon Bedrock RAG Workshop&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;📖 Must-Read Blog:&lt;/strong&gt; &lt;a href="https://aws.amazon.com/blogs/aws/preview-connect-foundation-models-to-your-company-data-sources-with-agents-for-amazon-bedrock/" rel="noopener noreferrer"&gt;Build RAG applications with Amazon Bedrock Knowledge Bases&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Pattern 2: The "Penny Pincher" (Serverless AI) 💸
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Problem:&lt;/strong&gt; Hosting your own AI models on GPU servers (EC2) costs a fortune ($1000s/mo), even when no one is using them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; &lt;strong&gt;Serverless Generative AI&lt;/strong&gt;. Use &lt;strong&gt;AWS Lambda&lt;/strong&gt; to call &lt;strong&gt;Amazon Bedrock&lt;/strong&gt;. You pay &lt;em&gt;only&lt;/em&gt; for the milliseconds the AI is thinking. Zero idle cost.&lt;/p&gt;

&lt;h3&gt;
  
  
  🏗️ The Architecture
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Frontend:&lt;/strong&gt; React/Next.js hosted on &lt;strong&gt;AWS Amplify&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;API:&lt;/strong&gt; &lt;strong&gt;Amazon API Gateway&lt;/strong&gt; receives the user's prompt.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Brain:&lt;/strong&gt; &lt;strong&gt;AWS Lambda&lt;/strong&gt; (Python/Node.js) receives the request and calls &lt;strong&gt;Bedrock&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Model:&lt;/strong&gt; &lt;strong&gt;Bedrock&lt;/strong&gt; generates the text/image and returns it.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  🚀 The "One-Click" POC
&lt;/h3&gt;

&lt;p&gt;This is the most cost-effective way to launch an MVP.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;🔗 Official Repository:&lt;/strong&gt; &lt;a href="https://github.com/aws-samples/serverless-generative-ai-saas" rel="noopener noreferrer"&gt;Serverless Generative AI SaaS Boilerplate&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;📖 Must-Read Blog:&lt;/strong&gt; &lt;a href="https://aws.amazon.com/blogs/compute/building-a-serverless-document-chat-with-aws-lambda-and-amazon-bedrock/" rel="noopener noreferrer"&gt;Build a Serverless Generative AI App with AWS Lambda and Bedrock&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Pattern 3: The "Do-er" (AI Agents) 🕵️‍♂️
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Problem:&lt;/strong&gt; Chatbots are passive. They can talk, but they can't &lt;em&gt;do&lt;/em&gt; anything (like book a flight, query a database, or send an email).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; &lt;strong&gt;Amazon Bedrock Agents&lt;/strong&gt;. You give the AI a set of "Tools" (Lambda functions), and it figures out which one to use to solve the user's problem.&lt;/p&gt;

&lt;h3&gt;
  
  
  🏗️ The Architecture
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;User Request:&lt;/strong&gt; "Book a meeting with John for next Tuesday."&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Agent Router:&lt;/strong&gt; &lt;strong&gt;Bedrock Agent&lt;/strong&gt; analyzes the request.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Action:&lt;/strong&gt; It decides to call the &lt;code&gt;CheckCalendar&lt;/code&gt; tool first, then the &lt;code&gt;SendInvite&lt;/code&gt; tool.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Execution:&lt;/strong&gt; It triggers the respective &lt;strong&gt;Lambda functions&lt;/strong&gt; to actually perform the tasks.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  🚀 The "One-Click" POC
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;🔗 Official Repository:&lt;/strong&gt; &lt;a href="https://github.com/aws-samples/amazon-bedrock-samples/tree/main/agents-for-bedrock" rel="noopener noreferrer"&gt;Build an Insurance Agent with Amazon Bedrock&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;📖 Must-Read Blog:&lt;/strong&gt; &lt;a href="https://aws.amazon.com/blogs/aws/preview-connect-foundation-models-to-your-company-data-sources-with-agents-for-amazon-bedrock/" rel="noopener noreferrer"&gt;Automate tasks with Agents for Amazon Bedrock&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Pattern 4: The "Event-Driven" Analyst ⚡
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The Problem:&lt;/strong&gt; You want AI to run automatically in the background—for example, every time a new file is uploaded, summarize it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Solution:&lt;/strong&gt; &lt;strong&gt;EventBridge Pipes&lt;/strong&gt;. Connect your S3 bucket directly to your AI workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  🏗️ The Architecture
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Trigger:&lt;/strong&gt; User uploads a document to &lt;strong&gt;S3&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Event:&lt;/strong&gt; &lt;strong&gt;EventBridge&lt;/strong&gt; detects the "Object Created" event.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Process:&lt;/strong&gt; It triggers a &lt;strong&gt;Step Function&lt;/strong&gt; workflow.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;AI Task:&lt;/strong&gt; The workflow calls &lt;strong&gt;Bedrock&lt;/strong&gt; to summarize the document and saves the summary to a database.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  🚀 The "One-Click" POC
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;🔗 Official Repository:&lt;/strong&gt; &lt;a href="https://github.com/aws-samples/serverless-document-summarization" rel="noopener noreferrer"&gt;Serverless Document Summarization&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Summary Checklist ✅
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Use Case&lt;/th&gt;
&lt;th&gt;Recommended Pattern&lt;/th&gt;
&lt;th&gt;Key Services&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Q&amp;amp;A on Documents&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;RAG&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Bedrock Knowledge Bases, OpenSearch&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Low-Cost MVP&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Serverless&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Lambda, API Gateway, Bedrock&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Complex Tasks&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Agents&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Bedrock Agents, Lambda&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Background Jobs&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Event-Driven&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;EventBridge, Step Functions&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Save this post.&lt;/strong&gt; You will need these links when you start your build!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Found this useful? Follow me for more "No-Fluff" Cloud Architecture guides!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>ai</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Build Your First AI App in 10 Minutes: A Non-Coder’s Guide to AWS AI 🚀</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sun, 23 Nov 2025 04:03:32 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/build-your-first-ai-app-in-10-minutes-a-non-coders-guide-to-aws-ai-5f9n</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/build-your-first-ai-app-in-10-minutes-a-non-coders-guide-to-aws-ai-5f9n</guid>
      <description>&lt;h1&gt;
  
  
  So, You Want to Build with AI? 🤖
&lt;/h1&gt;

&lt;p&gt;Let’s be honest: "Artificial Intelligence" sounds intimidating.&lt;/p&gt;

&lt;p&gt;You picture complex math, endless lines of Python code, and expensive supercomputers. But here’s the secret: &lt;strong&gt;You don’t need to build the brain. You just need to know how to talk to it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Today, cloud giants like AWS (Amazon Web Services) have done the hard work for us. They’ve wrapped powerful AI models into simple "services" that you can use like Lego blocks.&lt;/p&gt;

&lt;p&gt;In this guide, I’ll show you how a complete beginner can start using AWS AI services to build real, working applications. No PhD required.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. The "Magic Brain": AWS Bedrock 🧠
&lt;/h2&gt;

&lt;p&gt;Imagine having access to the smartest AI models in the world (like Claude, Llama, or Stable Diffusion) all in one place. That’s &lt;strong&gt;AWS Bedrock&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It’s not a model itself; it’s a &lt;em&gt;gallery&lt;/em&gt; of models. You walk in, pick the brain you want to use, and start asking it questions.&lt;/p&gt;

&lt;h3&gt;
  
  
  What can you do with it?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Write marketing emails&lt;/strong&gt; automatically.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Summarize long documents&lt;/strong&gt; into 3 bullet points.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Generate images&lt;/strong&gt; for your website.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  How to use it (The "Layman" Way):
&lt;/h3&gt;

&lt;p&gt;You don't even need to write code to test it!&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Log in to the &lt;strong&gt;AWS Console&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; Search for &lt;strong&gt;"Bedrock"&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; Go to the &lt;strong&gt;"Playgrounds"&lt;/strong&gt; section.&lt;/li&gt;
&lt;li&gt; Select a model (e.g., &lt;em&gt;Anthropic Claude&lt;/em&gt;).&lt;/li&gt;
&lt;li&gt; Type a prompt like: &lt;em&gt;"Write a funny poem about a cloud engineer who loves coffee."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt; Hit &lt;strong&gt;Run&lt;/strong&gt;. Boom! AI generated content.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  2. The "Talking Mouth": Amazon Polly 🗣️
&lt;/h2&gt;

&lt;p&gt;Want to turn your blog post into a podcast? Or build an app that reads stories to kids? &lt;strong&gt;Amazon Polly&lt;/strong&gt; turns text into lifelike speech.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why it’s cool:
&lt;/h3&gt;

&lt;p&gt;It doesn't sound like a robot from the 90s. It has "Neural" voices that whisper, show excitement, and sound incredibly human.&lt;/p&gt;

&lt;h3&gt;
  
  
  Try it out:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; Search for &lt;strong&gt;"Polly"&lt;/strong&gt; in AWS.&lt;/li&gt;
&lt;li&gt; Type some text: &lt;em&gt;"Hello, I am your new AI assistant."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt; Choose a voice (try &lt;em&gt;Matthew&lt;/em&gt; or &lt;em&gt;Joanna&lt;/em&gt;).&lt;/li&gt;
&lt;li&gt; Click &lt;strong&gt;Listen&lt;/strong&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Pro Tip:&lt;/strong&gt; You can download that audio file as an MP3 and use it in your YouTube videos!&lt;/p&gt;




&lt;h2&gt;
  
  
  3. The "All-Seeing Eye": Amazon Rekognition 👁️
&lt;/h2&gt;

&lt;p&gt;This service allows your app to "see" images and videos. It can identify objects, people, text, and even emotions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Real-world use cases:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Face Unlock:&lt;/strong&gt; Verify a user's identity by comparing their selfie to their ID card.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Content Moderation:&lt;/strong&gt; Automatically blur inappropriate images on your social platform.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Smart Albums:&lt;/strong&gt; Tag all photos containing "Dogs" or "Beach".&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The "No-Code" Demo:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; Go to &lt;strong&gt;Amazon Rekognition&lt;/strong&gt; in the console.&lt;/li&gt;
&lt;li&gt; Click &lt;strong&gt;"Try Demo"&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; Upload a photo of your pet or a street scene.&lt;/li&gt;
&lt;li&gt; Watch as it instantly draws boxes around cars, people, and trees with 99% confidence.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  4. The "Ears": Amazon Transcribe 👂
&lt;/h2&gt;

&lt;p&gt;If Polly is the mouth, &lt;strong&gt;Transcribe&lt;/strong&gt; is the ears. It listens to audio files and writes down exactly what was said.&lt;/p&gt;

&lt;h3&gt;
  
  
  Use cases:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Subtitles:&lt;/strong&gt; Automatically generate captions for your TikToks or YouTube videos.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Meeting Notes:&lt;/strong&gt; Record a Zoom call and get a written transcript instantly.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Try it out:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; Search for &lt;strong&gt;"Transcribe"&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; Upload a short MP3 file (maybe a voice note from your phone).&lt;/li&gt;
&lt;li&gt; Wait a few seconds, and watch the text appear!&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  5. The "Universal Translator": Amazon Translate 🌐
&lt;/h2&gt;

&lt;p&gt;Building an app for the whole world? &lt;strong&gt;Amazon Translate&lt;/strong&gt; breaks down language barriers instantly. It’s like having a professional translator in your pocket.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why it’s useful:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Chat Apps:&lt;/strong&gt; Let an English speaker chat with a Spanish speaker seamlessly.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Website Localization:&lt;/strong&gt; Automatically show your website in the user's native language.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Demo:
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt; Go to &lt;strong&gt;Amazon Translate&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; Type "Hello, how are you?" on the left.&lt;/li&gt;
&lt;li&gt; Select "Japanese" (or any language) on the right.&lt;/li&gt;
&lt;li&gt; See the result instantly.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  6. The "Mind Reader": Amazon Comprehend 🧐
&lt;/h2&gt;

&lt;p&gt;This one feels like magic. &lt;strong&gt;Amazon Comprehend&lt;/strong&gt; reads text and understands the &lt;em&gt;emotion&lt;/em&gt; and &lt;em&gt;meaning&lt;/em&gt; behind it.&lt;/p&gt;

&lt;h3&gt;
  
  
  What it sees:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Sentiment:&lt;/strong&gt; Is this customer review Happy, Sad, or Angry?&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Key Phrases:&lt;/strong&gt; What is this article actually about?&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Entities:&lt;/strong&gt; It can pick out names, dates, and brands automatically.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  7. Putting It All Together (The "Lego" Approach) 🧱
&lt;/h2&gt;

&lt;p&gt;The beauty of AWS is that you can connect these services.&lt;/p&gt;

&lt;p&gt;Imagine building a &lt;strong&gt;"Global Storyteller"&lt;/strong&gt; app:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;User&lt;/strong&gt; uploads a photo of a castle.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Rekognition&lt;/strong&gt; sees the "Castle".&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Bedrock&lt;/strong&gt; writes a short fairy tale in English.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Translate&lt;/strong&gt; converts the story into Spanish.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Polly&lt;/strong&gt; reads the Spanish story out loud.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You just built a multi-modal, multi-lingual AI application!&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts 💭
&lt;/h2&gt;

&lt;p&gt;The barrier to entry for AI has never been lower. You don't need to be a data scientist; you just need to be a &lt;strong&gt;builder&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;AWS provides the tools. Your imagination provides the blueprint.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Go log in to the AWS Free Tier and build something cool today!&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you found this helpful, drop a ❤️ and follow for more "Plain English" tech guides!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>aws</category>
      <category>awschallenge</category>
      <category>cloud</category>
    </item>
    <item>
      <title>custom entity recognition model using Amazon Comprehend</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sat, 18 Jan 2025 08:02:19 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/custom-entity-recognition-model-using-amazon-comprehend-42nb</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/custom-entity-recognition-model-using-amazon-comprehend-42nb</guid>
      <description>&lt;h2&gt;
  
  
  what is AWS Comprehend?
&lt;/h2&gt;

&lt;p&gt;Amazon Comprehend is a natural language processing (NLP) service provided by AWS that makes it easy to discover insights and relationships in text. It can extract key phrases, entities, sentiment, and other useful information from text. Amazon Comprehend uses machine learning to analyze text and provide insights without requiring any prior machine learning experience.&lt;/p&gt;

&lt;p&gt;Some key features of Amazon Comprehend include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Entity recognition&lt;/strong&gt;: Identify and extract key entities like people, places, organizations, dates, quantities, and more from text.&lt;br&gt;
Key phrase extraction: Identify the main themes in text documents.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Sentiment analysis&lt;/strong&gt;: Determine the sentiment expressed in text, such as positive, negative, or neutral.&lt;br&gt;
Language detection: Automatically detect the dominant language in text.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Custom models&lt;/strong&gt;: Build your own custom entity recognition or text classification models using your own data.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Amazon Comprehend is a powerful NLP service that can be integrated into various applications to extract valuable insights from text data. It's a great tool for tasks like content analysis, customer support, and information extraction.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;em&gt;What is the business case ?&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;1.&lt;strong&gt;Create a custom entity recognition model using Amazon Comprehend&lt;/strong&gt;&lt;br&gt;
 You will upload training data to an Amazon S3 bucket, then use Amazon Comprehend to train a custom entity recognition model based on that data.&lt;/p&gt;

&lt;p&gt;2.**Conduct a real-time analysis with a custom entity recognition endpoint. Once the model is trained, you will create an endpoint to perform real-time analysis on documents, identifying the custom entities you defined during the training process.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Architecture :-&lt;/strong&gt;&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%2Fz2bt0eabts4dgtp41htp.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%2Fz2bt0eabts4dgtp41htp.png" alt="Image description" width="800" height="488"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;need to create s3 bucket and hold 2 files document.txt and annotations.txt like below &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%2F1e2lp2jkoxyg7r598pwo.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%2F1e2lp2jkoxyg7r598pwo.png" alt="Image description" width="800" height="312"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;now launch Amazon Comprehend and create a new model like below.&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%2Fbrrhmhgie80uu4c5oya5.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%2Fbrrhmhgie80uu4c5oya5.png" alt="Image description" width="800" height="373"&gt;&lt;/a&gt;&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%2F2mhiusvyya3k8t3inzig.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%2F2mhiusvyya3k8t3inzig.png" alt="Image description" width="800" height="429"&gt;&lt;/a&gt;&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%2Fzcbrrc5gs49ijrp7qh3h.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%2Fzcbrrc5gs49ijrp7qh3h.png" alt="Image description" width="800" height="520"&gt;&lt;/a&gt;&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%2Fef9h9qs66aoiryscsup3.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%2Fef9h9qs66aoiryscsup3.png" alt="Image description" width="800" height="526"&gt;&lt;/a&gt;&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%2F1azk1j09y2ft56jvu6n4.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%2F1azk1j09y2ft56jvu6n4.png" alt="Image description" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;once you submit this, it takes a few minutes to train the data &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%2F67j63n6snpghct33lxv9.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%2F67j63n6snpghct33lxv9.png" alt="Image description" width="800" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;you can see progress here &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%2Fmocwoh5nukj7ctlmh8c2.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%2Fmocwoh5nukj7ctlmh8c2.png" alt="Image description" width="800" height="526"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;after a few minutes, the model will be trained like below.&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%2Fbkuynt10155menog40ml.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%2Fbkuynt10155menog40ml.png" alt="Image description" width="800" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;create an endpoint for this model to test &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%2Ffg3wvg7c1nwu8mxsedma.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%2Ffg3wvg7c1nwu8mxsedma.png" alt="Image description" width="800" height="377"&gt;&lt;/a&gt;&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%2F0pjst3ex4qc6dlg1fbnp.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%2F0pjst3ex4qc6dlg1fbnp.png" alt="Image description" width="800" height="412"&gt;&lt;/a&gt;&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%2Fay9g7bsu7ym7btprga4e.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%2Fay9g7bsu7ym7btprga4e.png" alt="Image description" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the navigation pane at the left of the page, choose Real-time analysis.&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%2Fsk4baln0jz3hr5g5gtbh.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%2Fsk4baln0jz3hr5g5gtbh.png" alt="Image description" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;pass this data like below .&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%2Frs4bot338vt31kl9mgwl.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%2Frs4bot338vt31kl9mgwl.png" alt="Image description" width="800" height="508"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;finally you learned about AWS comprehend , with this practice lab.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>ai</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Create a custom entity recognition model using Amazon Comprehend</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sat, 18 Jan 2025 08:00:59 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/create-a-custom-entity-recognition-model-using-amazon-comprehend-4mn2</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/create-a-custom-entity-recognition-model-using-amazon-comprehend-4mn2</guid>
      <description>&lt;h2&gt;
  
  
  what is AWS Comprehend?
&lt;/h2&gt;

&lt;p&gt;Amazon Comprehend is a natural language processing (NLP) service provided by AWS that makes it easy to discover insights and relationships in text. It can extract key phrases, entities, sentiment, and other useful information from text. Amazon Comprehend uses machine learning to analyze text and provide insights without requiring any prior machine learning experience.&lt;/p&gt;

&lt;p&gt;Some key features of Amazon Comprehend include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Entity recognition&lt;/strong&gt;: Identify and extract key entities like people, places, organizations, dates, quantities, and more from text.&lt;br&gt;
Key phrase extraction: Identify the main themes in text documents.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Sentiment analysis&lt;/strong&gt;: Determine the sentiment expressed in text, such as positive, negative, or neutral.&lt;br&gt;
Language detection: Automatically detect the dominant language in text.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Custom models&lt;/strong&gt;: Build your own custom entity recognition or text classification models using your own data.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Amazon Comprehend is a powerful NLP service that can be integrated into various applications to extract valuable insights from text data. It's a great tool for tasks like content analysis, customer support, and information extraction.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;em&gt;What is the business case ?&lt;/em&gt;
&lt;/h2&gt;

&lt;p&gt;1.&lt;strong&gt;Create a custom entity recognition model using Amazon Comprehend&lt;/strong&gt;&lt;br&gt;
 You will upload training data to an Amazon S3 bucket, then use Amazon Comprehend to train a custom entity recognition model based on that data.&lt;/p&gt;

&lt;p&gt;2.**Conduct a real-time analysis with a custom entity recognition endpoint. Once the model is trained, you will create an endpoint to perform real-time analysis on documents, identifying the custom entities you defined during the training process.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Architecture :-&lt;/strong&gt;&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%2Fz2bt0eabts4dgtp41htp.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%2Fz2bt0eabts4dgtp41htp.png" alt="Image description" width="800" height="488"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;need to create s3 bucket and hold 2 files document.txt and annotations.txt like below &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%2F1e2lp2jkoxyg7r598pwo.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%2F1e2lp2jkoxyg7r598pwo.png" alt="Image description" width="800" height="312"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;now launch Amazon Comprehend and create a new model like below.&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%2Fbrrhmhgie80uu4c5oya5.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%2Fbrrhmhgie80uu4c5oya5.png" alt="Image description" width="800" height="373"&gt;&lt;/a&gt;&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%2F2mhiusvyya3k8t3inzig.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%2F2mhiusvyya3k8t3inzig.png" alt="Image description" width="800" height="429"&gt;&lt;/a&gt;&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%2Fzcbrrc5gs49ijrp7qh3h.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%2Fzcbrrc5gs49ijrp7qh3h.png" alt="Image description" width="800" height="520"&gt;&lt;/a&gt;&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%2Fef9h9qs66aoiryscsup3.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%2Fef9h9qs66aoiryscsup3.png" alt="Image description" width="800" height="526"&gt;&lt;/a&gt;&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%2F1azk1j09y2ft56jvu6n4.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%2F1azk1j09y2ft56jvu6n4.png" alt="Image description" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;once you submit this, it takes a few minutes to train the data &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%2F67j63n6snpghct33lxv9.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%2F67j63n6snpghct33lxv9.png" alt="Image description" width="800" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;you can see progress here &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%2Fmocwoh5nukj7ctlmh8c2.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%2Fmocwoh5nukj7ctlmh8c2.png" alt="Image description" width="800" height="526"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;after a few minutes, the model will be trained like below.&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%2Fbkuynt10155menog40ml.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%2Fbkuynt10155menog40ml.png" alt="Image description" width="800" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;create an endpoint for this model to test &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%2Ffg3wvg7c1nwu8mxsedma.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%2Ffg3wvg7c1nwu8mxsedma.png" alt="Image description" width="800" height="377"&gt;&lt;/a&gt;&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%2F0pjst3ex4qc6dlg1fbnp.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%2F0pjst3ex4qc6dlg1fbnp.png" alt="Image description" width="800" height="412"&gt;&lt;/a&gt;&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%2Fay9g7bsu7ym7btprga4e.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%2Fay9g7bsu7ym7btprga4e.png" alt="Image description" width="800" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the navigation pane at the left of the page, choose Real-time analysis.&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%2Fsk4baln0jz3hr5g5gtbh.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%2Fsk4baln0jz3hr5g5gtbh.png" alt="Image description" width="800" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;pass this data like below .&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%2Frs4bot338vt31kl9mgwl.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%2Frs4bot338vt31kl9mgwl.png" alt="Image description" width="800" height="508"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;finally you learned about AWS comprehend , with this practice lab.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>machinelearning</category>
      <category>ai</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Mastering AWS AI and ML Services: Key Concepts for the AWS AI Practitioner Exam</title>
      <dc:creator>Nimmala NAGA SANTHOSH BABA</dc:creator>
      <pubDate>Sat, 04 Jan 2025 11:34:01 +0000</pubDate>
      <link>https://forem.com/nimmala_nagasanthoshbab/mastering-aws-ai-and-ml-services-key-concepts-for-the-aws-ai-practitioner-exam-4gmn</link>
      <guid>https://forem.com/nimmala_nagasanthoshbab/mastering-aws-ai-and-ml-services-key-concepts-for-the-aws-ai-practitioner-exam-4gmn</guid>
      <description>&lt;p&gt;AWS offers a comprehensive suite of services across three layers: &lt;strong&gt;ML Frameworks&lt;/strong&gt;, &lt;strong&gt;AI and ML Services,&lt;/strong&gt; and &lt;strong&gt;Generative AI Services&lt;/strong&gt;. Each layer is designed to meet specific business needs, from building and deploying models to leveraging pre-built AI capabilities. Let’s break down the services in each layer.&lt;/p&gt;

&lt;p&gt;To make it easier for you to remember these services and their applications, I have created playcards summarizing the key features and use cases. These playcards are designed to be handy for quick reference, especially when preparing for exams like the AWS AI Practitioner Exam.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. ML Frameworks Layer
&lt;/h2&gt;

&lt;p&gt;The ML Frameworks Layer focuses on tools and platforms to build, train, and deploy machine learning models efficiently.&lt;/p&gt;

&lt;h3&gt;
  
  
  Amazon SageMaker
&lt;/h3&gt;

&lt;p&gt;Amazon SageMaker is the cornerstone of AWS's ML Frameworks Layer, offering end-to-end solutions for machine learning workflows.&lt;/p&gt;

&lt;h4&gt;
  
  
  Key Features:
&lt;/h4&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%2Fagg9x3gfilzheeqn3e1c.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%2Fagg9x3gfilzheeqn3e1c.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;By streamlining the ML lifecycle, SageMaker empowers developers and data scientists to focus on innovation.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. AI and ML Services Layer
&lt;/h2&gt;

&lt;p&gt;The AI and ML Services Layer provides ready-to-use solutions for common AI use cases. These services require minimal expertise and are designed for seamless integration.&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%2Fu0xp732okxobxgfwdnda.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%2Fu0xp732okxobxgfwdnda.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Generative AI Services Layer&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The Generative AI Layer focuses on enabling applications powered by generative models for content creation, data synthesis, and more.&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%2Ffs5m88ullsq6rcpk5krs.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%2Ffs5m88ullsq6rcpk5krs.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;AWS provides a versatile and secure ecosystem for leveraging AI and ML technologies. From robust ML frameworks to advanced generative AI tools, AWS empowers businesses to innovate and scale efficiently. These playcards are designed to simplify the learning process by presenting services in a visually appealing and easy-to-understand format. They come in handy for quick revision and as a guide during exam preparation.&lt;/p&gt;

&lt;p&gt;Whether you're preparing for the AWS AI Practitioner Exam or exploring these services for your projects, understanding these layers is key to unlocking their full potential. Are you ready to transform your ideas into reality with AWS AI/ML? Start exploring today!&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>aws</category>
      <category>cloud</category>
    </item>
  </channel>
</rss>
