{"id":110156,"date":"2026-05-13T12:21:35","date_gmt":"2026-05-13T06:51:35","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=110156"},"modified":"2026-05-13T12:21:36","modified_gmt":"2026-05-13T06:51:36","slug":"what-is-ai-and-machine-learning","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-is-ai-and-machine-learning\/","title":{"rendered":"What Is AI and Machine Learning? A Beginner&#8217;s Guide"},"content":{"rendered":"\n<p>Artificial intelligence powers everyday tech like Netflix recommendations, email spam filters, phone voice assistants, and navigation apps that dodge traffic. Most people engage with AI dozens of times daily without noticing. Yet, when asked what AI really is or how it differs from machine learning, explanations often blur. These terms get swapped in headlines and jobs, but they&#8217;re distinct, and grasping the gap unlocks modern tech.<\/p>\n\n\n\n<p>The mix-up makes sense: AI and machine learning overlap like squares and rectangles. Every square is a rectangle, but not vice versa. Machine learning, a key AI subset, lets systems learn and improve from data patterns without explicit coding. It predicts on new inputs by spotting trends. AI spans broader: rule-based systems, expert setups, search, and reasoning that skip data learning entirely.<\/p>\n\n\n\n<p>In this article, we will walk through exactly what artificial intelligence is, what machine learning is, how they relate to each other, what the three main types of machine learning are, what deep learning adds to the picture, where these technologies are used in the real world, and why understanding them matters whether you are pursuing a technical career or just trying to make sense of the world around you.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR:&nbsp;<\/strong><\/h2>\n\n\n\n<ul>\n<li>AI is the broad field mimicking human intelligence; machine learning (ML) is its key subset where systems learn from data without explicit rules.<\/li>\n\n\n\n<li>Early AI used rigid rules (e.g., 1970s chess programs); modern AI relies on data-driven ML for complex tasks like image\/speech recognition.<\/li>\n\n\n\n<li>ML types: Supervised (labeled data for predictions), unsupervised (finds patterns in unlabeled data), reinforcement (trial-and-error with rewards).<\/li>\n\n\n\n<li>Deep learning, an ML subset, uses layered neural networks for breakthroughs like ChatGPT or self-driving tech that needs massive data\/compute.<\/li>\n\n\n\n<li>Real-world wins: Healthcare diagnostics, fraud detection, Netflix recs, voice assistants like Siri.<\/li>\n\n\n\n<li>Start learning: Use Python with scikit-learn\/TensorFlow; free courses on Coursera\/fast.ai.<\/li>\n<\/ul>\n\n\n\n<div class=\"guvi-answer-card\" style=\"margin: 40px 0;\">\n\n  <div style=\"\n    position: relative;\n    background: linear-gradient(135deg, #f0fff4, #e6f7ee);\n    border: 1px solid #cfeedd;\n    padding: 26px 24px 22px 24px;\n    border-radius: 14px;\n    font-family: Arial, sans-serif;\n    box-shadow: 0 6px 16px rgba(0,0,0,0.05);\n  \">\n\n    <!-- Top accent -->\n    <div style=\"\n      position: absolute;\n      top: 0;\n      left: 0;\n      height: 6px;\n      width: 100%;\n      background: linear-gradient(to right, #099f4e, #6dd5a3);\n      border-radius: 14px 14px 0 0;\n    \"><\/div>\n\n    <!-- Title -->\n    <h3 style=\"\n      margin: 10px 0 12px 0;\n      color: #099f4e;\n      font-size: 20px;\n    \">\n      What Is AI and Machine Learning in Simple Terms?\n    <\/h3>\n\n    <!-- Content -->\n    <p style=\"\n      margin: 0;\n      color: #2f4f3f;\n      font-size: 16px;\n      line-height: 1.7;\n    \">\n      AI is the broad field of making computers perform tasks that normally require human intelligence, while machine learning is the specific technique where computers learn from data to improve at those tasks without being explicitly programmed for every situation.\n    <\/p>\n\n  <\/div>\n\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>OVERVIEW OF AI AND ML<\/strong><\/h3>\n\n\n\n<p>Machine learning is a subset of artificial intelligence that enables a system to learn and improve without being explicitly programmed autonomously. <a href=\"https:\/\/www.guvi.in\/blog\/types-of-machine-learning-algorithms\/\" target=\"_blank\" rel=\"noreferrer noopener\">Machine learning algorithms<\/a> work by recognizing patterns and data and making predictions when new data is input into the system.<\/p>\n\n\n\n<p>Think of AI as the destination of intelligent behavior from machines and machine learning as the most popular road to get there.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is Artificial Intelligence?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/how-ai-works-comprehensive-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\">Artificial intelligence <\/a>is the broad scientific field dedicated to building machines capable of performing tasks that require human intelligence. The concept isn&#8217;t new; Alan Turing pondered in 1950 if machines could think. AI was formally founded in 1956 at Dartmouth College. Its practical meaning has evolved dramatically over the decades.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Early Rule-Based AI<\/strong><\/h3>\n\n\n\n<p>Early systems relied on explicit rules coded by programmers: if X, then Y. A 1970s chess program followed every hand-written chess rule for legal moves. These impressed in narrow domains but failed outside predefined scenarios. They couldn&#8217;t learn or adapt, just obeyed instructions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Modern Data-Driven AI<\/strong><\/h3>\n\n\n\n<p>Today&#8217;s AI learns from data, not rigid rules, powering complex tasks like speech recognition or image understanding. Manual rules fail in vast, variable spaces like language translation. Systems ingest millions of examples to detect patterns independently. This machine learning drives nearly all current AI breakthroughs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is Machine Learning?<\/strong><\/h2>\n\n\n\n<p>Machine learning is the practice of building systems that improve their performance on a task through experience rather than through explicit programming. The key insight is that instead of a programmer writing rules, the machine finds the rules itself by analyzing data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>A Concrete Example: The Spam Filter<\/strong><\/h3>\n\n\n\n<p>A simple example makes this concrete. Suppose you want to build a spam filter. The traditional approach would be to write rules if the email contains &#8220;click here to win&#8221; or &#8220;free offer,&#8221; mark it as spam. The problem is that spammers adapt constantly, and your rule list would need infinite updates.<\/p>\n\n\n\n<p>&nbsp;The machine learning approach is different: you show the system thousands of examples of spam emails and thousands of examples of legitimate emails and let it learn what distinguishes them.&nbsp;<\/p>\n\n\n\n<p>It might discover patterns you never thought to code that certain sender domains correlate with spam, that certain timing patterns are suspicious, and that certain combinations of words appear together in spam but not in legitimate email. The resulting system is more flexible and more accurate than any hand-coded rule list could be.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Machine Learning as a Subset of AI<\/strong><\/h3>\n\n\n\n<p>Machine learning, a subset of artificial intelligence, uses algorithms to parse data, gather information, and output predictions or decisions without being specifically programmed to do so. The &#8220;without being explicitly programmed&#8221; part is the key distinction. A traditional program does exactly what the programmer told it to do. A machine learning system does what the data taught it to do.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The Three Main Types of Machine Learning<\/strong><\/h2>\n\n\n\n<p>Machine learning is not a single approach; it is a family of approaches that differ based on what kind of data is available and what the system is being asked to learn. The three major categories are supervised learning, unsupervised learning, and reinforcement learning.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Supervised learning&nbsp;<\/strong><\/h3>\n\n\n\n<p>It is the most widely used type today. In supervised learning, the model is trained with labeled data where each input has a corresponding output. The word &#8220;labeled&#8221; means someone has already provided the correct answers for a set of training examples.&nbsp;<\/p>\n\n\n\n<p>In <a href=\"https:\/\/www.guvi.in\/blog\/supervised-and-unsupervised-learning\/\" target=\"_blank\" rel=\"noreferrer noopener\">supervised learning,<\/a> humans provide more guidance by showing the algorithm examples with the correct answers. You give the algorithm lots of data that includes both the question and the answer so it can learn the pattern. Teaching a computer to recognize handwritten digits is a supervised learning problem.\u00a0<\/p>\n\n\n\n<p>You show it thousands of images of handwritten numbers, each labeled with the digit it represents, and it learns the mapping between pixel patterns and digits. Common supervised learning applications include email spam detection, credit card fraud detection, medical diagnosis from test results, and image classification.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Unsupervised learning<\/strong><\/h3>\n\n\n\n<p>It takes a different approach. Unsupervised learning uses unlabeled data and lets the model find patterns or groupings on its own. The algorithm is not given any correct answers; instead, it discovers hidden patterns or structures in the input data without human guidance. For example, it might group customers by purchasing behavior.&nbsp;<\/p>\n\n\n\n<p>Rather than learning to predict a specific known output, unsupervised learning explores the structure of data itself. Market segmentation, grouping customers into meaningful clusters based on their behavior, is a classic unsupervised learning application.<\/p>\n\n\n\n<p>Recommendation systems that identify which products tend to be bought together, anomaly detection in network traffic, and topic modeling in large document collections are all unsupervised problems. The system is not told what to find; it discovers whatever structure exists in the data.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Reinforcement learning&nbsp;<\/strong><\/h3>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/what-is-reinforcement-learning\/\" target=\"_blank\" rel=\"noreferrer noopener\">Reinforcement learning<\/a> is a machine learning model that can be described as &#8220;learn by doing&#8221; through a series of trial-and-error experiments. An &#8220;agent&#8221; learns to perform a defined task through a feedback loop until its performance is within a desirable range.<\/p>\n\n\n\n<p>The agent takes actions, receives rewards or penalties based on the outcomes, and gradually learns which actions lead to the best long-term results. This is how AI systems learned to play games like chess and Go at superhuman levels, and it is increasingly used in robotics, autonomous vehicle navigation, and recommendation system optimization.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is Deep Learning and How Does It Fit In?<\/strong><\/h2>\n\n\n\n<p><a href=\"https:\/\/www.guvi.in\/blog\/deep-learning-and-neural-network\/\" target=\"_blank\" rel=\"noreferrer noopener\">Deep learning<\/a> is a specific subset of machine learning, and it is responsible for most of the dramatic AI breakthroughs of the last decade, including image recognition, speech recognition, language translation, and large language models like the ones powering today&#8217;s AI assistants.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. How Deep Learning Processes Data<\/strong><\/h3>\n\n\n\n<p>Deep learning methods allow a machine to be fed with large quantities of raw data and to discover the representations necessary for detection or classification.<\/p>\n\n\n\n<p>Deep learning methods rely on multiple layers of representation of the data with successive transformations that amplify aspects of the input that are important for discrimination and suppress irrelevant variations. Deep learning may be supervised or unsupervised.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. The Meaning of &#8220;Deep.&#8221;<\/strong><\/h3>\n\n\n\n<p>The &#8220;deep&#8221; in deep learning refers to the many layers of processing between the raw input and the final output. Each layer learns to recognize increasingly abstract patterns.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Hierarchical Power and Requirements<\/strong><\/h3>\n\n\n\n<p>In an image recognition system, the first layers might detect edges, the next layers detect shapes, the layers after that detect objects, and the final layers classify the overall image.&nbsp;<\/p>\n\n\n\n<p>This hierarchical representation learning is what gives deep learning its power and it requires both massive amounts of training data and significant computing power. The availability of both since the 2010s is what enabled the current AI revolution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How AI and Machine Learning Are Used in the Real World<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Healthcare Transformations<\/strong><\/h3>\n\n\n\n<p>In healthcare, machine learning models analyze medical images to detect cancer, diabetic retinopathy, and other conditions with accuracy that matches or exceeds that of specialist physicians in specific tasks. Drug discovery processes use AI to screen millions of potential compounds and predict which are most likely to be effective treatments. Hospital readmission risk models help identify patients who need additional support before discharge.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Finance and Fraud Prevention<\/strong><\/h3>\n\n\n\n<p>In finance, fraud detection systems analyze transaction patterns in real time to flag suspicious activity before it causes harm. Credit scoring models that incorporate machine learning have made loan decisions faster and in some cases more accurate than traditional approaches. Algorithmic trading systems analyze market conditions and execute trades in milliseconds.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Everyday Consumer Recommendations<\/strong><\/h3>\n\n\n\n<p>In everyday consumer products, recommendation systems on <a href=\"https:\/\/www.aib.edu.au\/blog\/innovate\/netflix-digital-disrupter\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Netflix<\/a>, Spotify, YouTube, and Amazon use machine learning to model user preferences and surface content that keeps people engaged.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Voice Assistants and Interaction<\/strong><\/h3>\n\n\n\n<p>Voice assistants like Siri and <a href=\"https:\/\/assistant.google.com\/learn\/\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Google Assistant<\/a> use speech recognition models built on deep learning to convert spoken words into text and intent.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong> \n  <br \/><br \/> \n  The roots of <strong style=\"color: #FFFFFF;\">Artificial Intelligence<\/strong> trace back to <strong style=\"color: #FFFFFF;\">Alan Turing\u2019s<\/strong> famous 1950 question: <strong style=\"color: #FFFFFF;\">\u201cCan machines think?\u201d<\/strong>\n  <br \/><br \/>\n  While early AI systems relied on <strong style=\"color: #FFFFFF;\">rigid rule-based logic<\/strong> and struggled outside narrow tasks, the real AI explosion arrived in the <strong style=\"color: #FFFFFF;\">2010s<\/strong> thanks to massive amounts of <strong style=\"color: #FFFFFF;\">data<\/strong> and affordable <strong style=\"color: #FFFFFF;\">computing power<\/strong>.\n  <br \/><br \/>\n  Modern <strong style=\"color: #FFFFFF;\">deep learning systems<\/strong> now achieve superhuman performance in areas like <strong style=\"color: #FFFFFF;\">chess<\/strong>, <strong style=\"color: #FFFFFF;\">Go<\/strong>, image recognition, and language understanding.\n  <br \/><br \/>\n  Fun fact: your <strong style=\"color: #FFFFFF;\">email spam filter<\/strong> quietly uses machine learning to detect hidden patterns and evolving spam tactics\u2014making it far more adaptive than any manually written rule list.\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>AI vs. Machine Learning: The Key Distinction<\/strong><\/h2>\n\n\n\n<p>The relationship between AI<a href=\"https:\/\/www.guvi.in\/blog\/category\/ai-ml\/\"> <\/a>and machine learning is one of the most commonly confused points in technology conversations, and getting it clear makes everything else easier to understand.<\/p>\n\n\n\n<ul>\n<li>AI is the broad goal of creating machines that exhibit intelligent behavior. Machine learning is one method for achieving that goal.&nbsp;<\/li>\n\n\n\n<li>Not all AI uses machine learning. A chess program that evaluates positions using hand-coded rules is AI, but not machine learning.<\/li>\n\n\n\n<li>&nbsp;A GPS that finds the shortest route using a search algorithm is AI, but not machine learning.&nbsp;<\/li>\n\n\n\n<li>On the other side, all machine learning is AI. Any system that learns from data to make intelligent decisions or predictions is, by definition, an artificial intelligence system.&nbsp;<\/li>\n\n\n\n<li>Deep learning sits inside machine learning, which sits inside AI. The relationship is concentric circles, not overlapping ones.<\/li>\n\n\n\n<li>In supervised learning, the goal is to predict outcomes for new data, and you know up front the type of results to expect.&nbsp;<\/li>\n\n\n\n<li>With an unsupervised learning algorithm, the goal is to get insights from large volumes of new data<\/li>\n\n\n\n<li>These different goals reflect genuinely different problem types, and choosing the right approach starts with understanding what kind of data you have and what kind of question you are trying to answer.<\/li>\n<\/ul>\n\n\n\n<p><em>If you&#8217;re serious about mastering AI and machine learning fundamentals from neural networks and supervised learning to real-world applications like recommendation systems and predictive analytics don&#8217;t miss the chance to enroll in HCL GUVI&#8217;s <\/em><strong><em>Intel &amp; IITM Pravartak Certified <\/em><\/strong><a href=\"https:\/\/www.guvi.in\/mlp\/artificial-intelligence-and-machine-learning?utm_source=blog&amp;utm_medium=hyperlink&amp;utm_campaign=ai-ml-guide\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><em>Artificial Intelligence &amp; Machine Learning Course<\/em><\/strong><\/a><em>, co-designed by Intel.\u00a0<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Final Thoughts<\/strong><\/h2>\n\n\n\n<p>Artificial intelligence and machine learning are not buzzwords that will fade they are foundational technologies that are reshaping how software works, how decisions are made, and how value is created across every industry.&nbsp;<\/p>\n\n\n\n<p>With data growing every day, supervised and unsupervised learning will keep evolving, helping us find new patterns and make better decisions in ways we cannot yet imagine.<\/p>\n\n\n\n<p>The best way to move from understanding these concepts to being able to work with them is hands-on practice. Python is the starting point; it has the richest ecosystem of machine learning libraries, including scikit-learn for classical machine learning and TensorFlow and PyTorch for deep learning.&nbsp;<\/p>\n\n\n\n<p>Free courses on Coursera and fast.ai are excellent, structured paths into machine learning fundamentals. Start with supervised learning on a simple dataset; the intuitions you build there translate directly to every other type of machine learning you will encounter. The field is large, but the core concepts are accessible to anyone willing to spend consistent time with them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1778241901669\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What&#8217;s the main difference between AI and machine learning?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>AI is the overarching goal of intelligent machines; ML is a technique within AI where systems learn patterns from data instead of following programmer-written rules.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1778241907451\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What are the three types of machine learning?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Supervised (uses labeled data for predictions), unsupervised (uncovers hidden patterns in unlabeled data), and reinforcement (learns via trial-and-error rewards).<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1778241920181\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. How does deep learning differ from regular machine learning?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Deep learning uses multi-layered neural networks to automatically learn hierarchical features from raw data, excelling in complex tasks like image recognition requiring lots of data and compute power.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1778241933764\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. Where is AI\/ML used in daily life?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Everywhere: Netflix\/Spotify recommendations, Siri\/Google Assistant speech recognition, bank fraud alerts, medical image diagnostics, and traffic-rerouting apps.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1778241945688\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. How can beginners get started with AI\/ML?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Dive into Python with libraries like scikit-learn or TensorFlow; try free Coursera\/fast.ai courses starting with supervised learning on simple datasets.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Artificial intelligence powers everyday tech like Netflix recommendations, email spam filters, phone voice assistants, and navigation apps that dodge traffic. Most people engage with AI dozens of times daily without noticing. Yet, when asked what AI really is or how it differs from machine learning, explanations often blur. These terms get swapped in headlines and [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":110672,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[933],"tags":[],"views":"38","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/05\/AI-and-machine-learning-300x115.webp","jetpack_featured_media_url":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/05\/AI-and-machine-learning-scaled.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/110156"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=110156"}],"version-history":[{"count":5,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/110156\/revisions"}],"predecessor-version":[{"id":110676,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/110156\/revisions\/110676"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/110672"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=110156"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=110156"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=110156"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}