{"id":923,"date":"2023-06-29T13:20:14","date_gmt":"2023-06-29T13:20:14","guid":{"rendered":"https:\/\/www.programminginpython.com\/?p=923"},"modified":"2023-07-03T10:53:48","modified_gmt":"2023-07-03T10:53:48","slug":"unleashing-tensorflow-guide-deep-learning-python","status":"publish","type":"post","link":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/","title":{"rendered":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python"},"content":{"rendered":"<p>Hello, all Python enthusiasts, welcome back to <a href=\"\/\" target=\"_blank\" rel=\"noopener\">Programming In Python<\/a>, Here in this article I will give you an In-Depth Exploration of TensorFlow deep learning Python library: Harnessing the Power of Deep Learning. So let&#8217;s get started.<\/p>\n<h2>Introduction<\/h2>\n<p>TensorFlow, a popular Python library developed by Google Brain, has emerged as a cornerstone in the field of deep learning. With its robust architecture, extensive functionality, and user-friendly interface, TensorFlow empowers developers, researchers, and enthusiasts to build and deploy powerful machine learning models. This article delves into the capabilities of TensorFlow, highlighting its key features and showcasing a simple use case.<\/p>\n<h2>Installation<\/h2>\n<p>To install TensorFlow, you can use <a href=\"https:\/\/pip.pypa.io\/en\/stable\/\" target=\"_blank\" rel=\"noopener\">pip<\/a>, the Python package manager. Open a terminal or command prompt and run the following command:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">pip install tensorflow<\/pre>\n<p>This will download and install the latest version of TensorFlow and its dependencies. It&#8217;s recommended to create a virtual environment before installing TensorFlow to keep your Python environment isolated and avoid conflicts with other packages.<\/p>\n<blockquote><p>Ad:<br \/>\nLearn Python Programming Masterclass \u2013 <a target=\"\" rel=\"noopener\">Enroll Now<\/a>.<br \/>\nUdemy<\/p><\/blockquote>\n<h2>Commonly Used Methods of TensorFlow<\/h2>\n<h3>1. Creating Tensors<\/h3>\n<p>Tensors are the fundamental data structures in TensorFlow, representing multi-dimensional arrays. Here&#8217;s how you can create tensors using TensorFlow:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import tensorflow as tf\r\n\r\n# Creating a tensor from a list\r\ntensor_a = tf.constant([1, 2, 3, 4, 5])\r\n\r\n# Creating a tensor of zeros with a specific shape\r\ntensor_b = tf.zeros((3, 3))\r\n\r\n# Creating a tensor of random values\r\ntensor_c = tf.random.uniform((2, 2), minval=0, maxval=1)\r\n\r\n# Printing the tensors\r\nprint(tensor_a)\r\nprint(tensor_b)\r\nprint(tensor_c)<\/pre>\n<h2>2. Defining a Computational Graph<\/h2>\n<p>TensorFlow uses a computational graph to define and execute operations. Here&#8217;s an example of defining a simple computational graph:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import tensorflow as tf\r\n\r\n# Define input placeholders\r\na = tf.placeholder(tf.float32, shape=(None, 3))\r\nb = tf.placeholder(tf.float32, shape=(None, 3))\r\n\r\n# Define operations\r\nc = tf.add(a, b)\r\nd = tf.multiply(c, 2)\r\n\r\n# Execute the graph\r\nwith tf.Session() as sess:\r\nresult = sess.run(d, feed_dict={a: [[1, 2, 3]], b: [[4, 5, 6]]})\r\nprint(result)<\/pre>\n<h2>3. Building a Neural Network Model<\/h2>\n<p>TensorFlow provides high-level APIs, such as Keras, for building neural network models. Here&#8217;s an example of building a simple feedforward neural network using the Keras API:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import tensorflow as tf\r\nfrom tensorflow.keras import layers\r\n\r\n# Define the model architecture\r\nmodel = tf.keras.Sequential([\r\nlayers.Dense(64, activation='relu', input_shape=(784,)),\r\nlayers.Dense(64, activation='relu'),\r\nlayers.Dense(10, activation='softmax')\r\n])\r\n\r\n# Compile the model\r\nmodel.compile(optimizer='adam',\r\nloss='categorical_crossentropy',\r\nmetrics=['accuracy'])\r\n\r\n# Train the model\r\nmodel.fit(train_images, train_labels, epochs=10, validation_data=(test_images, test_labels))\r\n\r\n# Evaluate the model\r\ntest_loss, test_acc = model.evaluate(test_images, test_labels)\r\nprint(f\"Test accuracy: {test_acc}\")<\/pre>\n<h2>Capabilities of TensorFlow<\/h2>\n<h3>1. Flexible Architecture<\/h3>\n<p>TensorFlow provides a flexible and scalable architecture for building machine learning models. Its core strength lies in deep neural networks, enabling tasks such as image classification, natural language processing, speech recognition, and more. TensorFlow allows users to define complex computational graphs, where nodes represent mathematical operations and edges represent the flow of data. This flexibility enables the creation of diverse models tailored to specific tasks and datasets.<\/p>\n<h3>2. High-Level APIs<\/h3>\n<p>TensorFlow offers high-level APIs that simplify the process of building machine learning models. TensorFlow 2.0 introduced the Keras API as its official high-level API, making it easier to create models using intuitive building blocks. Keras provides a user-friendly interface for defining layers, handling data preprocessing, and managing model training and evaluation. This abstraction reduces the complexity of writing low-level TensorFlow code and allows users to focus on the model design and experimentation.<\/p>\n<blockquote><p>Ad:<br \/>\nLearn Python Programming Masterclass \u2013 <a target=\"\" rel=\"noopener\">Enroll Now<\/a>.<br \/>\nUdemy<\/p><\/blockquote>\n<h3>3. Efficient Computation<\/h3>\n<p>TensorFlow leverages the computational power of GPUs and TPUs (Tensor Processing Units) to accelerate the execution of machine learning computations. By utilizing these hardware accelerators, TensorFlow enables faster training and inference for deep learning models. GPU acceleration is particularly valuable when working with large-scale datasets or computationally intensive models. TensorFlow&#8217;s efficient computation capabilities make it well-suited for tackling complex machine learning tasks with improved performance.<\/p>\n<h3>4. Model Serving and Deployment<\/h3>\n<p>TensorFlow facilitates the serving and deployment of trained models in production environments. TensorFlow Serving provides a scalable and flexible serving system that allows developers to serve TensorFlow models in a distributed and efficient manner. It supports model versioning, request batching, and load balancing, ensuring high availability and performance. Additionally, TensorFlow Lite enables the deployment of models on resource-constrained devices, such as mobile phones, IoT devices, and embedded systems, expanding the range of deployment possibilities.<\/p>\n<h3>5. Ecosystem and Community<\/h3>\n<p>TensorFlow benefits from a <a href=\"https:\/\/www.tensorflow.org\/resources\/models-datasets\" target=\"_blank\" rel=\"noopener\">vibrant ecosystem<\/a> and an active community of developers and researchers. The ecosystem includes a wide range of pre-trained models, enabling users to leverage existing models for transfer learning or fine-tuning on their specific tasks. TensorFlow Hub serves as a repository for sharing and discovering reusable machine learning modules. Moreover, TensorFlow integrates with popular libraries and frameworks such as <a href=\"https:\/\/www.programminginpython.com\/numpy-library-python-comprehensive-guide-examples\/\" target=\"_blank\" rel=\"noopener\">NumPy<\/a>, <a href=\"\/pandas-library-python-data-manipulation-analysis\/\" target=\"_blank\" rel=\"noopener\">Pandas<\/a>, and scikit-learn, enhancing interoperability and allowing seamless integration into existing workflows. The strong community support ensures continuous development, regular updates, and access to valuable resources, including tutorials, documentation, and research papers.<\/p>\n<p>These capabilities collectively empower users to harness the full potential of TensorFlow and develop sophisticated machine learning models for a wide range of applications.<\/p>\n<h2>Simple Use Case: Image Classification with TensorFlow<\/h2>\n<p>Let&#8217;s explore a simple use case of image classification using TensorFlow. In this example, we will build a deep learning model to classify images of cats and dogs.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"python\">import tensorflow as tf\r\nfrom tensorflow.keras import layers\r\n\r\n# Load the dataset\r\n(train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.cifar10.load_data()\r\n\r\n# Preprocess the data\r\ntrain_images = train_images \/ 255.0\r\ntest_images = test_images \/ 255.0\r\n\r\n# Define the model architecture\r\nmodel = tf.keras.Sequential([\r\n    layers.Conv2D(32, (3, 3), activation='relu', input_shape=(32, 32, 3)),\r\n    layers.MaxPooling2D((2, 2)),\r\n    layers.Conv2D(64, (3, 3), activation='relu'),\r\n    layers.MaxPooling2D((2, 2)),\r\n    layers.Conv2D(64, (3, 3), activation='relu'),\r\n    layers.Flatten(),\r\n    layers.Dense(64, activation='relu'),\r\n    layers.Dense(10)\r\n])\r\n\r\n# Compile the model\r\nmodel.compile(optimizer='adam',\r\n              loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),\r\n              metrics=['accuracy'])\r\n\r\n# Train the model\r\nmodel.fit(train_images, train_labels, epochs=10, validation_data=(test_images, test_labels))\r\n\r\n# Evaluate the model\r\ntest_loss, test_acc = model.evaluate(test_images, test_labels)\r\nprint(f\"Test accuracy: {test_acc}\")\r\n<\/pre>\n<p>In this example, we use the CIFAR-10 dataset, which consists of 50,000 training images and 10,000 test images. We preprocess the data by normalizing pixel values to the range [0, 1]. The model architecture consists of convolutional and pooling layers followed by fully connected layers. We train the model for 10 epochs and evaluate its performance on the test set.<\/p>\n<blockquote><p>Ad:<br \/>\nLearn Python Programming Masterclass \u2013 <a target=\"\" rel=\"noopener\">Enroll Now<\/a>.<br \/>\nUdemy<\/p><\/blockquote>\n<h2>Conclusion<\/h2>\n<p>TensorFlow stands as a powerful and versatile library for deep learning, enabling developers to create sophisticated machine learning models. With its extensive functionality, efficient computation, and robust ecosystem, TensorFlow empowers researchers, developers, and data scientists to explore the realms of deep learning and drive innovation across various domains. By leveraging TensorFlow, users can unlock the potential of artificial intelligence and tackle complex challenges in a wide range of applications.<\/p>\n<p>For more insightful articles on <a href=\"https:\/\/www.programminginpython.com\/category\/python-libraries\/\" target=\"_blank\" rel=\"noopener\">Python libraries<\/a> like TensorFlow, <a href=\"https:\/\/www.programminginpython.com\/numpy-library-python-comprehensive-guide-examples\/\" target=\"_blank\" rel=\"noopener\">NumPy<\/a>, and <a href=\"https:\/\/www.programminginpython.com\/pandas-library-python-data-manipulation-analysis\/\" target=\"_blank\" rel=\"noopener\">Pandas<\/a>, explore <a href=\"\/\" target=\"_blank\" rel=\"noopener\">my blog<\/a> to delve into the world of deep learning, data analysis, and more. Expand your knowledge and enhance your Python skills with comprehensive guides and tutorials.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello, all Python enthusiasts, welcome back to Programming In Python, Here in this article I will give you an In-Depth Exploration of TensorFlow deep learning Python library: Harnessing the Power of Deep Learning. So let&#8217;s get started. Introduction TensorFlow, a popular Python library developed by Google Brain, has emerged as a cornerstone in the field&#8230;<\/p>\n","protected":false},"author":1,"featured_media":924,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[268,200,257],"tags":[276,278,280,204,208,279,193,186,277],"class_list":["post-923","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-artificial-intelligence-ai","category-machine-learning","category-python-libraries","tag-ai","tag-computational-graphs","tag-image-classification","tag-machine-learning","tag-machine-learning-workflow","tag-neural-networks","tag-python-libraries","tag-tensorflow","tag-tensors"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python<\/title>\n<meta name=\"description\" content=\"Unleash TensorFlow: Deep Learning Python Library. Explore capabilities, APIs, and efficient computation. Start your deep learning journey.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python\" \/>\n<meta property=\"og:description\" content=\"Unleash TensorFlow: Deep Learning Python Library. Explore capabilities, APIs, and efficient computation. Start your deep learning journey.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/\" \/>\n<meta property=\"og:site_name\" content=\"Programming In Python\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/programminginpython\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-29T13:20:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-03T10:53:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"AVINASH NETHALA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@python_pip\" \/>\n<meta name=\"twitter:site\" content=\"@python_pip\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"AVINASH NETHALA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python","description":"Unleash TensorFlow: Deep Learning Python Library. Explore capabilities, APIs, and efficient computation. Start your deep learning journey.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/","og_locale":"en_US","og_type":"article","og_title":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python","og_description":"Unleash TensorFlow: Deep Learning Python Library. Explore capabilities, APIs, and efficient computation. Start your deep learning journey.","og_url":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/","og_site_name":"Programming In Python","article_publisher":"https:\/\/www.facebook.com\/programminginpython","article_published_time":"2023-06-29T13:20:14+00:00","article_modified_time":"2023-07-03T10:53:48+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","type":"image\/png"}],"author":"AVINASH NETHALA","twitter_card":"summary_large_image","twitter_creator":"@python_pip","twitter_site":"@python_pip","twitter_misc":{"Written by":"AVINASH NETHALA","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#article","isPartOf":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/"},"author":{"name":"AVINASH NETHALA","@id":"https:\/\/www.programminginpython.com\/#\/schema\/person\/9a3c14fe46d422ebf783ee61de1e788c"},"headline":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python","datePublished":"2023-06-29T13:20:14+00:00","dateModified":"2023-07-03T10:53:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/"},"wordCount":893,"commentCount":0,"publisher":{"@id":"https:\/\/www.programminginpython.com\/#organization"},"image":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","keywords":["AI","computational graphs","image classification","machine learning","Machine Learning Workflow","neural networks","python libraries","TensorFlow","tensors"],"articleSection":["Artificial Intelligence AI","Machine Learning","Python Libraries"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/","url":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/","name":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python","isPartOf":{"@id":"https:\/\/www.programminginpython.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#primaryimage"},"image":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#primaryimage"},"thumbnailUrl":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","datePublished":"2023-06-29T13:20:14+00:00","dateModified":"2023-07-03T10:53:48+00:00","description":"Unleash TensorFlow: Deep Learning Python Library. Explore capabilities, APIs, and efficient computation. Start your deep learning journey.","breadcrumb":{"@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#primaryimage","url":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","contentUrl":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","width":1200,"height":600,"caption":"Unleashing the Power of TensorFlow: A Guide to Deep Learning with Python"},{"@type":"BreadcrumbList","@id":"https:\/\/www.programminginpython.com\/unleashing-tensorflow-guide-deep-learning-python\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.programminginpython.com\/"},{"@type":"ListItem","position":2,"name":"Unleashing the Power of TensorFlow library: A Guide to Deep Learning with Python"}]},{"@type":"WebSite","@id":"https:\/\/www.programminginpython.com\/#website","url":"https:\/\/www.programminginpython.com\/","name":"Programming In Python","description":"All About Python","publisher":{"@id":"https:\/\/www.programminginpython.com\/#organization"},"alternateName":"pip","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.programminginpython.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.programminginpython.com\/#organization","name":"Programming In Python","alternateName":"PIP","url":"https:\/\/www.programminginpython.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.programminginpython.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/04\/pip_logo_500_500.png","contentUrl":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/04\/pip_logo_500_500.png","width":500,"height":500,"caption":"Programming In Python"},"image":{"@id":"https:\/\/www.programminginpython.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/programminginpython","https:\/\/x.com\/python_pip","https:\/\/www.youtube.com\/programminginpython","https:\/\/github.com\/avinashn\/programminginpython.com"]},{"@type":"Person","@id":"https:\/\/www.programminginpython.com\/#\/schema\/person\/9a3c14fe46d422ebf783ee61de1e788c","name":"AVINASH NETHALA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.programminginpython.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ed52e7670d7db94820c7430d324103ccdecb16d86611d5b29064aa9ce25a958b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed52e7670d7db94820c7430d324103ccdecb16d86611d5b29064aa9ce25a958b?s=96&d=mm&r=g","caption":"AVINASH NETHALA"},"sameAs":["https:\/\/www.programminginpython.com\/"],"url":"https:\/\/www.programminginpython.com\/author\/avinash\/"}]}},"jetpack_featured_media_url":"https:\/\/www.programminginpython.com\/wp-content\/uploads\/2023\/06\/TensorFlow-Library.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/posts\/923","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/comments?post=923"}],"version-history":[{"count":3,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/posts\/923\/revisions"}],"predecessor-version":[{"id":930,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/posts\/923\/revisions\/930"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/media\/924"}],"wp:attachment":[{"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/media?parent=923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/categories?post=923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.programminginpython.com\/wp-json\/wp\/v2\/tags?post=923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}