{"id":36027,"date":"2024-11-01T09:45:02","date_gmt":"2024-11-01T09:45:02","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36027"},"modified":"2024-11-01T11:09:26","modified_gmt":"2024-11-01T11:09:26","slug":"machine-learning-and-deep-learning-algorithm-trading-hyperparameter-tuning","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36027\/","title":{"rendered":"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning"},"content":{"rendered":"<p><body><\/p>\n<p>In recent years, algorithmic trading in financial markets has been innovating through machine learning and deep learning technologies. Automated trading systems no longer rely solely on simple algorithms or rules but can learn patterns from data to make more sophisticated decisions. This article will delve into designing trading strategies using machine learning and deep learning, as well as optimizing performance through hyperparameter tuning.<\/p>\n<h2>1. Basics of Machine Learning and Deep Learning<\/h2>\n<h3>1.1 Concept of Machine Learning<\/h3>\n<p>Machine learning is a field of artificial intelligence (AI) that develops algorithms to learn patterns from data and make predictions. The main goal of machine learning models is to predict future outcomes based on given data. In financial markets, machine learning is used in various applications such as price prediction, risk management, and portfolio optimization.<\/p>\n<h3>1.2 Concept of Deep Learning<\/h3>\n<p>Deep learning is a subset of machine learning that automatically learns high-dimensional patterns from data based on artificial neural networks. Specifically, deep learning shows strong performance in areas such as image recognition, natural language processing (NLP), and time series data analysis. In the financial market, it is useful for identifying price patterns using the time series data of price changes.<\/p>\n<h2>2. Necessity of Algorithmic Trading<\/h2>\n<p>Traditional trading methods mainly rely on experience and intuition. However, these methods often have many subjective elements, making it difficult to guarantee consistent results. In contrast, algorithmic trading is determined by clear rules and data-driven models, allowing for more consistent performance. Additionally, algorithmic trading eliminates human emotional factors, enabling more efficient trade execution.<\/p>\n<h2>3. Trading Strategies Using Machine Learning and Deep Learning<\/h2>\n<h3>3.1 Data Collection and Preprocessing<\/h3>\n<p>As mentioned earlier, the performance of machine learning and deep learning models depends on the input data. Therefore, it is essential to select reliable data sources and undergo appropriate preprocessing.<\/p>\n<pre><code>\nimport pandas as pd\n\n# Load price data\ndata = pd.read_csv('market_data.csv')\n\n# Handle missing values\ndata.fillna(method='bfill', inplace=True)\n\n# Normalize data\ndata['price'] = (data['price'] - data['price'].mean()) \/ data['price'].std()\n    <\/code><\/pre>\n<h3>3.2 Model Selection<\/h3>\n<p>To establish a trading strategy, it is necessary to select an appropriate machine learning or deep learning model. There are various options, ranging from basic regression models or decision trees to deep learning models such as RNN (Recurrent Neural Networks) or LSTM (Long Short-Term Memory).<\/p>\n<h3>3.3 Model Training<\/h3>\n<p>In the model training stage, the data should be divided into training and validation sets, and the model needs to be trained. Hyperparameter optimization is very important at this stage.<\/p>\n<h2>4. Understanding Hyperparameters<\/h2>\n<p>Hyperparameters are variables that need to be set in advance during the model training process. Proper tuning of hyperparameters can significantly affect the model&#8217;s performance. For example, this includes the number of layers in a neural network, learning rate, and batch size.<\/p>\n<h3>4.1 Key Hyperparameters<\/h3>\n<ul>\n<li><strong>Learning Rate<\/strong>: Determines the speed at which the model&#8217;s weights are updated. If too large, it can diverge, and if too small, the learning speed slows down.<\/li>\n<li><strong>Batch Size<\/strong>: Refers to the number of samples processed at once during mini-batch learning. A larger batch size increases learning speed but also increases memory usage.<\/li>\n<li><strong>Epochs<\/strong>: Determines how many times the entire dataset will be repeated during training. Too many can lead to overfitting.<\/li>\n<li><strong>Neural Network Architecture<\/strong>: Must define structural elements like the number of layers in the network and the number of nodes in each layer.<\/li>\n<\/ul>\n<h2>5. Hyperparameter Tuning Techniques<\/h2>\n<h3>5.1 Grid Search<\/h3>\n<p>Grid search is a method where the values of a few hyperparameters are predefined, and all combinations are tried out. While this method is simple to implement, it can be time-consuming as the number of cases increases.<\/p>\n<h3>5.2 Random Search<\/h3>\n<p>Random search is a method that randomly selects values from the hyperparameter space for evaluation. This method allows for faster and more efficient optimization compared to grid search.<\/p>\n<h3>5.3 Bayesian Optimization<\/h3>\n<p>Bayesian optimization is an advanced technique that utilizes previous hyperparameter adjustment results to predict the next proposed hyperparameter values. This method is efficient and can find optimal hyperparameters with fewer evaluations.<\/p>\n<h3>5.4 Cross Validation<\/h3>\n<p>To accurately assess model performance, cross-validation methods can be used. The data is divided into several parts, and the model is trained and evaluated on each part. This increases the generalization performance of the model.<\/p>\n<h2>6. Hyperparameter Tuning Example<\/h2>\n<p>The example below demonstrates the process of tuning hyperparameters for a random forest model using grid search.<\/p>\n<pre><code>\nfrom sklearn.ensemble import RandomForestRegressor\nfrom sklearn.model_selection import GridSearchCV\n\n# Define the model and parameters\nmodel = RandomForestRegressor()\nparam_grid = {\n    'n_estimators': [100, 200, 300],\n    'max_depth': [None, 10, 20],\n    'min_samples_split': [2, 5, 10]\n}\n\n# Grid search\ngrid_search = GridSearchCV(estimator=model, param_grid=param_grid, cv=5)\ngrid_search.fit(X_train, y_train)\n\n# Output optimal parameters\nprint(grid_search.best_params_)\n    <\/code><\/pre>\n<h2>7. Result Analysis and Performance Metrics<\/h2>\n<p>There are various performance metrics available to evaluate model performance. In stock trading, the following metrics are mainly used:<\/p>\n<ul>\n<li><strong>Accuracy<\/strong>: The ratio of correct predictions to total predictions.<\/li>\n<li><strong>F1 Score<\/strong>: The harmonic mean of precision and recall, useful for imbalanced datasets.<\/li>\n<li><strong>Return<\/strong>: The rate of return on an investment.<\/li>\n<li><strong>Sharpe Ratio<\/strong>: A metric to assess return relative to risk.<\/li>\n<\/ul>\n<h3>7.1 Calculating the Sharpe Ratio<\/h3>\n<p>The Sharpe ratio can be calculated as follows:<\/p>\n<pre><code>\nimport numpy as np\n\ndef sharpe_ratio(returns, risk_free_rate=0.01):\n    excess_returns = returns - risk_free_rate\n    return np.mean(excess_returns) \/ np.std(excess_returns)\n\nreturns = np.random.normal(0.01, 0.02, 100)  # Example returns\nprint(\"Sharpe Ratio:\", sharpe_ratio(returns))\n    <\/code><\/pre>\n<h2>8. Conclusion<\/h2>\n<p>Algorithmic trading using machine learning and deep learning is a powerful way to harness the power of data. However, it is important to note that a model&#8217;s performance heavily relies on data and hyperparameter tuning. Therefore, thorough data preprocessing and hyperparameter tuning processes are necessary to find the optimal model.<\/p>\n<p>In the future, new techniques for algorithmic trading will emerge in line with advancements in machine learning and deep learning. To keep pace with these changes, continuous research and study are necessary.<\/p>\n<h2>References<\/h2>\n<ul>\n<li>Natural Language Processing Techniques and Applications in Financial Markets<\/li>\n<li>Data Analysis Techniques Using Machine Learning<\/li>\n<li>Deep Learning-Based Financial Market Prediction Models<\/li>\n<li>Bayesian Optimization for Hyperparameter Tuning<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, algorithmic trading in financial markets has been innovating through machine learning and deep learning technologies. Automated trading systems no longer rely solely on simple algorithms or rules but can learn patterns from data to make more sophisticated decisions. This article will delve into designing trading strategies using machine learning and deep learning, &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36027\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning&#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-36027","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, Hyperparameter Tuning - \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\/36027\/\" \/>\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, Hyperparameter Tuning - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, algorithmic trading in financial markets has been innovating through machine learning and deep learning technologies. Automated trading systems no longer rely solely on simple algorithms or rules but can learn patterns from data to make more sophisticated decisions. This article will delve into designing trading strategies using machine learning and deep learning, &hellip; \ub354 \ubcf4\uae30 &quot;Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36027\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:45:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:09:26+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\/36027\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36027\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning\",\"datePublished\":\"2024-11-01T09:45:02+00:00\",\"dateModified\":\"2024-11-01T11:09:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36027\/\"},\"wordCount\":872,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning Automated trading\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36027\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36027\/\",\"name\":\"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:45:02+00:00\",\"dateModified\":\"2024-11-01T11:09:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36027\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36027\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36027\/#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, Hyperparameter Tuning\"}]},{\"@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, Hyperparameter Tuning - \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\/36027\/","og_locale":"ko_KR","og_type":"article","og_title":"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, algorithmic trading in financial markets has been innovating through machine learning and deep learning technologies. Automated trading systems no longer rely solely on simple algorithms or rules but can learn patterns from data to make more sophisticated decisions. This article will delve into designing trading strategies using machine learning and deep learning, &hellip; \ub354 \ubcf4\uae30 \"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning\"","og_url":"https:\/\/atmokpo.com\/w\/36027\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:45:02+00:00","article_modified_time":"2024-11-01T11:09:26+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\/36027\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36027\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning","datePublished":"2024-11-01T09:45:02+00:00","dateModified":"2024-11-01T11:09:26+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36027\/"},"wordCount":872,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning Automated trading"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36027\/","url":"https:\/\/atmokpo.com\/w\/36027\/","name":"Machine Learning and Deep Learning Algorithm Trading, Hyperparameter Tuning - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:45:02+00:00","dateModified":"2024-11-01T11:09:26+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36027\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36027\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36027\/#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, Hyperparameter Tuning"}]},{"@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\/36027","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=36027"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36027\/revisions"}],"predecessor-version":[{"id":36028,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36027\/revisions\/36028"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36027"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}