{"id":36595,"date":"2024-11-01T09:49:50","date_gmt":"2024-11-01T09:49:50","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36595"},"modified":"2024-11-01T11:52:34","modified_gmt":"2024-11-01T11:52:34","slug":"deep-learning-pytorch-course-anaconda-installation","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36595\/","title":{"rendered":"Deep Learning PyTorch Course, Anaconda Installation"},"content":{"rendered":"<p><body><\/p>\n<p>\n    Deep learning is a field of artificial intelligence that is especially used to learn patterns from large amounts of data and make predictions based on it. PyTorch is a popular library that helps implement deep learning easily. In this course, we will introduce how to install and set up PyTorch using the Anaconda environment.\n<\/p>\n<h2>1. What is Anaconda?<\/h2>\n<p>\n    Anaconda is a Python distribution for data science, machine learning, and deep learning. This distribution includes a variety of libraries and tools, providing easy package management and environment management. By using Anaconda, you can easily create and manage Python environments suited for specific projects, which greatly helps prevent version conflicts between libraries.\n<\/p>\n<h3>1.1. Features of Anaconda<\/h3>\n<ul>\n<li><strong>Package management:<\/strong> You can install and manage various packages through the conda package manager.<\/li>\n<li><strong>Environment management:<\/strong> You can create independent Python environments for each project to prevent library conflicts.<\/li>\n<li><strong>Diverse libraries:<\/strong> It includes many libraries related to data science such as NumPy, SciPy, Pandas, and Matplotlib.<\/li>\n<\/ul>\n<h2>2. Installing Anaconda<\/h2>\n<p>\n    The process of installing Anaconda is simple. Let&#8217;s download and install Anaconda by following the steps below.\n<\/p>\n<h3>2.1. Downloading Anaconda<\/h3>\n<p>\n    You can download the installation file from the official Anaconda website. Click the following link to go to the download page: <a href=\"https:\/\/www.anaconda.com\/products\/distribution\">Anaconda Distribution<\/a>.\n<\/p>\n<p>\n    Choose the installation file suitable for your operating system (supports Windows, macOS, Linux).\n<\/p>\n<h3>2.2. Installation Process<\/h3>\n<p>\n    Once the download is complete, run the installer. Although the process varies by operating system, it generally proceeds with the following steps.\n<\/p>\n<ul>\n<li><strong>Run the installer:<\/strong> Double-click the downloaded installation file to run it.<\/li>\n<li><strong>License agreement:<\/strong> Select the checkbox agreeing to the license agreement and click &#8220;Next&#8221;.<\/li>\n<li><strong>Select installation type:<\/strong> Choosing &#8220;Just Me&#8221; installs it only for personal use. Selecting &#8220;All Users&#8221; allows all users to use it.<\/li>\n<li><strong>Select installation path:<\/strong> You can leave the default installation path or change it to your desired path.<\/li>\n<li><strong>Other settings:<\/strong> You can choose whether to set environment variables (recommended).<\/li>\n<li><strong>Proceed with installation:<\/strong> Click the &#8220;Install&#8221; button to begin the installation.<\/li>\n<li><strong>Installation complete:<\/strong> Click the &#8220;Finish&#8221; button to end the installation.<\/li>\n<\/ul>\n<h3>2.3. Verifying Anaconda Installation<\/h3>\n<p>\n    Once Anaconda is installed, open the Anaconda Prompt to verify that the installation was successful. You can search for &#8220;Anaconda Prompt&#8221; in the start menu to open it.\n<\/p>\n<pre><code>conda --version<\/code><\/pre>\n<p>\n    By entering the above command, the version of the installed conda will be displayed. If there is no output, the installation was not successful. In this case, please check the installation process again.\n<\/p>\n<h2>3. Creating a New Anaconda Environment<\/h2>\n<p>\n    Now, let&#8217;s create a new environment to install the libraries needed for deep learning using Anaconda. Please proceed with the steps below.\n<\/p>\n<h3>3.1. Creating a New Environment<\/h3>\n<pre><code>conda create --name mypytorch python=3.8<\/code><\/pre>\n<p>\n    By entering the above command, a new environment named &#8220;mypytorch&#8221; will be created. Here, &#8220;python=3.8&#8221; sets the version of Python to be used in that environment.\n<\/p>\n<h3>3.2. Activating the Environment<\/h3>\n<pre><code>conda activate mypytorch<\/code><\/pre>\n<p>\n    Activate the newly created environment. The name of the prompt will change when the environment is activated.\n<\/p>\n<h3>3.3. Installing PyTorch<\/h3>\n<p>\n    After activating the environment, install PyTorch using the command provided on the PyTorch official website. (It can be configured differently depending on the CUDA version you want to install.)\n<\/p>\n<pre><code>conda install pytorch torchvision torchaudio cpuonly -c pytorch<\/code><\/pre>\n<p>\n    The above command installs PyTorch, TorchVision, and Torchaudio for CPU only. To install for a GPU that supports CUDA, you can choose the corresponding CUDA version to install.\n<\/p>\n<h2>4. Verifying PyTorch Installation<\/h2>\n<p>\n    To check whether PyTorch was installed correctly, run the Python interpreter and input the following code.\n<\/p>\n<pre><code>python<\/code><\/pre>\n<pre><code>import torch\nprint(torch.__version__)<\/code><\/pre>\n<p>\n    If you enter the above code, the version of the installed PyTorch will be displayed. If no errors occur and the version is displayed, PyTorch has been successfully installed.\n<\/p>\n<h2>5. Simple PyTorch Code Example<\/h2>\n<p>\n    Now that PyTorch is successfully installed, let&#8217;s write code to train a simple deep learning model. We will implement a simple linear regression model.\n<\/p>\n<h3>5.1. Generating Data<\/h3>\n<pre><code>import torch\nimport numpy as np\nimport matplotlib.pyplot as plt\n\n# Generate data\nx = np.random.rand(100, 1) * 10  # Random values between 0 and 10\ny = 2 * x + 1 + np.random.randn(100, 1)  # y = 2x + 1 + noise\n\n# Visualize data\nplt.scatter(x, y)\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Generated Data')\nplt.show()\n<\/code><\/pre>\n<h3>5.2. Defining the Model<\/h3>\n<pre><code>import torch.nn as nn\n\n# Define the linear regression model\nclass LinearRegressionModel(nn.Module):\n    def __init__(self):\n        super(LinearRegressionModel, self).__init__()\n        self.linear = nn.Linear(1, 1)  # 1 input, 1 output\n\n    def forward(self, x):\n        return self.linear(x)\n<\/code><\/pre>\n<h3>5.3. Defining the Loss Function and Optimizer<\/h3>\n<pre><code># Setting the loss function and optimizer\nmodel = LinearRegressionModel()\ncriterion = nn.MSELoss()  # Mean Squared Error\noptimizer = torch.optim.SGD(model.parameters(), lr=0.01)  # Stochastic Gradient Descent\n<\/code><\/pre>\n<h3>5.4. Training the Model<\/h3>\n<pre><code># Convert data to tensors\nX = torch.from_numpy(x).float()  # Input\nY = torch.from_numpy(y).float()  # Output\n\n# Train the model\nfor epoch in range(100):  # 100 epochs\n    optimizer.zero_grad()  # Zero the gradients\n    outputs = model(X)  # Model prediction\n    loss = criterion(outputs, Y)  # Calculate loss\n    loss.backward()  # Compute gradients\n    optimizer.step()  # Update parameters\n\n    if (epoch+1) % 10 == 0:\n        print(f'Epoch [{epoch+1}\/100], Loss: {loss.item():.4f}')\n<\/code><\/pre>\n<h3>5.5. Visualizing the Training Result<\/h3>\n<pre><code># Visualize the training result\npredicted = model(X).detach().numpy()  # Model predictions\n\nplt.scatter(x, y, label='Original Data')\nplt.plot(x, predicted, color='red', label='Fitted Line')\nplt.xlabel('x')\nplt.ylabel('y')\nplt.title('Linear Regression Result')\nplt.legend()\nplt.show()\n<\/code><\/pre>\n<h2>6. Conclusion<\/h2>\n<p>\n    In this course, we covered how to install Anaconda and how to install PyTorch in that environment, as well as how to implement a simple linear regression model. Efficiently managing the Python environment through Anaconda and installing libraries related to deep learning is a very important first step in the field of data science and machine learning.\n<\/p>\n<p>\n    Furthermore, I recommend getting familiar with the basic structure and usage of PyTorch through practice and trying to implement various deep learning models. I hope your deep learning journey is an interesting and beneficial experience.\n<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Deep learning is a field of artificial intelligence that is especially used to learn patterns from large amounts of data and make predictions based on it. PyTorch is a popular library that helps implement deep learning easily. In this course, we will introduce how to install and set up PyTorch using the Anaconda environment. 1. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36595\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Deep Learning PyTorch Course, Anaconda Installation&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[149],"tags":[],"class_list":["post-36595","post","type-post","status-publish","format-standard","hentry","category-pytorch-study"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/36595\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Deep learning is a field of artificial intelligence that is especially used to learn patterns from large amounts of data and make predictions based on it. PyTorch is a popular library that helps implement deep learning easily. In this course, we will introduce how to install and set up PyTorch using the Anaconda environment. 1. &hellip; \ub354 \ubcf4\uae30 &quot;Deep Learning PyTorch Course, Anaconda Installation&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36595\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:49:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:52:34+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Deep Learning PyTorch Course, Anaconda Installation\",\"datePublished\":\"2024-11-01T09:49:50+00:00\",\"dateModified\":\"2024-11-01T11:52:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/\"},\"wordCount\":729,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyTorch Study\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36595\/\",\"name\":\"Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:49:50+00:00\",\"dateModified\":\"2024-11-01T11:52:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36595\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36595\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deep Learning PyTorch Course, Anaconda Installation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/36595\/","og_locale":"ko_KR","og_type":"article","og_title":"Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Deep learning is a field of artificial intelligence that is especially used to learn patterns from large amounts of data and make predictions based on it. PyTorch is a popular library that helps implement deep learning easily. In this course, we will introduce how to install and set up PyTorch using the Anaconda environment. 1. &hellip; \ub354 \ubcf4\uae30 \"Deep Learning PyTorch Course, Anaconda Installation\"","og_url":"https:\/\/atmokpo.com\/w\/36595\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:49:50+00:00","article_modified_time":"2024-11-01T11:52:34+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/36595\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36595\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Deep Learning PyTorch Course, Anaconda Installation","datePublished":"2024-11-01T09:49:50+00:00","dateModified":"2024-11-01T11:52:34+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36595\/"},"wordCount":729,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyTorch Study"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36595\/","url":"https:\/\/atmokpo.com\/w\/36595\/","name":"Deep Learning PyTorch Course, Anaconda Installation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:49:50+00:00","dateModified":"2024-11-01T11:52:34+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36595\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36595\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36595\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Deep Learning PyTorch Course, Anaconda Installation"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36595","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=36595"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36595\/revisions"}],"predecessor-version":[{"id":36596,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36595\/revisions\/36596"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36595"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36595"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36595"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}