{"id":35222,"date":"2024-11-01T09:37:05","date_gmt":"2024-11-01T09:37:05","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35222"},"modified":"2024-11-01T11:15:22","modified_gmt":"2024-11-01T11:15:22","slug":"machine-learning-and-deep-learning-algorithm-trading-generating-synthetic-data-with-gan","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35222\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN"},"content":{"rendered":"<p><body><\/p>\n<p>Quant trading is a method of making trading decisions in the financial market based on data. By utilizing various machine learning and deep learning techniques, it is possible to find patterns in data and build automated trading systems based on them. This article will explain algorithm trading using machine learning and deep learning and introduce how to generate synthetic data using Generative Adversarial Networks (GAN).<\/p>\n<h2>1. Overview of Machine Learning and Deep Learning<\/h2>\n<p>Machine learning is a field of artificial intelligence that employs algorithms and statistical models to enable computers to perform specific tasks. Deep learning is a subset of machine learning that uses neural networks to learn high-level representations from data. In the case of financial data, machine learning and deep learning algorithms can analyze past data and predict future price fluctuations.<\/p>\n<h3>1.1 Machine Learning Algorithms<\/h3>\n<p>Machine learning algorithms can be broadly divided into three types:<\/p>\n<ul>\n<li><strong>Supervised Learning:<\/strong> Trains a model using labeled data.<\/li>\n<li><strong>Unsupervised Learning:<\/strong> Finds the structure and patterns of data using unlabeled data.<\/li>\n<li><strong>Reinforcement Learning:<\/strong> The agent learns to maximize rewards by interacting with the environment.<\/li>\n<\/ul>\n<h3>1.2 Deep Learning Models<\/h3>\n<p>In deep learning, neural networks composed of multiple layers are used to analyze data. The commonly used deep learning models include:<\/p>\n<ul>\n<li><strong>Neural Networks:<\/strong> The basic deep learning structure consisting of input, hidden, and output layers.<\/li>\n<li><strong>Convolutional Neural Networks (CNN):<\/strong> A structure optimized for image data, efficient in recognizing patterns within images.<\/li>\n<li><strong>Recurrent Neural Networks (RNN):<\/strong> A structure suitable for time series prediction, remembering and processing information from previous data.<\/li>\n<\/ul>\n<h2>2. Concept of Algorithm Trading<\/h2>\n<p>Algorithm trading refers to a system that automatically executes trades based on specific algorithms. This system analyzes various market data in real-time and makes buy or sell decisions when certain conditions are met.<\/p>\n<h3>2.1 Advantages of Algorithm Trading<\/h3>\n<ul>\n<li><strong>Elimination of Emotion:<\/strong> Mechanical trading removes emotions, allowing for more objective decision-making.<\/li>\n<li><strong>Speed:<\/strong> Enables rapid trading by processing data in real-time.<\/li>\n<li><strong>Implementation of Various Strategies:<\/strong> Allows for the management of diverse strategies by executing multiple algorithms simultaneously.<\/li>\n<\/ul>\n<h3>2.2 Algorithm Design Process<\/h3>\n<p>The process of designing an algorithm trading system includes the following steps:<\/p>\n<ol>\n<li>Strategy Development: Develop a strategy to gain a competitive edge through market research and data analysis.<\/li>\n<li>Model Selection: Choose an appropriate machine learning or deep learning model.<\/li>\n<li>Data Collection: Collect necessary historical and real-time data.<\/li>\n<li>Training and Validation: Train the selected model with the data and validate its performance.<\/li>\n<li>Live Trading: Apply the system to the actual market to execute trades.<\/li>\n<\/ol>\n<h2>3. Overview of GAN (Generative Adversarial Networks)<\/h2>\n<p>GAN is a generative model proposed by Ian Goodfellow in 2014, consisting of two neural networks. The generator tries to create new data, while the discriminator tries to determine whether the provided data is real or fake. The two networks learn by competing against each other.<\/p>\n<h3>3.1 Structure of GAN<\/h3>\n<p>GAN consists of the following structure:<\/p>\n<ul>\n<li><strong>Generator:<\/strong> Takes random noise as input and generates fake data.<\/li>\n<li><strong>Discriminator:<\/strong> Takes actual data and fake data created by the generator as input, distinguishing between the two.<\/li>\n<\/ul>\n<h3>3.2 Learning Process of GAN<\/h3>\n<p>The learning process of GAN is as follows:<\/p>\n<ol>\n<li>The generator creates data from random noise.<\/li>\n<li>The generated data and actual data are input to the discriminator.<\/li>\n<li>The discriminator determines the authenticity of the two data.<\/li>\n<li>Based on the discriminator&#8217;s decisions, the generator is updated to create better fake data.<\/li>\n<li>This process is repeated, improving the generator&#8217;s performance.<\/li>\n<\/ol>\n<h2>4. Generating Synthetic Data using GAN<\/h2>\n<p>Synthetic data is artificially generated data that can substitute real-world data. The advantages of generating synthetic data using GAN include:<\/p>\n<ul>\n<li>Data Augmentation: Can be beneficial in situations where real data cannot be used.<\/li>\n<li>Privacy Protection: Allows for the use of synthetic data with removed personally identifiable information from real data.<\/li>\n<li>Realistic Data Generation: Due to GAN\u2019s superior generation capability, it can create data that closely resembles real data.<\/li>\n<\/ul>\n<h3>4.1 Implementation of Generating Synthetic Data using GAN<\/h3>\n<p>The basic code for implementing GAN to generate synthetic data is as follows:<\/p>\n<pre><code>\nimport numpy as np\nimport matplotlib.pyplot as plt\nimport tensorflow as tf\nfrom tensorflow.keras import layers\n\n# GAN model creation function\ndef create_gan():\n    # Define generator model\n    generator = tf.keras.Sequential([\n        layers.Dense(128, activation='relu', input_shape=(100,)),\n        layers.Dense(784, activation='sigmoid')\n    ])\n\n    # Define discriminator model\n    discriminator = tf.keras.Sequential([\n        layers.Dense(128, activation='relu', input_shape=(784,)),\n        layers.Dense(1, activation='sigmoid')\n    ])\n\n    # Define GAN model\n    discriminator.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])\n    discriminator.trainable = False\n    gan_input = layers.Input(shape=(100,))\n    fake_image = generator(gan_input)\n    gan_output = discriminator(fake_image)\n    gan = tf.keras.models.Model(gan_input, gan_output)\n    gan.compile(loss='binary_crossentropy', optimizer='adam')\n\n    return generator, discriminator, gan\n\n# Generate data and train model\ngenerator, discriminator, gan = create_gan()\n\nfor epoch in range(10000):\n    # Generate real samples from existing data\n    real_samples = np.random.rand(32, 784)\n    \n    # Generate fake data\n    noise = np.random.normal(0, 1, size=[32, 100])\n    fake_samples = generator.predict(noise)\n    \n    # Train discriminator\n    discriminator.train_on_batch(real_samples, np.ones((32, 1)))\n    discriminator.train_on_batch(fake_samples, np.zeros((32, 1)))\n    \n    # Train GAN\n    noise = np.random.normal(0, 1, size=[32, 100])\n    gan.train_on_batch(noise, np.ones((32, 1)))\n    \n# Visualization after data generation\ngenerated_images = generator.predict(np.random.normal(0, 1, size=[10, 100]))\nplt.figure(figsize=(10, 10))\nfor i in range(10):\n    plt.subplot(5, 5, i + 1)\n    plt.imshow(generated_images[i].reshape(28, 28), cmap='gray')\n    plt.axis('off')\nplt.show()\n    <\/code><\/pre>\n<h2>5. Conclusion<\/h2>\n<p>In this article, we explored the concept of algorithm trading utilizing machine learning and deep learning techniques, and the technology of generating synthetic data using GAN. The ability to extract patterns from data and generate synthetic data will be a powerful tool for improving quant trading systems. To successfully apply machine learning and deep learning techniques in the future financial market, systematic data analysis and algorithm development will be necessary.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Quant trading is a method of making trading decisions in the financial market based on data. By utilizing various machine learning and deep learning techniques, it is possible to find patterns in data and build automated trading systems based on them. This article will explain algorithm trading using machine learning and deep learning and introduce &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35222\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN&#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":[121],"tags":[],"class_list":["post-35222","post","type-post","status-publish","format-standard","hentry","category-deep-learning-automated-trading"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \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\/35222\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Quant trading is a method of making trading decisions in the financial market based on data. By utilizing various machine learning and deep learning techniques, it is possible to find patterns in data and build automated trading systems based on them. This article will explain algorithm trading using machine learning and deep learning and introduce &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35222\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:37:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:15:22+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\/35222\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35222\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN\",\"datePublished\":\"2024-11-01T09:37:05+00:00\",\"dateModified\":\"2024-11-01T11:15:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35222\/\"},\"wordCount\":731,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35222\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35222\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:37:05+00:00\",\"dateModified\":\"2024-11-01T11:15:22+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35222\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35222\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35222\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN\"}]},{\"@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":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \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\/35222\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Quant trading is a method of making trading decisions in the financial market based on data. By utilizing various machine learning and deep learning techniques, it is possible to find patterns in data and build automated trading systems based on them. This article will explain algorithm trading using machine learning and deep learning and introduce &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN\"","og_url":"https:\/\/atmokpo.com\/w\/35222\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:37:05+00:00","article_modified_time":"2024-11-01T11:15:22+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\/35222\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35222\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN","datePublished":"2024-11-01T09:37:05+00:00","dateModified":"2024-11-01T11:15:22+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35222\/"},"wordCount":731,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35222\/","url":"https:\/\/atmokpo.com\/w\/35222\/","name":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:37:05+00:00","dateModified":"2024-11-01T11:15:22+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35222\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35222\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35222\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Machine Learning and Deep Learning Algorithm Trading, Generating Synthetic Data with GAN"}]},{"@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\/35222","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=35222"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35222\/revisions"}],"predecessor-version":[{"id":35223,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35222\/revisions\/35223"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35222"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35222"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35222"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}