{ // 获取包含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
\n

AetherArchitectural

\n

Community

\n
\n \n
\n
\n

Welcome!

\n

\n This is a place to host\n @Aetherarchio, \n @Lewdiculous, and \n @FantasiaFoundry's\n general AI, ML and LLM related community projects. \n

\n
\n \n
\n

Contact?

\n

\n Reach out at...
\n aetherarchitectural@datasets.fyi
\n ...or join a discussion in the community!\n

\n
\n
\n \n\n\n","classNames":"hf-sanitized hf-sanitized-RPjZPGRrd3NZde9s21nCG"},"users":[{"_id":"65d4cf2693a0a3744a27536c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/HOCJv7WE2C4eqqqppDFpA.png","isPro":false,"fullname":"Lewdiculous (AetherArchitectural)","user":"Lewdiculous","type":"user"},{"_id":"65ddabb9bbffb280f4b45d8e","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/65ddabb9bbffb280f4b45d8e/qg_7zSqy26Wonx-zZsU3G.png","isPro":false,"fullname":"Fantasia Foundry (AetherArchitectural)","user":"FantasiaFoundry","type":"user"},{"_id":"66b568aaf4434e2a547d6988","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/M-YKhuDT2Y5yEMCmEoXqD.png","isPro":false,"fullname":"Aetherarchio (AetherArchitectural)","user":"Aetherarchio","type":"user"}],"userCount":3,"collections":[{"slug":"AetherArchitectural/quantizations-67621aeeea3649f2ad2b2e4e","title":"Quantizations","description":"Newest items at the bottom of the list.","gating":false,"lastUpdated":"2024-12-20T02:51:06.891Z","owner":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"items":[{"_id":"67621b095e6705342ee93ff8","position":0,"type":"model","author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":230,"gated":false,"id":"AetherArchitectural/EXAONE-3.5-2.4B-Instruct-abliterated-GGUF-IQ-ARM-Imatrix-Community","availableInferenceProviders":[],"lastModified":"2024-12-18T01:11:06.000Z","likes":6,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":2667471400},{"_id":"67646d8a07a95cbf7dbbb6d3","position":1,"type":"model","author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":217,"gated":false,"id":"AetherArchitectural/EXAONE-3.5-7.8B-Instruct-abliterated-GGUF-ARM-Imatrix-Community","availableInferenceProviders":[],"lastModified":"2024-12-19T19:37:59.000Z","likes":6,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":7818448960}],"position":0,"theme":"green","private":false,"shareUrl":"https://hf.co/collections/AetherArchitectural/quantizations","upvotes":1,"isUpvotedByUser":false},{"slug":"AetherArchitectural/social-673c38d8ba93463b56e2f4e5","title":"Social","description":"","gating":false,"lastUpdated":"2024-12-19T19:02:31.884Z","owner":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"items":[{"_id":"673c3924ae4657d7b3fec518","position":0,"type":"model","author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":0,"gated":false,"id":"AetherArchitectural/Community-Discussions","availableInferenceProviders":[],"lastModified":"2024-11-19T06:54:07.000Z","likes":21,"private":false,"repoType":"model","isLikedByUser":false}],"position":1,"theme":"indigo","private":false,"shareUrl":"https://hf.co/collections/AetherArchitectural/social","upvotes":2,"isUpvotedByUser":false},{"slug":"AetherArchitectural/tools-673c33924299bda07a48cf20","title":"Tools","description":"","gating":false,"lastUpdated":"2024-12-19T19:02:31.889Z","owner":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"items":[{"_id":"673c33ac21972b9d6f94284a","position":0,"type":"model","author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":0,"gated":false,"id":"AetherArchitectural/GGUF-Quantization-Script","availableInferenceProviders":[],"lastModified":"2025-08-31T23:32:47.000Z","likes":69,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[]}],"position":2,"theme":"pink","private":false,"shareUrl":"https://hf.co/collections/AetherArchitectural/tools","upvotes":3,"isUpvotedByUser":false}],"datasets":[],"models":[{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":0,"gated":false,"id":"AetherArchitectural/GGUF-Quantization-Script","availableInferenceProviders":[],"lastModified":"2025-08-31T23:32:47.000Z","likes":69,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[]},{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":19,"gated":false,"id":"AetherArchitectural/lwd-Mirau-RP-14B","availableInferenceProviders":[],"lastModified":"2025-04-28T05:58:25.000Z","likes":19,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":14770033664},{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":217,"gated":false,"id":"AetherArchitectural/EXAONE-3.5-7.8B-Instruct-abliterated-GGUF-ARM-Imatrix-Community","availableInferenceProviders":[],"lastModified":"2024-12-19T19:37:59.000Z","likes":6,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":7818448960},{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":230,"gated":false,"id":"AetherArchitectural/EXAONE-3.5-2.4B-Instruct-abliterated-GGUF-IQ-ARM-Imatrix-Community","availableInferenceProviders":[],"lastModified":"2024-12-18T01:11:06.000Z","likes":6,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":2667471400},{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":0,"gated":false,"id":"AetherArchitectural/Community-Discussions","availableInferenceProviders":[],"lastModified":"2024-11-19T06:54:07.000Z","likes":21,"private":false,"repoType":"model","isLikedByUser":false}],"paperPreviews":[],"spaces":[],"numDatasets":0,"numModels":5,"numSpaces":1,"lastOrgActivities":[{"time":"2025-11-04T14:30:57.858Z","user":"Lewdiculous","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/HOCJv7WE2C4eqqqppDFpA.png","org":"AetherArchitectural","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","type":"discussion","discussionData":{"num":20,"author":{"_id":"65d4cf2693a0a3744a27536c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/HOCJv7WE2C4eqqqppDFpA.png","fullname":"Lewdiculous (AetherArchitectural)","name":"Lewdiculous","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1282},"repo":{"name":"AetherArchitectural/Community-Discussions","type":"model"},"title":"R7B - Unsafe Results","status":"closed","createdAt":"2025-01-04T18:31:54.000Z","isPullRequest":false,"numComments":27,"topReactions":[],"numReactionUsers":0,"pinned":false,"repoOwner":{"name":"AetherArchitectural","isParticipating":true,"type":"org","isDiscussionAuthor":true}},"repoId":"AetherArchitectural/Community-Discussions","repoType":"model","eventId":"690a0e21ac89e6d473f095d7"},{"time":"2025-08-31T23:32:47.986Z","user":"Lewdiculous","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/HOCJv7WE2C4eqqqppDFpA.png","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","type":"update","repoData":{"author":"AetherArchitectural","authorData":{"_id":"673c2617ae4657d7b3f8ca63","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","fullname":"AetherArchitectural","name":"AetherArchitectural","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":87},"downloads":0,"gated":false,"id":"AetherArchitectural/GGUF-Quantization-Script","availableInferenceProviders":[],"lastModified":"2025-08-31T23:32:47.000Z","likes":69,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[]},"repoId":"AetherArchitectural/GGUF-Quantization-Script","repoType":"model","org":"AetherArchitectural"},{"time":"2025-04-28T05:58:25.796Z","user":"Lewdiculous","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/HOCJv7WE2C4eqqqppDFpA.png","org":"AetherArchitectural","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66b568aaf4434e2a547d6988/QxC1B7VdSKi8rcFBOgcYk.png","type":"discussion","discussionData":{"num":1,"author":{"_id":"613b0a62a14099d5afed7830","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/613b0a62a14099d5afed7830/pLuqSIYaNYhUqdjxlNrFn.png","fullname":"Loïck BOURDOIS","name":"lbourdois","type":"user","isPro":true,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":173},"repo":{"name":"AetherArchitectural/lwd-Mirau-RP-14B","type":"model"},"title":"Improve language tag","status":"merged","createdAt":"2025-04-28T03:48:32.000Z","isPullRequest":true,"numComments":2,"topReactions":[],"numReactionUsers":0,"pinned":false,"repoOwner":{"name":"AetherArchitectural","isParticipating":true,"type":"org","isDiscussionAuthor":false}},"repoId":"AetherArchitectural/lwd-Mirau-RP-14B","repoType":"model","eventId":"680f190112b5c23358c1684a"}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{},"orgEmailDomain":"datasets.fyi","paperView":false}">

AI & ML interests

Aetherarchio, Lewdiculous and FantasiaFoundry's general AI, ML and LLM related community projects. [[email protected]]

Recent Activity

AetherArchitectural

Community

Welcome!

This is a place to host @Aetherarchio, @Lewdiculous, and @FantasiaFoundry's general AI, ML and LLM related community projects.

Contact?

Reach out at...
[email protected]
...or join a discussion in the community!

datasets 0

None public yet