{"id":578018,"date":"2024-02-28T16:37:59","date_gmt":"2024-02-28T21:37:59","guid":{"rendered":"https:\/\/www.therobotreport.com\/?p=578018"},"modified":"2024-02-28T16:37:59","modified_gmt":"2024-02-28T21:37:59","slug":"mit-ai-model-promises-to-simplify-path-planning-in-warehouses","status":"publish","type":"post","link":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/","title":{"rendered":"MIT AI model promises to simplify path planning in warehouses"},"content":{"rendered":"<div id=\"attachment_578022\" style=\"width: 780px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-578022\" class=\"size-full wp-image-578022\" src=\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg\" alt=\"MIT researchers have applied AI for traffic mitigation to managing multiple warehouse robots.\" width=\"770\" height=\"480\" srcset=\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg 770w, https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809-300x187.jpeg 300w, https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809-150x94.jpeg 150w, https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809-768x479.jpeg 768w, https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809-368x229.jpeg 368w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/><p id=\"caption-attachment-578022\" class=\"wp-caption-text\">MIT researchers have applied AI for traffic mitigation to managing multiple warehouse robots. Source: Adobe Stock<\/p><\/div>\n<p>Researchers at the Massachusetts Institute of Technology have applied ideas from the use of artificial intelligence to mitigate traffic congestion to tackle robotic path planning in warehouses. The team has developed a deep-learning model that can decongest robots nearly four times faster than typical strong random search methods, according to MIT.&nbsp;<\/p>\n<p>A typical <a href=\"https:\/\/mobilerobotguide.com\/category\/logistics-warehouse-transportation\/\" target=\"_blank\" rel=\"noopener\">automated warehouse<\/a> could have hundreds of <a href=\"https:\/\/www.therobotreport.com\/category\/robots-platforms\/amrs\/\" target=\"_blank\" rel=\"noopener\">mobile robots<\/a> running to and from their destinations and trying to avoid crashing into one another. Planning all of these simultaneous movements is a difficult problem. It&#8217;s so complex that even the best path-finding algorithms can struggle to keep up, said the <a href=\"https:\/\/www.therobotreport.com\/tag\/MIT\/\" target=\"_blank\" rel=\"noopener\">university<\/a> researchers.<\/p>\n<p>The scientists built a deep-learning model that encodes warehouse information, including its robots, planned paths, tasks, and obstacles. The model then uses this information to predict the best areas of the warehouse to decongest and improve overall efficiency.&nbsp;<\/p>\n<p>\u201cWe devised a new neural network architecture that is actually suitable for real-time operations at the scale and complexity of these warehouses,\u201d <a href=\"https:\/\/news.mit.edu\/2024\/new-ai-model-could-streamline-operations-robotic-warehouse-0227\" target=\"_blank\" rel=\"noopener\">stated<\/a> Cathy Wu, the Gilbert W. Winslow Career Development Assistant Professor in Civil and Environmental Engineering (CEE) at MIT. &#8220;It can encode hundreds of robots in terms of their trajectories, origins, destinations, and relationships with other robots, and it can do this in an efficient manner that reuses computation across groups of robots.&#8221;<\/p>\n<p>Wu is also a member of the Laboratory for Information and Decision Systems (LIDS) and the Institute for Data, Systems, and Society (IDSS).<\/p>\n<h2>A divide-and-conquer approach to path planning<\/h2>\n<p>The MIT team&#8217;s technique for the deep-learning model was to divide the warehouse robots into groups. These smaller groups can be decongested faster with traditional algorithms used to coordinate robots than the entire group as a whole.&nbsp;<\/p>\n<p>This is different from traditional search-based algorithms, which avoid crashes by keeping one robot on its course and replanning the trajectory for the other. These algorithms have an increasingly difficult time coordinating everything as more robots are added.&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">\u201cBecause the warehouse is operating online, the robots are replanned about every 100 milliseconds,&#8221; said Wu. &#8220;That means that every second, a robot is replanned 10 times. So these operations need to be very fast.&#8221;<\/span><\/p>\n<p>To keep up with these operations, the MIT researchers used machine learning to focus the replanning on the most actionable areas of congestion. Here, the researchers saw the most room for improvement when it came to total travel time of robots. This is why they decided to tackle smaller groups of robots at the same time.&nbsp;<\/p>\n<p>For example, in a warehouse with 800 robots, the network might cut the warehouse floor into smaller groups that contain 40 robots each. Next, it predicts which of these groups has to most potential to improve the overall solution if a search-based solver were used to coordinate the trajectories of robots in that group.&nbsp;<\/p>\n<p>Once it finds the most promising robot group using a neural network, the system decongests it with a search-based solver. After this, it moves on to the next most promising group.<\/p>\n<hr \/>\r\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-568305\" src=\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/01\/RSE24_728x90_RegOpen_Vs1.jpg\" alt=\"SITE AD for the 2024 Robotics Summit registration.\" width=\"728\" height=\"90\" \/><a href=\"https:\/\/www.roboticssummit.com\/\">Learn from Agility Robotics, Amazon, Disney, Teradyne and many more.<\/a><\/p>\r\n\r\n\r\n<hr \/>\n<h2>How MIT picked the best robots to start with<\/h2>\n<p>The MIT team said its neural network can reason about groups of robots efficiently because it captures complicated relationships that exist between individual robots. For example, it can see that even though one robot may be far away from another initially, their paths could still cross at some point during their trips.&nbsp;<\/p>\n<p>Another advantage the system has is that it streamlines computation by encoding constraints only once, rather than repeating the process for each subproblem. This means that in a warehouse with 800 robots, decongesting 40 robots requires holding the other 760 as constraints.&nbsp;<\/p>\n<p>Other approaches require reasoning about all 800 robots once per group in each iteration. Instead, the MIT system only requires reasoning about the 800 robots once across all groups in iteration.&nbsp;<\/p>\n<p>The team tested this technique in several simulated environments, including some set up like warehouses, some with random obstacles, and even maze-like settings that emulate building interiors. <span style=\"font-weight: 400;\">By identifying more effective groups to decongest, the learning-based approach decongests the warehouse up to four times faster than strong, non-learning-based approaches, said MIT.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Even when the researchers factored in the additional computational overhead of running the neural network, its approach still solved the problem 3.5 times faster.&nbsp;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">In the future, Wu said she wants to derive simple, rule-based insights from their neural model, since the decisions of the neural network can be opaque and difficult to interpret. S<\/span><span style=\"font-weight: 400;\">impler, rule-based methods could also be easier to implement and maintain in actual robotic warehouse settings, she said.<\/span><\/p>\n<p>\u201cThis approach is based on a novel architecture where convolution and attention mechanisms interact effectively and efficiently,\u201d commented Andrea Lodi, the Andrew H. and Ann R. Tisch Professor at Cornell Tech, and who was not involved with this research. &#8220;Impressively, this leads to being able to take into account the spatiotemporal component of the constructed paths without the need of problem-specific feature engineering.&#8221;<\/p>\n<p>&#8220;The results are outstanding: Not only is it possible to improve on state-of-the-art large neighborhood search methods in terms of quality of the solution and speed, but the model [also] generalizes to unseen cases wonderfully,&#8221; she said.<\/p>\n<p>In addition to streamlining warehouse operations, the MIT researchers said their approach could be used in other complex planning tasks, like computer chip design or pipe routing in large buildings.&nbsp;<\/p>\n<p><span style=\"font-weight: 400;\">Wu, senior author of a <a href=\"https:\/\/openreview.net\/pdf?id=2NpAw2QJBY\" target=\"_blank\" rel=\"noopener\">paper<\/a> on this technique, was joined by lead author Zhongxia Yan, a graduate student in electrical engineering and computer science. The work will be presented at the International Conference on Learning Representations. <\/span><span style=\"font-weight: 400;\">Their work was supported by Amazon and the MIT Amazon Science Hub.<\/span><\/p>\n<div class=\"su-youtube su-u-responsive-media-yes\"><iframe loading=\"lazy\" width=\"600\" height=\"400\" src=\"https:\/\/www.youtube.com\/embed\/5mrvWVJm3AU?\" frameborder=\"0\" allowfullscreen allow=\"autoplay; encrypted-media; picture-in-picture\" title=\"\"><\/iframe><\/div>\n","protected":false},"excerpt":{"rendered":"<p>MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical strong random search methods.\u00a0<\/p>\n","protected":false},"author":90,"featured_media":578022,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rbr50_analysis":"","rbr50_state":"","rbr50_country":"","rbr50_description":"","rbr50_numemps":"","rbr50_text_taxonomy_radio":null,"rbr50_text_taxonomy_select":null,"rbr50_url":"","rbr50_yearfounded":"","_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","ngg_post_thumbnail":0,"footnotes":""},"categories":[1753,1382,2013,1401,1293],"tags":[979,2124],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MIT AI model promises to simplify path planning in warehouses - The Robot Report<\/title>\n<meta name=\"description\" content=\"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MIT AI model promises to simplify path planning in warehouses - The Robot Report\" \/>\n<meta property=\"og:description\" content=\"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/\" \/>\n<meta property=\"og:site_name\" content=\"The Robot Report\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-28T21:37:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"770\" \/>\n\t<meta property=\"og:image:height\" content=\"480\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"The Robot Report Staff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@therobotreport\" \/>\n<meta name=\"twitter:site\" content=\"@therobotreport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"The Robot Report Staff\" \/>\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:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/\",\"url\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/\",\"name\":\"MIT AI model promises to simplify path planning in warehouses - The Robot Report\",\"isPartOf\":{\"@id\":\"https:\/\/www.therobotreport.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg\",\"datePublished\":\"2024-02-28T21:37:59+00:00\",\"dateModified\":\"2024-02-28T21:37:59+00:00\",\"author\":{\"@id\":\"https:\/\/www.therobotreport.com\/#\/schema\/person\/4eea693bdcb411b82c1eb5d4fa1bc43e\"},\"description\":\"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0\",\"breadcrumb\":{\"@id\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage\",\"url\":\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg\",\"contentUrl\":\"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg\",\"width\":770,\"height\":480,\"caption\":\"MIT researchers have applied AI for traffic mitigation to managing multiple warehouse robots. Source: Adobe Stock\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.therobotreport.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MIT AI model promises to simplify path planning in warehouses\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.therobotreport.com\/#website\",\"url\":\"https:\/\/www.therobotreport.com\/\",\"name\":\"The Robot Report\",\"description\":\"Robotics news, research and analysis\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.therobotreport.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.therobotreport.com\/#\/schema\/person\/4eea693bdcb411b82c1eb5d4fa1bc43e\",\"name\":\"The Robot Report Staff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.therobotreport.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d060fc8cbe3fca6afc132da010a1f801?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d060fc8cbe3fca6afc132da010a1f801?s=96&d=mm&r=g\",\"caption\":\"The Robot Report Staff\"},\"url\":\"https:\/\/www.therobotreport.com\/author\/trr-editor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MIT AI model promises to simplify path planning in warehouses - The Robot Report","description":"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0","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:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/","og_locale":"en_US","og_type":"article","og_title":"MIT AI model promises to simplify path planning in warehouses - The Robot Report","og_description":"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0","og_url":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/","og_site_name":"The Robot Report","article_published_time":"2024-02-28T21:37:59+00:00","og_image":[{"width":770,"height":480,"url":"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg","type":"image\/jpeg"}],"author":"The Robot Report Staff","twitter_card":"summary_large_image","twitter_creator":"@therobotreport","twitter_site":"@therobotreport","twitter_misc":{"Written by":"The Robot Report Staff","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/","url":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/","name":"MIT AI model promises to simplify path planning in warehouses - The Robot Report","isPartOf":{"@id":"https:\/\/www.therobotreport.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage"},"image":{"@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage"},"thumbnailUrl":"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg","datePublished":"2024-02-28T21:37:59+00:00","dateModified":"2024-02-28T21:37:59+00:00","author":{"@id":"https:\/\/www.therobotreport.com\/#\/schema\/person\/4eea693bdcb411b82c1eb5d4fa1bc43e"},"description":"MIT AI experts have applied a deep-learning model that can decongest robots nearly four times faster than typical random search methods.\u00a0","breadcrumb":{"@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#primaryimage","url":"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg","contentUrl":"https:\/\/www.therobotreport.com\/wp-content\/uploads\/2024\/02\/AdobeStock_742768809.jpeg","width":770,"height":480,"caption":"MIT researchers have applied AI for traffic mitigation to managing multiple warehouse robots. Source: Adobe Stock"},{"@type":"BreadcrumbList","@id":"https:\/\/www.therobotreport.com\/mit-ai-model-promises-to-simplify-path-planning-in-warehouses\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.therobotreport.com\/"},{"@type":"ListItem","position":2,"name":"MIT AI model promises to simplify path planning in warehouses"}]},{"@type":"WebSite","@id":"https:\/\/www.therobotreport.com\/#website","url":"https:\/\/www.therobotreport.com\/","name":"The Robot Report","description":"Robotics news, research and analysis","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.therobotreport.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.therobotreport.com\/#\/schema\/person\/4eea693bdcb411b82c1eb5d4fa1bc43e","name":"The Robot Report Staff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.therobotreport.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d060fc8cbe3fca6afc132da010a1f801?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d060fc8cbe3fca6afc132da010a1f801?s=96&d=mm&r=g","caption":"The Robot Report Staff"},"url":"https:\/\/www.therobotreport.com\/author\/trr-editor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/posts\/578018"}],"collection":[{"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/users\/90"}],"replies":[{"embeddable":true,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/comments?post=578018"}],"version-history":[{"count":0,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/posts\/578018\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/media\/578022"}],"wp:attachment":[{"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/media?parent=578018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/categories?post=578018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.therobotreport.com\/wp-json\/wp\/v2\/tags?post=578018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}