TheSkullery

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
\n

The Skullery

\n
\n
\n \n

Owner: SteelSkull

\n

About The Skullery:

\n

a place for my more advanced experiments, finetuned models, and Collaborations

\n

PS: if a repo is gated it is due to not wanting people to quant it as it is an middle model, also configs are encrypted until blind testing of a model is complete

\n
\n
\n

Main Series:

\n [huggingface.co/Steelskull]\n

Model names are Etherial

\n

Old models:

\n [huggingface.co/SteelStorage]\n

I've had a few people ask about donations so here's a link:\n

\n
\n \n \"Buy\n \n
\n
\n\n\n","classNames":"hf-sanitized hf-sanitized-etmRqhhOimiuL8zib05sA"},"users":[{"_id":"64545af5ec40bbbd01242ca6","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png","isPro":true,"fullname":"Steel","user":"Steelskull","type":"user"}],"userCount":1,"collections":[],"datasets":[{"author":"TheSkullery","downloads":17,"gated":false,"id":"TheSkullery/R-merge","lastModified":"2025-03-20T07:35:09.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":25021,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":1,"isLikedByUser":false},{"author":"TheSkullery","downloads":1,"gated":false,"id":"TheSkullery/Aether-Lite-PurHyDe","lastModified":"2024-07-22T02:08:38.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":107175,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","text"]},"private":false,"repoType":"dataset","likes":3,"isLikedByUser":false},{"author":"TheSkullery","downloads":8,"gated":false,"id":"TheSkullery/Aether-Lite-v1.8.1","lastModified":"2024-06-23T12:46:16.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":125119,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","text"]},"private":false,"repoType":"dataset","likes":10,"isLikedByUser":false},{"author":"TheSkullery","downloads":8,"gated":false,"id":"TheSkullery/Aether-Lite-v1.8","lastModified":"2024-06-23T12:44:20.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":125119,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","text"]},"private":false,"repoType":"dataset","likes":1,"isLikedByUser":false},{"author":"TheSkullery","downloads":34,"gated":false,"id":"TheSkullery/WizardLM_evol_instruct_v2_Filtered_Fuzzy_Dedup_ShareGPT","lastModified":"2024-06-22T09:35:13.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":117809,"libraries":["datasets","dask","mlcroissant","polars"],"formats":["parquet"],"modalities":["tabular","text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"TheSkullery","downloads":7,"gated":false,"id":"TheSkullery/Aether-Lite-V1.6","lastModified":"2024-06-11T13:11:21.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":134090,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":6,"isLikedByUser":false},{"author":"TheSkullery","downloads":2,"gated":false,"id":"TheSkullery/C2logs_Filtered_Sharegpt_Merged","lastModified":"2024-06-10T12:09:25.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":64268,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"TheSkullery","downloads":2,"gated":false,"id":"TheSkullery/Aether-Lite-V1.5","lastModified":"2024-06-10T07:52:22.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":146476,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":1,"isLikedByUser":false},{"author":"TheSkullery","downloads":2,"gated":false,"id":"TheSkullery/Gryphe-Opus-WritingPrompts-merged","lastModified":"2024-06-10T06:39:21.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":6022,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":0,"isLikedByUser":false},{"author":"TheSkullery","downloads":2,"gated":false,"id":"TheSkullery/Aether-Lite-V1.2","lastModified":"2024-06-06T06:26:59.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":81960,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["parquet"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":5,"isLikedByUser":false}],"models":[{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":9,"gated":false,"id":"TheSkullery/L3.1-Unnamed-Exp-8B-V0.1","availableInferenceProviders":[],"lastModified":"2025-06-25T01:28:52.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":8030547968},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":8,"gated":false,"id":"TheSkullery/L3.3-Nemoblated-8B-V0.1","availableInferenceProviders":[],"lastModified":"2025-06-25T01:01:40.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":8030523392},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":7,"gated":false,"id":"TheSkullery/L3.3-M2-Hydrargyrum-70B","availableInferenceProviders":[],"lastModified":"2025-06-23T05:52:30.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":70553706496},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":7,"gated":false,"id":"TheSkullery/L3.3-M1-Hydrargyrum-70B","availableInferenceProviders":[],"lastModified":"2025-06-23T05:00:33.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":70553706496},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":7,"gated":false,"id":"TheSkullery/L3.3-Cogmoblated-70B","availableInferenceProviders":[],"lastModified":"2025-06-22T23:42:38.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":70553706496},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":7,"gated":false,"id":"TheSkullery/GLM4-Unnamed-Exp-32b-v0.2","availableInferenceProviders":[],"lastModified":"2025-05-16T00:46:26.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":32563513344},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":5,"gated":false,"id":"TheSkullery/GLM4-Unnamed-Exprimental-32b-v0.1","availableInferenceProviders":[],"lastModified":"2025-05-15T04:02:59.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":32563513344},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":6,"gated":false,"id":"TheSkullery/Unnamed-Exp-QWQ-32b-v0.3.5","availableInferenceProviders":[],"lastModified":"2025-05-03T01:04:05.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":32759831552},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":5,"gated":false,"id":"TheSkullery/Unnamed-Exp-QWQ-32b-v0.3","availableInferenceProviders":[],"lastModified":"2025-04-26T02:11:17.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":32759831552},{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":5,"gated":false,"id":"TheSkullery/Unnamed-Exp-QWQ-32b-v0.2","availableInferenceProviders":[],"lastModified":"2025-04-19T01:18:31.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":32759831552}],"spaces":[],"numDatasets":12,"numModels":36,"numSpaces":1,"lastOrgActivities":[{"time":"2025-06-29T05:49:58.064Z","user":"Steelskull","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png","type":"update","repoData":{"author":"Steelskull","authorData":{"_id":"64545af5ec40bbbd01242ca6","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png","fullname":"Steel","name":"Steelskull","type":"user","isPro":true,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":412},"downloads":134,"gated":false,"id":"Steelskull/L3.3-Shakudo-70b","availableInferenceProviders":[],"lastModified":"2025-07-04T12:37:33.000Z","likes":19,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":70553706496},"repoId":"Steelskull/L3.3-Shakudo-70b","repoType":"model"},{"time":"2025-06-28T02:26:42.900Z","user":"Steelskull","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","type":"update","repoData":{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"colorFrom":"red","colorTo":"red","createdAt":"2024-03-08T01:32:02.000Z","emoji":"🌖","id":"TheSkullery/README","lastModified":"2025-06-28T02:26:42.000Z","likes":0,"pinned":false,"private":false,"sdk":"static","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":null,"requested":null},"storage":null,"replicas":{"requested":1,"current":1}},"title":"README","isLikedByUser":false,"trendingScore":0,"tags":["static","region:us"]},"repoId":"TheSkullery/README","repoType":"space","org":"TheSkullery"},{"time":"2025-06-25T01:28:53.400Z","user":"Steelskull","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/xRbPO8262bQ030329Kn7R.png","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","type":"update","repoData":{"author":"TheSkullery","authorData":{"_id":"65e3e8c05df8e81bedf65d11","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64545af5ec40bbbd01242ca6/A8c-oM6yWYaBFcfLe_LFG.png","fullname":"TheSkullery","name":"TheSkullery","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":43},"downloads":9,"gated":false,"id":"TheSkullery/L3.1-Unnamed-Exp-8B-V0.1","availableInferenceProviders":[],"lastModified":"2025-06-25T01:28:52.000Z","likes":0,"private":false,"repoType":"model","isLikedByUser":false,"numParameters":8030547968},"repoId":"TheSkullery/L3.1-Unnamed-Exp-8B-V0.1","repoType":"model","org":"TheSkullery"}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"currentRepoPage":0,"filters":{}}">

AI & ML interests

None defined yet.

Recent Activity

Steelskull  updated a model about 2 months ago
Steelskull/L3.3-Shakudo-70b
Steelskull  updated a Space about 2 months ago
TheSkullery/README
Steelskull  updated a model 2 months ago
TheSkullery/L3.1-Unnamed-Exp-8B-V0.1
View all activity

The Skullery

Owner: SteelSkull

About The Skullery:

a place for my more advanced experiments, finetuned models, and Collaborations

PS: if a repo is gated it is due to not wanting people to quant it as it is an middle model, also configs are encrypted until blind testing of a model is complete

Main Series:

[huggingface.co/Steelskull]

Model names are Etherial

Old models:

[huggingface.co/SteelStorage]

I've had a few people ask about donations so here's a link: