{"id":20348,"date":"2018-05-08T08:30:39","date_gmt":"2018-05-08T15:30:39","guid":{"rendered":"https:\/\/insidebigdata.com\/?p=20348"},"modified":"2018-05-09T08:43:25","modified_gmt":"2018-05-09T15:43:25","slug":"surface-reconstruction-based-neural-networks","status":"publish","type":"post","link":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/","title":{"rendered":"Surface Reconstruction Based on Neural Networks"},"content":{"rendered":"<p><em><img decoding=\"async\" loading=\"lazy\" class=\"alignright size-full wp-image-20349\" src=\"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover.png\" alt=\"\" width=\"250\" height=\"355\" srcset=\"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover.png 250w, https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover-211x300.png 211w, https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover-106x150.png 106w\" sizes=\"(max-width: 250px) 100vw, 250px\" \/>\u201cMachine learning is the science of getting computers to act without being explicitly programmed. In the past decade, machine learning has given us self-driving cars, practical speech recognition, effective web search, and a vastly improved understanding of the human genome.\u201d<\/em> Andrew Ng<em>.<\/em><\/p>\n<p>Surface reconstruction is an important trend in 3D scanning. The problem is to recreate surfaces from a given point cloud within the shortest possible time and with a given quality criteria. There is a set of different approaches for solving this problem, which includes Self-Organized Maps, Bayesian reconstruction and Poisson reconstruction.<\/p>\n<p>The aim of the research is to find the most suitable method based on Machine Learning unsupervised learning techniques for reconstruction of interior and exterior 3D scans of original objects. The self-organizing map\u00a0type of the artificial neural network was chosen due to its ability to produce good results without restrictions on point cloud size and points\u2019 order. It can generate meshes from a small number of point samples in an unorganized point cloud.<\/p>\n<p>The purpose of this article highlight a paper, &#8220;<a href=\"https:\/\/insidebigdata.com\/white-paper\/surface-reconstruction-based-neural-networks\/\" target=\"_blank\" rel=\"noopener\">Surface Reconstruction Based on Neural Networks<\/a>&#8221; that analyzes and compares results obtained with the usage of two self-organizing map types \u2013 Surface Growing Neural Gas (sGNG) and Growing Cell Structures (GCS) reconstruction \u2013 for reconstruction of a 3D mesh from point cloud. In addition, the sGNG extension to multithreading is presented and compared to the original approach.<\/p>\n<p>sGNG is a reconstruction algorithm based on GNG with a large number of improvements. Our implementation is based on Fast Growing Neural Gas (FGNG), which is written in C++, works fast and has a convenient API. The algorithm has been modified and the results are post-processed for removing unexpected holes. The most important changes are: the process of activity update, triangle creation and triangle flip, additional triangle creation and modified edge split. Activity of the best matching vertex allows to detect regions where vertex density is lower than the density of the input points. Updating activity of vertex has been modified. Instead of incrementing activity values for each vertex in the list on every iteration, it has been decided to store iteration number of last activity for each vertex. The main idea is to compare current iteration number with vertex last activity iteration number, and remove it if it doesn\u2019t satisfy condition. This changes the complexity of the algorithm updating vertices activity from O(N) to O(1). Complexity of vertex removal stays the same. Triangle creation, triangle flip and additional triangle creation have been added to the algorithm to improve the smoothness of the surface and prevent the occurrence of non-2-manifold edges. Edge splitting has been modified by performing the split in the middle of the longest edge instead of the middle of the edge connected with its most active neighbor.<\/p>\n<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-20354\" src=\"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_fig.png\" alt=\"\" width=\"591\" height=\"249\" srcset=\"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_fig.png 591w, https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_fig-300x126.png 300w, https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_fig-150x63.png 150w\" sizes=\"(max-width: 591px) 100vw, 591px\" \/><\/p>\n<p>Reconstruction algorithm based on GCS is modified by replacing edge split and vertex removal with vertex split and edge collapse, as the last ones work better in 3D space. Also, adjusting vertex position by linear combination with a sample and Laplacian tangential neighbor smoothing improve the quality of the mesh and prevent the surface from stacking to a local minimum or folding over.<\/p>\n<p>The parallel computation of the nearest neighbor was added to both algorithms, to improve the speed for the huge number of vertices.<\/p>\n<p>The main bottleneck of the neural networks of this type is the Nearest Neighbor Search that is performed at each iteration. Various approaches were introduced to perform this operation faster.<\/p>\n<p>The basic approach is to iterate over all nodes at the current neural network state and compute their distances to the input sample. This algorithm introduces O(N) complexity at each iteration. Although the algorithm could be boosted by CUDA, the data transfers required for node deletion and mesh improvement techniques (triangle flip, edge flip, etc.) at each iteration make the CUDA-based NN Search even slower than the CPU-based one.<\/p>\n<p>Another NN Search approach, R-Tree, introduces better complexity O(log N). The use of this sparse tree data structure provides significant improvement in NN Search according to the tests. The disadvantage of R-Tree is the complex structure, making the task of implementation on the GPU challenging. Although the GPU-based R-Tree approaches exist, they outperform the CPU-based one only at data sets larger than 1,000,000 points.<\/p>\n<p>The main issue of the approaches mentioned above is their dependency on the number of nodes. This problem was partially solved in Growing Uniform Grid Structure. The NN Search query complexity is close to constant with the O(N) complexity in the worst case. Although it requires O(N) for growth, the number of growth phases decreases significantly during the increase of nodes. Due to the fact that the NN search query examines very small amount of points, addition of the CUDA improvements is useless.<\/p>\n<p>The other way to improve performance of the reconstruction process is to use Message Passing Interface technology. We combined multithreading and MPI, to check out how it can improve reconstruction speed on large point clouds.<\/p>\n<p>The research demonstrates that Self-Organizing Maps are suitable for 3D Surface Reconstruction. The testing shows that GCS approach provides comparable results only on meshes that are not difficult, while the sGNG approach reconstructs meshes with a huge number of small details very well. The sGNG approach is advisable to use for reconstruction in most cases when the vertex normals are unimportant. The GCS showed inferior results but it could be useful for reconstruction of meshes with the correct vertex normals for further processing. PCL Poisson algorithm works faster, but the quality of reconstruction is unsuitable, so it could be used only for previewing of the target mesh.<\/p>\n<p>To get more information on these algorithms performance and check visual examples, <a href=\"https:\/\/insidebigdata.com\/white-paper\/surface-reconstruction-based-neural-networks\/\" target=\"_blank\" rel=\"noopener\">download<\/a> the full document in PDF from the insideBIGDATA White Paper Library, courtesy of <a href=\"https:\/\/www.amcbridge.com\/\" target=\"_blank\" rel=\"noopener\">AMC Bridge<\/a>.<\/p>\n<p>&nbsp;<\/p>\n<p><em>Sign up for the free insideBIGDATA\u00a0<a href=\"http:\/\/insidebigdata.com\/newsletter\/\" target=\"_blank\" rel=\"noopener\">newsletter<\/a>.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Surface reconstruction is an important trend in 3D scanning. The problem is to recreate surfaces from a given point cloud within the shortest possible time and with a given quality criteria. There is a set of different approaches for solving this problem, which includes Self-Organized Maps, Bayesian reconstruction and Poisson reconstruction. The purpose of this article highlight a paper, &#8220;Surface Reconstruction Based on Neural Networks&#8221; that analyzes and compares results obtained with the usage of two self-organizing map types.<\/p>\n","protected":false},"author":10513,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"footnotes":""},"categories":[526,87,180,67,56,84,1],"tags":[277,652,96],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Surface Reconstruction Based on Neural Networks - insideBIGDATA<\/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:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Surface Reconstruction Based on Neural Networks - insideBIGDATA\" \/>\n<meta property=\"og:description\" content=\"Surface reconstruction is an important trend in 3D scanning. The problem is to recreate surfaces from a given point cloud within the shortest possible time and with a given quality criteria. There is a set of different approaches for solving this problem, which includes Self-Organized Maps, Bayesian reconstruction and Poisson reconstruction. The purpose of this article highlight a paper, &quot;Surface Reconstruction Based on Neural Networks&quot; that analyzes and compares results obtained with the usage of two self-organizing map types.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/\" \/>\n<meta property=\"og:site_name\" content=\"insideBIGDATA\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/insidebigdata\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-08T15:30:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-05-09T15:43:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover.png\" \/>\n<meta name=\"author\" content=\"Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@insideBigData\" \/>\n<meta name=\"twitter:site\" content=\"@insideBigData\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/\",\"url\":\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/\",\"name\":\"Surface Reconstruction Based on Neural Networks - insideBIGDATA\",\"isPartOf\":{\"@id\":\"https:\/\/insidebigdata.com\/#website\"},\"datePublished\":\"2018-05-08T15:30:39+00:00\",\"dateModified\":\"2018-05-09T15:43:25+00:00\",\"author\":{\"@id\":\"https:\/\/insidebigdata.com\/#\/schema\/person\/2949e412c144601cdbcc803bd234e1b9\"},\"breadcrumb\":{\"@id\":\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/insidebigdata.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Surface Reconstruction Based on Neural Networks\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/insidebigdata.com\/#website\",\"url\":\"https:\/\/insidebigdata.com\/\",\"name\":\"insideBIGDATA\",\"description\":\"Your Source for AI, Data Science, Deep Learning &amp; Machine Learning Strategies\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/insidebigdata.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/insidebigdata.com\/#\/schema\/person\/2949e412c144601cdbcc803bd234e1b9\",\"name\":\"Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/insidebigdata.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e137ce7ea40e38bd4d25bb7860cfe3e4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e137ce7ea40e38bd4d25bb7860cfe3e4?s=96&d=mm&r=g\",\"caption\":\"Editorial Team\"},\"sameAs\":[\"http:\/\/www.insidebigdata.com\"],\"url\":\"https:\/\/insidebigdata.com\/author\/editorial\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Surface Reconstruction Based on Neural Networks - insideBIGDATA","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:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/","og_locale":"en_US","og_type":"article","og_title":"Surface Reconstruction Based on Neural Networks - insideBIGDATA","og_description":"Surface reconstruction is an important trend in 3D scanning. The problem is to recreate surfaces from a given point cloud within the shortest possible time and with a given quality criteria. There is a set of different approaches for solving this problem, which includes Self-Organized Maps, Bayesian reconstruction and Poisson reconstruction. The purpose of this article highlight a paper, \"Surface Reconstruction Based on Neural Networks\" that analyzes and compares results obtained with the usage of two self-organizing map types.","og_url":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/","og_site_name":"insideBIGDATA","article_publisher":"http:\/\/www.facebook.com\/insidebigdata","article_published_time":"2018-05-08T15:30:39+00:00","article_modified_time":"2018-05-09T15:43:25+00:00","og_image":[{"url":"https:\/\/insidebigdata.com\/wp-content\/uploads\/2018\/05\/AMCBridge_whitepaper_cover.png"}],"author":"Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@insideBigData","twitter_site":"@insideBigData","twitter_misc":{"Written by":"Editorial Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/","url":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/","name":"Surface Reconstruction Based on Neural Networks - insideBIGDATA","isPartOf":{"@id":"https:\/\/insidebigdata.com\/#website"},"datePublished":"2018-05-08T15:30:39+00:00","dateModified":"2018-05-09T15:43:25+00:00","author":{"@id":"https:\/\/insidebigdata.com\/#\/schema\/person\/2949e412c144601cdbcc803bd234e1b9"},"breadcrumb":{"@id":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/insidebigdata.com\/2018\/05\/08\/surface-reconstruction-based-neural-networks\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/insidebigdata.com\/"},{"@type":"ListItem","position":2,"name":"Surface Reconstruction Based on Neural Networks"}]},{"@type":"WebSite","@id":"https:\/\/insidebigdata.com\/#website","url":"https:\/\/insidebigdata.com\/","name":"insideBIGDATA","description":"Your Source for AI, Data Science, Deep Learning &amp; Machine Learning Strategies","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/insidebigdata.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/insidebigdata.com\/#\/schema\/person\/2949e412c144601cdbcc803bd234e1b9","name":"Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/insidebigdata.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e137ce7ea40e38bd4d25bb7860cfe3e4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e137ce7ea40e38bd4d25bb7860cfe3e4?s=96&d=mm&r=g","caption":"Editorial Team"},"sameAs":["http:\/\/www.insidebigdata.com"],"url":"https:\/\/insidebigdata.com\/author\/editorial\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p9eA3j-5ic","jetpack-related-posts":[{"id":31665,"url":"https:\/\/insidebigdata.com\/2023\/02\/20\/research-highlights-mit-develops-first-generative-model-for-anomaly-detection-that-combines-both-reconstruction-based-and-prediction-based-models\/","url_meta":{"origin":20348,"position":0},"title":"Research Highlights: MIT Develops First Generative Model for Anomaly Detection that Combines both Reconstruction-based and Prediction-based Models","date":"February 20, 2023","format":false,"excerpt":"Kalyan Veeramachaneni and his team at the MIT Data-to-AI (DAI) Lab have developed the first generative model, the AutoEncoder with Regression (AER) for time series anomaly detection, that combines both reconstruction-based and prediction-based models. They\u2019ve been building it for three years\u2014AER has been learning and extracting intelligence for signals and\u2026","rel":"","context":"In &quot;AI Deep Learning&quot;","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":21082,"url":"https:\/\/insidebigdata.com\/2018\/09\/13\/best-arxiv-org-ai-machine-learning-deep-learning-august-2018\/","url_meta":{"origin":20348,"position":1},"title":"Best of arXiv.org for AI, Machine Learning, and Deep Learning \u2013 August 2018","date":"September 13, 2018","format":false,"excerpt":"In this recurring monthly feature, we will filter all the recent research papers appearing in the arXiv.org preprint server for subjects relating to AI, machine learning and deep learning \u2013 from disciplines including statistics, mathematics and computer science \u2013 and provide you with a useful \u201cbest of\u201d list for the\u2026","rel":"","context":"In &quot;AI Deep Learning&quot;","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/insidebigdata.com\/wp-content\/uploads\/2013\/12\/arxiv.jpg?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":17865,"url":"https:\/\/insidebigdata.com\/2017\/05\/22\/differentiating-between-ai-machine-learning-and-deep-learning\/","url_meta":{"origin":20348,"position":2},"title":"Differentiating between AI, Machine Learning and Deep Learning","date":"May 22, 2017","format":false,"excerpt":"With all the quickly evolving jargon in the industry today, it\u2019s important to be able to differentiate between AI, machine learning and deep learning. This article is part of a special insideHPC report that explores trends in machine learning and deep learning.","rel":"","context":"In &quot;Featured&quot;","img":{"alt_text":"AI","src":"https:\/\/i0.wp.com\/insidebigdata.com\/wp-content\/uploads\/2017\/05\/Screen-Shot-2017-05-12-at-7.23.52-AM.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":31552,"url":"https:\/\/insidebigdata.com\/2023\/02\/03\/anomaly-detection-its-real-life-uses-and-the-latest-advances\/","url_meta":{"origin":20348,"position":3},"title":"Anomaly Detection: Its Real-Life Uses and the Latest Advances","date":"February 3, 2023","format":false,"excerpt":"In this contributed article, Al Gharakhanian, Machine Learning Development Director, Cognityze, takes a look at anomaly detection in terms of real-life use cases, addressing critical factors, along with the relationship with machine learning and artificial neural networks.","rel":"","context":"In &quot;AI Deep Learning&quot;","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":14252,"url":"https:\/\/insidebigdata.com\/2015\/12\/27\/nvidia-gpus-power-facebooks-new-deep-learning-machine\/","url_meta":{"origin":20348,"position":4},"title":"NVIDIA GPUs Power Facebook\u2019s New Deep Learning Machine","date":"December 27, 2015","format":false,"excerpt":"NVIDIA announced that Facebook will power its next-generation computing system with the NVIDIA\u00ae Tesla\u00ae Accelerated Computing Platform, enabling it to drive a broad range of machine learning applications. While training complex deep neural networks to conduct machine learning can take days or weeks on even the fastest computers, the Tesla\u2026","rel":"","context":"In &quot;Big Data Hardware&quot;","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":28903,"url":"https:\/\/insidebigdata.com\/2022\/04\/09\/research-highlights-deep-neural-networks-and-tabular-data-a-survey\/","url_meta":{"origin":20348,"position":5},"title":"Research Highlights: Deep Neural Networks and Tabular Data: A Survey","date":"April 9, 2022","format":false,"excerpt":"In this regular column, we take a look at highlights for important research topics of the day for big data, data science, machine learning, AI and deep learning. It\u2019s important to keep connected with the research arm of the field in order to see where we\u2019re headed. In this edition,\u2026","rel":"","context":"In &quot;AI Deep Learning&quot;","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/insidebigdata.com\/wp-content\/uploads\/2022\/04\/Research_highlights_2.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/posts\/20348"}],"collection":[{"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/users\/10513"}],"replies":[{"embeddable":true,"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/comments?post=20348"}],"version-history":[{"count":0,"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/posts\/20348\/revisions"}],"wp:attachment":[{"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/media?parent=20348"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/categories?post=20348"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/insidebigdata.com\/wp-json\/wp\/v2\/tags?post=20348"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}