{"id":35913,"date":"2024-11-01T09:43:53","date_gmt":"2024-11-01T09:43:53","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=35913"},"modified":"2024-11-01T11:10:21","modified_gmt":"2024-11-01T11:10:21","slug":"machine-learning-and-deep-learning-algorithm-trading-exploration-vs-exploitation-trade-off-%ce%b5-greedy-policy","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/35913\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy"},"content":{"rendered":"<p><body><\/p>\n<p>Algorithmic trading is becoming increasingly emphasized in the current financial markets. In particular, automated trading systems using machine learning and deep learning are establishing themselves as even more powerful methodologies. In this course, we will explain the basics of machine learning and deep learning algorithmic trading, as well as the trade-off between exploration and exploitation through the \u03b5-greedy policy.<\/p>\n<h2>1. What are Machine Learning and Deep Learning?<\/h2>\n<p>Machine learning is a set of algorithms that learn rules from data and make predictions based on them. Deep learning is a field of machine learning that is based on artificial neural networks, allowing for the learning of more complex data patterns.<\/p>\n<h3>1.1 Basic Concepts of Machine Learning<\/h3>\n<p>Machine learning can be broadly classified into three types:<\/p>\n<ul>\n<li><strong>Supervised Learning<\/strong>: Learning using a dataset with known answers.<\/li>\n<li><strong>Unsupervised Learning<\/strong>: Finding patterns in data without known answers.<\/li>\n<li><strong>Reinforcement Learning<\/strong>: Learning to maximize rewards based on the results of actions.<\/li>\n<\/ul>\n<h3>1.2 Advances in Deep Learning<\/h3>\n<p>Deep learning has shown outstanding performance especially in image recognition, natural language processing, and is increasingly playing a significant role in the finance sector. It is applied in stock price prediction, risk assessment, automated trading systems, etc.<\/p>\n<h2>2. Basics of Algorithmic Trading<\/h2>\n<p>Algorithmic trading is a system that automatically executes trades based on pre-defined conditions. Such systems ensure consistent execution without emotional intervention.<\/p>\n<h3>2.1 Key Elements of Algorithmic Trading<\/h3>\n<ul>\n<li><strong>Signal Generation<\/strong>: Setting conditions to make buy or sell decisions.<\/li>\n<li><strong>Risk Management<\/strong>: Establishing strategies to minimize losses.<\/li>\n<li><strong>Order Execution<\/strong>: Executing trades in an automated manner.<\/li>\n<\/ul>\n<h2>3. \u03b5-Greedy Policy<\/h2>\n<p>The \u03b5-greedy policy is a method used in reinforcement learning, where actions are selected randomly with a certain probability to balance exploration and exploitation.<\/p>\n<h3>3.1 Concepts of Exploration and Exploitation<\/h3>\n<p>The concepts of exploration and exploitation in trading systems are very important. Exploration is the process of searching for new possibilities, while exploitation is the act of making optimal choices based on past experiences.<\/p>\n<h3>3.2 Application of the \u03b5-Greedy Policy<\/h3>\n<p>The \u03b5-greedy policy selects random actions with a specific probability \u03b5 (0 < \u03b5 < 1) and chooses the best action with the remaining (1 - \u03b5) probability. This means it provides an opportunity to discover better strategies through 'exploration' by trying new actions.<\/p>\n<h3>3.3 How to Adjust the \u03b5 Value<\/h3>\n<p>Instead of fixing the \u03b5 value, you can start with a high value at the beginning of learning and gradually decrease it. This allows for trying various actions initially and, over time, leveraging experiences to select optimal actions.<\/p>\n<h2>4. Implementing Algorithmic Trading Using the \u03b5-Greedy Policy<\/h2>\n<p>Now, let&#8217;s look at a basic implementation example of algorithmic trading based on the \u03b5-greedy policy.<\/p>\n<h3>4.1 Data Collection<\/h3>\n<p>The first step in a trading algorithm is to collect data. Various data can be collected, such as historical price data, trading volumes, and technical indicators.<\/p>\n<pre><code>import pandas as pd\n\n# Loading stock price data\ndata = pd.read_csv(\"stock_data.csv\")\n    <\/code><\/pre>\n<h3>4.2 Training the Model<\/h3>\n<p>You need to train a model using the data. You can also use deep learning models and set them to learn certain features.<\/p>\n<pre><code>from sklearn.model_selection import train_test_split\nfrom keras.models import Sequential\nfrom keras.layers import Dense\n\nX = data[['feature1', 'feature2']].values\ny = data['target'].values\n\n# Splitting training and test data\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)\n\n# Model configuration\nmodel = Sequential()\nmodel.add(Dense(64, activation='relu', input_dim=X_train.shape[1]))\nmodel.add(Dense(32, activation='relu'))\nmodel.add(Dense(1, activation='sigmoid'))\nmodel.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])\n\n# Training the model\nmodel.fit(X_train, y_train, epochs=10, batch_size=32)\n    <\/code><\/pre>\n<h3>4.3 Implementing the \u03b5-Greedy Policy<\/h3>\n<p>We will write code to make trading decisions using the \u03b5-greedy policy based on the trained model.<\/p>\n<pre><code>import random\n\nepsilon = 0.1  # Setting exploration probability\nactions = ['buy', 'sell']\n\ndef epsilon_greedy_action(state):\n    if random.random() < epsilon:  # Exploration\n        return random.choice(actions)\n    else:  # Exploitation\n        # Decide the best action through the model (e.g., 0 = sell, 1 = buy)\n        q_values = model.predict(state)\n        return actions[1] if q_values[0] > 0.5 else actions[0]\n\n# Simulation loop\nfor epoch in range(100):\n    state = get_current_market_state()\n    action = epsilon_greedy_action(state)\n    execute_trade(action)\n    update_model_and_memory(state, action)\n    if epoch % 10 == 0:\n        print(f\"Epoch {epoch}: Executed {action}\")\n    <\/code><\/pre>\n<h2>5. Performance Evaluation and Optimization<\/h2>\n<p>Without evaluating the performance of the algorithm, the utility of the model cannot be judged. This can be assessed through profit-loss ratios, Sharpe ratios, maximum drawdowns, etc.<\/p>\n<h3>5.1 Performance Metrics<\/h3>\n<p>Performance metrics include the following:<\/p>\n<ul>\n<li><strong>Profit-Loss Ratio<\/strong>: Evaluating profitability through the ratio of earnings to losses.<\/li>\n<li><strong>Sharpe Ratio<\/strong>: A metric that represents the return relative to risk.<\/li>\n<li><strong>Maximum Drawdown<\/strong>: The maximum loss amount during a specific period.<\/li>\n<\/ul>\n<h3>5.2 Model Optimization<\/h3>\n<p>If the model&#8217;s performance is not satisfactory, it can be optimized through various methods such as tuning hyperparameters and data preprocessing techniques.<\/p>\n<h2>Conclusion<\/h2>\n<p>The \u03b5-greedy policy is an effective way to balance exploration and exploitation in algorithmic trading, allowing for the formulation of more sophisticated strategies through machine learning and deep learning. This course presented basic concepts of trading algorithms and practical examples utilizing the \u03b5-greedy policy. We hope this assists you in building automated trading systems.<\/p>\n<h2>References<\/h2>\n<p>Here are additional resources and links for further reference:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.oreilly.com\/library\/view\/machine-learning-for\/9781492037655\/\">Book: &#8220;Machine Learning for Asset Managers&#8221;<\/a><\/li>\n<li><a href=\"https:\/\/www.oreilly.com\/library\/view\/deep-learning-for\/9781492035583\/\">Book: &#8220;Deep Learning for Finance&#8221;<\/a><\/li>\n<li><a href=\"https:\/\/www.coursera.org\/specializations\/deep-learning\">Deep Learning Specialization on Coursera<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Algorithmic trading is becoming increasingly emphasized in the current financial markets. In particular, automated trading systems using machine learning and deep learning are establishing themselves as even more powerful methodologies. In this course, we will explain the basics of machine learning and deep learning algorithmic trading, as well as the trade-off between exploration and exploitation &hellip; <a href=\"https:\/\/atmokpo.com\/w\/35913\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy&#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-35913","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, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \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\/35913\/\" \/>\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, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Algorithmic trading is becoming increasingly emphasized in the current financial markets. In particular, automated trading systems using machine learning and deep learning are establishing themselves as even more powerful methodologies. In this course, we will explain the basics of machine learning and deep learning algorithmic trading, as well as the trade-off between exploration and exploitation &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/35913\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:43:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:10:21+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy\",\"datePublished\":\"2024-11-01T09:43:53+00:00\",\"dateModified\":\"2024-11-01T11:10:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/\"},\"wordCount\":684,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/\",\"url\":\"https:\/\/atmokpo.com\/w\/35913\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:43:53+00:00\",\"dateModified\":\"2024-11-01T11:10:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/35913\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/35913\/#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, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy\"}]},{\"@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, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \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\/35913\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Algorithmic trading is becoming increasingly emphasized in the current financial markets. In particular, automated trading systems using machine learning and deep learning are establishing themselves as even more powerful methodologies. In this course, we will explain the basics of machine learning and deep learning algorithmic trading, as well as the trade-off between exploration and exploitation &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy\"","og_url":"https:\/\/atmokpo.com\/w\/35913\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:43:53+00:00","article_modified_time":"2024-11-01T11:10:21+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/35913\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/35913\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy","datePublished":"2024-11-01T09:43:53+00:00","dateModified":"2024-11-01T11:10:21+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/35913\/"},"wordCount":684,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/35913\/","url":"https:\/\/atmokpo.com\/w\/35913\/","name":"Machine Learning and Deep Learning Algorithm Trading, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:43:53+00:00","dateModified":"2024-11-01T11:10:21+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/35913\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/35913\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/35913\/#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, Exploration vs. Exploitation Trade-off \u03b5-greedy Policy"}]},{"@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\/35913","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=35913"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35913\/revisions"}],"predecessor-version":[{"id":35914,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/35913\/revisions\/35914"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=35913"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=35913"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=35913"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}