{ // 获取包含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 !== '免费Z-image图片生成' && linkText !== '免费Z-image图片生成' ) { link.textContent = '免费Z-image图片生成'; link.href = 'https://zimage.run'; 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 !== 'Vibevoice' ) { link.textContent = 'Vibevoice'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 替换Pricing链接 - 仅替换一次 else if ( (linkHref.includes('/pricing') || linkHref === '/pricing' || linkText === 'Pricing' || linkText.match(/^s*Pricings*$/i)) && linkText !== '免费去水印' ) { link.textContent = '免费去水印'; link.href = 'https://sora2watermarkremover.net/'; replacedLinks.add(link); } // 替换Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) && linkText !== 'GitHub加速' ) { link.textContent = 'GitHub加速'; link.href = 'https://githubproxy.cc'; 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, '免费Z-image图片生成'); } 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\n","html":"\n\nIE University HuggingFace Organization\n\n\n

IE University is a top international University with a strong focus on business management, economics, science and technology. In this organization students can share their projects on subjects such as Natural Language Processing with the community.

\n

By sharing their work, students have the opportunity of receiving feedback on their projects, as well as external guidance. So please, as an external visitor, take into account that the projects shared in this organization are created by undergraduate students eager to learn more about this beautiful AI world and be part of its community. Be 🤗\n to them and give some ❤️ to their projects.

\n\n\n\n","classNames":"hf-sanitized hf-sanitized-uR4KVC7hHmyw5cqphJKY2"},"users":[{"_id":"61f333df8f26cc42dc587011","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1647564920989-61f333df8f26cc42dc587011.jpeg","isPro":true,"fullname":"Alejandro Vaca Serrano","user":"avacaondata","type":"user"},{"_id":"63f5fdfeb29015adc338285c","avatarUrl":"/avatars/2c2dc3942d97226d1ac7782de822ef8f.svg","isPro":false,"fullname":"Carmen Martínez","user":"cmartinezp","type":"user"},{"_id":"63f5fe1a9cbd67303025a849","avatarUrl":"/avatars/2f0be3f587029b6be522cd27b7e29f48.svg","isPro":false,"fullname":"Sophia Gurria","user":"sgurriah","type":"user"},{"_id":"63f5fe4e9cbd67303025aae2","avatarUrl":"/avatars/a13b01bc8ca7e26e02ab590dfe66efc5.svg","isPro":false,"fullname":"Nicholas Atamer","user":"Nikoodrk","type":"user"},{"_id":"63f60030b29015adc33841f7","avatarUrl":"/avatars/fc7e3d22fe2c7a38dad5b2e6fe8b7e33.svg","isPro":false,"fullname":"cyril tabet","user":"CyrilTabet","type":"user"},{"_id":"63f73f44bd28622c9b9642b3","avatarUrl":"/avatars/d515ada8b90baabf9a3d21f1c2ef6234.svg","isPro":false,"fullname":"Youssef Abdel Nasser","user":"YoussefAbdelNasser","type":"user"},{"_id":"64061b62692855e65ae2702c","avatarUrl":"/avatars/31c8414893ed12e65f8f1eab1c062f7b.svg","isPro":false,"fullname":"Juan Esteban Borja","user":"juanesbch","type":"user"},{"_id":"640f3ddfef5c6dcac8b0e004","avatarUrl":"/avatars/10c2697d49a5835428cbf155fd87743a.svg","isPro":false,"fullname":"Miquel Amengual Verdera","user":"miquelamengual","type":"user"},{"_id":"640f3e08a92fedb0e8507b9b","avatarUrl":"/avatars/6f0e433d35905e11197d319d430dd5e3.svg","isPro":false,"fullname":"mesbahi","user":"chayy","type":"user"},{"_id":"640f3ed3bd54b1efde33a928","avatarUrl":"/avatars/1e271734c6455410dce393db22a5baa7.svg","isPro":false,"fullname":"Juan Carlos Juarez","user":"jjuarez","type":"user"},{"_id":"640f421abd54b1efde33be58","avatarUrl":"/avatars/6e8c71d429970ff012bcfe7544b1719e.svg","isPro":false,"fullname":"Fullaondo","user":"Juliofc","type":"user"},{"_id":"647b2000c3c809c69d2f09d4","avatarUrl":"/avatars/9ef4120687d09fd25929da4b652d25e2.svg","isPro":false,"fullname":"Luca Lobefalo","user":"LucaLobefalo","type":"user"},{"_id":"64b7ac0bf902508f0d846305","avatarUrl":"/avatars/a2fcf1f4a3e50cd08f3c2eb70580e3f7.svg","isPro":false,"fullname":"Armand HUbler","user":"ahub","type":"user"},{"_id":"64b90921f1f8e6ea5863af5f","avatarUrl":"/avatars/f6e34b440478b802eb0d928765c93c82.svg","isPro":false,"fullname":"Alba","user":"falba","type":"user"},{"_id":"65a7eca3de63b063e32d4d28","avatarUrl":"/avatars/e4cc0660518a4e4965237726e8930855.svg","isPro":false,"fullname":"Nathan","user":"nz2002","type":"user"},{"_id":"65aa6cefb68db4f26ed49545","avatarUrl":"/avatars/31517a51dbcd51a826c3b3a7ce072f82.svg","isPro":false,"fullname":"Jan Maciejowski","user":"jmaciejowski","type":"user"},{"_id":"65abfad52f560c70ff698814","avatarUrl":"/avatars/ea776510d10d9fe70f3543369e161b84.svg","isPro":false,"fullname":"Franco Martinno","user":"FrancoMartino","type":"user"},{"_id":"65affe5e29ae836e9ece8c0c","avatarUrl":"/avatars/5d75c227a5727fb1520f44ead97dc3a4.svg","isPro":false,"fullname":"esther","user":"egefraser","type":"user"},{"_id":"65b0f4587ac1fb9fc71374e3","avatarUrl":"/avatars/ae4f8475abf7b5118faf16b0917b9381.svg","isPro":false,"fullname":"Hannah Israel","user":"hannahisrael03","type":"user"},{"_id":"65b15d48f5d7620899e2d5b5","avatarUrl":"/avatars/d30cf3653c6c9ea3a489c7306a0d93ae.svg","isPro":false,"fullname":"Alicia","user":"aliciiavs","type":"user"},{"_id":"65c4d2bcb4fa1caf960bfd65","avatarUrl":"/avatars/3c940e69510ef9879139ba1d97420730.svg","isPro":false,"fullname":"Christian Ranon","user":"cranonieu2021","type":"user"},{"_id":"65c4d9d13cf0b5c5f34536d1","avatarUrl":"/avatars/dcb0dece9fb3b8207960f2b0aa0d180e.svg","isPro":false,"fullname":"ali rammal ","user":"huggingrambo","type":"user"},{"_id":"65c55a7ae03f78fa9ed5002c","avatarUrl":"/avatars/3adbe268ebb5ed4beb9e361f72e38121.svg","isPro":false,"fullname":"joana rocha camargo","user":"jrocha","type":"user"},{"_id":"65f0486498a36eafa5cdee99","avatarUrl":"/avatars/9c7e909fd0d30af2135351daac69d52f.svg","isPro":false,"fullname":"Sindi Bejko","user":"sindibejko","type":"user"},{"_id":"65f4761c6396309f02dfdb43","avatarUrl":"/avatars/1ed35ba5b017fd9afffa421ea01b7622.svg","isPro":false,"fullname":"Benady","user":"AlexanderBenady","type":"user"},{"_id":"66097e2aabd8bd25ee39ad28","avatarUrl":"/avatars/0f447f241c8f7c74e9f03dccf30c5613.svg","isPro":false,"fullname":"Saif Abu Shakra","user":"saifabushakra","type":"user"},{"_id":"660fbb235a39fcf641713b30","avatarUrl":"/avatars/10572c8b98b92474de58b96ea20a6358.svg","isPro":false,"fullname":"Hiba Laziri","user":"hibalaz","type":"user"},{"_id":"665597b7904cd973f5ecc23d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/665597b7904cd973f5ecc23d/ghFr1IIIWSJ6ImvERhYZ3.jpeg","isPro":false,"fullname":"Josep Gisbert","user":"josepgisbert","type":"user"},{"_id":"66670c467a87ddaf0f8c1a44","avatarUrl":"/avatars/abfef11006d9ba5f4e62e5f46d60f201.svg","isPro":false,"fullname":"Ayah El Barq","user":"AyahElBarq","type":"user"},{"_id":"66f6c5c6e5d2d88a93e650e8","avatarUrl":"/avatars/09257c1a1a43451417bef4097af03701.svg","isPro":false,"fullname":"Juan Carlos Chavarria","user":"juchavarriav","type":"user"},{"_id":"66f6c5da8d3b5532dd53ec9e","avatarUrl":"/avatars/97e6ae981ff1bba50eed8656aebd13d5.svg","isPro":false,"fullname":"Anna Serra","user":"aserrag","type":"user"},{"_id":"66f6c60744e5614334bab8c0","avatarUrl":"/avatars/361ba7282e820caa7823c4c42641dcd4.svg","isPro":false,"fullname":"Alexia Lara Chacon","user":"alexiachacon","type":"user"},{"_id":"66f6c6086689a54d2cc4612e","avatarUrl":"/avatars/da18bb348c6cd38d4cad8f64c26a745e.svg","isPro":false,"fullname":"Juan Felipe Ortiz Lejarde","user":"juanfe1206","type":"user"},{"_id":"66f6c656b8acc3d7798c80fe","avatarUrl":"/avatars/b89799f48328b557070089f08d1d61ce.svg","isPro":false,"fullname":"Marco Celati","user":"MCel04","type":"user"},{"_id":"66f6c7375e1ef72590e54c2b","avatarUrl":"/avatars/8565834d29c60fb0fb5f7244baa06cbb.svg","isPro":false,"fullname":"Lucas Agustin Vucinovich","user":"Lucasvuci","type":"user"},{"_id":"66f6c7b71c540729cb73e387","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/WQtV_5ZodctbsENMTY3Nb.png","isPro":false,"fullname":"Emanuel Henriquez","user":"Emanuelhenriq04","type":"user"},{"_id":"66f6c7e521cc430244282d5a","avatarUrl":"/avatars/2d7b5614808f5f7a64f059f7257ad228.svg","isPro":false,"fullname":"Antonio Vicenzo Argenta Medina","user":"tonyaiclass","type":"user"},{"_id":"66f6c7e937edb147ab4f4ad6","avatarUrl":"/avatars/399f5168694a4eb8a680226d653830ea.svg","isPro":false,"fullname":"Raad Abu Dail","user":"raadabudail","type":"user"},{"_id":"66f6c7f104f2d5ae97a88ee5","avatarUrl":"/avatars/80f921bd898a498b3904a917ac0b2f94.svg","isPro":false,"fullname":"Gonzalo Domínguez","user":"gdominguez","type":"user"},{"_id":"66f6c7f2a47969018feeb8e0","avatarUrl":"/avatars/abb9016c0dc62e02acc803f45bd6a289.svg","isPro":false,"fullname":"isabella lentini","user":"isalentini","type":"user"},{"_id":"66f6c7f4390920cd2f7506aa","avatarUrl":"/avatars/93e74f02d5de060c5f1d79c28ff23898.svg","isPro":false,"fullname":"Shamil Mukhamedov","user":"shamilmukh","type":"user"},{"_id":"66f6c7fc08dfac74c2bef03e","avatarUrl":"/avatars/89060c6a5ebc1908b8a51fc0869976fa.svg","isPro":false,"fullname":"Emilia Granja","user":"emiliagranjam","type":"user"},{"_id":"66f6c7fe793e1463e42b505b","avatarUrl":"/avatars/bd471b86119a07bf102fc0c70fc49fa8.svg","isPro":false,"fullname":"Adolfo Gutiérrez ","user":"GG-Adolfo","type":"user"},{"_id":"66f6c8025e1ef72590e56538","avatarUrl":"/avatars/4411788294080997c0bea731267d9284.svg","isPro":false,"fullname":"Pablo Torres Pasquau","user":"PabloTorresPasquau","type":"user"},{"_id":"66f6c80678e0f4f61e41fb21","avatarUrl":"/avatars/db46bbea2fcec2d281696a5eb3ced9e3.svg","isPro":false,"fullname":"Javier","user":"javisanesq","type":"user"},{"_id":"66f6c809b3a646239240a778","avatarUrl":"/avatars/3ae275523a3016b35379726ba70c002e.svg","isPro":false,"fullname":"sarah coste","user":"sarahgcoste","type":"user"},{"_id":"66f6c81451f14433652f2691","avatarUrl":"/avatars/929b240bcec9d0c76e94c6f4e70e9451.svg","isPro":false,"fullname":"Wilrick","user":"Wil09","type":"user"},{"_id":"66f6c81de5d2d88a93e6f139","avatarUrl":"/avatars/cb3c93013e9f0f5ac30b4938be575604.svg","isPro":false,"fullname":"Juancho Mulato","user":"Unocho","type":"user"},{"_id":"66f6c824390920cd2f750d4c","avatarUrl":"/avatars/dabda1dbbe8a96439cbba4cb28e0fe00.svg","isPro":false,"fullname":"Edgar Andres Bran Valle","user":"EdgarBranV","type":"user"},{"_id":"66f6c82ef1eba235f5cbab07","avatarUrl":"/avatars/831cce03e9d95607a0bee2ceea3fcad4.svg","isPro":false,"fullname":"Sofía Hervás","user":"sofiahervas","type":"user"},{"_id":"66f6c835626c90d176b32122","avatarUrl":"/avatars/24ad57501347ee4735aa71f247515c86.svg","isPro":false,"fullname":"Daniel Garcia Laya","user":"DanielGarciaLaya","type":"user"},{"_id":"66f6c84fb2f102606b526446","avatarUrl":"/avatars/5a7e3b662c93c0212440895ba319d8d8.svg","isPro":false,"fullname":"Jean Carlos","user":"jeancarlos274","type":"user"},{"_id":"66f6c85c3abed89d9e589494","avatarUrl":"/avatars/4b644a2f410182a47f5c990b4d731ecd.svg","isPro":false,"fullname":"Bell Sicre","user":"Luuciiaa","type":"user"},{"_id":"66f6c861a47969018feecef8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/y8iAf00nvhWc4nZDZ4NKf.png","isPro":false,"fullname":"Ignacio Ascanio Aliño","user":"nascanio","type":"user"},{"_id":"66f6c870ceae6950e1554a77","avatarUrl":"/avatars/fdde1bc4740f1d61e8983b22d562a594.svg","isPro":false,"fullname":"Eduardo Alfaro","user":"EduAlf","type":"user"},{"_id":"66f6c87d6689a54d2cc4bdd0","avatarUrl":"/avatars/a95399e38da7745990c6c00fbc446ac7.svg","isPro":false,"fullname":"Marta Bermejo","user":"martabermejo","type":"user"},{"_id":"66f6c87e8d3b5532dd5452ea","avatarUrl":"/avatars/5f302f2b81ec7460b6629bf302615ee6.svg","isPro":false,"fullname":"Beatriz Cruces Alvaro","user":"beatrizcruces","type":"user"},{"_id":"66f6c8b3e8dde585ba3ab6c8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/7QtXtZX9xCc17AkXYH8Iv.png","isPro":false,"fullname":"Louis de Perier","user":"louisdpm9","type":"user"},{"_id":"66f6c8c654576d837420adcb","avatarUrl":"/avatars/5089506e08a3084b02065302a3a6d8ea.svg","isPro":false,"fullname":"Ana Cea Marquez","user":"anaceamarquez","type":"user"},{"_id":"66f6c8c6ad4fe83c91959889","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/7sVw6euhitT0IV65y40j9.png","isPro":false,"fullname":"Javier Arce López","user":"jaaviiarcee","type":"user"},{"_id":"66f6c908c2673e97c8bcc456","avatarUrl":"/avatars/f639498384bb661efcabac33b142c376.svg","isPro":false,"fullname":"Miguel Gordon","user":"PABMIK735","type":"user"},{"_id":"66f6c93234b8ac9ffa70660c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/gLzECI2g9ow-8Q-Jduy-1.png","isPro":false,"fullname":"Eva Yang","user":"evigarrudo","type":"user"},{"_id":"66f6c9379cdf43299f457a86","avatarUrl":"/avatars/70b3a6a2116bd281c44372f73f707d7d.svg","isPro":false,"fullname":"Gonzalo Angulo Iza","user":"gonangiza","type":"user"},{"_id":"66f6c940ea6525be74d3ff11","avatarUrl":"/avatars/52f929b4e60da0108050570c08ddc185.svg","isPro":false,"fullname":"manuela carreira ","user":"manuelacarreira","type":"user"},{"_id":"66f6c95e985cff91aa6be70d","avatarUrl":"/avatars/1ed1fbb896427ea3549f0bfd179894cb.svg","isPro":false,"fullname":"Roberto Falcato Vázquez","user":"roberfalcato","type":"user"},{"_id":"66f6c9adad4fe83c9195da2a","avatarUrl":"/avatars/633bcb243c815cdce665988b527e3438.svg","isPro":false,"fullname":"Javier Corredera ","user":"Javierator","type":"user"},{"_id":"66f6c9bb3f32ae7b323a53c2","avatarUrl":"/avatars/5ebbb1a34c9f9c3ef34c9bdf8c79a427.svg","isPro":false,"fullname":"Maximo Garrido","user":"MaxGarrido","type":"user"},{"_id":"66f6c9caad4fe83c9195e435","avatarUrl":"/avatars/44c2a2a2f3a2e88883b417103cddf641.svg","isPro":false,"fullname":"Maria Fernandez Gomez-Monche","user":"Mariafgomezmonche","type":"user"},{"_id":"66f6ca3f91c723ca31840337","avatarUrl":"/avatars/894b275068b7af2a86a39a75646f1337.svg","isPro":false,"fullname":"Aitana Damotte Huedo","user":"aiitanadh","type":"user"},{"_id":"66f6ca559ef08fe3c128e1a8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/J6JBCPiB6X8kV2It9EGl0.png","isPro":false,"fullname":"Gia Peterson","user":"Gia25","type":"user"},{"_id":"66f6ca68390920cd2f7594a4","avatarUrl":"/avatars/51a0901109a4d2b135bcdc1574ac7b54.svg","isPro":false,"fullname":"Yasmin Tandon","user":"Yasmin2023","type":"user"},{"_id":"66f6ca69a395d5e5ed01c8b1","avatarUrl":"/avatars/eca6522dd092032b7e2577ca0a939457.svg","isPro":false,"fullname":"Sebastian Delgado","user":"sdelgado03","type":"user"},{"_id":"66f6ca75421b63a75b5679a4","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/qx_DaUBSQxtnPgaCuHlgU.png","isPro":false,"fullname":"Arturo Velilla","user":"AVelilla","type":"user"},{"_id":"66f6cacb8ad02d06fbea5641","avatarUrl":"/avatars/98e3b9a7c8f1e780bf03139bb54f5c21.svg","isPro":false,"fullname":"Felipe Gomez","user":"Felipegg","type":"user"},{"_id":"66f6cacc78e0f4f61e42bad3","avatarUrl":"/avatars/eb22823f7dc950f91fbbc56dcf6e9ad1.svg","isPro":false,"fullname":"Alejandra Hernandez","user":"Alejandrahe","type":"user"},{"_id":"66f6cb0b38cf11b6d8e31ef5","avatarUrl":"/avatars/2141586d037188549f02c1b47094ce9c.svg","isPro":false,"fullname":"Eloy Sánchez","user":"eloysz","type":"user"},{"_id":"66f6cb13ef356f4618b23235","avatarUrl":"/avatars/dec4353c4656c0a1d7974a97ecf299aa.svg","isPro":false,"fullname":"Ruben Segura Cañizares","user":"rubenseguraa","type":"user"},{"_id":"66f6cb58e5d2d88a93e7d1ac","avatarUrl":"/avatars/1c149a5c5dfba800daeafaecc5976797.svg","isPro":false,"fullname":"Mariano Delpree","user":"MarianoDelpree","type":"user"},{"_id":"66f6cb70cdcb9a4eae068493","avatarUrl":"/avatars/e2c69dad6840256d753afe12f6929cc8.svg","isPro":false,"fullname":"martinez gonzalez","user":"Mariamartinezg","type":"user"},{"_id":"66f6cb9aea6525be74d48942","avatarUrl":"/avatars/fa24869e1a8b867ab262e87bb39ed9ba.svg","isPro":false,"fullname":"Gonzalo Mir Garcia","user":"gonzalomir","type":"user"},{"_id":"66f6cc108d3b5532dd550fa1","avatarUrl":"/avatars/bf705be8e4d6cb4564171a9024effe56.svg","isPro":false,"fullname":"Diana","user":"Dianadelorenzo","type":"user"},{"_id":"66f6ced9ea0fa70f384d8c3d","avatarUrl":"/avatars/a13aa1bb940dededa8c43d569c9d466f.svg","isPro":false,"fullname":"María Consolación Fernandez","user":"Mariafernandezc","type":"user"},{"_id":"66f6d836ef356f4618b60c53","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66f6d836ef356f4618b60c53/HEWdhcC6KODCBj5bUHZ9_.png","isPro":false,"fullname":"Yan Bernard","user":"xdYanou","type":"user"},{"_id":"66fab8437e168124517f3ef4","avatarUrl":"/avatars/ff217f556276df5fb48ff9cbad6e7b1a.svg","isPro":false,"fullname":"Paul Khairallah","user":"pkhairallah","type":"user"},{"_id":"670002f188b79862d824e52b","avatarUrl":"/avatars/642c0caa4c4394b4c15993e15323b22c.svg","isPro":false,"fullname":"Samer Roz","user":"samerroz","type":"user"},{"_id":"6707e531e2eed23bd4f8d421","avatarUrl":"/avatars/2403ed025bb946d5598dc57af4ddc731.svg","isPro":false,"fullname":"Brissa James","user":"brissajames","type":"user"},{"_id":"67093bd1bb2498474f28c0a7","avatarUrl":"/avatars/200980e65c1c00013d9a8c36124e6b52.svg","isPro":false,"fullname":"Gonzalo Ruiz","user":"Gonzalo-Ruiz-52","type":"user"},{"_id":"678e13338b0ce22ae8a5af32","avatarUrl":"/avatars/320ca2ef95bf9f5c17752af3aad924a1.svg","isPro":false,"fullname":"Jose Tomas Burguillos","user":"josetomasbd","type":"user"},{"_id":"678e5b2cd898f5dcf7dff86f","avatarUrl":"/avatars/228314515d031e3692ff5eb544c57e04.svg","isPro":false,"fullname":"Alicia","user":"aliciahaya","type":"user"},{"_id":"678e5b2ce131e1070eb2c919","avatarUrl":"/avatars/6ffeb98421153ba2d77597ded622bb38.svg","isPro":false,"fullname":"Hidalgo","user":"anahidalggo","type":"user"},{"_id":"678e5b50d898f5dcf7e00738","avatarUrl":"/avatars/b7e7e1f3ed15f669244cd61169b9df8a.svg","isPro":false,"fullname":"iker de ibar","user":"ikerdeibar","type":"user"},{"_id":"678e5b7937403bca4d169fe6","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/678e5b7937403bca4d169fe6/uX6V7fOYGAYLsPVUspkZv.jpeg","isPro":false,"fullname":"Duarte Barbosa","user":"duartebarbosa12","type":"user"},{"_id":"678e5b85ddfccd122a70ee72","avatarUrl":"/avatars/30bcb6e0cd420990b36472826fdb548f.svg","isPro":false,"fullname":"Alfonso Del saz","user":"AlfonsoDS","type":"user"},{"_id":"678e5e0ff19c1ee6e54db330","avatarUrl":"/avatars/6f7e026787045e1a244b04edd9d83d10.svg","isPro":false,"fullname":"Paolo Martino Bianchi Marzoli","user":"paolobianchi","type":"user"},{"_id":"678e5e97e123be979a2de300","avatarUrl":"/avatars/944f44f110e16e0792cb3ded8266a1fa.svg","isPro":false,"fullname":"Mayca Valdecantos Nestar","user":"mvaldecantos","type":"user"},{"_id":"678fb14aff8f3e2f487c38dd","avatarUrl":"/avatars/437f8e7ebfcdf7a59872af1802f30cc7.svg","isPro":false,"fullname":"Valentin Miguel","user":"ValentinMi","type":"user"},{"_id":"679406557cd8d353ea13c3b3","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/kSaWtwiWWikBJOPE4Gy42.png","isPro":false,"fullname":"Ignacio","user":"IgnacioGar","type":"user"},{"_id":"6797974b9f6d200ac8cfa8fc","avatarUrl":"/avatars/72817719464d0c2b70fdf8c4303f6638.svg","isPro":false,"fullname":"Fernando Sarasola","user":"fersarasola","type":"user"}],"userCount":257,"collections":[],"datasets":[{"author":"ieuniversity","downloads":90,"gated":false,"id":"ieuniversity/group_10_submission","lastModified":"2025-05-25T16:58:51.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":96,"gated":false,"id":"ieuniversity/group_1_submission","lastModified":"2025-05-05T21:59:33.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":217,"gated":false,"id":"ieuniversity/group_5_submission","lastModified":"2025-05-05T21:58:52.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":62,"gated":false,"id":"ieuniversity/group_2_submission","lastModified":"2025-05-05T21:52:14.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":209,"gated":false,"id":"ieuniversity/group_7_submission","lastModified":"2025-05-05T21:48:33.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":108,"gated":false,"id":"ieuniversity/group_4_submission","lastModified":"2025-05-05T21:32:45.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":63,"gated":false,"id":"ieuniversity/group_3_submission","lastModified":"2025-05-05T21:05:53.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":168,"gated":false,"id":"ieuniversity/group_9_submission","lastModified":"2025-05-05T19:53:02.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":87,"gated":false,"id":"ieuniversity/group__submission","lastModified":"2025-05-05T19:15:36.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false},{"author":"ieuniversity","downloads":18,"gated":false,"id":"ieuniversity/group_11_submission","lastModified":"2025-05-04T19:29:30.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25808,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false,"isBenchmark":false}],"models":[{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":14,"gated":false,"id":"ieuniversity/sciencebrief_summarization","availableInferenceProviders":[],"lastModified":"2023-04-12T07:40:34.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":25,"gated":false,"id":"ieuniversity/sciencebrief_translation","availableInferenceProviders":[],"lastModified":"2023-04-12T07:30:36.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":14,"gated":false,"id":"ieuniversity/flirty_paraphraser","availableInferenceProviders":[],"lastModified":"2023-04-10T22:03:19.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":12,"gated":false,"id":"ieuniversity/general_paraphrase","availableInferenceProviders":[],"lastModified":"2023-04-10T21:07:01.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":8,"gated":false,"id":"ieuniversity/pangea_translation_model","availableInferenceProviders":[],"lastModified":"2023-04-10T19:37:32.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":0,"gated":false,"id":"ieuniversity/Image_captioning_model","availableInferenceProviders":[],"lastModified":"2023-04-10T18:03:15.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":14,"gated":false,"id":"ieuniversity/flirty_classifier","availableInferenceProviders":[],"lastModified":"2023-04-10T14:59:10.000Z","likes":2,"pipeline_tag":"text-classification","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[]},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":11,"gated":false,"id":"ieuniversity/summarization_model_translator","availableInferenceProviders":[],"lastModified":"2023-04-10T14:50:06.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"downloads":9,"gated":false,"id":"ieuniversity/pangea_summarization_model","availableInferenceProviders":[],"lastModified":"2023-04-06T12:28:28.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false}],"paperPreviews":[],"spaces":[{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"purple","colorTo":"pink","createdAt":"2023-04-12T08:42:30.000Z","emoji":"🚀","id":"ieuniversity/Sciencebrief_translation","lastModified":"2024-10-03T14:01:09.000Z","likes":3,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":86400,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-sciencebrief-translation.hf.space","stage":"READY"}]},"title":"Sciencebrief Translation","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"blue","colorTo":"gray","createdAt":"2024-06-12T20:50:45.000Z","emoji":"🌍","id":"ieuniversity/FakenewsDetection","lastModified":"2024-06-12T20:57:05.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-fakenewsdetection.hf.space","stage":"READY"}]},"title":"FakenewsDetection","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"blue","colorTo":"gray","createdAt":"2024-04-15T18:41:57.000Z","emoji":"🦀","id":"ieuniversity/live_stock_news_dashboard","lastModified":"2024-04-29T19:10:19.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-live-stock-news-dashboard.hf.space","stage":"READY"}]},"title":"Live Stock News Dashboard","isLikedByUser":false,"originRepo":{"name":"jmaciejowski/live_stock_news_dashboard","author":{"_id":"65aa6cefb68db4f26ed49545","avatarUrl":"/avatars/31517a51dbcd51a826c3b3a7ce072f82.svg","fullname":"Jan Maciejowski","name":"jmaciejowski","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":3}},"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"pink","colorTo":"gray","createdAt":"2024-04-15T13:02:45.000Z","emoji":"🐢","id":"ieuniversity/Visa-Chatbot","lastModified":"2024-04-29T13:50:05.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Traceback (most recent call last):\n File \"/home/user/app/app.py\", line 3, in \n import openai\nModuleNotFoundError: No module named 'openai'\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-visa-chatbot.hf.space","stage":"READY"}]},"title":"NLP Project VisaChatbot","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"purple","colorTo":"gray","createdAt":"2024-04-30T08:17:48.000Z","emoji":"📊","id":"ieuniversity/Women_Cancer_Chat_Generative","lastModified":"2024-04-29T09:34:52.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-women-cancer-chat-generative.hf.space","stage":"READY"}]},"title":"Trial Wopipe","isLikedByUser":false,"originRepo":{"name":"jrocha/Cancer_Chatbot","author":{"_id":"65c55a7ae03f78fa9ed5002c","avatarUrl":"/avatars/3adbe268ebb5ed4beb9e361f72e38121.svg","fullname":"joana rocha camargo","name":"jrocha","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1}},"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"ieuniversity","authorData":{"_id":"63ff35b112c51862e5d8ef8c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677669718585-61f333df8f26cc42dc587011.png","fullname":"IE University","name":"ieuniversity","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":281},"colorFrom":"green","colorTo":"pink","createdAt":"2024-04-28T18:11:52.000Z","emoji":"🔥","id":"ieuniversity/NLP-VISA-CHATBOT","lastModified":"2024-04-28T18:16:41.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"ieuniversity-nlp-visa-chatbot.hf.space","stage":"READY"}]},"title":"NLP2","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false}],"numDatasets":25,"numModels":9,"numSpaces":17,"lastOrgActivities":[],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{},"paperView":false}">

AI & ML interests

NLP, Computer Vision, Reinforcement Learning, Machine Learning, Deep Learning

IE University HuggingFace Organization

IE University is a top international University with a strong focus on business management, economics, science and technology. In this organization students can share their projects on subjects such as Natural Language Processing with the community.

By sharing their work, students have the opportunity of receiving feedback on their projects, as well as external guidance. So please, as an external visitor, take into account that the projects shared in this organization are created by undergraduate students eager to learn more about this beautiful AI world and be part of its community. Be 🤗 to them and give some ❤️ to their projects.