New Eden

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

NewEden

\n
\n \"Boba\n
\n \"No hard feelings. It's just business.\"\n
\n
\n

This is the way. | © Delta-Vector

\n
\n\n","classNames":"hf-sanitized hf-sanitized-LsnehRWskEUhX2HJQ-6ia"},"users":[{"_id":"626dfb8786671a29c715f8a9","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/626dfb8786671a29c715f8a9/-eHnaaqvl9PGCLAwksNb8.jpeg","isPro":false,"fullname":"jeiku","user":"jeiku","type":"user"},{"_id":"630dfb008df86f1e5becadc3","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1667690511692-630dfb008df86f1e5becadc3.png","isPro":false,"fullname":"IkariDev","user":"IkariDev","type":"user"},{"_id":"632b9f9866f28bf34ae85487","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1670736706483-632b9f9866f28bf34ae85487.jpeg","isPro":false,"fullname":"Doctor Shotgun","user":"Doctor-Shotgun","type":"user"},{"_id":"636a8850c0be1b0cfbe40cc1","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/636a8850c0be1b0cfbe40cc1/6rQEjyfAp8hIXQuto893J.jpeg","isPro":false,"fullname":"Trappu","user":"Trappu","type":"user"},{"_id":"6390f888de25f9eda571b0f2","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6390f888de25f9eda571b0f2/D9wsz56ZnYAMZZqQmwAza.jpeg","isPro":false,"fullname":"Ateron","user":"Ateron","type":"user"},{"_id":"63a218623c003e40931a6cff","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1671567442495-noauth.png","isPro":false,"fullname":"TearGosling","user":"TearGosling","type":"user"},{"_id":"642265bc01c62c1e4102dc36","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/642265bc01c62c1e4102dc36/cyS3pruXR7XiFa0hViGCm.png","isPro":false,"fullname":"Nitral","user":"Nitral-AI","type":"user"},{"_id":"6491e00e057b0928b3e07b75","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6491e00e057b0928b3e07b75/j31tFTZuAqfE5gYfZqSdI.jpeg","isPro":true,"fullname":"Kalomaze","user":"kalomaze","type":"user"},{"_id":"64ae4107ad6218d51a2a7d0c","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64ae4107ad6218d51a2a7d0c/3dcor68aYBKEcTlOUHJpK.png","isPro":false,"fullname":"Gryphe Padar","user":"Gryphe","type":"user"},{"_id":"64dd7cda3d6b954bf7cdd922","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64dd7cda3d6b954bf7cdd922/w4au4Drd6vbFs7xh5tofI.png","isPro":false,"fullname":"c.gato","user":"cgato","type":"user"},{"_id":"64ed09ce4e57da899379e035","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64ed09ce4e57da899379e035/Fruk5DUlgbG3KM80O0e76.png","isPro":false,"fullname":"Kubernetes Bad","user":"kubernetes-bad","type":"user"},{"_id":"6516a449f464644a73d16e3f","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6516a449f464644a73d16e3f/ZBrtPUL_ABreDc-qLORUq.png","isPro":false,"fullname":"lodrick","user":"lodrick-the-lafted","type":"user"},{"_id":"65221315578e7da0d74f73d8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/65221315578e7da0d74f73d8/AIUKrS9lxAEt4GIsqgcoo.png","isPro":false,"fullname":"Carsten Kragelund","user":"NyxKrage","type":"user"},{"_id":"6548b80bb3a7efb9391e19e8","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6548b80bb3a7efb9391e19e8/DYCJL22AOn8kDLQhi9TaW.png","isPro":false,"fullname":"DreamGen","user":"DreamGenX","type":"user"},{"_id":"6569216f9c96f1a47bf45788","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6569216f9c96f1a47bf45788/mCLqmAs4dOjKdxNQVAp1w.png","isPro":false,"fullname":"Sica Rius","user":"SicariusSicariiStuff","type":"user"},{"_id":"656c14c08fb1ddf0d5202292","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/656c14c08fb1ddf0d5202292/d-5-zIFoRkrKM0KF-buXq.jpeg","isPro":false,"fullname":"intervitens","user":"intervitens","type":"user"},{"_id":"657a960a592af6bbb2b92056","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/657a960a592af6bbb2b92056/1qtRM-0aCTZp_GFGJfZhS.jpeg","isPro":false,"fullname":"Nako Nishke","user":"Nakdesu","type":"user"},{"_id":"658a46cbfb9c2bdfae75b3a6","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/QSins2Wn6frq1-EdnhJ2Y.jpeg","isPro":false,"fullname":"lucy","user":"lucyknada","type":"user"},{"_id":"659c4ecb413a1376bee2f661","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/659c4ecb413a1376bee2f661/EtqFRWlNSDhmy9tL0bdn-.jpeg","isPro":false,"fullname":"gum1h0x","user":"juvi21","type":"user"},{"_id":"661659172851ba108048ff25","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/661659172851ba108048ff25/QHnzCEkqf7VM5qNdnivY_.png","isPro":false,"fullname":"Aurorae","user":"AuriAetherwiing","type":"user"},{"_id":"6621025b52cfb16741752836","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6621025b52cfb16741752836/s-jSShRfTrOad__65onGL.png","isPro":false,"fullname":"wave","user":"wave-on-discord","type":"user"},{"_id":"668f6fa0c0af06ce53ce1b00","avatarUrl":"/avatars/d63913b57252c0d254452a75eef7fc94.svg","isPro":false,"fullname":"Eoghan Underwood","user":"underwoods","type":"user"},{"_id":"66c26b6fb01b19d8c3c2467b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","isPro":false,"fullname":"Mango","user":"Delta-Vector","type":"user"},{"_id":"67b9f4c5b537525c0867d3e0","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/noauth/5oO6s5BBGiSQingXytC2v.png","isPro":false,"fullname":"Ruka","user":"hamanasu","type":"user"},{"_id":"67c68e51faf82ef97dc4722a","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/no-auth/pJtA1Kh_seJO5fc6RJquQ.png","isPro":false,"fullname":"Chop Chop","user":"chopchop7","type":"user"}],"userCount":25,"collections":[{"slug":"NewEden/sol-reaver-682b61160698863f07a07f3e","title":"Sol-Reaver","description":"","gating":false,"lastUpdated":"2025-05-19T16:52:11.637Z","owner":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"items":[{"_id":"682b6124ebd24fce29740216","position":0,"type":"model","author":"Delta-Vector","authorData":{"_id":"66c26b6fb01b19d8c3c2467b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","fullname":"Mango","name":"Delta-Vector","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":224},"downloads":8,"gated":false,"id":"Delta-Vector/Sol-Reaver-15B-Pretrain","availableInferenceProviders":[],"lastModified":"2025-05-25T21:22:37.000Z","likes":2,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":14974182400},{"_id":"682b612079c611c343af6461","position":1,"type":"model","author":"Delta-Vector","authorData":{"_id":"66c26b6fb01b19d8c3c2467b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","fullname":"Mango","name":"Delta-Vector","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":224},"downloads":129,"gated":false,"id":"Delta-Vector/Sol-Reaver-15B-Instruct","availableInferenceProviders":[],"lastModified":"2025-05-26T02:41:24.000Z","likes":14,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":14974182400},{"_id":"682b6127af3b1bdb793d369d","position":2,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":8,"gated":false,"id":"NewEden/Sol-Reaver-15B-RP-V2","availableInferenceProviders":[],"lastModified":"2025-05-18T18:25:58.000Z","likes":2,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":14974182400},{"_id":"682b61b5b28acfca3b6c9ce2","position":4,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":3,"gated":false,"id":"NewEden/Sol-Reaver-Quants","availableInferenceProviders":[],"lastModified":"2025-05-19T16:42:28.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":14974182400}],"position":0,"theme":"blue","private":false,"shareUrl":"https://huggingface.co/collections/NewEden/sol-reaver-682b61160698863f07a07f3e","upvotes":0,"isUpvotedByUser":false},{"slug":"NewEden/quantizations-672b72b0f801f80c9b7d7a59","title":"Quantizations","description":"","gating":false,"lastUpdated":"2024-12-18T00:50:23.977Z","owner":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"items":[{"_id":"672b72b5b60c3a27d7a8acab","position":0,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":14,"gated":false,"id":"NewEden/Nemo-12b-TheSpice-V0.9-All-v2-KTO-v0.1-E1-2049-Q8_0-GGUF","availableInferenceProviders":[],"lastModified":"2024-10-31T21:38:53.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":12247833600},{"_id":"672b72bf472b65839d2af8b7","position":1,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":0,"gated":false,"id":"NewEden/Gryphe_Pantheon-RP-1.6.2-22b-Small-exl2-4_4.5bpw","availableInferenceProviders":[],"lastModified":"2024-10-13T00:57:19.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"_id":"672b72c77b87c56ad664964b","position":2,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":0,"gated":false,"id":"NewEden/Gryphe_Pantheon-RP-1.6.1-12b-Nemo-exl2","availableInferenceProviders":[],"lastModified":"2024-10-09T12:24:08.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"_id":"672b72d99380700b60cae026","position":3,"type":"model","author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":0,"gated":false,"id":"NewEden/allura-org_G2-9B-Aletheia-v1-exl2","availableInferenceProviders":[],"lastModified":"2024-11-05T16:48:41.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false}],"position":5,"theme":"orange","private":false,"shareUrl":"https://huggingface.co/collections/NewEden/quantizations-672b72b0f801f80c9b7d7a59","upvotes":1,"isUpvotedByUser":false}],"datasets":[{"author":"NewEden","downloads":16,"gated":false,"id":"NewEden/Asl-sonnet","lastModified":"2025-08-14T20:17:32.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":85000,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":10,"gated":false,"id":"NewEden/auto-if","lastModified":"2025-08-14T18:49:59.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":61492,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":13,"gated":false,"id":"NewEden/cnn-sys-replaced","lastModified":"2025-08-14T07:19:44.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":287113,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":12,"gated":false,"id":"NewEden/R1-Distill-medical-DeMarkdownify","lastModified":"2025-08-14T06:53:18.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":22000,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":11,"gated":false,"id":"NewEden/Smol-talk-filter","lastModified":"2025-08-14T04:53:26.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":214822,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":13,"gated":false,"id":"NewEden/MoT-Smol-Snc","lastModified":"2025-08-14T04:46:33.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":86110,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":13,"gated":false,"id":"NewEden/full-chatm-pretok","lastModified":"2025-08-11T05:16:54.000Z","private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":24,"gated":false,"id":"NewEden/Full-data","lastModified":"2025-08-10T06:41:48.000Z","private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":27,"gated":false,"id":"NewEden/ablation-set","lastModified":"2025-08-10T02:43:38.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":46165,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":[]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"NewEden","downloads":124,"gated":false,"id":"NewEden/Nemo-Base-V7-Tekken","lastModified":"2025-08-10T01:30:30.000Z","private":false,"repoType":"dataset","likes":0,"isLikedByUser":false}],"models":[{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":4,"gated":false,"id":"NewEden/fucked-nemo","availableInferenceProviders":[],"lastModified":"2025-08-20T01:28:18.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":414720},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":6,"gated":false,"id":"NewEden/AFM-Pretrain-Koto-Final-ckpt","availableInferenceProviders":[],"lastModified":"2025-08-16T04:13:59.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":186880},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":11,"gated":false,"id":"NewEden/AFM-Koto","availableInferenceProviders":[],"lastModified":"2025-08-15T23:44:24.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":186880},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":168,"gated":false,"id":"NewEden/Nemo-v7-tekken-base","availableInferenceProviders":[],"lastModified":"2025-08-10T01:57:01.000Z","likes":0,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":12247782400},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":20,"gated":false,"id":"NewEden/iloveugfhrte4ughrtfughruetghurtgh","availableInferenceProviders":[],"lastModified":"2025-08-09T19:42:35.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":22062842880},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":16,"gated":false,"id":"NewEden/Heater-2025-yourpolitclsiisagangsin","availableInferenceProviders":[],"lastModified":"2025-08-09T02:54:36.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":22062842880},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":2,"gated":false,"id":"NewEden/data-gen","availableInferenceProviders":[],"lastModified":"2025-08-07T18:04:38.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":19,"gated":false,"id":"NewEden/PT-22B-V2","availableInferenceProviders":[],"lastModified":"2025-08-05T14:48:10.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":783360},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":11,"gated":false,"id":"NewEden/22B_PT","availableInferenceProviders":[],"lastModified":"2025-08-04T15:53:30.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":783360},{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":0,"gated":false,"id":"NewEden/nemo-tool-calling-shard","availableInferenceProviders":[],"lastModified":"2025-07-31T19:19:18.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false}],"spaces":[],"numDatasets":183,"numModels":121,"numSpaces":1,"lastOrgActivities":[{"time":"2025-08-20T01:28:19.864Z","user":"Delta-Vector","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","type":"update","repoData":{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":4,"gated":false,"id":"NewEden/fucked-nemo","availableInferenceProviders":[],"lastModified":"2025-08-20T01:28:18.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":414720},"repoId":"NewEden/fucked-nemo","repoType":"model","org":"NewEden"},{"time":"2025-08-20T01:25:51.711Z","user":"Delta-Vector","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","type":"publish","repoData":{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":4,"gated":false,"id":"NewEden/fucked-nemo","availableInferenceProviders":[],"lastModified":"2025-08-20T01:28:18.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":414720},"repoId":"NewEden/fucked-nemo","repoType":"model","org":"NewEden"},{"time":"2025-08-16T04:14:00.768Z","user":"Delta-Vector","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/ooI_t2shy93aCEq31PVB3.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","type":"update","repoData":{"author":"NewEden","authorData":{"_id":"667de552039ad1fcb8b9084d","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/66c26b6fb01b19d8c3c2467b/z9kcIT9HZ-UKmaixCOEry.jpeg","fullname":"New Eden","name":"NewEden","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":71},"downloads":6,"gated":false,"id":"NewEden/AFM-Pretrain-Koto-Final-ckpt","availableInferenceProviders":[],"lastModified":"2025-08-16T04:13:59.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":186880},"repoId":"NewEden/AFM-Pretrain-Koto-Final-ckpt","repoType":"model","org":"NewEden"}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{}}">

AI & ML interests

None defined yet.

Recent Activity

Delta-Vector  updated a model 5 days ago
NewEden/fucked-nemo
Delta-Vector  published a model 5 days ago
NewEden/fucked-nemo
View all activity

NewEden

Boba Fett
"No hard feelings. It's just business."

This is the way. | © Delta-Vector