{"id":37845,"date":"2024-11-01T10:00:55","date_gmt":"2024-11-01T10:00:55","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37845"},"modified":"2024-11-01T11:09:18","modified_gmt":"2024-11-01T11:09:18","slug":"automated-trading-using-deep-learning-and-machine-learning-hyperparameter-tuning-method-for-improving-the-performance-of-deep-learning-models","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37845\/","title":{"rendered":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models."},"content":{"rendered":"<p><body><\/p>\n<p>In this course, we will explore the process of building an automated trading system for Bitcoin using deep learning and machine learning. In particular, we will explain in detail the importance of hyperparameter tuning for maximizing performance and the methods to achieve this. We will provide an introduction to the data and machine learning models we will use, along with practical code examples of hyperparameter tuning techniques.<\/p>\n<h2>1. Overview of the Bitcoin Automated Trading System<\/h2>\n<p>An automated trading system is an algorithm used to trade assets such as stocks and cryptocurrencies. These systems make decisions through data analysis, pattern recognition, and predictive modeling. Because Bitcoin is particularly volatile, machine learning and deep learning models can effectively automate trading.<\/p>\n<h2>2. Importance of Hyperparameter Tuning<\/h2>\n<p>Hyperparameters are parameters that must be set during the training process of machine learning models. These include learning rate, batch size, regularization coefficient, and more, and the model&#8217;s performance can vary significantly based on these values. Finding the appropriate hyperparameters is one of the most critical parts of improving a model.<\/p>\n<h2>3. Hyperparameter Tuning Techniques<\/h2>\n<p>There are several methods for hyperparameter tuning. Here, we will introduce two representative methods: Grid Search and Random Search.<\/p>\n<h3>3.1 Grid Search<\/h3>\n<p>Grid Search is a method that searches all combinations of predefined hyperparameter values to find the optimal combination. This method is straightforward but can be computationally expensive.<\/p>\n<pre><code>from sklearn.model_selection import GridSearchCV\nfrom sklearn.ensemble import RandomForestClassifier\n\n# Hyperparameter grid\nparam_grid = {\n    'n_estimators': [10, 50, 100],\n    'max_features': ['auto', 'sqrt', 'log2'],\n    'max_depth': [None, 10, 20, 30],\n}\n\ngrid_search = GridSearchCV(estimator=RandomForestClassifier(), param_grid=param_grid, cv=3)\ngrid_search.fit(X_train, y_train)\nbest_params = grid_search.best_params_\n<\/code><\/pre>\n<h3>3.2 Random Search<\/h3>\n<p>Random Search is a method that selects random combinations from the hyperparameter space to evaluate performance. It can find the optimal combination faster than Grid Search, but there is no theoretical guarantee of finding the appropriate combinations.<\/p>\n<pre><code>from sklearn.model_selection import RandomizedSearchCV\nfrom scipy.stats import randint\n\n# Hyperparameter distribution\nparam_dist = {\n    'n_estimators': randint(10, 200),\n    'max_features': ['auto', 'sqrt', 'log2'],\n    'max_depth': [None] + list(range(10, 31)),\n}\n\nrandom_search = RandomizedSearchCV(estimator=RandomForestClassifier(), param_distributions=param_dist, n_iter=100, cv=3)\nrandom_search.fit(X_train, y_train)\nbest_params = random_search.best_params_\n<\/code><\/pre>\n<h2>4. Building the Bitcoin Automated Trading Model<\/h2>\n<p>This time, we will collect Bitcoin price data and build a deep learning model for automated trading based on this data, along with an example of hyperparameter tuning.<\/p>\n<h3>4.1 Data Collection<\/h3>\n<p>Bitcoin price data can be collected through various data service providers via APIs. For example, data can be obtained through the Binance API.<\/p>\n<pre><code>import pandas as pd\nimport requests\n\ndef get_bitcoin_data():\n    url = 'https:\/\/api.binance.com\/api\/v3\/klines?symbol=BTCUSDT&amp;interval=1d&amp;limit=100'\n    response = requests.get(url)\n    data = response.json()\n    df = pd.DataFrame(data, columns=['Open time', 'Open', 'High', 'Low', 'Close', 'Volume', 'Close time', 'Quote asset volume', 'Number of trades', 'Taker buy base asset volume', 'Taker buy quote asset volume', 'Ignore'])\n    df['Close'] = df['Close'].astype(float)\n    df['Open time'] = pd.to_datetime(df['Open time'], unit='ms')\n    return df[['Open time', 'Close']]\n\nbitcoin_data = get_bitcoin_data()\n<\/code><\/pre>\n<h3>4.2 Data Preprocessing<\/h3>\n<p>Preprocessing is required for the collected data. This includes handling missing values, scaling, and splitting the data into training and testing sets.<\/p>\n<pre><code>from sklearn.preprocessing import MinMaxScaler\nfrom sklearn.model_selection import train_test_split\n\n# Data preprocessing\nscaler = MinMaxScaler()\nbitcoin_data['Close'] = scaler.fit_transform(bitcoin_data['Close'].values.reshape(-1, 1))\n\nX = bitcoin_data['Close'].shift(1).dropna().values.reshape(-1, 1)\ny = bitcoin_data['Close'].iloc[1:].values\n\nX_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n<\/code><\/pre>\n<h3>4.3 Model Building<\/h3>\n<p>We will use an LSTM (Long Short-Term Memory) deep learning model to build a Bitcoin price prediction model.<\/p>\n<pre><code>from keras.models import Sequential\nfrom keras.layers import LSTM, Dense, Dropout\n\nmodel = Sequential()\nmodel.add(LSTM(units=50, return_sequences=True, input_shape=(1, 1)))\nmodel.add(Dropout(0.2))\nmodel.add(LSTM(units=50))\nmodel.add(Dropout(0.2))\nmodel.add(Dense(units=1))\n\nmodel.compile(optimizer='adam', loss='mean_squared_error')\n<\/code><\/pre>\n<h3>4.4 Model Training<\/h3>\n<p>Hyperparameter tuning is necessary to train the model. The following is an example of adjusting the learning rate and batch size.<\/p>\n<pre><code>from keras.callbacks import EarlyStopping\n\nearly_stopping = EarlyStopping(monitor='loss', patience=3)\n\nmodel.fit(X_train.reshape((X_train.shape[0], 1, 1)), y_train, epochs=100, batch_size=1, callbacks=[early_stopping])\n<\/code><\/pre>\n<h3>4.5 Prediction and Evaluation<\/h3>\n<p>We perform predictions on the test data using the trained model and evaluate them.<\/p>\n<pre><code>import numpy as np\n\npredicted_prices = model.predict(X_test.reshape((X_test.shape[0], 1, 1)))\npredicted_prices = scaler.inverse_transform(predicted_prices)\n\n# Model evaluation\nfrom sklearn.metrics import mean_squared_error\n\nmse = mean_squared_error(y_test, predicted_prices)\nprint('Mean Squared Error:', mse)\n<\/code><\/pre>\n<h2>5. Conclusion<\/h2>\n<p>In this article, we have explored the process of building a Bitcoin automated trading system using deep learning and machine learning, detailing the importance of hyperparameter tuning and the methods to achieve it. By tuning hyperparameters, we can enhance the model&#8217;s performance, significantly increasing the efficiency of the Bitcoin automated trading system.<\/p>\n<h3>6. Additional Resources<\/h3>\n<p>For more information and resources on hyperparameter tuning, please refer to the following links:<\/p>\n<ul>\n<li><a href=\"https:\/\/scikit-learn.org\/stable\/modules\/grid_search.html\">Grid Search Document<\/a><\/li>\n<li><a href=\"https:\/\/scikit-learn.org\/stable\/modules\/grid_search.html#randomized-parameter-optimization\">Random Search Document<\/a><\/li>\n<li><a href=\"https:\/\/keras.io\/guides\/sequential_model\/\">Keras Sequential Model Guide<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this course, we will explore the process of building an automated trading system for Bitcoin using deep learning and machine learning. In particular, we will explain in detail the importance of hyperparameter tuning for maximizing performance and the methods to achieve this. We will provide an introduction to the data and machine learning models &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37845\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.&#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-37845","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>Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \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\/37845\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In this course, we will explore the process of building an automated trading system for Bitcoin using deep learning and machine learning. In particular, we will explain in detail the importance of hyperparameter tuning for maximizing performance and the methods to achieve this. We will provide an introduction to the data and machine learning models &hellip; \ub354 \ubcf4\uae30 &quot;Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37845\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T10:00:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:18+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\/37845\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37845\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.\",\"datePublished\":\"2024-11-01T10:00:55+00:00\",\"dateModified\":\"2024-11-01T11:09:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37845\/\"},\"wordCount\":505,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37845\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37845\/\",\"name\":\"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T10:00:55+00:00\",\"dateModified\":\"2024-11-01T11:09:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37845\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37845\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37845\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.\"}]},{\"@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":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \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\/37845\/","og_locale":"ko_KR","og_type":"article","og_title":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In this course, we will explore the process of building an automated trading system for Bitcoin using deep learning and machine learning. In particular, we will explain in detail the importance of hyperparameter tuning for maximizing performance and the methods to achieve this. We will provide an introduction to the data and machine learning models &hellip; \ub354 \ubcf4\uae30 \"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.\"","og_url":"https:\/\/atmokpo.com\/w\/37845\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T10:00:55+00:00","article_modified_time":"2024-11-01T11:09:18+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\/37845\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37845\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models.","datePublished":"2024-11-01T10:00:55+00:00","dateModified":"2024-11-01T11:09:18+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37845\/"},"wordCount":505,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37845\/","url":"https:\/\/atmokpo.com\/w\/37845\/","name":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models. - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T10:00:55+00:00","dateModified":"2024-11-01T11:09:18+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37845\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37845\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37845\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Automated Trading Using Deep Learning and Machine Learning, Hyperparameter Tuning Method for Improving the Performance of Deep Learning Models."}]},{"@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\/37845","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=37845"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37845\/revisions"}],"predecessor-version":[{"id":37846,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37845\/revisions\/37846"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37845"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37845"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37845"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}