{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n","html":"\n🚀 Join the LeRobot Worldwide Hackathon - AI Robotics Global Challenge! 🌍\nAre you ready to discover robotics with AI? 🌟 Join us for a global hackathon to learn, train, and solve real-world problems using open-source tech!\n \n \n\n\n

KickOff Vidéo on YouTube

\n
\n💡 What's it?
\nWe live a wild time! The ChatGPT moment of robotics could be just a few milestones away! Come help us make our future more open and accessible to all.\n \n

🚀 Challenges

\nDetailed challenge tracks documentation just dropped!\n\n
\n
\n \n

🤗 LeRobot Documentation: https://huggingface.co/docs/lerobot

\n

👥 Join our Discord: https://discord.com/invite/s3KuuzsPFb

\n

🫶🏽 Let's Team up: https://forms.gle/cnDGaeF5MY7ueUdz9

\n
\n
\nHackathon Submission Guidelines👇👇👇\n\n

Each team need to:

\n
    \n
  1. Submit datasets you recorded during the hackathon (if relevant)
  2. \n
  3. Submit a demonstration video under 1 min long
  4. \n
\n
\n

1. Join this organization

\n\n\n

2. Team up

\n

Fill in team up registration form here.

\n\n\n

3. Get your team number

\n

Wait for confirmation email - you will get your team number.

\n\n\n

4. Submit datasets you recorded during the hackathon (if relevant)

\n

Upload a dataset to your account following the tutorial here

\n

Transfer the dataset to this organization:

\n
    \n
  1. i. go to your datasets Settings page,
  2. \n
  3. ii. go to section Rename or transfer this dataset,
  4. \n
  5. iii. choose LeRobot-worldwide-hackathon as the new owner & [TEAM-N°]-[TEAM NAME]-[DATASET-NAME] as the new name. Overall, your new dataset id should be LeRobot-worldwide-hackathon/[TEAM-N°]-[TEAM NAME]-[DATASET-NAME].
  6. \n
\n\n

5. Submit a demo video

\n

Craft a demonstration video under 1 min long. Upload your videos here. The name of your video should follow format [TEAM-N°]-[TEAM NAME].mp4.

\n\n
\n
\nWhy join?\n
    \n
  • ✅ A vibrant community of curious minds
  • \n
  • ✅ Easy-to-follow tutorials (beginner-friendly!)
  • \n
  • ✅ Discover the all-new LeRobot SO-101
  • \n
\n\n
\n \n Find here our event policy and our grant legal terms.\n \n
\n\n","classNames":"hf-sanitized hf-sanitized-aFP0fB4ZcUp46S7Y5-1m2"},"users":[{"_id":"5df7e9e5da6d0311fd3d53f9","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1583857746553-5df7e9e5da6d0311fd3d53f9.jpeg","isPro":true,"fullname":"Thomas Wolf","user":"thomwolf","type":"user"},{"_id":"5f0f523fdfdd0870dae3b977","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/5f0f523fdfdd0870dae3b977/SIQ44PdhrELfnHmXMxVhv.jpeg","isPro":true,"fullname":"Michel Meyer","user":"newtechmitch","type":"user"},{"_id":"5f27a163e923d665e616271c","avatarUrl":"/avatars/2b10d5846cef8a01b5db4c435b6f2628.svg","isPro":true,"fullname":"Wadood Abdul","user":"wadood","type":"user"},{"_id":"5f622e9e5e78cc6b0ed31685","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/5f622e9e5e78cc6b0ed31685/XtiJJTyzFM7M3XoPpPE31.png","isPro":true,"fullname":"Hiroyuki Osone","user":"AIBunCho","type":"user"},{"_id":"5ff8c9f4b2035d9a81a859f7","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1652134289581-5ff8c9f4b2035d9a81a859f7.jpeg","isPro":true,"fullname":"Nouamane Tazi","user":"nouamanetazi","type":"user"},{"_id":"60286ac7cc821f8656098111","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1667197453435-60286ac7cc821f8656098111.jpeg","isPro":true,"fullname":"spark","user":"spark323","type":"user"},{"_id":"616ff77ec22c7566454415bb","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/616ff77ec22c7566454415bb/oXgbIVKgb1cHF3DFvYjX3.jpeg","isPro":true,"fullname":"Victoria Latynina","user":"victoria-latynina","type":"user"},{"_id":"62d03f75ad741b94f5c8dc3f","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/62d03f75ad741b94f5c8dc3f/9pmsgYafsoe0Dequ5lh50.png","isPro":true,"fullname":"Jaiyam Sharma","user":"dataplayer12","type":"user"},{"_id":"62f857fbb9fda55613ce80d9","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/62f857fbb9fda55613ce80d9/d7bRniKLmOt-iFN07k1Su.png","isPro":true,"fullname":"Remi Cadene","user":"cadene","type":"user"},{"_id":"63045b62eedc089484ca100e","avatarUrl":"/avatars/a689d5c628133f82523082d4f3455ce1.svg","isPro":true,"fullname":"Tatsuya Matsushima","user":"tmats","type":"user"},{"_id":"63126ab7fa3e7ba13f171c5d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/63126ab7fa3e7ba13f171c5d/MrYQ7zPeoqR-20Y8z8rmm.jpeg","isPro":true,"fullname":"Antreas Antoniou","user":"Antreas","type":"user"},{"_id":"63278f8b28396be9bfeca9d3","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1673223366538-63278f8b28396be9bfeca9d3.jpeg","isPro":true,"fullname":"Harsh Sharma","user":"harsharma","type":"user"},{"_id":"6340651b388c3fa40f9a5bc0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6340651b388c3fa40f9a5bc0/av1C4_S7bHGxAzOu8lOmG.jpeg","isPro":true,"fullname":"Adam Molnar","user":"lunarflu","type":"user"},{"_id":"6346e82ca6f101c7f907f81c","avatarUrl":"/avatars/dcfe839483dd695710d884b4ab664761.svg","isPro":true,"fullname":"Ozgun Genc","user":"ozgung","type":"user"},{"_id":"635401a96fd9f0793023e83e","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/635401a96fd9f0793023e83e/KwpA03LLW1URpwHI_D-0E.jpeg","isPro":true,"fullname":"Mathieu Perez","user":"maperez42","type":"user"},{"_id":"6367e2af835ff6ed8bdfea95","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6367e2af835ff6ed8bdfea95/T9uy_iVd_4GIXTtzfO9aV.jpeg","isPro":true,"fullname":"Anouar Mansour","user":"Hankyone","type":"user"},{"_id":"63786640ea2a9a0283b4ac67","avatarUrl":"/avatars/cc945694292b764736c7358a880b1438.svg","isPro":true,"fullname":"Tushar Abhishek","user":"tushar117","type":"user"},{"_id":"63a369d98c0c89dcae3b8329","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/63a369d98c0c89dcae3b8329/AiH2zjy1cnt9OADAAZMLD.jpeg","isPro":true,"fullname":"Adina Yakefu","user":"AdinaY","type":"user"},{"_id":"63a7183ee27a6dbd485cff9f","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/63a7183ee27a6dbd485cff9f/AelXC9zlVFWXS30XRAdTL.png","isPro":true,"fullname":"Vansh Gehlot","user":"VanshGehlot","type":"user"},{"_id":"63ba8bd5c138c8f2b7851c21","avatarUrl":"/avatars/431e001eefca2513f796904578942ba2.svg","isPro":true,"fullname":"CY Yeo","user":"chengyongyeo","type":"user"},{"_id":"63c140d4f02ef5b95e0e6f45","avatarUrl":"/avatars/d376a4e04a238b6536fafb5455bcf7df.svg","isPro":true,"fullname":"Vaishnava Hari","user":"svaichu","type":"user"},{"_id":"6418d9100956be7233a4f4d7","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6418d9100956be7233a4f4d7/Cj-_17ZvIkG9R8riTDulZ.png","isPro":true,"fullname":"Dakota Kim","user":"GhostScientist","type":"user"},{"_id":"6430ab2832a732121cd82615","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6430ab2832a732121cd82615/jDCxQJINw5jEOSmSx6s2s.jpeg","isPro":true,"fullname":"Jackie","user":"BKJackson","type":"user"},{"_id":"644206b566a62c605c98dbe5","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/644206b566a62c605c98dbe5/oiZYfhxfrJhp9hRwQqts8.jpeg","isPro":true,"fullname":"Burhan","user":"brhnsbn","type":"user"},{"_id":"644ba00b0fbe4830f192f442","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/644ba00b0fbe4830f192f442/BrcDc4ngokSApFELEu357.jpeg","isPro":true,"fullname":"Nitya Narasimhan, PhD","user":"nityan","type":"user"},{"_id":"644e483a9b4e87c31bac24d2","avatarUrl":"/avatars/49010015b3943e00813fd79e508b9d15.svg","isPro":true,"fullname":"Rafay khokhar","user":"Rafaykhokhar007","type":"user"},{"_id":"6458067eaa36a63c429efcb2","avatarUrl":"/avatars/f63332cf0f71477b4ea87b4b5e0ce923.svg","isPro":true,"fullname":"Koen van Wijk","user":"koenvanwijk","type":"user"},{"_id":"6458fcd53b81018d6b95bd5d","avatarUrl":"/avatars/a0dd83839dffb8b41c3d7bcd5c6e9ba7.svg","isPro":true,"fullname":"Joao de Almeida Varelas Graca","user":"JoaoGraca","type":"user"},{"_id":"64629ee5d1ccd517f4690491","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64629ee5d1ccd517f4690491/6LxFljQOFcxmSG1OETTpC.png","isPro":true,"fullname":"Daniel Ritchie","user":"danielritchie","type":"user"},{"_id":"646937d963a564ba3481b521","avatarUrl":"/avatars/09882959d14c046785c06e32a9cf3551.svg","isPro":true,"fullname":"Steve ","user":"skurzeja","type":"user"},{"_id":"647f0c0435bc6d6aa5f9bb55","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/NifDvFVP8YJOlTAueaiOY.png","isPro":true,"fullname":"Marcus Röper","user":"Arrcus","type":"user"},{"_id":"64b655948f25ae1dd3afa552","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/JlLx6zb-QcMSyfOhz_QmZ.png","isPro":false,"fullname":"Kian Kyars","user":"kyars","type":"user"},{"_id":"64b9aa32a43cc4e8ccb85744","avatarUrl":"/avatars/160dea878ebfe434c45f924f481f2a43.svg","isPro":true,"fullname":"Zeineb Mohamed El Hanevi ","user":"Zeineb12","type":"user"},{"_id":"64c64a970f9144cb38c02368","avatarUrl":"/avatars/07e1c82f5a8be930707ed971093c91e7.svg","isPro":true,"fullname":"fanzian","user":"andy9606","type":"user"},{"_id":"64f887b86389380c7784dfc8","avatarUrl":"/avatars/8dce2ece63892cc2eb644ebb9d117050.svg","isPro":true,"fullname":"P","user":"Artem-Pan","type":"user"},{"_id":"651ea296c887c687e09158af","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/651ea296c887c687e09158af/ju9Zx2xDBVhDLnLL1e1Mq.jpeg","isPro":true,"fullname":"Bruna Trevelin","user":"brunatrevelin","type":"user"},{"_id":"6534f17df551a245bbd8740c","avatarUrl":"/avatars/38eb50aeed64f2d9f0bc0dbaf58fe69e.svg","isPro":true,"fullname":"Sajjad","user":"sajkamal","type":"user"},{"_id":"653e0045394886efeb20eae9","avatarUrl":"/avatars/8dbd44077a6808339cadd1fd7caf3bff.svg","isPro":true,"fullname":"Ammar Shaikh","user":"ammar-shaikh","type":"user"},{"_id":"6567bcb02f3ec92d7e6491b5","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/JYd9i6Acoc8ziiRqDZKMn.jpeg","isPro":true,"fullname":"Matevž Zorec","user":"mbzlabs","type":"user"},{"_id":"658000997cf2a47c8c37b6e9","avatarUrl":"/avatars/f3980c1fd11107a76b7e97efec34c41c.svg","isPro":true,"fullname":"LN","user":"lucasngoo","type":"user"},{"_id":"65beb976b7db0ab095b1c730","avatarUrl":"/avatars/3f42b2d17752f5933cf76ca8eb56779a.svg","isPro":true,"fullname":"Leon","user":"leon-se","type":"user"},{"_id":"65bf49a905dbcdb7c19305ff","avatarUrl":"/avatars/c4bac8644c21616f68fbb700b0ecc31a.svg","isPro":true,"fullname":"Rahul Vimalkanth ","user":"boltwave","type":"user"},{"_id":"65d8e3354e23db813d754671","avatarUrl":"/avatars/3567e56f6f61c762aeba367bfbdc4fb7.svg","isPro":true,"fullname":"Kumuda Subramanyam Govardhanam","user":"kumuda-271","type":"user"},{"_id":"65eab3c432efd8afebc5aee9","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/65eab3c432efd8afebc5aee9/7kIg3Dpd2Sdwv-tgFOvtn.jpeg","isPro":false,"fullname":"Jade Choghari","user":"jadechoghari","type":"user"},{"_id":"65f1a223190ea1ab27286a6e","avatarUrl":"/avatars/123b3de8d467f20645fa5244d2155a89.svg","isPro":true,"fullname":"Agafonov","user":"ToonAga","type":"user"},{"_id":"65f9d37113336392bad1e49c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/65f9d37113336392bad1e49c/B0Fxwconnu7lvtjBz4Ruq.jpeg","isPro":true,"fullname":"Pepijn Kooijmans","user":"pepijn223","type":"user"},{"_id":"66265a84af5c20bdffef0120","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/Mnofvb149KO4aaflEq86o.png","isPro":true,"fullname":"Phrugsa Limbunlom","user":"PhrugsaL","type":"user"},{"_id":"6629600e2f3d16949357ca95","avatarUrl":"/avatars/dd87113ecff03cc1ce3b70da6a212108.svg","isPro":true,"fullname":"Satvik Ahuja","user":"satvikahuja","type":"user"},{"_id":"6643a15f1942936a8b163dfe","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/Gu1J3UBXGquM6_0i3kJMb.png","isPro":true,"fullname":"Ahmad Meda","user":"ahmadmeda","type":"user"},{"_id":"66481b8151dae6164548e110","avatarUrl":"/avatars/a6a14201720cd7df152c6cd80bd2a35f.svg","isPro":true,"fullname":"Fernandez","user":"Yuseifer","type":"user"},{"_id":"6658b9196827c52ec83334bc","avatarUrl":"/avatars/5e1d75baf4968a36c11bf15ae255190e.svg","isPro":true,"fullname":"Derya Unutmaz ","user":"Wizoid","type":"user"},{"_id":"666a03668b77ae553191c6ca","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/666a03668b77ae553191c6ca/XbP4u3SZ4fVvqhCcVJma0.jpeg","isPro":true,"fullname":"Aditya Kamath","user":"kma7h","type":"user"},{"_id":"667015a222073d70a13ec785","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/0K45Q3-zAZ_4OKUPz50lU.png","isPro":true,"fullname":"Ridouane Ghermi","user":"rghermi","type":"user"},{"_id":"66953c424cecdeb964ce5ede","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66953c424cecdeb964ce5ede/3KqckWE78RbEHo5wwV66R.jpeg","isPro":true,"fullname":"DJ Sri Vigneshwar","user":"Sri-Vigneshwar-DJ","type":"user"},{"_id":"669e35cbb5aa6ec3f9818288","avatarUrl":"/avatars/9022472520e560ed495e79d21f20b6d2.svg","isPro":true,"fullname":"Jing Li","user":"jinglilowe","type":"user"},{"_id":"66a9e76d8b6380ffd5d7cc00","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66a9e76d8b6380ffd5d7cc00/eYeqz2onGhaAcL0qv_8zL.png","isPro":true,"fullname":"Charlotte","user":"chmadran","type":"user"},{"_id":"66c281e67be2e673896481a3","avatarUrl":"/avatars/a1220187b2200d218f3664aa962853a9.svg","isPro":true,"fullname":"Vk","user":"vitamink","type":"user"},{"_id":"66c5ce2cad4ad39e8f3836e0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/wv-6EXXIoHhQfAy3cKzSE.png","isPro":true,"fullname":"Jelena Banjac Lukic","user":"msjelenabanjac","type":"user"},{"_id":"66ec9ccd5599f0296661c3a1","avatarUrl":"/avatars/536d9e4b3c21970862d95144fa8b8cd8.svg","isPro":true,"fullname":"jacob","user":"mistaj4real","type":"user"},{"_id":"66faaf4bc2bf89d75e88f3ce","avatarUrl":"/avatars/6b50862f17a891bf3b3463a8667e69dd.svg","isPro":true,"fullname":"Rupesh Garsondiya","user":"Rupesh386","type":"user"},{"_id":"671182fe147bd16b24298f3b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/RGPkX6hI5iNN7L94SzKf6.png","isPro":true,"fullname":"Gopinath Balamurugan","user":"gb-me","type":"user"},{"_id":"67194ec20edc751606ccbf7b","avatarUrl":"/avatars/f6b52bc28ebbb2c672cc3585bc39545c.svg","isPro":true,"fullname":"Zak Hussain","user":"TheBumblingBaboon","type":"user"},{"_id":"672abf5bdbc16559baab4885","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/EoMJWAiKDk2c5EHTJZpcn.png","isPro":true,"fullname":"Deshpande","user":"MayankD409","type":"user"},{"_id":"6734f5e322bf067de2962f77","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6734f5e322bf067de2962f77/NnNC1-9C7F1y0JJfhDEH4.png","isPro":true,"fullname":"Kyo Mangold","user":"kyomangold","type":"user"},{"_id":"67894b1491260c834a518664","avatarUrl":"/avatars/0f7522eb717ae43a06888171c6a0d698.svg","isPro":true,"fullname":"ahlam_trk","user":"ahlam1223","type":"user"},{"_id":"678e87e4d601d2ee2c1b1fd8","avatarUrl":"/avatars/0e60d5f7d432953a70d44f0e7ef541ac.svg","isPro":true,"fullname":"vishal krishnaa","user":"vkvishal23","type":"user"},{"_id":"67a12aa1c5c6e6bc889acc49","avatarUrl":"/avatars/c8872adeb1045a506f7ffa5b61357c56.svg","isPro":true,"fullname":"Sakshi Bhatia","user":"sakshibhatia77","type":"user"},{"_id":"67a5224811dd6db9721e1015","avatarUrl":"/avatars/59ac9a2c66aad161f4bd526cbd7f629e.svg","isPro":true,"fullname":"Lara Nguyen","user":"laranguyen2025","type":"user"},{"_id":"67a628209ed1c52d692d8de4","avatarUrl":"/avatars/b68eca39c4000c08b4058b81d945ae95.svg","isPro":true,"fullname":"Wang","user":"Gabriel444","type":"user"},{"_id":"67aef4406bd28b8bd4d9eed0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/hpMGtxZRqoHEWYrpYSi48.png","isPro":true,"fullname":"MX","user":"AAA5X","type":"user"},{"_id":"67aef725b5282836960b1d61","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/xHpR4qaTlvxuwBmHkNWlN.png","isPro":true,"fullname":"Robert","user":"robertkeus","type":"user"},{"_id":"67b124b081d4eae18b957606","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/CXvSv2l15uPkMQL_HBRDF.png","isPro":true,"fullname":"Steven Palma","user":"imstevenpmwork","type":"user"},{"_id":"67c6ae75871cc8c63b077532","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/-i_LfxF_2ve-vuF-YYXWL.png","isPro":true,"fullname":"JANG","user":"dnfnzl12","type":"user"},{"_id":"67ca4834e472d01d26b1fadc","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/C8-2J2su3QS1XmUTTPYmo.png","isPro":true,"fullname":"kimsihyun","user":"sihyun77","type":"user"},{"_id":"67dbef8069655e406fde44c6","avatarUrl":"/avatars/5a7eed983af065be347ebd5501fa7114.svg","isPro":true,"fullname":"aditya karhale","user":"madyismad","type":"user"},{"_id":"67dd8cb8f536ef9b55c8a31a","avatarUrl":"/avatars/4a41b91f2223ca6cc686f7a28f90171a.svg","isPro":false,"fullname":"Aboat Withflow","user":"JiaminSong","type":"user"},{"_id":"67e1608b7592a8c99b073622","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/Kvkj3xv7np9Hev1P9bjOa.png","isPro":true,"fullname":"Rakshith Bangalore Kumaraswamy","user":"bkrak","type":"user"},{"_id":"67e3acd018f84ea2b925b58b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/cOemqfgtDZcj8h5XEjsLz.png","isPro":false,"fullname":"duuinh","user":"duuinh","type":"user"},{"_id":"67f086b71358145ee5789b95","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/Ty5e8kptUgPM2MHGJRsyK.png","isPro":true,"fullname":"Tsuyoshi Kumazawa","user":"kumaxxp","type":"user"},{"_id":"67f663581415eedc0ed924a8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/6Vy-vGjHy7qsJJEJE2Ei_.png","isPro":true,"fullname":"Marine Caous","user":"maringetxway","type":"user"},{"_id":"6810ac075a34ea96efda7366","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/ltNmQ0eizOpFfMLD8XXzA.png","isPro":true,"fullname":"Farid","user":"Fkar","type":"user"},{"_id":"681657ec6ef6fabf5b3e8000","avatarUrl":"/avatars/c4ec357585244dd479190fda18cba966.svg","isPro":true,"fullname":"Yash dhingra","user":"dhingrayash001","type":"user"},{"_id":"6818e52e014d435bbe5aa7cf","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/_II_wUsEikgfQbiKOeavp.png","isPro":false,"fullname":"John Koumentis","user":"jokoum","type":"user"},{"_id":"681976716048b6b0879678a0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/Tl9C_iQudWfR-88y5-aVx.png","isPro":true,"fullname":"Paul Varghese Perumattathu","user":"stripedpanthera","type":"user"},{"_id":"681a1e4523dbf6b59c142e08","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/SKpJxxXuITn8yD8W06gxr.png","isPro":true,"fullname":"R Gopikrishnan","user":"RgK20","type":"user"},{"_id":"68203f8233ee96eefc140da1","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/dE7uDeaE_uYZk9YQBPqjA.png","isPro":true,"fullname":"Kasina Jyothi Swaroop","user":"kjswaroop","type":"user"},{"_id":"6826100457fdc53811b108a1","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/94cPFx4t94_1NY_M5LTT4.png","isPro":true,"fullname":"Gonçalo Fortes","user":"goncalofortes","type":"user"},{"_id":"6828abf7d209699d150054e9","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/CH3HlhOHE_6fgdIeO6Zgg.png","isPro":true,"fullname":"Muhammad Asif","user":"A5if","type":"user"},{"_id":"682a983721e6baab7434f992","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/nv7SNsD2jTZ-TTDFhNgk2.png","isPro":true,"fullname":"Yukiko Yoshimoto","user":"yoshimotoyuk","type":"user"},{"_id":"6838c68a896eb9ceb709208b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/uOTw26iJAGbIwgPeWIuZJ.png","isPro":true,"fullname":"Katherine Baquero","user":"KatheBaq","type":"user"},{"_id":"683aaee51172f13f3e88e9a8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/AxGOr7eIScUMD0LmhvQE-.png","isPro":true,"fullname":"Wzong","user":"Kd637wz","type":"user"},{"_id":"683b33079b4e82161758571c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/BApXUozCa-6dop_JvXjWU.jpeg","isPro":true,"fullname":"Milosh Janevski","user":"Mieaz","type":"user"},{"_id":"684737becf1c6a0ec63bf1d0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/IfEEVMAvPHT41THt7z8lE.png","isPro":true,"fullname":"Kaylee Rodriguez","user":"Kayyrod21","type":"user"},{"_id":"684757fd549a927623ab257c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/k_8KVkbfpb39IYsRV_M85.png","isPro":false,"fullname":"kent h","user":"crackiswhack","type":"user"},{"_id":"6847a367337ae1600cbc8197","avatarUrl":"/avatars/5aa404538abcea90bdf19cd0b51e5b1e.svg","isPro":true,"fullname":"Satvik","user":"Satvik13","type":"user"},{"_id":"6847abd38e3479bca43c44f4","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/9iOCiITJlhm2_3ZLRHMME.png","isPro":true,"fullname":"Sejal","user":"seju302","type":"user"},{"_id":"6847cafa778fe0593f9172a7","avatarUrl":"/avatars/9ab743ef06feaeeaf95667f5439622f5.svg","isPro":true,"fullname":"Samantha","user":"Skorionhax","type":"user"},{"_id":"6847d9bff489ccebf45397d7","avatarUrl":"/avatars/4f6f3f62903f63fe9362687617ec82e6.svg","isPro":false,"fullname":"Matt Willis","user":"funkebot","type":"user"}],"userCount":846,"collections":[],"datasets":[{"author":"LeRobot-worldwide-hackathon","downloads":1,"gated":false,"id":"LeRobot-worldwide-hackathon/Pick_the_candle","lastModified":"2025-06-18T12:57:31.000Z","private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":11563,"gated":false,"id":"LeRobot-worldwide-hackathon/submissions","lastModified":"2025-06-17T21:59:05.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":2,"libraries":["datasets","mlcroissant"],"formats":[],"modalities":["video"]},"private":false,"repoType":"dataset","likes":10,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":15,"gated":false,"id":"LeRobot-worldwide-hackathon/291-jpizarrom-hilserl_so100_push_v2_cropped_resized","lastModified":"2025-06-17T15:58:53.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":2940,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":4,"gated":false,"id":"LeRobot-worldwide-hackathon/291-jpizarrom-hilserl_so100_push_v2","lastModified":"2025-06-17T15:57:40.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":2940,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":6,"gated":false,"id":"LeRobot-worldwide-hackathon/291-jpizarrom-hilserl_so100_push_v1","lastModified":"2025-06-17T15:56:08.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":1709,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":28,"gated":false,"id":"LeRobot-worldwide-hackathon/291-jpizarrom-hilserl_so100_push_v0","lastModified":"2025-06-17T15:52:38.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":1788,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":2,"gated":false,"id":"LeRobot-worldwide-hackathon/45-BeginnnersUNIdos","lastModified":"2025-06-16T23:23:26.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":9,"libraries":["datasets","mlcroissant"],"formats":["text"],"modalities":["text","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":429,"gated":false,"id":"LeRobot-worldwide-hackathon/winners","lastModified":"2025-06-16T21:06:12.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":10,"libraries":["datasets","mlcroissant"],"formats":[],"modalities":["video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":8,"gated":false,"id":"LeRobot-worldwide-hackathon/376-RobotLancers-Piano","lastModified":"2025-06-16T00:20:32.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":11722,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","downloads":11,"gated":false,"id":"LeRobot-worldwide-hackathon/335-MadWatch-Knock_Down_The_Box","lastModified":"2025-06-15T22:38:39.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":14255,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","timeseries","video"]},"private":false,"repoType":"dataset","likes":1,"isLikedByUser":false}],"models":[{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":0,"gated":false,"id":"LeRobot-worldwide-hackathon/dice_art_run1","availableInferenceProviders":[],"lastModified":"2025-07-02T01:38:33.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":5,"gated":false,"id":"LeRobot-worldwide-hackathon/45-BeginnnersUNIdos","availableInferenceProviders":[],"lastModified":"2025-06-26T18:21:31.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":4,"gated":false,"id":"LeRobot-worldwide-hackathon/il_sim_test0","availableInferenceProviders":[],"lastModified":"2025-06-21T10:37:56.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":0,"gated":false,"id":"LeRobot-worldwide-hackathon/311-panda-right-cell-ACT-model","availableInferenceProviders":[],"lastModified":"2025-06-18T08:16:39.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":0,"gated":false,"id":"LeRobot-worldwide-hackathon/submissions","availableInferenceProviders":[],"lastModified":"2025-06-16T00:48:59.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":5,"gated":false,"id":"LeRobot-worldwide-hackathon/91-AM-PM-smolvla-pouring-liquid","availableInferenceProviders":[],"lastModified":"2025-06-15T22:38:55.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":5,"gated":false,"id":"LeRobot-worldwide-hackathon/151-thewiner1-tic-tac-toe-so101","availableInferenceProviders":[],"lastModified":"2025-06-15T21:59:16.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":0,"gated":false,"id":"LeRobot-worldwide-hackathon/364-ET_HOME_SERVICE-cleaning_sat","availableInferenceProviders":[],"lastModified":"2025-06-15T19:58:15.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":6,"gated":false,"id":"LeRobot-worldwide-hackathon/256-Bearlovers_United-pick_up_black_and_white_sock_into_red_box_100","availableInferenceProviders":[],"lastModified":"2025-06-15T14:26:13.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"downloads":5,"gated":false,"id":"LeRobot-worldwide-hackathon/263-BALL-E-LEKIWI-BALL","availableInferenceProviders":[],"lastModified":"2025-06-15T12:43:14.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false}],"spaces":[{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"blue","colorTo":"yellow","createdAt":"2025-06-16T13:19:20.000Z","emoji":"🏆","id":"LeRobot-worldwide-hackathon/certificate-winners","lastModified":"2025-07-04T12:51:52.000Z","likes":5,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":"cpu-basic","requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"maringetxway-certificate-winners.hf.space","stage":"READY"},{"domain":"lerobot-worldwide-hackathon-certificate-winners.hf.space","stage":"READY"}],"sha":"cbe4acde3befdc0a504a26933e89f205423fefba"},"title":"Certificate Winners","isLikedByUser":false,"ai_short_description":"Generate a personalized award certificate with your name","ai_category":"Image Generation","trendingScore":0,"tags":["gradio","region:us"]},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"yellow","colorTo":"yellow","createdAt":"2025-06-18T07:27:33.000Z","emoji":"🏆","id":"LeRobot-worldwide-hackathon/all-winners","lastModified":"2025-06-18T10:14:21.000Z","likes":30,"pinned":false,"private":false,"sdk":"static","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":null,"requested":null},"storage":null,"replicas":{"requested":1,"current":1}},"title":"Winners","isLikedByUser":false,"ai_short_description":"Display winners and videos from a hackathon","ai_category":"Video Generation","trendingScore":0,"tags":["static","region:eu"]},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"purple","colorTo":"indigo","createdAt":"2025-06-17T10:33:44.000Z","emoji":"🎓","id":"LeRobot-worldwide-hackathon/certificate","lastModified":"2025-06-17T10:43:37.000Z","likes":4,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":"cpu-basic","requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"lerobot-worldwide-hackathon-certificate.hf.space","stage":"READY"}],"sha":"0e572a3f60e815b1a91926dac6f9336a283df418"},"title":"Certificate","isLikedByUser":false,"ai_short_description":"Generate a personalized participation certificate","ai_category":"Image Generation","trendingScore":0,"tags":["gradio","region:eu"]},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"pink","colorTo":"pink","createdAt":"2025-04-22T14:18:18.000Z","emoji":"👀","id":"LeRobot-worldwide-hackathon/demo","lastModified":"2025-06-17T09:54:35.000Z","likes":24,"pinned":false,"private":false,"sdk":"static","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":null,"requested":null},"storage":null,"replicas":{"requested":1,"current":1}},"title":"Demo","isLikedByUser":false,"ai_short_description":"Display hackathon videos and datasets","ai_category":"Video Generation","trendingScore":0,"tags":["static","region:us"]},{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"yellow","colorTo":"purple","createdAt":"2025-06-15T15:04:17.000Z","emoji":"🏆","id":"LeRobot-worldwide-hackathon/262-Lancashire-Advanced-Robotics_lancashire-dataset-tool","lastModified":"2025-06-15T15:04:43.000Z","likes":2,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":"cpu-basic","requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"lerobot-worldwide-hackathon-262-lancashire-advan-7ca90c2.hf.space","stage":"READY"}],"sha":"7dc7394dec48220c9c9085b05a928c6baaaaead3"},"title":"262-Lancashire-Advanced-Robotics Lancashire-dataset-tool","isLikedByUser":false,"ai_short_description":"Visualize robotics datasets by entering their ID","ai_category":"Data Visualization","trendingScore":0,"tags":["docker","region:eu"]}],"numDatasets":190,"numModels":12,"numSpaces":11,"lastOrgActivities":[{"time":"2025-07-30T09:05:29.046Z","user":"ddiddi","userAvatarUrl":"/avatars/9a369763a73278cddcf2abcae594865d.svg","type":"paper","paper":{"id":"2507.03033","title":"Preserving Privacy, Increasing Accessibility, and Reducing Cost: An\n On-Device Artificial Intelligence Model for Medical Transcription and Note\n Generation","publishedAt":"2025-07-03T01:51:49.000Z","upvotes":9,"isUpvotedByUser":true}},{"time":"2025-07-08T12:40:42.636Z","user":"brunatrevelin","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/651ea296c887c687e09158af/ju9Zx2xDBVhDLnLL1e1Mq.jpeg","type":"paper","paper":{"id":"2507.01051","title":"Can AI be Consentful?","publishedAt":"2025-06-27T15:32:16.000Z","upvotes":1,"isUpvotedByUser":true}},{"time":"2025-07-04T12:51:53.031Z","user":"maringetxway","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/6Vy-vGjHy7qsJJEJE2Ei_.png","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","type":"update","repoData":{"author":"LeRobot-worldwide-hackathon","authorData":{"_id":"680748c0b1cb5710710cef11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/67f663581415eedc0ed924a8/WmLn3J7MNnMIqUltCl8fP.png","fullname":"LeRobot Worldwide Hackathon","name":"LeRobot-worldwide-hackathon","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":true,"followerCount":1019},"colorFrom":"blue","colorTo":"yellow","createdAt":"2025-06-16T13:19:20.000Z","emoji":"🏆","id":"LeRobot-worldwide-hackathon/certificate-winners","lastModified":"2025-07-04T12:51:52.000Z","likes":5,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":"cpu-basic","requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"maringetxway-certificate-winners.hf.space","stage":"READY"},{"domain":"lerobot-worldwide-hackathon-certificate-winners.hf.space","stage":"READY"}],"sha":"cbe4acde3befdc0a504a26933e89f205423fefba"},"title":"Certificate Winners","isLikedByUser":false,"ai_short_description":"Generate a personalized award certificate with your name","ai_category":"Image Generation","trendingScore":0,"tags":["gradio","region:us"]},"repoId":"LeRobot-worldwide-hackathon/certificate-winners","repoType":"space","org":"LeRobot-worldwide-hackathon"}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{}}">

AI & ML interests

None defined yet.

Recent Activity

🚀 Join the LeRobot Worldwide Hackathon - AI Robotics Global Challenge! 🌍 Are you ready to discover robotics with AI? 🌟 Join us for a global hackathon to learn, train, and solve real-world problems using open-source tech!

KickOff Vidéo on YouTube


💡 What's it?
We live a wild time! The ChatGPT moment of robotics could be just a few milestones away! Come help us make our future more open and accessible to all.

🚀 Challenges

Detailed challenge tracks documentation just dropped!

🤗 LeRobot Documentation: https://huggingface.co/docs/lerobot

👥 Join our Discord: https://discord.com/invite/s3KuuzsPFb

🫶🏽 Let's Team up: https://forms.gle/cnDGaeF5MY7ueUdz9


Hackathon Submission Guidelines👇👇👇

Each team need to:

  1. Submit datasets you recorded during the hackathon (if relevant)
  2. Submit a demonstration video under 1 min long

1. Join this organization

2. Team up

Fill in team up registration form here.

3. Get your team number

Wait for confirmation email - you will get your team number.

4. Submit datasets you recorded during the hackathon (if relevant)

Upload a dataset to your account following the tutorial here

Transfer the dataset to this organization:

  1. i. go to your datasets Settings page,
  2. ii. go to section Rename or transfer this dataset,
  3. iii. choose LeRobot-worldwide-hackathon as the new owner & [TEAM-N°]-[TEAM NAME]-[DATASET-NAME] as the new name. Overall, your new dataset id should be LeRobot-worldwide-hackathon/[TEAM-N°]-[TEAM NAME]-[DATASET-NAME].

5. Submit a demo video

Craft a demonstration video under 1 min long. Upload your videos here. The name of your video should follow format [TEAM-N°]-[TEAM NAME].mp4.


Why join?
  • ✅ A vibrant community of curious minds
  • ✅ Easy-to-follow tutorials (beginner-friendly!)
  • ✅ Discover the all-new LeRobot SO-101
Find here our event policy and our grant legal terms.