<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Forum - Recent Threads</title><link>https://community.element14.com/technologies/ai-machine-learning/f/forum</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><lastBuildDate>Tue, 03 Mar 2026 22:26:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://community.element14.com/technologies/ai-machine-learning/f/forum" /><item><title>I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/56723?ContentTypeID=0</link><pubDate>Fri, 27 Feb 2026 15:13:50 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:20e0f687-e2c2-4cd5-bcc6-ef2f7346c31c</guid><dc:creator>Aniket_kumar_raj</dc:creator><slash:comments>9</slash:comments><comments>https://community.element14.com/thread/56723?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Do you know where was i For a few Days....&lt;/p&gt;
&lt;p&gt;I was Grounded home with no internet so i made something that i was not able to find on internet... but&amp;nbsp; first lets start from beginning to explain everything .look at this thing&lt;/p&gt;
&lt;p&gt;[View:https://www.youtube.com/shorts/TsgXpnmGRMQ:640:360]&lt;/p&gt;
&lt;p&gt;I saw this short in my Short feed and tried to create it but the one thing required was a lightest hand detection model, but none ai could make it and i wasn&amp;#39;t able to find any on internet , then i took everything in my own hands and made this code that detects fingers smoothly, but dont move your face in box, only hands are allowed in the green box&lt;/p&gt;
&lt;p&gt;here is the code that i made roasting my 1.3 megapixel camera&amp;nbsp;of 17 years old laptop that i use for daily study..&lt;/p&gt;
&lt;p&gt;to use this you must have these liblaries in python ---&amp;gt;&lt;/p&gt;
&lt;p&gt;cv2 , numpy , math&lt;/p&gt;
&lt;p&gt;I did add comments so its easy to understand and variables are good too&lt;/p&gt;
&lt;p&gt;[embed:dc8ab71f-3b98-42d9-b0f6-e21e02a0f8e2:f87614d8-e258-43da-8251-f2f6a9309a8e:type=python&amp;text=import%20cv2%0Aimport%20numpy%20as%20np%0Aimport%20math%0A%0A%0A%0A%23%20This%20function%20does%20literally%20nothing%2C%20like%20my%20productivity%20on%20a%20Friday%0Adef%20hole_in_the_space_time_continuum%28x%29%3A%20pass%0A%0A%0A%0A%23%20Waking%20up%20the%201.3MP%20beast%0Aeye_of_sauron%20%3D%20cv2.VideoCapture%280%29%0Acv2.namedWindow%28%22The_Lag_Machine%22%29%0A%0A%0A%0A%23%20Trackbars%20for%20when%20the%20lighting%20in%20your%20room%20changes%20by%201%25%0Acv2.createTrackbar%28%22Magic_Slider%22%2C%20%22The_Lag_Machine%22%2C%20203%2C%20255%2C%20hole_in_the_space_time_continuum%29%0Acv2.createTrackbar%28%22Jitter_Control%22%2C%20%22The_Lag_Machine%22%2C%2015%2C%2050%2C%20hole_in_the_space_time_continuum%29%0A%0Awhile%20True%3A%0A%23%20Trying%20to%20grab%20a%20frame%20before%20the%20laptop%20overheats%0Ais_it_alive%2C%20blurry_mess%20%3D%20eye_of_sauron.read%28%29%0Aif%20not%20is_it_alive%3A%20break%0A%0A%0A%0A%23%201.%20Flip%20it%20because%20reality%20is%20disappointing%0Ablurry_mess%20%3D%20cv2.flip%28blurry_mess%2C%200%29%0Athe_forbidden_zone%20%3D%20blurry_mess%5B50%3A450%2C%2050%3A450%5D%0Acv2.rectangle%28blurry_mess%2C%20%2850%2C%2050%29%2C%20%28450%2C%20450%29%2C%20%280%2C%20255%2C%200%29%2C%202%29%0A%0A%0A%0A%23%202.%20Add%20filters%20to%20hide%20the%202009%20sensor%20quality%0Adepression_mode%20%3D%20cv2.cvtColor%28the_forbidden_zone%2C%20cv2.COLOR_BGR2GRAY%29%0Asmudge_tool%20%3D%20cv2.GaussianBlur%28depression_mode%2C%20%2815%2C%2015%29%2C%200%29%0A%0A%0A%0Acurrent_mood%20%3D%20cv2.getTrackbarPos%28%22Magic_Slider%22%2C%20%22The_Lag_Machine%22%29%0A_%2C%20crunchy_pixels%20%3D%20cv2.threshold%28smudge_tool%2C%20current_mood%2C%20255%2C%20cv2.THRESH_BINARY_INV%29%0A%0A%23%20Trying%20to%20glue%20the%20pixels%20back%20together%0Aduct_tape%20%3D%20np.ones%28%285%2C5%29%2C%20np.uint8%29%0Acrunchy_pixels%20%3D%20cv2.morphologyEx%28crunchy_pixels%2C%20cv2.MORPH_CLOSE%2C%20duct_tape%29%0A%0Awiggly_lines%2C%20_%20%3D%20cv2.findContours%28crunchy_pixels%2C%20cv2.RETR_EXTERNAL%2C%20cv2.CHAIN_APPROX_SIMPLE%29%0A%0Achicken_nuggets%20%3D%20%5B%5D%0Alies_on_screen%20%3D%20%22Looking%20for%20signs%20of%20life...%22%0A%0Aif%20wiggly_lines%3A%0Athe_big_blob%20%3D%20max%28wiggly_lines%2C%20key%3Dcv2.contourArea%29%0Aif%20cv2.contourArea%28the_big_blob%29%20%3E%202500%3A%0A%0A%0A%0A%23%20Finding%20the%20center%20of%20the%20mess%0Asecret_map%20%3D%20cv2.distanceTransform%28crunchy_pixels%2C%20cv2.DIST_L2%2C%205%29%0A_%2C%20max_stress%2C%20_%2C%20the_pixel_god%20%3D%20cv2.minMaxLoc%28secret_map%29%0Aholy_x%2C%20holy_y%20%3D%20int%28the_pixel_god%5B0%5D%29%2C%20int%28the_pixel_god%5B1%5D%29%0A%0A%23%20Checking%20if%20it%27s%20a%20hand%20or%20just%20a%20ghost%0Aprotective_shell%20%3D%20cv2.convexHull%28the_big_blob%29%0Ahow_chunky%20%3D%20float%28cv2.contourArea%28the_big_blob%29%29%20%2F%20cv2.contourArea%28protective_shell%29%0A%0Aif%20how_chunky%20%3C%200.88%3A%0Achaos_factor%20%3D%20cv2.getTrackbarPos%28%22Jitter_Control%22%2C%20%22The_Lag_Machine%22%29%0Amath_points%20%3D%20the_big_blob.reshape%28-1%2C%202%29%0Apoint_count%20%3D%20len%28math_points%29%0A%0Afor%20i%20in%20range%280%2C%20point_count%2C%202%29%3A%0A%23%20Geometry%20is%20harder%20than%20my%20life%20choices%0Aa%2C%20b%2C%20c%20%3D%20math_points%5B%28i-chaos_factor%29%25point_count%5D%2C%20math_points%5Bi%5D%2C%20math_points%5B%28i%2Bchaos_factor%29%25point_count%5D%0Avector_1%2C%20vector_2%20%3D%20a%20-%20b%2C%20c%20-%20b%0Alen_1%2C%20len_2%20%3D%20np.linalg.norm%28vector_1%29%2C%20np.linalg.norm%28vector_2%29%0A%0Aif%20len_1%20%3E%200%20and%20len_2%20%3E%200%3A%0Aconfusing_angle%20%3D%20math.degrees%28math.acos%28np.clip%28np.dot%28vector_1%2Cvector_2%29%2F%28len_1%2Alen_2%29%2C%20-1.0%2C%201.0%29%29%29%0A%0A%23%20Is%20it%20a%20finger%3F%20Or%20just%20a%20glitch%20in%20the%20Matrix%3F%0Adist_to_shell%20%3D%20abs%28cv2.pointPolygonTest%28protective_shell%2C%20%28float%28b%5B0%5D%29%2C%20float%28b%5B1%5D%29%29%2C%20True%29%29%0Adist_to_ego%20%3D%20np.linalg.norm%28b%20-%20np.array%28%5Bholy_x%2C%20holy_y%5D%29%29%0A%0Aif%2010%20%3C%20confusing_angle%20%3C%2045%20and%20b%5B1%5D%20%3C%20%28holy_y%20%2B%2050%29%20and%20dist_to_shell%20%3C%208%3A%0Aif%20dist_to_ego%20%3E%20%28max_stress%20%2A%201.4%29%3A%0Aif%20not%20any%28np.linalg.norm%28b%20-%20np.array%28prev%29%29%20%3C%2030%20for%20prev%20in%20chicken_nuggets%29%3A%0Achicken_nuggets.append%28tuple%28b%29%29%0A%0Alies_on_screen%20%3D%20f%22FINGERS%20OR%20NUGGETS%3A%20%7Blen%28chicken_nuggets%29%7D%22%0Aelse%3A%0Alies_on_screen%20%3D%20%22ANGRY%20FIST%22%0A%0A%23%20Draw%20green%20circles%20so%20we%20feel%20like%20hackers%0Acv2.circle%28the_forbidden_zone%2C%20%28holy_x%2C%20holy_y%29%2C%20int%28max_stress%29%2C%20%280%2C%20255%2C%200%29%2C%201%29%0Afor%20nugget%20in%20chicken_nuggets%3A%0Acv2.circle%28the_forbidden_zone%2C%20nugget%2C%2010%2C%20%28255%2C%200%2C%200%29%2C%20-1%29%0Acv2.line%28the_forbidden_zone%2C%20%28holy_x%2C%20holy_y%29%2C%20nugget%2C%20%280%2C%20255%2C%20255%29%2C%201%29%0A%0Acv2.putText%28blurry_mess%2C%20lies_on_screen%2C%20%2860%2C%2040%29%2C%201%2C%202%2C%20%280%2C%20255%2C%200%29%2C%202%29%0Acv2.imshow%28%22The_Lag_Machine%22%2C%20blurry_mess%29%0Acv2.imshow%28%22What_The_Computer_Sees%22%2C%20crunchy_pixels%29%0A%0A%0A%0A%0A%0A%23%20Press%20%27q%27%20to%20escape%20this%20nightmare%0Aif%20cv2.waitKey%281%29%20%26%200xFF%20%3D%3D%20ord%28%27q%27%29%3A%20break%0A%0Aeye_of_sauron.release%28%29%0Acv2.destroyAllWindows%28%29]&lt;/p&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234162?ContentTypeID=1</link><pubDate>Tue, 03 Mar 2026 22:26:01 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5cbb5cda-2555-4abf-8daa-09050c0ef5f4</guid><dc:creator>Christopher678</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234162?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Great post&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/56726?ContentTypeID=0</link><pubDate>Sat, 28 Feb 2026 16:39:09 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5cf3e418-2fb6-48eb-a06c-52171264acd6</guid><dc:creator>stanto</dc:creator><slash:comments>8</slash:comments><comments>https://community.element14.com/thread/56726?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;There&amp;#39;s not a loud majority talking about this tech&amp;#39; at the moment, but it&amp;#39;s somewhat concerning. Using stem cells groups are &amp;quot;finally&amp;quot; combining electronics and organics, notably stem cells. Doing everything from running Doom (of course) to running &lt;a title="LLMs on/with them" href="https://www.google.com/search?q=llm+running+on+organoid&amp;amp;udm=14" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;LLMs on/with them&lt;/a&gt;. This should be raising all sorts of questions.&lt;/p&gt;
&lt;p&gt;Gabriel Torch does a great job at summarising legit research papers on this topic.&lt;/p&gt;
&lt;p&gt;[View:https://www.youtube.com/watch?v=uQEg3pg7w9E:640:360]&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://www.sciencedirect.com/science/article/pii/S0896627322010339" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://www.sciencedirect.com/science/article/pii/S0896627322010339&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://www.nytimes.com/2019/08/29/science/organoids-brain-alysson-muotri.html" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://www.nytimes.com/2019/08/29/science/organoids-brain-alysson-muotri.html&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://www.newscientist.com/article/2517389-human-brain-cells-on-a-chip-learned-to-play-doom-in-a-week/" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://www.newscientist.com/article/2517389-human-brain-cells-on-a-chip-learned-to-play-doom-in-a-week/&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And a few more scary videos on organoids that are worth watching:&lt;/p&gt;
&lt;p&gt;[View:https://www.youtube.com/watch?v=9QXDdjp3OqA:640:360]&lt;/p&gt;
&lt;p&gt;[View:https://www.youtube.com/watch?v=bzMjTiY7o7g:640:360]&lt;/p&gt;
&lt;p&gt;You can also, apparently, play with them yourself:&lt;br /&gt;[View:https://www.youtube.com/watch?v=vg2Y82rYnHM:640:360]&lt;/p&gt;
&lt;p&gt;Anyone else welcoming our new stem-cell-organoid overlords?&lt;/p&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234133?ContentTypeID=1</link><pubDate>Sun, 01 Mar 2026 22:29:17 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:6fcb1128-0744-4618-86aa-d0fdd50de1b1</guid><dc:creator>stanto</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234133?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Gabriel Torch did a video where they covered that the organoids were &amp;#39;dying&amp;#39; because.. well they were starved of oxygen and nutrients, which is now a solved problem apparently.&lt;/p&gt;
[quote userid="220772" url="~/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/234112"]I&amp;#39;m not sure what the moral concern is[/quote]
&lt;p&gt;And then the question comes up about sentience, and running them in a &amp;#39;virtual environment&amp;#39; so that they &amp;#39;don&amp;#39;t get bored&amp;#39;.&lt;/p&gt;
&lt;div id="uw-ultrawidify-ultrawidify-global-ui-root-5360" class="uw-ultrawidify-container-root" style="border:0px;height:0px;top:0px;width:0px;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234132?ContentTypeID=1</link><pubDate>Sun, 01 Mar 2026 22:26:49 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:bab3ddde-e8be-4beb-83ab-9ee310aaaf77</guid><dc:creator>stanto</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234132?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>[quote userid="328965" url="~/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/234109"]Wow, this kind of caught me off guard.[/quote]
&lt;p&gt;Same. It&amp;#39;s really being kept &amp;#39;on the down low&amp;#39;.&lt;/p&gt;
&lt;div id="uw-ultrawidify-ultrawidify-global-ui-root-68069" class="uw-ultrawidify-container-root" style="border:0px;height:0px;top:0px;width:0px;"&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234131?ContentTypeID=1</link><pubDate>Sun, 01 Mar 2026 22:01:04 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:41508b5a-79df-4876-93c0-1796b25cb802</guid><dc:creator>kmikemoo</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234131?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Awesome.&amp;nbsp; Couple this with the blind trust of AI and we&amp;#39;ll be living a video game.&amp;nbsp; Or a movie.&amp;nbsp; Not excited.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234119?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 21:23:18 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:1aa10013-fef9-46af-b7d4-9b6af827772b</guid><dc:creator>robogary</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234119?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;&lt;img alt="image" style="max-height:209px;max-width:238px;" height="209" src="https://community.element14.com/resized-image/__size/476x418/__key/communityserver-discussions-components-files/225/pastedimage1772313776810v1.png" width="238"  /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234117?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 19:41:26 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:cf80cf7f-41f8-428c-bb94-6c8847f29b26</guid><dc:creator>DAB</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234117?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Very nice post.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234115?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 19:24:30 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:19502355-508c-4095-af88-dd148f58dd36</guid><dc:creator>DAB</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234115?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;This is a technology that could easily be miss used.&lt;/p&gt;
&lt;p&gt;I understand the interest, but this could lead to some very bad results.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234112?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 18:09:01 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:a0cd43f1-3c05-4a4a-9dab-5fe83a305c36</guid><dc:creator>bradfordmiller</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/234112?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m not sure what the moral concern is, one doesn&amp;#39;t need to use human brain cells. I had hoped to get into this area about a decade ago for robotics applications but we quickly figured out we didn&amp;#39;t have the staff needed to pursue. The main point is that biological brains are much lower power and require just a few layers of neurons to be quite competent, particularly in physical tasks (balance, locomotion, hand/eye coordination, etc.)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234111?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 18:02:47 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:1ffd225e-18b7-4d44-aa51-2bfeafb1db31</guid><dc:creator>beacon_dave</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234111?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Last week I was listening to a podcast from back in in 2022 when the brain cells were starting to get good at playing Pong.&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;em&gt;&amp;quot;Pong was a very basic video game developed in the 1970s, now Australian researchers have trained human brain cells in a dish to play the game, Dr Brett Kagan from Cortical Labs explains why.&amp;quot;&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;a href="https://www.bbc.co.uk/programmes/m001cxxv" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://www.bbc.co.uk/programmes/m001cxxv&lt;/a&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;em&gt;Lab-grown brain cells play video game Pong&lt;/em&gt;&lt;/p&gt;
&lt;p style="padding-left:30px;"&gt;&lt;a href="https://www.bbc.co.uk/news/science-environment-63195653" rel="noopener noreferrer nofollow" target="_blank" data-e14adj="t"&gt;https://www.bbc.co.uk/news/science-environment-63195653&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Looks like they got bored and moved onto Doom like everyone else.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Is the next leap of electronics brain organoids?</title><link>https://community.element14.com/thread/234109?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 16:51:43 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:bf6a3816-44dd-4aee-ac34-d8b750eb7d04</guid><dc:creator>dang74</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/234109?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56726/is-the-next-leap-of-electronics-brain-organoids/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Wow, this kind of caught me off guard.&amp;nbsp; I guess it creates a real grey area between man and machine and I suppose lab grown brains suddenly become a commodity.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234076?ContentTypeID=1</link><pubDate>Sat, 28 Feb 2026 01:17:55 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:cc9d0ae6-024f-486e-8534-9c86f2801599</guid><dc:creator>dang74</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234076?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>[quote userid="518254" url="~/members-area/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/234058"] It’s a safety feature. Without it, the &lt;code data-path-to-node="7,0" data-index-in-node="124"&gt;chicken_nuggets&lt;/code&gt; start manifesting in physical reality[/quote]
&lt;p&gt;&amp;#39;Manifested Reality&amp;#39; I think that was one of the original dipping sauces available at McDonald&amp;#39;s.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234072?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 23:05:32 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:045d82ec-0e21-40ab-ac01-6ac5849f2efc</guid><dc:creator>dougw</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234072?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Here are some fingers...&lt;/p&gt;
&lt;p&gt;&lt;img alt="image" style="height:142px;max-height:142px;max-width:142px;"  height="142" src="https://img.freepik.com/free-vector/hand-ok-signal-gesture-icon_18591-82605.jpg?semt=ais_user_personalization&amp;amp;w=740&amp;amp;q=80" width="141" /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234059?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 16:35:49 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:87ea5c66-7132-487f-8c2f-becf96ed5dcb</guid><dc:creator>Aniket_kumar_raj</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234059?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;i heard&amp;nbsp;90% of the internet is held together by &lt;code data-path-to-node="1,3,0" data-index-in-node="64"&gt;duct_tape&lt;/code&gt; and &lt;code data-path-to-node="1,3,0" data-index-in-node="78"&gt;hope_and_prayers&lt;/code&gt;. I&amp;rsquo;m just following industry standards.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234058?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 16:32:06 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:a8f03046-3a8d-4bf2-8d57-50f794d4abc1</guid><dc:creator>Aniket_kumar_raj</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/234058?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;The &lt;code data-path-to-node="7,0" data-index-in-node="5"&gt;duct_tape&lt;/code&gt; is there to keep the &lt;code data-path-to-node="7,0" data-index-in-node="36"&gt;hole_in_the_space_time_continuum&lt;/code&gt; from expanding. It&amp;rsquo;s a safety feature. Without it, the &lt;code data-path-to-node="7,0" data-index-in-node="124"&gt;chicken_nuggets&lt;/code&gt; start manifesting in physical reality, and my GPU can&amp;#39;t handle that kind of rendering.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234057?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 16:27:47 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:84da1f97-bf59-44f0-8885-83e8bf834eab</guid><dc:creator>dang74</dc:creator><slash:comments>2</slash:comments><comments>https://community.element14.com/thread/234057?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Indeed not to mention a variable called duct_tape.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234055?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 16:17:01 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:c58de382-fd83-4044-a431-bea8022e188b</guid><dc:creator>battlecoder</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/234055?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;OpenCV is such a fun framework to work with. Love your code and comments btw. Wish more people were this whimsical when they write code.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: I made a Lightweight Fingers Detection model That dosent uses any Training Data or any AI and is almost accurate</title><link>https://community.element14.com/thread/234049?ContentTypeID=1</link><pubDate>Fri, 27 Feb 2026 15:54:18 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:1cb82dcd-f5b5-44bf-8701-59e3a46070ea</guid><dc:creator>robogary</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/234049?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/56723/i-made-a-lightweight-fingers-detection-model-that-dosent-uses-any-training-data-or-any-ai-and-is-almost-accurate/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Nice. Your comments and variable names are hilarious !&amp;nbsp; You had too much fun&amp;nbsp; :-)&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Computer network design: Replacing the coffee-break napkin discussion.</title><link>https://community.element14.com/thread/55936?ContentTypeID=0</link><pubDate>Wed, 02 Jul 2025 22:08:27 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:7de0bec1-4903-4214-8d53-140d2ac67e02</guid><dc:creator>colporteur</dc:creator><slash:comments>4</slash:comments><comments>https://community.element14.com/thread/55936?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55936/computer-network-design-replacing-the-coffee-break-napkin-discussion/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;I am looking for input from members in the E14 community that have computer network experience. The block diagram is the drawing of a small farming business network.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:360px;max-width:640px;" alt=" " src="https://community.element14.com/resized-image/__size/1280x720/__key/communityserver-discussions-components-files/225/network_5F00_block_5F00_diagrem.png" /&gt;&lt;/p&gt;
&lt;p&gt;The network is one IP subnet spread across three physical locations. The subnet has about 50 IP consumed across the three areas. The edge router is in the office. Wireless point-to-point devices connect the seed-plant and residence to the office.&lt;/p&gt;
&lt;p&gt;Inside the seed-plant and residence are routers that route the programmable logic controller and home devices, respectively. This routers will remain. What is happening behind the seed-plant router is expanding.&lt;/p&gt;
&lt;p&gt;My plan is to replace the current edge router with a router capable of creating&amp;nbsp;multiple networks. Four&amp;nbsp;subnetworks to start: office, seed-plant, residence and wifi-guest-network that doesn&amp;#39;t exist today. These networks will be interconnected and have internet access. The new edge router will isolate the the wireless guest-network and provide internet access only. I hope to combine the VPN access into the router and eliminate the VPN appliance.&lt;/p&gt;
&lt;p&gt;One valuable resource I miss since retirement is coffee-break time with the team. It was not uncommon for someone to start a discussion on a napkin drawing. The napkin formed a centrepiece for group discussions.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;m looking for that napkin discussion with members from the E14 Community. I encourage you to ask questions and provide feedback. Even if you don&amp;rsquo;t have computer networking experience, please join the discussion. Answering your questions may flush out some ideas&amp;nbsp; I wasn&amp;rsquo;t thinking about.&lt;/p&gt;
&lt;p&gt;After retiring, I took on the role of break-fix for the company that owns this network. Now that the network is stable, and the company is proposing expansion, I feel it is time to implement the network plan I created five years ago.&lt;/p&gt;
&lt;p&gt;What are your thoughts?&lt;/p&gt;</description></item><item><title>RE: Computer network design: Replacing the coffee-break napkin discussion.</title><link>https://community.element14.com/thread/229442?ContentTypeID=1</link><pubDate>Thu, 03 Jul 2025 12:52:20 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:0d50c423-fc89-4fc3-9a94-f0f00d52d910</guid><dc:creator>bradfordmiller</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/229442?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55936/computer-network-design-replacing-the-coffee-break-napkin-discussion/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;One of the main advantages of a VLAN (and you can google for a more comprehensive list), is security, in that you might want seed plant data going to the owner&amp;#39;s home computer, but not to the TV (where who knows where it might get re-transmitted to). VLANs let you set up explicit rules for data sharing or isolation, and might replace most of what you are doing with the subordinate routers in your configuration simplifying (re)configuration. VLANs can generally (you&amp;#39;d have to check your specific router or switch) for either port-based or protocol based membership. I use port based so I can, for instance, make sure any data flowing from/to my MIL&amp;#39;s TV and smart appliances have no interaction with my office machines (which have often dealt with IP under NDA, etc. particularly during COVID). So with a relatively straightforward physical setup, you can then software configure multiple virtual networks (which can appear invisible to other virtual networks) and modify them as needs change.&lt;/p&gt;
&lt;p&gt;An advantage of smart switches (not just enabling VLANs or trunking), is remote management, e.g., if there&amp;#39;s an issue, I can use the web interface to the switch and quickly determine, e.g., if a particular device is using it&amp;#39;s port, blasting out too much data, etc. That saves time when debugging issues (they don&amp;#39;t come up that often, but just looking at blinky lights on the switch can be a problem when, in my case, I&amp;#39;ve got about 10 switches in various locations around the house, and that doesn&amp;#39;t always help with finding the root cause of congestion!). Many of those switches are small &amp;amp; dumb, but having a smart switch they connect to makes it much easier to get an overview of what&amp;#39;s going on in the network.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Computer network design: Replacing the coffee-break napkin discussion.</title><link>https://community.element14.com/thread/229435?ContentTypeID=1</link><pubDate>Thu, 03 Jul 2025 04:59:37 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:5658ffbd-74d8-4ea0-ae2e-f81a9536ae6b</guid><dc:creator>shabaz</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/229435?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55936/computer-network-design-replacing-the-coffee-break-napkin-discussion/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;Hi Sean,&lt;/p&gt;
&lt;p&gt;For a small deployment you can get away with a lot, so it&amp;#39;s not unusual to see &amp;#39;strange&amp;#39; things since they can occur over time as needs change. And that&amp;#39;s fine, if it&amp;#39;s working and can be managed, although complications may occur as the business grows and their needs change. If you were starting from scratch, you&amp;#39;d make the design more future-proof in terms of maintainability especially, if a more standard layout was followed.&lt;/p&gt;
&lt;p&gt;Generally, a typical design &amp;#39;pattern&amp;#39; would be to consider the seed plant, and the residence, as &amp;#39;small branches&amp;#39; of an org, and the office could be considered to be another branch or a HQ. Then, the normal design would be to have a router at each location, i.e. separate network at each site as I think you&amp;#39;re planning to do. You can get routers with built-in switch ports, or you could get a separate switch for the sites, and they would hang off the router, rather than the router hanging off switches on sites. And then you could also optionally have VLANs if desired too, that would be supported very easily by this typical design pattern, amd then you&amp;#39;ll find you could retire the current separate routers you&amp;#39;ve got at the two branches, since they could be replaced by VLAN functionality provided the switch supports it, i.e. one less piece of hardware to manage, since I can&amp;#39;t see what benefit the router is providing versus if it were replaced by ports on the switch configured for a different VLAN, and then that&amp;#39;s one less piece of equipment to configure/manage.&lt;/p&gt;
&lt;p&gt;Regarding manufacturers, such as the ones &lt;a href="https://community.element14.com/members/bradfordmiller"&gt;bradfordmiller&lt;/a&gt;&amp;nbsp;mentions, these are well-known manufacturers for equipment designed for business use, which (for many reasons) I&amp;#39;d trust, and Firewalla has a great team behind it (I&amp;#39;ve personally known a couple of the founders there). These might cost more than typical home routers, but I think still a reasonable cost. Some will have a few built-in switch ports, so you may still need to buy a switch per site too. Example of the type of router I&amp;#39;m thinking of: Cisco 900 or 1100 series perhaps. I don&amp;#39;t know the Firewalla portfolio of products in detail, but as mentioned, I expect it to be good too.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Computer network design: Replacing the coffee-break napkin discussion.</title><link>https://community.element14.com/thread/229433?ContentTypeID=1</link><pubDate>Thu, 03 Jul 2025 00:40:45 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:6a7cfee8-6f51-4911-92bb-77e28ecb4e90</guid><dc:creator>colporteur</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/229433?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55936/computer-network-design-replacing-the-coffee-break-napkin-discussion/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;The edge router will be a MikroTik&amp;nbsp;RB4011iGS+5HacQ2HnD-IN. It is currently an AX11000 gaming router. The price was right (free) and I was desperate in need of a performance solution. I was discouraged from using the MikroTik it in favour of more friendly options. I&amp;#39;m still not confident I have made the right choice. It has little in the way of hand holding to configure it. I am on the task of configuring openvpn, a configuration it supports.&lt;/p&gt;
&lt;p&gt;Only one of the switches supports VLANs. That is the unit in the office area. The network I took over in 2018 was a /8 subnet from an Apple router in the residence. It has morphed into what it is today. I&amp;#39;m on the cusp of making a big shift.&lt;/p&gt;
&lt;p&gt;The extra router in the house was my attempt at isolating the myriad of consumer electronics that taxes the resources of the edge router. The edge router originally was in the residence. The network flowed from their. The seedplant was a modem configured to network to the seedplant over an abandoned phone line through an outbuilding to the residence.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The router in the seedplant, with no input from me, was a vendors solutions to isolate the PLC motor controllers and sensors in the seedplant and add a management system to the seedplant.&lt;/p&gt;
&lt;p&gt;There is another network (well not really) a bunch of IP&amp;#39;s that are assigned to some poorly implemented development systems in the seedplant. At some point I will need to beat them into submission.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t see advantages to VLANs at this time. At times seedplant traffic needs to get to the residence. The owners wants to examine systems. Please correct me if VLAN holds something I am missing. I examined the option before looking at routing and turned left at routing instead of right to VLAN. Maybe VLAN is the future. It would require some hardware to implement.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Computer network design: Replacing the coffee-break napkin discussion.</title><link>https://community.element14.com/thread/229432?ContentTypeID=1</link><pubDate>Wed, 02 Jul 2025 22:37:06 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:c8bcf928-77fb-4d33-8e1a-86e859ea4ace</guid><dc:creator>bradfordmiller</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/229432?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55936/computer-network-design-replacing-the-coffee-break-napkin-discussion/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;So keep in mind I&amp;#39;m not a networking expert, but I do run a 1G/10G setup at home.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;d consider getting a &amp;quot;security router&amp;quot; for your edge router - they usually have builtin VPN support. I have a Cisco, but I&amp;#39;ve heard good things about Firewalla so that might be my next option when the Cisco stops getting updated (they tend to drop SOHO routers after about 5 years; I&amp;#39;m on my second one now. The good thing about the router I have is it&amp;#39;s &amp;quot;multi-wan&amp;quot; so I can have a backup connection to a second ISP if my primary drops, or I can configure splitting the bandwidth between them.)&lt;/p&gt;
&lt;p&gt;I&amp;#39;d also suggest using smart switches for the Seed Plant AND the residence as that will allow you to set up VLANs with different rules, e.g. making sure nothing from the seed plant gets to the residence, but both can be seen by the office (if that&amp;#39;s what you want). That will give you configuration flexibility for future topological changes, as it would just require rule changes on the smart routers.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Smart switches and routers can also connect to each other using trunking. For example I trunk multiple 1G ports between my 10G switch and my 1G switch to increase the bandwidth between them.&lt;/p&gt;
&lt;p&gt;Question: why do you have additional routers hanging off the seed plant and residence switches? Normally that connection would be reversed (router first, switch to expand the number of LAN ports on the router).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: what is the most underrated use case of AI and Machine Learning you've come across?</title><link>https://community.element14.com/thread/229416?ContentTypeID=1</link><pubDate>Tue, 01 Jul 2025 17:31:00 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:38bc06da-84c5-4100-bc5a-7dce58ab6fd4</guid><dc:creator>dougw</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/229416?ContentTypeID=1</comments><wfw:commentRss>https://community.element14.com/technologies/ai-machine-learning/f/forum/55932/what-is-the-most-underrated-use-case-of-ai-and-machine-learning-you-ve-come-across/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p&gt;We have an AI that can pick clothing sizes for you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>