#![allow(missing_docs)]
use std::collections::HashMap;
use std::sync::LazyLock;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Provider {
Anthropic,
OpenAI,
Google,
Mistral,
Groq,
DeepSeek,
Cohere,
Bedrock,
AzureOpenAI,
VertexAI,
TogetherAI,
OpenRouter,
Cerebras,
SambaNova,
Fireworks,
AI21,
HuggingFace,
Replicate,
Cloudflare,
Databricks,
Writer,
Maritaca,
NaverClova,
Yandex,
GigaChat,
Upstage,
SeaLion,
Alibaba,
AlephAlpha,
Baidu,
Baseten,
DataRobot,
LightOn,
NLPCloud,
Oracle,
Perplexity,
RunPod,
SapAICore,
Snowflake,
Vllm,
WatsonX,
Xai,
DeepInfra,
NvidiaNIM,
Ollama,
Anyscale,
GitHubModels,
FriendliAI,
Hyperbolic,
LambdaLabs,
Novita,
Nebius,
Lepton,
Stability,
Voyage,
Jina,
Deepgram,
ElevenLabs,
GPT4All,
Hunyuan,
MiniMax,
Moonshot,
Zhipu,
Volcengine,
Baichuan,
Stepfun,
Yi,
Spark,
LMStudio,
Llamafile,
Xinference,
LocalAI,
Jan,
Petals,
Tgi,
Predibase,
OctoAI,
Featherless,
OVHCloud,
Scaleway,
Crusoe,
Cerebrium,
Lightning,
AssemblyAI,
RunwayML,
Kakao,
LGExaone,
PLaMo,
Sarvam,
Krutrim,
NttTsuzumi,
SoftBankSarashina,
Ionos,
Tilde,
SiloAI,
SwissAI,
Unify,
Martian,
Portkey,
Helicone,
SiliconFlow,
Pika,
Luma,
Kling,
HeyGen,
DId,
TwelveLabs,
RevAI,
Speechmatics,
PlayHT,
Resemble,
Leonardo,
Ideogram,
BlackForestLabs,
Clarifai,
Fal,
Recraft,
Modal,
Beam,
Nscale,
Runware,
AI71,
Local,
Custom,
}
impl Provider {
pub fn api_key_env_var(&self) -> Option<&'static str> {
match self {
Provider::Anthropic => Some("ANTHROPIC_API_KEY"),
Provider::OpenAI => Some("OPENAI_API_KEY"),
Provider::Google => Some("GOOGLE_API_KEY"),
Provider::Mistral => Some("MISTRAL_API_KEY"),
Provider::Groq => Some("GROQ_API_KEY"),
Provider::DeepSeek => Some("DEEPSEEK_API_KEY"),
Provider::Cohere => Some("COHERE_API_KEY"),
Provider::Bedrock => Some("AWS_ACCESS_KEY_ID"),
Provider::AzureOpenAI => Some("AZURE_API_KEY"),
Provider::VertexAI => Some("GOOGLE_APPLICATION_CREDENTIALS"),
Provider::TogetherAI => Some("TOGETHER_API_KEY"),
Provider::OpenRouter => Some("OPENROUTER_API_KEY"),
Provider::Cerebras => Some("CEREBRAS_API_KEY"),
Provider::SambaNova => Some("SAMBANOVA_API_KEY"),
Provider::Fireworks => Some("FIREWORKS_API_KEY"),
Provider::AI21 => Some("AI21_API_KEY"),
Provider::HuggingFace => Some("HUGGINGFACE_API_KEY"),
Provider::Replicate => Some("REPLICATE_API_TOKEN"),
Provider::Cloudflare => Some("CLOUDFLARE_API_TOKEN"),
Provider::Databricks => Some("DATABRICKS_TOKEN"),
Provider::Writer => Some("WRITER_API_KEY"),
Provider::Maritaca => Some("MARITALK_API_KEY"),
Provider::NaverClova => Some("CLOVASTUDIO_API_KEY"),
Provider::Yandex => Some("YANDEX_API_KEY"),
Provider::GigaChat => Some("GIGACHAT_API_KEY"),
Provider::Upstage => Some("UPSTAGE_API_KEY"),
Provider::SeaLion => Some("SEA_LION_API_KEY"),
Provider::Alibaba => Some("DASHSCOPE_API_KEY"),
Provider::AlephAlpha => Some("ALEPH_ALPHA_API_KEY"),
Provider::Baidu => Some("BAIDU_API_KEY"),
Provider::Baseten => Some("BASETEN_API_KEY"),
Provider::DataRobot => Some("DATAROBOT_API_KEY"),
Provider::LightOn => Some("LIGHTON_API_KEY"),
Provider::NLPCloud => Some("NLP_CLOUD_API_KEY"),
Provider::Oracle => Some("OCI_API_KEY"),
Provider::Perplexity => Some("PERPLEXITY_API_KEY"),
Provider::RunPod => Some("RUNPOD_API_KEY"),
Provider::SapAICore => Some("SAP_AI_CORE_API_KEY"),
Provider::Snowflake => Some("SNOWFLAKE_API_KEY"),
Provider::WatsonX => Some("WATSONX_API_KEY"),
Provider::Xai => Some("XAI_API_KEY"),
Provider::DeepInfra => Some("DEEPINFRA_API_KEY"),
Provider::NvidiaNIM => Some("NVIDIA_API_KEY"),
Provider::Ollama => None, Provider::Anyscale => Some("ANYSCALE_API_KEY"),
Provider::GitHubModels => Some("GITHUB_TOKEN"),
Provider::FriendliAI => Some("FRIENDLI_TOKEN"),
Provider::Hyperbolic => Some("HYPERBOLIC_API_KEY"),
Provider::LambdaLabs => Some("LAMBDA_API_KEY"),
Provider::Novita => Some("NOVITA_API_KEY"),
Provider::Nebius => Some("NEBIUS_API_KEY"),
Provider::Lepton => Some("LEPTON_API_KEY"),
Provider::Stability => Some("STABILITY_API_KEY"),
Provider::Voyage => Some("VOYAGE_API_KEY"),
Provider::Jina => Some("JINA_API_KEY"),
Provider::Deepgram => Some("DEEPGRAM_API_KEY"),
Provider::ElevenLabs => Some("ELEVENLABS_API_KEY"),
Provider::GPT4All => None, Provider::MiniMax => Some("MINIMAX_API_KEY"),
Provider::Moonshot => Some("MOONSHOT_API_KEY"),
Provider::Zhipu => Some("ZHIPU_API_KEY"),
Provider::Volcengine => Some("VOLC_ACCESSKEY"),
Provider::Baichuan => Some("BAICHUAN_API_KEY"),
Provider::Stepfun => Some("STEPFUN_API_KEY"),
Provider::Yi => Some("YI_API_KEY"),
Provider::Spark => Some("SPARK_API_KEY"),
Provider::Hunyuan => Some("HUNYUAN_API_KEY"),
Provider::LMStudio
| Provider::Llamafile
| Provider::Xinference
| Provider::LocalAI
| Provider::Jan
| Provider::Petals
| Provider::Tgi => None,
Provider::Predibase => Some("PREDIBASE_API_KEY"),
Provider::OctoAI => Some("OCTOAI_API_KEY"),
Provider::Featherless => Some("FEATHERLESS_API_KEY"),
Provider::OVHCloud => Some("OVH_API_KEY"),
Provider::Scaleway => Some("SCALEWAY_API_KEY"),
Provider::Crusoe => Some("CRUSOE_API_KEY"),
Provider::Cerebrium => Some("CEREBRIUM_API_KEY"),
Provider::Lightning => Some("LIGHTNING_API_KEY"),
Provider::AssemblyAI => Some("ASSEMBLYAI_API_KEY"),
Provider::RunwayML => Some("RUNWAYML_API_KEY"),
Provider::Kakao => Some("KAKAO_API_KEY"),
Provider::LGExaone => Some("LG_EXAONE_API_KEY"),
Provider::PLaMo => Some("PLAMO_API_KEY"),
Provider::Sarvam => Some("SARVAM_API_KEY"),
Provider::Krutrim => Some("KRUTRIM_API_KEY"),
Provider::NttTsuzumi => Some("NTT_TSUZUMI_API_KEY"),
Provider::SoftBankSarashina => Some("SOFTBANK_SARASHINA_API_KEY"),
Provider::Ionos => Some("IONOS_API_KEY"),
Provider::Tilde => Some("TILDE_API_KEY"),
Provider::SiloAI => Some("SILOAI_API_KEY"),
Provider::SwissAI => Some("SWISSAI_API_KEY"),
Provider::Unify => Some("UNIFY_API_KEY"),
Provider::Martian => Some("MARTIAN_API_KEY"),
Provider::Portkey => Some("PORTKEY_API_KEY"),
Provider::Helicone => Some("HELICONE_API_KEY"),
Provider::SiliconFlow => Some("SILICONFLOW_API_KEY"),
Provider::Pika => Some("PIKA_API_KEY"),
Provider::Luma => Some("LUMA_API_KEY"),
Provider::Kling => Some("KLING_API_KEY"),
Provider::HeyGen => Some("HEYGEN_API_KEY"),
Provider::DId => Some("DID_API_KEY"),
Provider::TwelveLabs => Some("TWELVE_LABS_API_KEY"),
Provider::RevAI => Some("REV_AI_API_KEY"),
Provider::Speechmatics => Some("SPEECHMATICS_API_KEY"),
Provider::PlayHT => Some("PLAYHT_API_KEY"),
Provider::Resemble => Some("RESEMBLE_API_KEY"),
Provider::Leonardo => Some("LEONARDO_API_KEY"),
Provider::Ideogram => Some("IDEOGRAM_API_KEY"),
Provider::BlackForestLabs => Some("BFL_API_KEY"),
Provider::Clarifai => Some("CLARIFAI_API_KEY"),
Provider::Fal => Some("FAL_API_KEY"),
Provider::Recraft => Some("RECRAFT_API_KEY"),
Provider::Modal => Some("MODAL_TOKEN"),
Provider::Beam => Some("BEAM_API_KEY"),
Provider::Nscale => Some("NSCALE_API_KEY"),
Provider::Runware => Some("RUNWARE_API_KEY"),
Provider::AI71 => Some("AI71_API_KEY"),
Provider::Vllm | Provider::Local | Provider::Custom => None,
}
}
pub fn is_available(&self) -> bool {
match self {
Provider::Bedrock => {
std::env::var("AWS_ACCESS_KEY_ID").is_ok() || std::env::var("AWS_PROFILE").is_ok()
}
Provider::Vllm
| Provider::Local
| Provider::Custom
| Provider::Ollama
| Provider::GPT4All
| Provider::LMStudio
| Provider::Llamafile
| Provider::Xinference
| Provider::LocalAI
| Provider::Jan
| Provider::Petals
| Provider::Tgi => true,
_ => self
.api_key_env_var()
.map(|v| std::env::var(v).is_ok())
.unwrap_or(true),
}
}
pub fn from_prefix(prefix: &str) -> Self {
match prefix.to_lowercase().as_str() {
"anthropic" => Provider::Anthropic,
"openai" => Provider::OpenAI,
"google" | "gemini" => Provider::Google,
"mistral" | "mistralai" => Provider::Mistral,
"groq" => Provider::Groq,
"deepseek" => Provider::DeepSeek,
"cohere" => Provider::Cohere,
"bedrock" => Provider::Bedrock,
"azure" => Provider::AzureOpenAI,
"vertex_ai" | "vertex" => Provider::VertexAI,
"together_ai" | "together" => Provider::TogetherAI,
"openrouter" => Provider::OpenRouter,
"cerebras" => Provider::Cerebras,
"sambanova" => Provider::SambaNova,
"fireworks" | "fireworks_ai" => Provider::Fireworks,
"ai21" => Provider::AI21,
"huggingface" | "hf" => Provider::HuggingFace,
"replicate" => Provider::Replicate,
"cloudflare" | "cf" => Provider::Cloudflare,
"databricks" => Provider::Databricks,
"writer" => Provider::Writer,
"maritaca" | "maritalk" => Provider::Maritaca,
"clova" | "hyperclova" | "naver_clova" => Provider::NaverClova,
"yandex" | "yandexgpt" => Provider::Yandex,
"gigachat" | "sber" => Provider::GigaChat,
"upstage" | "solar" => Provider::Upstage,
"sea-lion" | "sealion" | "aisingapore" => Provider::SeaLion,
"alibaba" | "dashscope" | "qwen" => Provider::Alibaba,
"aleph_alpha" | "alephalpha" | "luminous" => Provider::AlephAlpha,
"baidu" | "ernie" | "wenxin" => Provider::Baidu,
"baseten" => Provider::Baseten,
"datarobot" => Provider::DataRobot,
"lighton" => Provider::LightOn,
"nlp_cloud" | "nlpcloud" => Provider::NLPCloud,
"oracle" | "oci" => Provider::Oracle,
"perplexity" | "pplx" => Provider::Perplexity,
"runpod" => Provider::RunPod,
"sap" | "sap_ai_core" => Provider::SapAICore,
"snowflake" | "cortex" => Provider::Snowflake,
"vllm" => Provider::Vllm,
"watsonx" | "ibm" => Provider::WatsonX,
"xai" | "x-ai" | "grok" => Provider::Xai,
"deepinfra" | "deep_infra" => Provider::DeepInfra,
"nvidia" | "nim" | "nvidia_nim" => Provider::NvidiaNIM,
"ollama" => Provider::Ollama,
"anyscale" => Provider::Anyscale,
"github" | "github_models" => Provider::GitHubModels,
"friendli" | "friendliai" => Provider::FriendliAI,
"hyperbolic" => Provider::Hyperbolic,
"lambda" | "lambdalabs" | "lambda_labs" => Provider::LambdaLabs,
"novita" | "novita_ai" => Provider::Novita,
"nebius" => Provider::Nebius,
"lepton" | "lepton_ai" => Provider::Lepton,
"stability" | "stability_ai" => Provider::Stability,
"voyage" | "voyage_ai" | "voyageai" => Provider::Voyage,
"jina" | "jina_ai" => Provider::Jina,
"deepgram" => Provider::Deepgram,
"elevenlabs" | "eleven_labs" => Provider::ElevenLabs,
"gpt4all" => Provider::GPT4All,
"hunyuan" | "tencent" => Provider::Hunyuan,
"minimax" => Provider::MiniMax,
"moonshot" | "kimi" => Provider::Moonshot,
"zhipu" | "glm" | "chatglm" => Provider::Zhipu,
"volcengine" | "volc" | "bytedance" => Provider::Volcengine,
"baichuan" => Provider::Baichuan,
"stepfun" => Provider::Stepfun,
"yi" | "lingyiwanwu" => Provider::Yi,
"spark" | "iflytek" | "xunfei" => Provider::Spark,
"lm_studio" | "lmstudio" | "lm-studio" => Provider::LMStudio,
"llamafile" => Provider::Llamafile,
"xinference" | "xorbits" => Provider::Xinference,
"localai" | "local_ai" => Provider::LocalAI,
"jan" => Provider::Jan,
"petals" => Provider::Petals,
"tgi" | "text_generation_inference" => Provider::Tgi,
"predibase" => Provider::Predibase,
"octoai" | "octo_ai" => Provider::OctoAI,
"featherless" => Provider::Featherless,
"ovhcloud" | "ovh" => Provider::OVHCloud,
"scaleway" => Provider::Scaleway,
"crusoe" => Provider::Crusoe,
"cerebrium" => Provider::Cerebrium,
"lightning" | "lightning_ai" => Provider::Lightning,
"assemblyai" | "assembly_ai" => Provider::AssemblyAI,
"runwayml" | "runway" => Provider::RunwayML,
"naver" | "hyperclova_x" => Provider::NaverClova,
"kakao" | "kogpt" => Provider::Kakao,
"lg" | "exaone" | "lg_exaone" => Provider::LGExaone,
"plamo" | "preferred_networks" | "pfn" => Provider::PLaMo,
"sarvam" | "sarvam_ai" => Provider::Sarvam,
"krutrim" | "ola" => Provider::Krutrim,
"ntt" | "tsuzumi" | "ntt_tsuzumi" => Provider::NttTsuzumi,
"softbank" | "sarashina" | "softbank_sarashina" => Provider::SoftBankSarashina,
"ionos" => Provider::Ionos,
"tilde" => Provider::Tilde,
"silo" | "silo_ai" | "siloai" | "viking" => Provider::SiloAI,
"swiss" | "swiss_ai" | "swissai" | "apertus" => Provider::SwissAI,
"unify" | "unify_ai" => Provider::Unify,
"martian" | "withmartian" => Provider::Martian,
"portkey" => Provider::Portkey,
"helicone" => Provider::Helicone,
"siliconflow" | "silicon_flow" => Provider::SiliconFlow,
"pika" | "pika_labs" => Provider::Pika,
"luma" | "lumalabs" | "dream_machine" => Provider::Luma,
"kling" | "kuaishou" => Provider::Kling,
"heygen" => Provider::HeyGen,
"d-id" | "did" | "d_id" => Provider::DId,
"twelve_labs" | "twelvelabs" => Provider::TwelveLabs,
"rev" | "rev_ai" | "revai" => Provider::RevAI,
"speechmatics" => Provider::Speechmatics,
"playht" | "play_ht" | "play.ht" => Provider::PlayHT,
"resemble" | "resemble_ai" => Provider::Resemble,
"leonardo" | "leonardo_ai" => Provider::Leonardo,
"ideogram" => Provider::Ideogram,
"bfl" | "blackforestlabs" | "black_forest_labs" | "flux" => Provider::BlackForestLabs,
"clarifai" => Provider::Clarifai,
"fal" | "fal_ai" => Provider::Fal,
"recraft" => Provider::Recraft,
"modal" => Provider::Modal,
"beam" | "beam_cloud" => Provider::Beam,
"nscale" => Provider::Nscale,
"runware" => Provider::Runware,
"ai71" => Provider::AI71,
"local" => Provider::Local,
_ => Provider::Custom,
}
}
pub fn from_model(model: &str) -> Self {
let model_lower = model.to_lowercase();
if let Some((prefix, _)) = model.split_once('/') {
let provider = Self::from_prefix(prefix);
if provider != Provider::Custom {
return provider;
}
}
if model_lower.starts_with("claude") {
Provider::Anthropic
} else if model_lower.starts_with("gpt-")
|| model_lower.starts_with("o1")
|| model_lower.starts_with("o3")
{
Provider::OpenAI
} else if model_lower.starts_with("gemini") {
Provider::Google
} else if model_lower.starts_with("mistral")
|| model_lower.starts_with("codestral")
|| model_lower.starts_with("pixtral")
{
Provider::Mistral
} else if model_lower.starts_with("deepseek") {
Provider::DeepSeek
} else if model_lower.starts_with("command") {
Provider::Cohere
} else if model_lower.starts_with("jamba") {
Provider::AI21
} else if model_lower.starts_with("palmyra") {
Provider::Writer
} else if model_lower.starts_with("sabia") {
Provider::Maritaca
} else if model_lower.starts_with("hcx") || model_lower.starts_with("hyperclova") {
Provider::NaverClova
} else if model_lower.starts_with("yandexgpt") {
Provider::Yandex
} else if model_lower.starts_with("gigachat") {
Provider::GigaChat
} else if model_lower.starts_with("solar") {
Provider::Upstage
} else if model_lower.contains("sea-lion") || model_lower.contains("sealion") {
Provider::SeaLion
} else if model_lower.starts_with("llama") || model_lower.starts_with("mixtral") {
if std::env::var("GROQ_API_KEY").is_ok() {
Provider::Groq
} else if std::env::var("TOGETHER_API_KEY").is_ok() {
Provider::TogetherAI
} else {
Provider::Local
}
} else {
Provider::Custom
}
}
pub fn prefix(&self) -> &'static str {
match self {
Provider::Anthropic => "anthropic",
Provider::OpenAI => "openai",
Provider::Google => "google",
Provider::Mistral => "mistral",
Provider::Groq => "groq",
Provider::DeepSeek => "deepseek",
Provider::Cohere => "cohere",
Provider::Bedrock => "bedrock",
Provider::AzureOpenAI => "azure",
Provider::VertexAI => "vertex_ai",
Provider::TogetherAI => "together_ai",
Provider::OpenRouter => "openrouter",
Provider::Cerebras => "cerebras",
Provider::SambaNova => "sambanova",
Provider::Fireworks => "fireworks",
Provider::AI21 => "ai21",
Provider::HuggingFace => "huggingface",
Provider::Replicate => "replicate",
Provider::Cloudflare => "cloudflare",
Provider::Databricks => "databricks",
Provider::Writer => "writer",
Provider::Maritaca => "maritaca",
Provider::NaverClova => "naver_clova",
Provider::Yandex => "yandex",
Provider::GigaChat => "gigachat",
Provider::Upstage => "upstage",
Provider::SeaLion => "sea-lion",
Provider::Alibaba => "alibaba",
Provider::AlephAlpha => "aleph_alpha",
Provider::Baidu => "baidu",
Provider::Baseten => "baseten",
Provider::DataRobot => "datarobot",
Provider::LightOn => "lighton",
Provider::NLPCloud => "nlp_cloud",
Provider::Oracle => "oracle",
Provider::Perplexity => "perplexity",
Provider::RunPod => "runpod",
Provider::SapAICore => "sap_ai_core",
Provider::Snowflake => "snowflake",
Provider::Vllm => "vllm",
Provider::WatsonX => "watsonx",
Provider::Xai => "xai",
Provider::DeepInfra => "deepinfra",
Provider::NvidiaNIM => "nvidia",
Provider::Ollama => "ollama",
Provider::Anyscale => "anyscale",
Provider::GitHubModels => "github_models",
Provider::FriendliAI => "friendli",
Provider::Hyperbolic => "hyperbolic",
Provider::LambdaLabs => "lambdalabs",
Provider::Novita => "novita",
Provider::Nebius => "nebius",
Provider::Lepton => "lepton",
Provider::Stability => "stability",
Provider::Voyage => "voyage",
Provider::Jina => "jina",
Provider::Deepgram => "deepgram",
Provider::ElevenLabs => "elevenlabs",
Provider::GPT4All => "gpt4all",
Provider::Hunyuan => "hunyuan",
Provider::MiniMax => "minimax",
Provider::Moonshot => "moonshot",
Provider::Zhipu => "zhipu",
Provider::Volcengine => "volcengine",
Provider::Baichuan => "baichuan",
Provider::Stepfun => "stepfun",
Provider::Yi => "yi",
Provider::Spark => "spark",
Provider::LMStudio => "lm_studio",
Provider::Llamafile => "llamafile",
Provider::Xinference => "xinference",
Provider::LocalAI => "localai",
Provider::Jan => "jan",
Provider::Petals => "petals",
Provider::Tgi => "tgi",
Provider::Predibase => "predibase",
Provider::OctoAI => "octoai",
Provider::Featherless => "featherless",
Provider::OVHCloud => "ovhcloud",
Provider::Scaleway => "scaleway",
Provider::Crusoe => "crusoe",
Provider::Cerebrium => "cerebrium",
Provider::Lightning => "lightning",
Provider::AssemblyAI => "assemblyai",
Provider::RunwayML => "runwayml",
Provider::Kakao => "kakao",
Provider::LGExaone => "lg_exaone",
Provider::PLaMo => "plamo",
Provider::Sarvam => "sarvam",
Provider::Krutrim => "krutrim",
Provider::NttTsuzumi => "ntt_tsuzumi",
Provider::SoftBankSarashina => "softbank_sarashina",
Provider::Ionos => "ionos",
Provider::Tilde => "tilde",
Provider::SiloAI => "silo_ai",
Provider::SwissAI => "swiss_ai",
Provider::Unify => "unify",
Provider::Martian => "martian",
Provider::Portkey => "portkey",
Provider::Helicone => "helicone",
Provider::SiliconFlow => "siliconflow",
Provider::Pika => "pika",
Provider::Luma => "luma",
Provider::Kling => "kling",
Provider::HeyGen => "heygen",
Provider::DId => "d_id",
Provider::TwelveLabs => "twelve_labs",
Provider::RevAI => "revai",
Provider::Speechmatics => "speechmatics",
Provider::PlayHT => "playht",
Provider::Resemble => "resemble",
Provider::Leonardo => "leonardo",
Provider::Ideogram => "ideogram",
Provider::BlackForestLabs => "bfl",
Provider::Clarifai => "clarifai",
Provider::Fal => "fal",
Provider::Recraft => "recraft",
Provider::Modal => "modal",
Provider::Beam => "beam",
Provider::Nscale => "nscale",
Provider::Runware => "runware",
Provider::AI71 => "ai71",
Provider::Local => "local",
Provider::Custom => "custom",
}
}
pub fn supports_prompt_caching(&self) -> bool {
matches!(
self,
Provider::Anthropic | Provider::Bedrock | Provider::Google | Provider::OpenAI
)
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ModelStatus {
Current,
Legacy,
Deprecated,
}
#[derive(Debug, Clone, Copy, Default)]
pub struct ModelPricing {
pub input_per_1m: f64,
pub output_per_1m: f64,
pub cached_input_per_1m: Option<f64>,
}
impl ModelPricing {
pub const fn new(input: f64, output: f64) -> Self {
Self {
input_per_1m: input,
output_per_1m: output,
cached_input_per_1m: None,
}
}
pub fn with_cache(mut self, cached: f64) -> Self {
self.cached_input_per_1m = Some(cached);
self
}
pub fn estimate_cost(&self, input_tokens: u32, output_tokens: u32) -> f64 {
(input_tokens as f64 / 1_000_000.0) * self.input_per_1m
+ (output_tokens as f64 / 1_000_000.0) * self.output_per_1m
}
pub fn estimate_cost_with_cache(
&self,
cached_tokens: u32,
uncached_tokens: u32,
output_tokens: u32,
) -> f64 {
let cached_cost = self.cached_input_per_1m.unwrap_or(self.input_per_1m)
* (cached_tokens as f64 / 1_000_000.0);
let uncached_cost = self.input_per_1m * (uncached_tokens as f64 / 1_000_000.0);
let output_cost = self.output_per_1m * (output_tokens as f64 / 1_000_000.0);
cached_cost + uncached_cost + output_cost
}
}
#[derive(Debug, Clone, Copy, Default)]
pub struct ModelCapabilities {
pub max_context: u32,
pub max_output: u32,
pub vision: bool,
pub tools: bool,
pub streaming: bool,
pub json_mode: bool,
pub structured_output: bool,
pub thinking: bool,
pub caching: bool,
}
impl ModelCapabilities {
pub fn new(max_context: u32, max_output: u32) -> Self {
Self {
max_context,
max_output,
tools: true,
streaming: true,
..Default::default()
}
}
pub fn from_flags(max_context: u32, max_output: u32, flags: &str) -> Self {
Self {
max_context,
max_output,
vision: flags.contains('V'),
tools: flags.contains('T'),
streaming: true,
json_mode: flags.contains('J'),
structured_output: flags.contains('S'),
thinking: flags.contains('K'),
caching: flags.contains('C'),
}
}
}
#[derive(Debug, Clone, Copy, Default)]
pub struct ModelBenchmarks {
pub mmlu: Option<f32>,
pub humaneval: Option<f32>,
pub math: Option<f32>,
pub gpqa: Option<f32>,
pub swe_bench: Option<f32>,
pub ifeval: Option<f32>,
pub mmmu: Option<f32>,
pub mgsm: Option<f32>,
pub ttft_ms: Option<u32>,
pub tokens_per_sec: Option<u32>,
}
impl ModelBenchmarks {
#[allow(clippy::type_complexity)]
pub fn quality_score(&self) -> f32 {
const WEIGHTS: [(fn(&ModelBenchmarks) -> Option<f32>, f32); 8] = [
(|b| b.mmlu, 1.5),
(|b| b.humaneval, 2.0),
(|b| b.math, 1.5),
(|b| b.gpqa, 1.0),
(|b| b.swe_bench, 2.5),
(|b| b.ifeval, 1.0),
(|b| b.mmmu, 1.5),
(|b| b.mgsm, 1.0),
];
let mut sum = 0.0f32;
let mut weights = 0.0f32;
for (getter, weight) in WEIGHTS {
if let Some(s) = getter(self) {
sum += s * weight;
weights += weight;
}
}
if weights > 0.0 {
sum / weights
} else {
0.0
}
}
pub fn has_benchmarks(&self) -> bool {
self.mmlu.is_some() || self.humaneval.is_some() || self.math.is_some()
}
}
#[derive(Debug, Clone)]
pub struct ModelInfo {
pub id: String,
pub alias: Option<String>,
pub name: String,
pub provider: Provider,
pub status: ModelStatus,
pub pricing: ModelPricing,
pub capabilities: ModelCapabilities,
pub benchmarks: ModelBenchmarks,
pub description: String,
pub can_classify: bool,
}
impl ModelInfo {
pub fn raw_id(&self) -> &str {
self.id
.split_once('/')
.map(|(_, id)| id)
.unwrap_or(&self.id)
}
pub fn quality_per_dollar(&self) -> f64 {
let quality = self.benchmarks.quality_score();
let avg_cost = (self.pricing.input_per_1m + self.pricing.output_per_1m) / 2.0;
if avg_cost > 0.0 && quality > 0.0 {
quality as f64 / avg_cost
} else {
0.0
}
}
pub fn estimate_cost(&self, input_tokens: u32, output_tokens: u32) -> f64 {
self.pricing.estimate_cost(input_tokens, output_tokens)
}
}
const MODEL_DATA: &str = r#"
# =============================================================================
# MODEL REGISTRY - Auto-generated from model_registry crawler
# Format: id|alias|name|status|pricing|context|caps|benchmarks|description|classify
# Generated: 2026-01-12 21:20
# Total models: 11067
# =============================================================================
# =============================================================================
# AI21 - Direct API (2 models)
# =============================================================================
ai21/jamba-1.5-mini|jamba-1.5-mini|jamba-1.5-mini|C|0.2,0.4|262144,8192|-|-|jamba-1.5-mini model|Y
ai21/jamba-1.5-large|jamba-1.5-large|jamba-1.5-large|C|2.0,8.0|262144,8192|-|-|jamba-1.5-large model|Y
# =============================================================================
# AI71 - Direct API (109 models)
# =============================================================================
ai71/Falcon-H1R-7B|falcon-h1r-7b|tiiuae/Falcon-H1R-7B|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1R-7B model|N
ai71/Falcon-H1R-7B-GGUF|falcon-h1r-7b-gguf|tiiuae/Falcon-H1R-7B-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1R-7B-GGUF model|N
ai71/Falcon-H1-7B-Base|falcon-h1-7b-base|tiiuae/Falcon-H1-7B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-7B-Base model|N
ai71/Falcon-H1-0.5B-Instruct|falcon-h1-0.5b-instruct|tiiuae/Falcon-H1-0.5B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-0.5B-Instruct model|N
ai71/falcon-mamba-7b|falcon-mamba-7b|tiiuae/falcon-mamba-7b|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b model|N
ai71/falcon-mamba-tiny-dev|falcon-mamba-tiny-dev|tiiuae/falcon-mamba-tiny-dev|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-tiny-dev model|N
ai71/Falcon3-1B-Base|falcon3-1b-base|tiiuae/Falcon3-1B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Base model|N
ai71/Falcon-H1-1.5B-Instruct|falcon-h1-1.5b-instruct|tiiuae/Falcon-H1-1.5B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Instruct model|N
ai71/Falcon-H1-3B-Instruct|falcon-h1-3b-instruct|tiiuae/Falcon-H1-3B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-3B-Instruct model|N
ai71/Falcon-H1-7B-Instruct|falcon-h1-7b-instruct|tiiuae/Falcon-H1-7B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-7B-Instruct model|N
ai71/Falcon-H1-34B-Instruct|falcon-h1-34b-instruct|tiiuae/Falcon-H1-34B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-34B-Instruct model|N
ai71/Falcon-H1-1.5B-Instruct-GGUF|falcon-h1-1.5b-instruct-gguf|tiiuae/Falcon-H1-1.5B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Instruct-GGUF model|N
ai71/Falcon-H1-3B-Instruct-GGUF|falcon-h1-3b-instruct-gguf|tiiuae/Falcon-H1-3B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-3B-Instruct-GGUF model|N
ai71/falcon-7b|falcon-7b|tiiuae/falcon-7b|C|1.0,5.0|128000,8192|-|23.9,,,,,,,,,|tiiuae/falcon-7b model|N
ai71/falcon-7b-instruct|falcon-7b-instruct|tiiuae/falcon-7b-instruct|C|1.0,5.0|128000,8192|-|23.9,,,,,,,,,|tiiuae/falcon-7b-instruct model|N
ai71/falcon-rw-1b|falcon-rw-1b|tiiuae/falcon-rw-1b|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-rw-1b model|N
ai71/falcon-rw-7b|falcon-rw-7b|tiiuae/falcon-rw-7b|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-rw-7b model|N
ai71/falcon-40b|falcon-40b|tiiuae/falcon-40b|C|1.0,5.0|128000,8192|-|55.4,,,,,,,,,|tiiuae/falcon-40b model|N
ai71/falcon-40b-instruct|falcon-40b-instruct|tiiuae/falcon-40b-instruct|C|1.0,5.0|128000,8192|-|55.4,,,,,,,,,|tiiuae/falcon-40b-instruct model|N
ai71/falcon-180B|falcon-180b|tiiuae/falcon-180B|C|1.0,5.0|128000,8192|-|70.6,,,,,,,,,|tiiuae/falcon-180B model|N
ai71/falcon-180B-chat|falcon-180b-chat|tiiuae/falcon-180B-chat|C|1.0,5.0|128000,8192|-|70.6,,,,,,,,,|tiiuae/falcon-180B-chat model|N
ai71/falcon-11B|falcon-11b|tiiuae/falcon-11B|C|1.0,5.0|128000,8192|-|58.4,,,,,,,,,|tiiuae/falcon-11B model|N
ai71/falcon-11B-vlm|falcon-11b-vlm|tiiuae/falcon-11B-vlm|C|1.0,5.0|128000,8192|V|-|tiiuae/falcon-11B-vlm model|N
ai71/visper|visper|tiiuae/visper|C|1.0,5.0|128000,8192|-|-|tiiuae/visper model|N
ai71/viscon-contextual-captioner|viscon-contextual-captioner|tiiuae/viscon-contextual-captioner|C|1.0,5.0|128000,8192|-|-|tiiuae/viscon-contextual-captioner model|N
ai71/falcon-mamba-7b-4bit|falcon-mamba-7b-4bit|tiiuae/falcon-mamba-7b-4bit|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-4bit model|N
ai71/falcon-mamba-7b-instruct|falcon-mamba-7b-instruct|tiiuae/falcon-mamba-7b-instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct model|N
ai71/falcon-mamba-7b-instruct-4bit|falcon-mamba-7b-instruct-4bit|tiiuae/falcon-mamba-7b-instruct-4bit|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct-4bit model|N
ai71/falcon-mamba-7b-instruct-Q8_0-GGUF|falcon-mamba-7b-instruct-q8_0-gguf|tiiuae/falcon-mamba-7b-instruct-Q8_0-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct-Q8_0-GGUF model|N
ai71/falcon-mamba-7b-Q8_0-GGUF|falcon-mamba-7b-q8_0-gguf|tiiuae/falcon-mamba-7b-Q8_0-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-Q8_0-GGUF model|N
ai71/falcon-mamba-7b-F16-GGUF|falcon-mamba-7b-f16-gguf|tiiuae/falcon-mamba-7b-F16-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-F16-GGUF model|N
ai71/falcon-mamba-7b-BF16-GGUF|falcon-mamba-7b-bf16-gguf|tiiuae/falcon-mamba-7b-BF16-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-BF16-GGUF model|N
ai71/falcon-mamba-7b-instruct-F16-GGUF|falcon-mamba-7b-instruct-f16-gguf|tiiuae/falcon-mamba-7b-instruct-F16-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct-F16-GGUF model|N
ai71/falcon-mamba-7b-instruct-BF16-GGUF|falcon-mamba-7b-instruct-bf16-gguf|tiiuae/falcon-mamba-7b-instruct-BF16-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct-BF16-GGUF model|N
ai71/falcon-mamba-7b-Q4_K_M-GGUF|falcon-mamba-7b-q4_k_m-gguf|tiiuae/falcon-mamba-7b-Q4_K_M-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-Q4_K_M-GGUF model|N
ai71/falcon-mamba-7b-instruct-Q4_K_M-GGUF|falcon-mamba-7b-instruct-q4_k_m-gguf|tiiuae/falcon-mamba-7b-instruct-Q4_K_M-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-instruct-Q4_K_M-GGUF model|N
ai71/falcon-mamba-7b-pre-decay|falcon-mamba-7b-pre-decay|tiiuae/falcon-mamba-7b-pre-decay|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon-mamba-7b-pre-decay model|N
ai71/Falcon3-7B-Base-1.58bit|falcon3-7b-base-1.58bit|tiiuae/Falcon3-7B-Base-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Base-1.58bit model|N
ai71/Falcon3-7B-Base|falcon3-7b-base|tiiuae/Falcon3-7B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Base model|N
ai71/Falcon3-3B-Base-1.58bit|falcon3-3b-base-1.58bit|tiiuae/Falcon3-3B-Base-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Base-1.58bit model|N
ai71/Falcon3-7B-Instruct-1.58bit|falcon3-7b-instruct-1.58bit|tiiuae/Falcon3-7B-Instruct-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-1.58bit model|N
ai71/Falcon3-3B-Instruct-1.58bit|falcon3-3b-instruct-1.58bit|tiiuae/Falcon3-3B-Instruct-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-1.58bit model|N
ai71/Falcon3-7B-Instruct|falcon3-7b-instruct|tiiuae/Falcon3-7B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct model|N
ai71/Falcon3-10B-Base|falcon3-10b-base|tiiuae/Falcon3-10B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Base model|N
ai71/Falcon3-Mamba-7B-Base|falcon3-mamba-7b-base|tiiuae/Falcon3-Mamba-7B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-Mamba-7B-Base model|N
ai71/Falcon3-3B-Base|falcon3-3b-base|tiiuae/Falcon3-3B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Base model|N
ai71/Falcon3-Mamba-7B-Instruct|falcon3-mamba-7b-instruct|tiiuae/Falcon3-Mamba-7B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-Mamba-7B-Instruct model|N
ai71/Falcon3-10B-Instruct|falcon3-10b-instruct|tiiuae/Falcon3-10B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct model|N
ai71/Falcon3-1B-Instruct|falcon3-1b-instruct|tiiuae/Falcon3-1B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct model|N
ai71/Falcon3-3B-Instruct|falcon3-3b-instruct|tiiuae/Falcon3-3B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct model|N
ai71/Falcon3-7B-Instruct-GPTQ-Int8|falcon3-7b-instruct-gptq-int8|tiiuae/Falcon3-7B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-GPTQ-Int8 model|N
ai71/Falcon3-7B-Instruct-GPTQ-Int4|falcon3-7b-instruct-gptq-int4|tiiuae/Falcon3-7B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-GPTQ-Int4 model|N
ai71/Falcon3-10B-Instruct-GPTQ-Int8|falcon3-10b-instruct-gptq-int8|tiiuae/Falcon3-10B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-GPTQ-Int8 model|N
ai71/Falcon3-10B-Instruct-GPTQ-Int4|falcon3-10b-instruct-gptq-int4|tiiuae/Falcon3-10B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-GPTQ-Int4 model|N
ai71/Falcon3-10B-Instruct-AWQ|falcon3-10b-instruct-awq|tiiuae/Falcon3-10B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-AWQ model|N
ai71/Falcon3-7B-Instruct-AWQ|falcon3-7b-instruct-awq|tiiuae/Falcon3-7B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-AWQ model|N
ai71/Falcon3-1B-Instruct-AWQ|falcon3-1b-instruct-awq|tiiuae/Falcon3-1B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-AWQ model|N
ai71/Falcon3-3B-Instruct-AWQ|falcon3-3b-instruct-awq|tiiuae/Falcon3-3B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-AWQ model|N
ai71/Falcon3-3B-Instruct-GPTQ-Int8|falcon3-3b-instruct-gptq-int8|tiiuae/Falcon3-3B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-GPTQ-Int8 model|N
ai71/Falcon3-3B-Instruct-GPTQ-Int4|falcon3-3b-instruct-gptq-int4|tiiuae/Falcon3-3B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-GPTQ-Int4 model|N
ai71/Falcon3-1B-Instruct-GPTQ-Int4|falcon3-1b-instruct-gptq-int4|tiiuae/Falcon3-1B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-GPTQ-Int4 model|N
ai71/Falcon3-1B-Instruct-GPTQ-Int8|falcon3-1b-instruct-gptq-int8|tiiuae/Falcon3-1B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-GPTQ-Int8 model|N
ai71/Falcon3-7B-Instruct-GGUF|falcon3-7b-instruct-gguf|tiiuae/Falcon3-7B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-GGUF model|N
ai71/Falcon3-10B-Instruct-GGUF|falcon3-10b-instruct-gguf|tiiuae/Falcon3-10B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-GGUF model|N
ai71/Falcon3-1B-Instruct-GGUF|falcon3-1b-instruct-gguf|tiiuae/Falcon3-1B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-GGUF model|N
ai71/Falcon3-3B-Instruct-GGUF|falcon3-3b-instruct-gguf|tiiuae/Falcon3-3B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-GGUF model|N
ai71/Falcon3-Mamba-7B-Base-GGUF|falcon3-mamba-7b-base-gguf|tiiuae/Falcon3-Mamba-7B-Base-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-Mamba-7B-Base-GGUF model|N
ai71/Falcon3-Mamba-7B-Instruct-GGUF|falcon3-mamba-7b-instruct-gguf|tiiuae/Falcon3-Mamba-7B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-Mamba-7B-Instruct-GGUF model|N
ai71/Falcon3-10B-Instruct-1.58bit|falcon3-10b-instruct-1.58bit|tiiuae/Falcon3-10B-Instruct-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-1.58bit model|N
ai71/Falcon3-1B-Instruct-1.58bit|falcon3-1b-instruct-1.58bit|tiiuae/Falcon3-1B-Instruct-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-1.58bit model|N
ai71/Falcon3-10B-Base-1.58bit|falcon3-10b-base-1.58bit|tiiuae/Falcon3-10B-Base-1.58bit|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Base-1.58bit model|N
ai71/Falcon3-7B-Instruct-1.58bit-GGUF|falcon3-7b-instruct-1.58bit-gguf|tiiuae/Falcon3-7B-Instruct-1.58bit-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-7B-Instruct-1.58bit-GGUF model|N
ai71/Falcon3-10B-Instruct-1.58bit-GGUF|falcon3-10b-instruct-1.58bit-gguf|tiiuae/Falcon3-10B-Instruct-1.58bit-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-10B-Instruct-1.58bit-GGUF model|N
ai71/Falcon3-1B-Instruct-1.58bit-GGUF|falcon3-1b-instruct-1.58bit-gguf|tiiuae/Falcon3-1B-Instruct-1.58bit-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-1B-Instruct-1.58bit-GGUF model|N
ai71/Falcon3-3B-Instruct-1.58bit-GGUF|falcon3-3b-instruct-1.58bit-gguf|tiiuae/Falcon3-3B-Instruct-1.58bit-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon3-3B-Instruct-1.58bit-GGUF model|N
ai71/Falcon-E-1B-Base|falcon-e-1b-base|tiiuae/Falcon-E-1B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-1B-Base model|N
ai71/Falcon-E-3B-Base|falcon-e-3b-base|tiiuae/Falcon-E-3B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-3B-Base model|N
ai71/Falcon-E-1B-Instruct|falcon-e-1b-instruct|tiiuae/Falcon-E-1B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-1B-Instruct model|N
ai71/Falcon-E-3B-Instruct|falcon-e-3b-instruct|tiiuae/Falcon-E-3B-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-3B-Instruct model|N
ai71/Falcon-E-3B-Instruct-GGUF|falcon-e-3b-instruct-gguf|tiiuae/Falcon-E-3B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-3B-Instruct-GGUF model|N
ai71/Falcon-E-1B-Instruct-GGUF|falcon-e-1b-instruct-gguf|tiiuae/Falcon-E-1B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-E-1B-Instruct-GGUF model|N
ai71/Falcon-H1-0.5B-Base|falcon-h1-0.5b-base|tiiuae/Falcon-H1-0.5B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-0.5B-Base model|N
ai71/Falcon-H1-1.5B-Base|falcon-h1-1.5b-base|tiiuae/Falcon-H1-1.5B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Base model|N
ai71/Falcon-H1-1.5B-Deep-Base|falcon-h1-1.5b-deep-base|tiiuae/Falcon-H1-1.5B-Deep-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Deep-Base model|N
ai71/Falcon-H1-3B-Base|falcon-h1-3b-base|tiiuae/Falcon-H1-3B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-3B-Base model|N
ai71/Falcon-H1-34B-Base|falcon-h1-34b-base|tiiuae/Falcon-H1-34B-Base|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-34B-Base model|N
ai71/Falcon-H1-1.5B-Deep-Instruct|falcon-h1-1.5b-deep-instruct|tiiuae/Falcon-H1-1.5B-Deep-Instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Deep-Instruct model|N
ai71/Falcon-H1-0.5B-Instruct-GPTQ-Int4|falcon-h1-0.5b-instruct-gptq-int4|tiiuae/Falcon-H1-0.5B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-0.5B-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-0.5B-Instruct-GPTQ-Int8|falcon-h1-0.5b-instruct-gptq-int8|tiiuae/Falcon-H1-0.5B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-0.5B-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-1.5B-Instruct-GPTQ-Int4|falcon-h1-1.5b-instruct-gptq-int4|tiiuae/Falcon-H1-1.5B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-1.5B-Instruct-GPTQ-Int8|falcon-h1-1.5b-instruct-gptq-int8|tiiuae/Falcon-H1-1.5B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int4|falcon-h1-1.5b-deep-instruct-gptq-int4|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int8|falcon-h1-1.5b-deep-instruct-gptq-int8|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-3B-Instruct-GPTQ-Int4|falcon-h1-3b-instruct-gptq-int4|tiiuae/Falcon-H1-3B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-3B-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-3B-Instruct-GPTQ-Int8|falcon-h1-3b-instruct-gptq-int8|tiiuae/Falcon-H1-3B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-3B-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-7B-Instruct-GPTQ-Int4|falcon-h1-7b-instruct-gptq-int4|tiiuae/Falcon-H1-7B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-7B-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-7B-Instruct-GPTQ-Int8|falcon-h1-7b-instruct-gptq-int8|tiiuae/Falcon-H1-7B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-7B-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-34B-Instruct-GPTQ-Int4|falcon-h1-34b-instruct-gptq-int4|tiiuae/Falcon-H1-34B-Instruct-GPTQ-Int4|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-34B-Instruct-GPTQ-Int4 model|N
ai71/Falcon-H1-34B-Instruct-GPTQ-Int8|falcon-h1-34b-instruct-gptq-int8|tiiuae/Falcon-H1-34B-Instruct-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-34B-Instruct-GPTQ-Int8 model|N
ai71/Falcon-H1-0.5B-Instruct-GGUF|falcon-h1-0.5b-instruct-gguf|tiiuae/Falcon-H1-0.5B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-0.5B-Instruct-GGUF model|N
ai71/Falcon-H1-1.5B-Deep-Instruct-GGUF|falcon-h1-1.5b-deep-instruct-gguf|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-1.5B-Deep-Instruct-GGUF model|N
ai71/Falcon-H1-7B-Instruct-GGUF|falcon-h1-7b-instruct-gguf|tiiuae/Falcon-H1-7B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-7B-Instruct-GGUF model|N
ai71/Falcon-H1-34B-Instruct-GGUF|falcon-h1-34b-instruct-gguf|tiiuae/Falcon-H1-34B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|tiiuae/Falcon-H1-34B-Instruct-GGUF model|N
ai71/dense-1b-arch1|dense-1b-arch1|tiiuae/dense-1b-arch1|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-1b-arch1 model|N
ai71/dense-3b-arch1|dense-3b-arch1|tiiuae/dense-3b-arch1|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-3b-arch1 model|N
ai71/dense-500m-arch1|dense-500m-arch1|tiiuae/dense-500m-arch1|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-500m-arch1 model|N
ai71/dense-1b-arch2|dense-1b-arch2|tiiuae/dense-1b-arch2|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-1b-arch2 model|N
ai71/dense-3b-arch2|dense-3b-arch2|tiiuae/dense-3b-arch2|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-3b-arch2 model|N
ai71/dense-500m-arch2|dense-500m-arch2|tiiuae/dense-500m-arch2|C|1.0,5.0|128000,8192|-|-|tiiuae/dense-500m-arch2 model|N
# =============================================================================
# ALEPH ALPHA - Direct API (7 models)
# =============================================================================
aleph_alpha/luminous-base|luminous-base|luminous-base|C|1.0,5.0|2048,2048|-|-|luminous-base model|N
aleph_alpha/luminous-extended|luminous-extended|luminous-extended|C|1.0,5.0|2048,2048|-|-|luminous-extended model|N
aleph_alpha/luminous-supreme|luminous-supreme|luminous-supreme|C|1.0,5.0|2048,2048|-|-|luminous-supreme model|N
aleph_alpha/luminous-base-control|luminous-base-control|luminous-base-control|C|1.0,5.0|2048,2048|-|-|luminous-base-control model|N
aleph_alpha/luminous-extended-control|luminous-extended-control|luminous-extended-control|C|1.0,5.0|2048,2048|-|-|luminous-extended-control model|N
aleph_alpha/luminous-supreme-control|luminous-supreme-control|luminous-supreme-control|C|1.0,5.0|2048,2048|-|-|luminous-supreme-control model|N
aleph_alpha/pharia-1-llm-7b-control|pharia-1-llm-7b-control|pharia-1-llm-7b-control|C|1.0,5.0|8192,4096|-|-|pharia-1-llm-7b-control model|N
# =============================================================================
# ANTHROPIC - Direct API (7 models)
# =============================================================================
anthropic/claude-opus-4-5-20251101|claude-opus-4-5|Claude Opus 4.5|C|5.0,25.0|200000,8192|VTC|,,,80.7,80.9,,,,,|Anthropic Claude Opus 4.5|N
anthropic/claude-haiku-4-5-20251001|claude-haiku-4-5|Claude Haiku 4.5|C|1.0,5.0|200000,8192|VTC|,,86.9,60.5,60.6,,,,,|Anthropic Claude Haiku 4.5|Y
anthropic/claude-sonnet-4-5-20250929|claude-sonnet-4-5|Claude Sonnet 4.5|C|3.0,15.0|200000,8192|VTC|,,97.7,73.7,77.2,,,,,|Anthropic Claude Sonnet 4.5|Y
anthropic/claude-opus-4-1-20250805|claude-opus-4-1|Claude Opus 4.1|C|15.0,75.0|200000,8192|VTC|,,,73.2,63.2,,,,,|Anthropic Claude Opus 4.1|N
anthropic/claude-opus-4-20250514|claude-opus-4|Claude Opus 4|C|15.0,75.0|200000,8192|VTC|,,85.0,69.2,62.2,,,,,|Anthropic Claude Opus 4|N
anthropic/claude-sonnet-4-20250514|claude-sonnet-4|Claude Sonnet 4|C|3.0,15.0|200000,8192|VTC|,,84.4,66.7,60.6,,,,,|Anthropic Claude Sonnet 4|Y
anthropic/claude-3-haiku-20240307|claude-3-haiku|Claude Haiku 3|C|0.25,1.25|200000,8192|VTC|73.8,,14.9,36.3,,,,,,|Anthropic Claude Haiku 3|Y
# =============================================================================
# ASSEMBLYAI - Direct API (4 models)
# =============================================================================
assemblyai/universal-1|universal-1|universal-1|C|1.0,5.0|128000,8192|-|-|Highest accuracy, complex audio|N
assemblyai/nano|nano|nano|C|1.0,5.0|128000,8192|-|-|Cost-effective, 99+ language support|N
assemblyai/universal-streaming-english|universal-streaming-english|universal-streaming-english|C|1.0,5.0|128000,8192|-|-|Real-time English transcription|N
assemblyai/universal-streaming-multilingual|universal-streaming-multilingual|universal-streaming-multilingual|C|1.0,5.0|128000,8192|-|-|Real-time multilingual transcription|N
# =============================================================================
# AZURE OPENAI - Direct API (116 models)
# =============================================================================
azure/dall-e-3|dall-e-3|eu/dall-e-3|C|1.0,5.0|128000,8192|VT|-|eu/dall-e-3 model|N
azure/gpt-4|gpt-4|eu/gpt-4|C|1.0,5.0|8192,4096|VT|86.4,,23.0,30.7,,,,,,|eu/gpt-4 model|N
azure/gpt-4-32k|gpt-4-32k|eu/gpt-4-32k|C|1.0,5.0|32768,32768|VT|-|eu/gpt-4-32k model|N
azure/gpt-4o|gpt-4o|eu/gpt-4o|C|1.25,5.0|128000,4096|VT|87.2,91.0,53.3,48.9,25.4,,,,,|eu/gpt-4o model|Y
azure/gpt-4o-mini|gpt-4o-mini|eu/gpt-4o-mini|C|0.075,0.3|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|eu/gpt-4o-mini model|Y
azure/gpt-4o-mini-realtime-preview|gpt-4o-mini-realtime-preview|eu/gpt-4o-mini-realtime-preview|C|0.6,2.4|128000,4096|VT|-|eu/gpt-4o-mini-realtime-preview model|Y
azure/gpt-4o-realtime-preview|gpt-4o-realtime-preview|eu/gpt-4o-realtime-preview|C|5.0,20.0|128000,4096|VT|-|eu/gpt-4o-realtime-preview model|N
azure/gpt-4o-audio-preview|gpt-4o-audio-preview|eu/gpt-4o-audio-preview|C|2.5,10.0|128000,16384|VT|-|eu/gpt-4o-audio-preview model|Y
azure/gpt-4o-transcribe|gpt-4o-transcribe|eu/gpt-4o-transcribe|C|1.0,5.0|128000,16384|VT|-|eu/gpt-4o-transcribe model|N
azure/gpt-4o-mini-transcribe|gpt-4o-mini-transcribe|eu/gpt-4o-mini-transcribe|C|1.0,5.0|128000,16384|VT|-|eu/gpt-4o-mini-transcribe model|N
azure/gpt-35-turbo|gpt-35-turbo|eu/gpt-35-turbo|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|eu/gpt-35-turbo model|Y
azure/gpt-35-turbo-instruct|gpt-35-turbo-instruct|eu/gpt-35-turbo-instruct|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|eu/gpt-35-turbo-instruct model|Y
azure/gpt-35-turbo-16k|gpt-35-turbo-16k|eu/gpt-35-turbo-16k|C|3.0,4.0|16385,4096|VT|-|eu/gpt-35-turbo-16k model|Y
azure/babbage|babbage|eu/babbage|C|1.0,5.0|128000,8192|VT|-|eu/babbage model|N
azure/babbage-002|babbage-002|eu/babbage-002|C|1.0,5.0|128000,8192|VT|-|eu/babbage-002 model|Y
azure/curie|curie|eu/curie|C|1.0,5.0|128000,8192|VT|-|eu/curie model|N
azure/davinci|davinci|eu/davinci|C|1.0,5.0|128000,8192|VT|-|eu/davinci model|N
azure/davinci-002|davinci-002|eu/davinci-002|C|1.0,5.0|128000,8192|VT|-|eu/davinci-002 model|N
azure/o1-mini|o1-mini|eu/o1-mini|C|1.0,5.0|200000,100000|VTK|85.2,92.4,,,,,,,,|eu/o1-mini model|N
azure/o1|o1|eu/o1|C|7.5,30.0|200000,100000|VTK|90.8,92.4,81.6,50.3,,,,,,|eu/o1 model|N
azure/o3-mini|o3-mini|eu/o3-mini|C|0.55,2.2|200000,100000|VTK|85.9,96.3,,,,,,,,|eu/o3-mini model|Y
azure/model-router|model-router|eu/model-router|C|1.0,5.0|128000,8192|VT|-|eu/model-router model|N
azure/codex-mini|codex-mini|eu/codex-mini|C|1.5,6.0|128000,8192|VT|-|eu/codex-mini model|Y
azure/sora|sora|eu/sora|C|1.0,5.0|128000,8192|VT|-|eu/sora model|N
azure/o4-mini|o4-mini|eu/o4-mini|C|0.55,2.2|200000,100000|VT|90.0,97.3,,,,,,,,|eu/o4-mini model|Y
azure/gpt-4.1|gpt-4.1|eu/gpt-4.1|C|1.0,4.0|1047576,32768|VT|90.2,94.5,83.0,66.9,41.0,,,,,|eu/gpt-4.1 model|Y
azure/gpt-4.1-mini|gpt-4.1-mini|eu/gpt-4.1-mini|C|0.2,0.8|1047576,32768|VT|87.5,93.8,87.3,65.8,32.8,,,,,|eu/gpt-4.1-mini model|Y
azure/gpt-4.1-nano|gpt-4.1-nano|eu/gpt-4.1-nano|C|0.05,0.2|1047576,32768|VT|80.1,87.0,70.0,48.9,,,,,,|eu/gpt-4.1-nano model|Y
azure/gpt-5-nano|gpt-5-nano|eu/gpt-5-nano|C|0.025,0.2|1047576,32768|VT|-|eu/gpt-5-nano model|Y
azure/gpt-5-mini|gpt-5-mini|eu/gpt-5-mini|C|0.125,1.0|1047576,32768|VT|-|eu/gpt-5-mini model|Y
azure/gpt-5-chat|gpt-5-chat|eu/gpt-5-chat|C|0.625,5.0|128000,8192|VT|-|eu/gpt-5-chat model|Y
azure/gpt-audio|gpt-audio|eu/gpt-audio|C|2.5,10.0|128000,16384|VT|-|eu/gpt-audio model|Y
azure/gpt-realtime|gpt-realtime|eu/gpt-realtime|C|4.0,16.0|128000,8192|VT|-|eu/gpt-realtime model|Y
azure/gpt-audio-mini|gpt-audio-mini|eu/gpt-audio-mini|C|0.6,2.4|128000,16384|VT|-|eu/gpt-audio-mini model|Y
azure/gpt-realtime-mini|gpt-realtime-mini|eu/gpt-realtime-mini|C|0.6,2.4|128000,8192|VT|-|eu/gpt-realtime-mini model|Y
azure/gpt-4o-transcribe-diarize|gpt-4o-transcribe-diarize|eu/gpt-4o-transcribe-diarize|C|1.0,5.0|128000,16384|VT|-|eu/gpt-4o-transcribe-diarize model|N
azure/gpt-5.1-chat|gpt-5.1-chat|eu/gpt-5.1-chat|C|0.625,5.0|128000,8192|VT|-|eu/gpt-5.1-chat model|Y
azure/gpt-5.1-codex-mini|gpt-5.1-codex-mini|eu/gpt-5.1-codex-mini|C|0.25,2.0|128000,8192|VT|-|eu/gpt-5.1-codex-mini model|Y
azure/gpt-5.2-chat|gpt-5.2-chat|eu/gpt-5.2-chat|C|0.875,7.0|128000,8192|VT|-|eu/gpt-5.2-chat model|Y
azure/code-cushman-001|code-cushman-001|us/code-cushman-001|C|1.0,5.0|128000,8192|VT|-|us/code-cushman-001 model|N
azure/code-cushman-fine-tune-002|code-cushman-fine-tune-002|us/code-cushman-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|us/code-cushman-fine-tune-002 model|N
azure/gpt-35-turbo|gpt-35-turbo|us/gpt-35-turbo|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|us/gpt-35-turbo model|Y
azure/gpt-4|gpt-4|us/gpt-4|C|1.0,5.0|8192,4096|VT|86.4,,23.0,30.7,,,,,,|us/gpt-4 model|N
azure/gpt-4-32k|gpt-4-32k|us/gpt-4-32k|C|1.0,5.0|32768,32768|VT|-|us/gpt-4-32k model|N
azure/gpt-4o|gpt-4o|us/gpt-4o|C|1.25,5.0|128000,4096|VT|87.2,91.0,53.3,48.9,25.4,,,,,|us/gpt-4o model|Y
azure/gpt-4o-mini|gpt-4o-mini|us/gpt-4o-mini|C|0.075,0.3|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|us/gpt-4o-mini model|Y
azure/gpt-4o-audio-preview|gpt-4o-audio-preview|us/gpt-4o-audio-preview|C|2.5,10.0|128000,16384|VT|-|us/gpt-4o-audio-preview model|Y
azure/davinci|davinci|us/davinci|C|1.0,5.0|128000,8192|VT|-|us/davinci model|N
azure/text-davinci-001|text-davinci-001|us/text-davinci-001|C|1.0,5.0|128000,8192|VT|43.9,,,,,,,,,|us/text-davinci-001 model|N
azure/text-davinci-002|text-davinci-002|us/text-davinci-002|C|1.0,5.0|128000,8192|VT|70.0,,,,,,,,,|us/text-davinci-002 model|N
azure/text-davinci-003|text-davinci-003|us/text-davinci-003|C|1.0,5.0|128000,8192|VT|-|us/text-davinci-003 model|N
azure/text-davinci-fine-tune-002|text-davinci-fine-tune-002|us/text-davinci-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|us/text-davinci-fine-tune-002 model|N
azure/code-davinci-fine-tune-002|code-davinci-fine-tune-002|us/code-davinci-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|us/code-davinci-fine-tune-002 model|N
azure/text-similarity-davinci-001|text-similarity-davinci-001|us/text-similarity-davinci-001|C|1.0,5.0|128000,8192|VT|-|us/text-similarity-davinci-001 model|N
azure/text-search-davinci-doc-001|text-search-davinci-doc-001|us/text-search-davinci-doc-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-davinci-doc-001 model|N
azure/text-search-davinci-query-001|text-search-davinci-query-001|us/text-search-davinci-query-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-davinci-query-001 model|N
azure/curie|curie|us/curie|C|1.0,5.0|128000,8192|VT|-|us/curie model|N
azure/text-curie-001|text-curie-001|us/text-curie-001|C|1.0,5.0|128000,8192|VT|-|us/text-curie-001 model|N
azure/text-similarity-curie-001|text-similarity-curie-001|us/text-similarity-curie-001|C|1.0,5.0|128000,8192|VT|-|us/text-similarity-curie-001 model|N
azure/text-search-curie-doc-001|text-search-curie-doc-001|us/text-search-curie-doc-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-curie-doc-001 model|N
azure/text-search-curie-query-001|text-search-curie-query-001|us/text-search-curie-query-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-curie-query-001 model|N
azure/babbage|babbage|us/babbage|C|1.0,5.0|128000,8192|VT|-|us/babbage model|N
azure/text-babbage-001|text-babbage-001|us/text-babbage-001|C|1.0,5.0|128000,8192|VT|-|us/text-babbage-001 model|N
azure/text-similarity-babbage-001|text-similarity-babbage-001|us/text-similarity-babbage-001|C|1.0,5.0|128000,8192|VT|-|us/text-similarity-babbage-001 model|N
azure/text-search-babbage-doc-001|text-search-babbage-doc-001|us/text-search-babbage-doc-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-babbage-doc-001 model|N
azure/text-search-babbage-query-001|text-search-babbage-query-001|us/text-search-babbage-query-001|C|1.0,5.0|128000,8192|VT|-|us/text-search-babbage-query-001 model|N
azure/code-search-babbage-code-001|code-search-babbage-code-001|us/code-search-babbage-code-001|C|1.0,5.0|128000,8192|VT|-|us/code-search-babbage-code-001 model|N
azure/code-search-babbage-text-001|code-search-babbage-text-001|us/code-search-babbage-text-001|C|1.0,5.0|128000,8192|VT|-|us/code-search-babbage-text-001 model|N
azure/o1-mini|o1-mini|us/o1-mini|C|1.0,5.0|200000,100000|VTK|85.2,92.4,,,,,,,,|us/o1-mini model|N
azure/o1|o1|us/o1|C|7.5,30.0|200000,100000|VTK|90.8,92.4,81.6,50.3,,,,,,|us/o1 model|N
azure/o3-mini|o3-mini|us/o3-mini|C|0.55,2.2|200000,100000|VTK|85.9,96.3,,,,,,,,|us/o3-mini model|Y
azure/o4-mini|o4-mini|us/o4-mini|C|0.55,2.2|200000,100000|VT|90.0,97.3,,,,,,,,|us/o4-mini model|Y
azure/gpt-4.1|gpt-4.1|us/gpt-4.1|C|1.0,4.0|1047576,32768|VT|90.2,94.5,83.0,66.9,41.0,,,,,|us/gpt-4.1 model|Y
azure/gpt-4.1-mini|gpt-4.1-mini|us/gpt-4.1-mini|C|0.2,0.8|1047576,32768|VT|87.5,93.8,87.3,65.8,32.8,,,,,|us/gpt-4.1-mini model|Y
azure/gpt-4.1-nano|gpt-4.1-nano|us/gpt-4.1-nano|C|0.05,0.2|1047576,32768|VT|80.1,87.0,70.0,48.9,,,,,,|us/gpt-4.1-nano model|Y
azure/gpt-5-mini|gpt-5-mini|us/gpt-5-mini|C|0.125,1.0|1047576,32768|VT|-|us/gpt-5-mini model|Y
azure/gpt-5-nano|gpt-5-nano|us/gpt-5-nano|C|0.025,0.2|1047576,32768|VT|-|us/gpt-5-nano model|Y
azure/gpt-35-turbo-16k|gpt-35-turbo-16k|us/gpt-35-turbo-16k|C|3.0,4.0|16385,4096|VT|-|us/gpt-35-turbo-16k model|Y
azure/gpt-4o-mini-realtime-preview|gpt-4o-mini-realtime-preview|us/gpt-4o-mini-realtime-preview|C|0.6,2.4|128000,4096|VT|-|us/gpt-4o-mini-realtime-preview model|Y
azure/gpt-4o-realtime-preview|gpt-4o-realtime-preview|us/gpt-4o-realtime-preview|C|5.0,20.0|128000,4096|VT|-|us/gpt-4o-realtime-preview model|N
azure/gpt-4o-mini-audio-preview|gpt-4o-mini-audio-preview|us/gpt-4o-mini-audio-preview|C|0.15,0.6|128000,16384|VT|-|us/gpt-4o-mini-audio-preview model|Y
azure/gpt-4o-transcribe|gpt-4o-transcribe|us/gpt-4o-transcribe|C|1.0,5.0|128000,16384|VT|-|us/gpt-4o-transcribe model|N
azure/gpt-4o-mini-transcribe|gpt-4o-mini-transcribe|us/gpt-4o-mini-transcribe|C|1.0,5.0|128000,16384|VT|-|us/gpt-4o-mini-transcribe model|N
azure/model-router|model-router|us/model-router|C|1.0,5.0|128000,8192|VT|-|us/model-router model|N
azure/codex-mini|codex-mini|us/codex-mini|C|1.5,6.0|128000,8192|VT|-|us/codex-mini model|Y
azure/sora|sora|us/sora|C|1.0,5.0|128000,8192|VT|-|us/sora model|N
azure/gpt-5-chat|gpt-5-chat|us/gpt-5-chat|C|0.625,5.0|128000,8192|VT|-|us/gpt-5-chat model|Y
azure/gpt-audio|gpt-audio|us/gpt-audio|C|2.5,10.0|128000,16384|VT|-|us/gpt-audio model|Y
azure/gpt-realtime|gpt-realtime|us/gpt-realtime|C|4.0,16.0|128000,8192|VT|-|us/gpt-realtime model|Y
azure/gpt-audio-mini|gpt-audio-mini|us/gpt-audio-mini|C|0.6,2.4|128000,16384|VT|-|us/gpt-audio-mini model|Y
azure/gpt-realtime-mini|gpt-realtime-mini|us/gpt-realtime-mini|C|0.6,2.4|128000,8192|VT|-|us/gpt-realtime-mini model|Y
azure/gpt-4o-transcribe-diarize|gpt-4o-transcribe-diarize|us/gpt-4o-transcribe-diarize|C|1.0,5.0|128000,16384|VT|-|us/gpt-4o-transcribe-diarize model|N
azure/gpt-5.1-chat|gpt-5.1-chat|us/gpt-5.1-chat|C|0.625,5.0|128000,8192|VT|-|us/gpt-5.1-chat model|Y
azure/gpt-5.1-codex-mini|gpt-5.1-codex-mini|us/gpt-5.1-codex-mini|C|0.25,2.0|128000,8192|VT|-|us/gpt-5.1-codex-mini model|Y
azure/gpt-5.2-chat|gpt-5.2-chat|us/gpt-5.2-chat|C|0.875,7.0|128000,8192|VT|-|us/gpt-5.2-chat model|Y
azure/code-cushman-001|code-cushman-001|eu/code-cushman-001|C|1.0,5.0|128000,8192|VT|-|eu/code-cushman-001 model|N
azure/code-cushman-fine-tune-002|code-cushman-fine-tune-002|eu/code-cushman-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|eu/code-cushman-fine-tune-002 model|N
azure/text-davinci-001|text-davinci-001|eu/text-davinci-001|C|1.0,5.0|128000,8192|VT|43.9,,,,,,,,,|eu/text-davinci-001 model|N
azure/text-davinci-002|text-davinci-002|eu/text-davinci-002|C|1.0,5.0|128000,8192|VT|70.0,,,,,,,,,|eu/text-davinci-002 model|N
azure/text-davinci-003|text-davinci-003|eu/text-davinci-003|C|1.0,5.0|128000,8192|VT|-|eu/text-davinci-003 model|N
azure/text-davinci-fine-tune-002|text-davinci-fine-tune-002|eu/text-davinci-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|eu/text-davinci-fine-tune-002 model|N
azure/code-davinci-002|code-davinci-002|eu/code-davinci-002|C|1.0,5.0|128000,8192|VT|-|eu/code-davinci-002 model|N
azure/code-davinci-fine-tune-002|code-davinci-fine-tune-002|eu/code-davinci-fine-tune-002|C|1.0,5.0|128000,8192|VT|-|eu/code-davinci-fine-tune-002 model|N
azure/text-similarity-davinci-001|text-similarity-davinci-001|eu/text-similarity-davinci-001|C|1.0,5.0|128000,8192|VT|-|eu/text-similarity-davinci-001 model|N
azure/text-search-davinci-doc-001|text-search-davinci-doc-001|eu/text-search-davinci-doc-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-davinci-doc-001 model|N
azure/text-search-davinci-query-001|text-search-davinci-query-001|eu/text-search-davinci-query-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-davinci-query-001 model|N
azure/text-babbage-001|text-babbage-001|eu/text-babbage-001|C|1.0,5.0|128000,8192|VT|-|eu/text-babbage-001 model|N
azure/text-similarity-babbage-001|text-similarity-babbage-001|eu/text-similarity-babbage-001|C|1.0,5.0|128000,8192|VT|-|eu/text-similarity-babbage-001 model|N
azure/text-search-babbage-doc-001|text-search-babbage-doc-001|eu/text-search-babbage-doc-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-babbage-doc-001 model|N
azure/text-search-babbage-query-001|text-search-babbage-query-001|eu/text-search-babbage-query-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-babbage-query-001 model|N
azure/code-search-babbage-code-001|code-search-babbage-code-001|eu/code-search-babbage-code-001|C|1.0,5.0|128000,8192|VT|-|eu/code-search-babbage-code-001 model|N
azure/code-search-babbage-text-001|code-search-babbage-text-001|eu/code-search-babbage-text-001|C|1.0,5.0|128000,8192|VT|-|eu/code-search-babbage-text-001 model|N
azure/text-curie-001|text-curie-001|eu/text-curie-001|C|1.0,5.0|128000,8192|VT|-|eu/text-curie-001 model|N
azure/text-similarity-curie-001|text-similarity-curie-001|eu/text-similarity-curie-001|C|1.0,5.0|128000,8192|VT|-|eu/text-similarity-curie-001 model|N
azure/text-search-curie-doc-001|text-search-curie-doc-001|eu/text-search-curie-doc-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-curie-doc-001 model|N
azure/text-search-curie-query-001|text-search-curie-query-001|eu/text-search-curie-query-001|C|1.0,5.0|128000,8192|VT|-|eu/text-search-curie-query-001 model|N
# =============================================================================
# BAICHUAN - Direct API (5 models)
# =============================================================================
baichuan/Baichuan4|baichuan4|Baichuan4|C|1.4,1.4|32000,4096|-|-|Baichuan4 model|Y
baichuan/Baichuan4-Turbo|baichuan4-turbo|Baichuan4-Turbo|C|0.7,0.7|32000,4096|-|-|Baichuan4-Turbo model|Y
baichuan/Baichuan4-Air|baichuan4-air|Baichuan4-Air|C|0.14,0.14|32000,4096|-|-|Baichuan4-Air model|Y
baichuan/Baichuan3-Turbo|baichuan3-turbo|Baichuan3-Turbo|C|0.17,0.17|32000,4096|-|-|Baichuan3-Turbo model|Y
baichuan/Baichuan3-Turbo-128K|baichuan3-turbo-128k|Baichuan3-Turbo-128K|C|0.7,0.7|128000,4096|-|-|Baichuan3-Turbo-128K model|Y
# =============================================================================
# BAIDU - Direct API (9 models)
# =============================================================================
baidu/ernie-4.5|ernie-4.5|ERNIE-4.5|C|1.6,4.8|128000,8192|-|-|ERNIE-4.5 model|Y
baidu/ernie-4.5-turbo|ernie-4.5-turbo|ERNIE-4.5-Turbo|C|0.4,1.2|128000,8192|-|-|ERNIE-4.5-Turbo model|Y
baidu/ernie-4.5-vl|ernie-4.5-vl|ERNIE-4.5-VL|C|2.0,6.0|128000,8192|V|-|ERNIE-4.5-VL model|Y
baidu/ernie-x1|ernie-x1|ERNIE-X1|C|2.4,7.2|128000,8192|-|-|ERNIE-X1 model|Y
baidu/ernie-x1.1|ernie-x1.1|ERNIE-X1.1|C|2.4,7.2|128000,8192|-|-|ERNIE-X1.1 model|Y
baidu/ernie-4.0|ernie-4.0|ERNIE-4.0|C|2.4,7.2|128000,8192|-|-|ERNIE-4.0 model|Y
baidu/ernie-4.0-turbo|ernie-4.0-turbo|ERNIE-4.0-Turbo|C|0.4,1.2|128000,8192|-|-|ERNIE-4.0-Turbo model|Y
baidu/ernie-3.5-8k|ernie-3.5-8k|ERNIE-3.5-8K|C|0.16,0.48|128000,8192|-|-|ERNIE-3.5-8K model|Y
baidu/ernie-speed|ernie-speed|ERNIE-Speed|C|1.0,5.0|128000,8192|-|-|ERNIE-Speed model|N
# =============================================================================
# BASETEN - Direct API (5 models)
# =============================================================================
baseten/llama-3.1-405b|llama-3.1-405b|Llama 3.1 405B|C|1.0,5.0|131072,8192|-|84.4,,49.8,50.9,,,,,,|Llama 3.1 405B model|N
baseten/llama-3.1-70b|llama-3.1-70b|Llama 3.1 70B|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|Llama 3.1 70B model|N
baseten/llama-3.1-8b|llama-3.1-8b|Llama 3.1 8B|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|Llama 3.1 8B model|N
baseten/mistral-7b|mistral-7b|Mistral 7B|C|1.0,5.0|32768,4096|-|-|Mistral 7B model|N
baseten/mixtral-8x7b|mixtral-8x7b|Mixtral 8x7B|C|1.0,5.0|32768,4096|-|-|Mixtral 8x7B model|N
# =============================================================================
# BEAM - Direct API (3 models)
# =============================================================================
beam/llama-3.1-70b|llama-3.1-70b|llama-3.1-70b|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|llama-3.1-70b model|N
beam/llama-3.1-8b|llama-3.1-8b|llama-3.1-8b|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b model|N
beam/mistral-7b|mistral-7b|mistral-7b|C|1.0,5.0|32768,4096|-|-|mistral-7b model|N
# =============================================================================
# BEDROCK - Direct API (211 models)
# =============================================================================
bedrock/nvidia.nemotron-nano-12b-v2|nvidia.nemotron-nano-12b|NVIDIA Nemotron Nano 12B v2 VL BF16|C|1.0,5.0|128000,8192|VT|-|NVIDIA Nemotron Nano 12B v2 VL BF16 model|N
bedrock/anthropic.claude-sonnet-4-20250514-v1:0|anthropic.claude-sonnet-4-20250514|Claude Sonnet 4|C|1.0,5.0|128000,8192|VT|,,84.4,66.7,60.6,,,,,|Claude Sonnet 4 model|N
bedrock/anthropic.claude-haiku-4-5-20251001-v1:0|anthropic.claude-haiku-4.5-20251001|Claude Haiku 4.5|C|1.0,5.0|128000,8192|VT|,,86.9,60.5,60.6,,,,,|Claude Haiku 4.5 model|N
bedrock/qwen.qwen3-235b-a22b-2507-v1:0|qwen.qwen3-235b-a22b-2507|Qwen3 235B A22B 2507|C|0.11,0.44|128000,8192|VT|,,68.9,70.7,,,,,,|Qwen3 235B A22B 2507 model|Y
bedrock/openai.gpt-oss-120b-1:0|openai.gpt-oss-120b-1:0|gpt-oss-120b|C|0.075,0.3|128000,8192|VT|-|gpt-oss-120b model|Y
bedrock/stability.stable-creative-upscale-v1:0|stability.stable-creative-upscale|Stable Image Creative Upscale|C|1.0,5.0|128000,8192|VT|-|Stable Image Creative Upscale model|N
bedrock/qwen.qwen3-next-80b-a3b|qwen.qwen3-next-80b-a3b|Qwen3 Next 80B A3B|C|0.07,0.6|128000,8192|VT|-|Qwen3 Next 80B A3B model|Y
bedrock/nvidia.nemotron-nano-3-30b|nvidia.nemotron-nano-3-30b|Nemotron Nano 3 30B|C|0.03,0.12|128000,8192|VT|-|Nemotron Nano 3 30B model|Y
bedrock/minimax.minimax-m2|minimax.minimax-m2|MiniMax M2|C|0.15,0.6|128000,8192|VT|-|MiniMax M2 model|Y
bedrock/mistral.voxtral-mini-3b-2507|mistral.voxtral-mini-3b-2507|Voxtral Mini 3B 2507|C|0.02,0.02|128000,8192|VT|-|Voxtral Mini 3B 2507 model|Y
bedrock/amazon.nova-pro-v1:0|amazon.nova-pro|Nova Pro|C|0.4,1.6|128000,8192|VT|82.0,,,,,,,,,|Nova Pro model|Y
bedrock/stability.stable-image-remove-background-v1:0|-|Stable Image Remove Background|C|1.0,5.0|128000,8192|VT|-|Stable Image Remove Background model|N
bedrock/stability.stable-image-control-sketch-v1:0|stability.stable-image-control-sketch|Stable Image Control Sketch|C|1.0,5.0|128000,8192|VT|-|Stable Image Control Sketch model|N
bedrock/amazon.nova-2-lite-v1:0|amazon.nova-2-lite|Nova 2 Lite|C|0.15,0.125|128000,8192|VT|-|Nova 2 Lite model|Y
bedrock/stability.stable-conservative-upscale-v1:0|stability.stable-conservative-upscale|Stable Image Conservative Upscale|C|1.0,5.0|128000,8192|VT|-|Stable Image Conservative Upscale model|N
bedrock/google.gemma-3-12b-it|google.gemma-3-12b-it|Gemma 3 12B IT|C|0.05,0.15|128000,8192|VT|-|Gemma 3 12B IT model|Y
bedrock/stability.stable-image-search-recolor-v1:0|stability.stable-image-search-recolor|Stable Image Search and Recolor|C|1.0,5.0|128000,8192|VT|-|Stable Image Search and Recolor model|N
bedrock/moonshot.kimi-k2-thinking|moonshot.kimi-k2-thinking|Kimi K2 Thinking|C|0.3,1.25|128000,8192|VTK|-|Kimi K2 Thinking model|Y
bedrock/mistral.mistral-large-3-675b-instruct|mistral.mistral-large-3-675b-instruct|Mistral Large 3|C|0.25,0.75|128000,8192|VT|-|Mistral Large 3 model|Y
bedrock/twelvelabs.pegasus-1-2-v1:0|twelvelabs.pegasus-1-2|Pegasus v1.2|C|1.0,5.0|128000,8192|VT|-|Pegasus v1.2 model|N
bedrock/amazon.nova-2-sonic-v1:0|amazon.nova-2-sonic|Nova 2 Sonic|C|0.319,2.651|128000,8192|VT|-|Nova 2 Sonic model|Y
bedrock/qwen.qwen3-32b-v1:0|qwen.qwen3-32b|Qwen3 32B (dense)|C|0.075,0.3|128000,8192|VT|-|Qwen3 32B (dense) model|Y
bedrock/mistral.ministral-3-14b-instruct|mistral.ministral-3-14b-instruct|Ministral 14B 3.0|C|0.1,0.1|128000,8192|VT|-|Ministral 14B 3.0 model|Y
bedrock/nvidia.nemotron-nano-9b-v2|nvidia.nemotron-nano-9b|NVIDIA Nemotron Nano 9B v2|C|0.03,0.12|128000,8192|VT|-|NVIDIA Nemotron Nano 9B v2 model|Y
bedrock/mistral.ministral-3-8b-instruct|mistral.ministral-3-8b-instruct|Ministral 3 8B|C|0.07,0.07|128000,8192|VT|-|Ministral 3 8B model|Y
bedrock/mistral.voxtral-small-24b-2507|mistral.voxtral-small-24b-2507|Voxtral Small 24B 2507|C|1.0,5.0|128000,8192|VT|-|Voxtral Small 24B 2507 model|N
bedrock/openai.gpt-oss-20b-1:0|openai.gpt-oss-20b-1:0|gpt-oss-20b|C|0.035,0.15|128000,8192|VT|-|gpt-oss-20b model|Y
bedrock/google.gemma-3-4b-it|google.gemma-3-4b-it|Gemma 3 4B IT|C|0.02,0.04|128000,8192|VT|-|Gemma 3 4B IT model|Y
bedrock/stability.stable-fast-upscale-v1:0|stability.stable-fast-upscale|Stable Image Fast Upscale|C|1.0,5.0|128000,8192|VT|-|Stable Image Fast Upscale model|N
bedrock/stability.stable-image-erase-object-v1:0|stability.stable-image-erase-object|Stable Image Erase Object|C|1.0,5.0|128000,8192|VT|-|Stable Image Erase Object model|N
bedrock/openai.gpt-oss-safeguard-120b|openai.gpt-oss-safeguard-120b|GPT OSS Safeguard 120B|C|0.07,0.3|128000,8192|VT|-|GPT OSS Safeguard 120B model|Y
bedrock/google.gemma-3-27b-it|google.gemma-3-27b-it|Gemma 3 27B PT|C|0.12,0.19|128000,8192|VT|,,74.0,48.9,,,,,,|Gemma 3 27B PT model|Y
bedrock/stability.stable-image-control-structure-v1:0|-|Stable Image Control Structure|C|1.0,5.0|128000,8192|VT|-|Stable Image Control Structure model|N
bedrock/anthropic.claude-sonnet-4-5-20250929-v1:0|anthropic.claude-sonnet-4.5-20250929|Claude Sonnet 4.5|C|1.0,5.0|128000,8192|VT|,,97.7,73.7,64.8,,,,,|Claude Sonnet 4.5 model|N
bedrock/qwen.qwen3-vl-235b-a22b|qwen.qwen3-vl-235b-a22b|Qwen3 VL 235B A22B|C|0.26,1.33|128000,8192|VT|-|Qwen3 VL 235B A22B model|Y
bedrock/stability.stable-outpaint-v1:0|stability.stable-outpaint|Stable Image Outpaint|C|1.0,5.0|128000,8192|VT|-|Stable Image Outpaint model|N
bedrock/stability.stable-image-inpaint-v1:0|stability.stable-image-inpaint|Stable Image Inpaint|C|1.0,5.0|128000,8192|VT|-|Stable Image Inpaint model|N
bedrock/anthropic.claude-opus-4-1-20250805-v1:0|anthropic.claude-opus-4.1-20250805|Claude Opus 4.1|C|1.0,5.0|128000,8192|VT|,,,73.2,63.2,,,,,|Claude Opus 4.1 model|N
bedrock/qwen.qwen3-coder-480b-a35b-v1:0|qwen.qwen3-coder-480b-a35b|Qwen3 Coder 480B A35B Instruct|C|0.225,0.9|128000,8192|VT|-|Qwen3 Coder 480B A35B Instruct model|Y
bedrock/stability.stable-image-style-guide-v1:0|stability.stable-image-style-guide|Stable Image Style Guide|C|1.0,5.0|128000,8192|VT|-|Stable Image Style Guide model|N
bedrock/mistral.magistral-small-2509|mistral.magistral-small-2509|Magistral Small 2509|C|0.25,0.75|128000,8192|VT|,,,48.4,,,,,,|Magistral Small 2509 model|Y
bedrock/stability.stable-style-transfer-v1:0|stability.stable-style-transfer|Stable Image Style Transfer|C|1.0,5.0|128000,8192|VT|-|Stable Image Style Transfer model|N
bedrock/deepseek.v3-v1:0|deepseek.v3|DeepSeek-V3.1|C|0.29,0.84|128000,8192|VT|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3.1 model|Y
bedrock/mistral.ministral-3-3b-instruct|mistral.ministral-3-3b-instruct|Ministral 3B|C|0.05,0.05|128000,8192|VT|-|Ministral 3B model|Y
bedrock/anthropic.claude-opus-4-5-20251101-v1:0|anthropic.claude-opus-4.5-20251101|Claude Opus 4.5|C|1.0,5.0|128000,8192|VT|,,,80.7,,,,,,|Claude Opus 4.5 model|N
bedrock/stability.stable-image-search-replace-v1:0|stability.stable-image-search-replace|Stable Image Search and Replace|C|1.0,5.0|128000,8192|VT|-|Stable Image Search and Replace model|N
bedrock/qwen.qwen3-coder-30b-a3b-v1:0|qwen.qwen3-coder-30b-a3b|Qwen3-Coder-30B-A3B-Instruct|C|1.0,5.0|128000,8192|VT|-|Qwen3-Coder-30B-A3B-Instruct model|N
bedrock/openai.gpt-oss-safeguard-20b|openai.gpt-oss-safeguard-20b|GPT OSS Safeguard 20B|C|0.03,0.1|128000,8192|VT|-|GPT OSS Safeguard 20B model|Y
bedrock/amazon.titan-tg1-large|amazon.titan-tg1-large|Titan Text Large|C|1.0,5.0|128000,8192|VT|-|Titan Text Large model|N
bedrock/amazon.nova-premier-v1:0:8k|amazon.nova-premier-v1:0:8k|Nova Premier|C|1.25,6.25|128000,8192|VT|-|Nova Premier model|Y
bedrock/amazon.nova-premier-v1:0:20k|amazon.nova-premier-v1:0:20k|Nova Premier|C|1.25,6.25|128000,8192|VT|-|Nova Premier model|Y
bedrock/amazon.nova-premier-v1:0:1000k|amazon.nova-premier-v1:0:1000k|Nova Premier|C|1.25,6.25|128000,8192|VT|-|Nova Premier model|Y
bedrock/amazon.nova-premier-v1:0:mm|amazon.nova-premier-v1:0:mm|Nova Premier|C|1.25,6.25|128000,8192|VT|-|Nova Premier model|Y
bedrock/amazon.nova-premier-v1:0|amazon.nova-premier|Nova Premier|C|1.25,6.25|128000,8192|VT|-|Nova Premier model|Y
bedrock/amazon.nova-lite-v1:0|amazon.nova-lite|Nova Lite|C|0.03,0.12|128000,8192|VT|77.0,,,,,,,,,|Nova Lite model|Y
bedrock/amazon.nova-micro-v1:0|amazon.nova-micro|Nova Micro|C|0.0175,0.07|128000,8192|VT|70.8,,,,,,,,,|Nova Micro model|Y
bedrock/amazon.titan-image-generator-v2:0|amazon.titan-image-generator|Titan Image Generator G1 v2|C|1.0,5.0|128000,8192|VT|-|Titan Image Generator G1 v2 model|N
bedrock/amazon.rerank-v1:0|amazon.rerank|Rerank 1.0|C|1.0,5.0|128000,8192|VT|-|Rerank 1.0 model|N
bedrock/stability.sd3-5-large-v1:0|stability.sd3-5-large|Stable Diffusion 3.5 Large|C|1.0,5.0|128000,8192|VT|-|Stable Diffusion 3.5 Large model|N
bedrock/stability.stable-image-core-v1:1|stability.stable-image-core|Stable Image Core 1.0|C|1.0,5.0|128000,8192|VT|-|Stable Image Core 1.0 model|N
bedrock/stability.stable-image-ultra-v1:1|stability.stable-image-ultra|Stable Image Ultra 1.0|C|1.0,5.0|128000,8192|VT|-|Stable Image Ultra 1.0 model|N
bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0:18k|-|Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet v2 model|N
bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0:51k|-|Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet v2 model|N
bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0:200k|-|Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet v2 model|N
bedrock/anthropic.claude-3-5-sonnet-20241022-v2:0|anthropic.claude-3.5-sonnet-20241022|Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet v2 model|N
bedrock/anthropic.claude-3-7-sonnet-20250219-v1:0|anthropic.claude-3.7-sonnet-20250219|Claude 3.7 Sonnet|C|1.0,5.0|128000,8192|VT|,,68.2,66.0,52.2,,,,,|Claude 3.7 Sonnet model|N
bedrock/anthropic.claude-3-5-haiku-20241022-v1:0|anthropic.claude-3.5-haiku-20241022|Claude 3.5 Haiku|C|1.0,5.0|128000,8192|VT|74.3,,46.4,38.1,,,,,,|Claude 3.5 Haiku model|N
bedrock/anthropic.claude-instant-v1:2:100k|anthropic.claude-instant-v1:2:100k|Claude Instant|C|1.0,5.0|128000,8192|VT|-|Claude Instant model|N
bedrock/anthropic.claude-v2:0:18k|anthropic.claude-v2:0:18k|Claude|C|1.0,5.0|128000,8192|VT|-|Claude model|N
bedrock/anthropic.claude-v2:0:100k|anthropic.claude-v2:0:100k|Claude|C|1.0,5.0|128000,8192|VT|-|Claude model|N
bedrock/anthropic.claude-v2:1:18k|anthropic.claude-v2:1:18k|Claude|C|1.0,5.0|128000,8192|VT|-|Claude model|N
bedrock/anthropic.claude-v2:1:200k|anthropic.claude-v2:1:200k|Claude|C|1.0,5.0|128000,8192|VT|-|Claude model|N
bedrock/anthropic.claude-3-sonnet-20240229-v1:0:28k|-|Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|75.9,,18.2,40.6,,,,,,|Claude 3 Sonnet model|N
bedrock/anthropic.claude-3-sonnet-20240229-v1:0:200k|-|Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|75.9,,18.2,40.6,,,,,,|Claude 3 Sonnet model|N
bedrock/anthropic.claude-3-sonnet-20240229-v1:0|anthropic.claude-3-sonnet-20240229|Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|75.9,,18.2,40.6,,,,,,|Claude 3 Sonnet model|N
bedrock/anthropic.claude-3-haiku-20240307-v1:0:48k|-|Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|73.8,,14.9,36.3,,,,,,|Claude 3 Haiku model|N
bedrock/anthropic.claude-3-haiku-20240307-v1:0:200k|-|Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|73.8,,14.9,36.3,,,,,,|Claude 3 Haiku model|N
bedrock/anthropic.claude-3-haiku-20240307-v1:0|anthropic.claude-3-haiku-20240307|Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|73.8,,14.9,36.3,,,,,,|Claude 3 Haiku model|N
bedrock/anthropic.claude-3-opus-20240229-v1:0:12k|-|Claude 3 Opus|C|1.0,5.0|128000,8192|VT|84.6,,37.5,47.2,,,,,,|Claude 3 Opus model|N
bedrock/anthropic.claude-3-opus-20240229-v1:0:28k|-|Claude 3 Opus|C|1.0,5.0|128000,8192|VT|84.6,,37.5,47.2,,,,,,|Claude 3 Opus model|N
bedrock/anthropic.claude-3-opus-20240229-v1:0:200k|-|Claude 3 Opus|C|1.0,5.0|128000,8192|VT|84.6,,37.5,47.2,,,,,,|Claude 3 Opus model|N
bedrock/anthropic.claude-3-opus-20240229-v1:0|anthropic.claude-3-opus-20240229|Claude 3 Opus|C|1.0,5.0|128000,8192|VT|84.6,,37.5,47.2,,,,,,|Claude 3 Opus model|N
bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0:18k|-|Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet model|N
bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0:51k|-|Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet model|N
bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0:200k|-|Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet model|N
bedrock/anthropic.claude-3-5-sonnet-20240620-v1:0|anthropic.claude-3.5-sonnet-20240620|Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|Claude 3.5 Sonnet model|N
bedrock/anthropic.claude-opus-4-20250514-v1:0|anthropic.claude-opus-4-20250514|Claude Opus 4|C|1.0,5.0|128000,8192|VT|,,85.0,69.2,62.2,,,,,|Claude Opus 4 model|N
bedrock/cohere.command-r-v1:0|cohere.command-r|Command R|C|1.0,5.0|128000,8192|VT|-|Command R model|N
bedrock/cohere.command-r-plus-v1:0|cohere.command-r-plus|Command R+|C|1.0,5.0|128000,8192|VT|-|Command R+ model|N
bedrock/cohere.rerank-v3-5:0|cohere.rerank-v3-5:0|Rerank 3.5|C|1.0,5.0|128000,8192|VT|-|Rerank 3.5 model|N
bedrock/deepseek.r1-v1:0|deepseek.r1|DeepSeek-R1|C|1.35,5.4|128000,8192|VT|,,93.1,69.2,33.3,,,,,|DeepSeek-R1 model|Y
bedrock/meta.llama3-8b-instruct-v1:0|meta.llama3-8b-instruct|Llama 3 8B Instruct|C|0.3,0.6|128000,8192|VT|,,,2.1,,24.0,,,,|Llama 3 8B Instruct model|Y
bedrock/meta.llama3-70b-instruct-v1:0|meta.llama3-70b-instruct|Llama 3 70B Instruct|C|2.65,3.5|128000,8192|VT|-|Llama 3 70B Instruct model|Y
bedrock/meta.llama3-1-8b-instruct-v1:0:128k|meta.llama3-1-8b-instruct-v1:0:128k|Llama 3.1 8B Instruct|C|0.11,0.11|128000,8192|VT|56.1,,22.9,25.9,,,,,,|Llama 3.1 8B Instruct model|Y
bedrock/meta.llama3-1-8b-instruct-v1:0|meta.llama3-1-8b-instruct|Llama 3.1 8B Instruct|C|0.11,0.11|128000,8192|VT|56.1,,22.9,25.9,,,,,,|Llama 3.1 8B Instruct model|Y
bedrock/meta.llama3-1-70b-instruct-v1:0:128k|meta.llama3-1-70b-instruct-v1:0:128k|Llama 3.1 70B Instruct|C|0.36,0.36|128000,8192|VT|80.1,,36.7,44.2,,,,,,|Llama 3.1 70B Instruct model|Y
bedrock/meta.llama3-1-70b-instruct-v1:0|meta.llama3-1-70b-instruct|Llama 3.1 70B Instruct|C|0.36,0.36|128000,8192|VT|80.1,,36.7,44.2,,,,,,|Llama 3.1 70B Instruct model|Y
bedrock/meta.llama3-1-405b-instruct-v1:0|meta.llama3-1-405b-instruct|Llama 3.1 405B Instruct|C|1.2,1.2|128000,8192|VT|84.4,,49.8,50.9,,,,,,|Llama 3.1 405B Instruct model|Y
bedrock/meta.llama3-2-11b-instruct-v1:0:128k|meta.llama3-2-11b-instruct-v1:0:128k|Llama 3.2 11B Instruct|C|0.08,0.08|128000,8192|VT|-|Llama 3.2 11B Instruct model|Y
bedrock/meta.llama3-2-11b-instruct-v1:0|meta.llama3-2-11b-instruct|Llama 3.2 11B Instruct|C|0.08,0.08|128000,8192|VT|-|Llama 3.2 11B Instruct model|Y
bedrock/meta.llama3-2-90b-instruct-v1:0:128k|meta.llama3-2-90b-instruct-v1:0:128k|Llama 3.2 90B Instruct|C|0.36,0.36|128000,8192|VT|-|Llama 3.2 90B Instruct model|Y
bedrock/meta.llama3-2-90b-instruct-v1:0|meta.llama3-2-90b-instruct|Llama 3.2 90B Instruct|C|0.36,0.36|128000,8192|VT|-|Llama 3.2 90B Instruct model|Y
bedrock/meta.llama3-2-1b-instruct-v1:0:128k|meta.llama3-2-1b-instruct-v1:0:128k|Llama 3.2 1B Instruct|C|0.05,0.05|128000,8192|VT|-|Llama 3.2 1B Instruct model|Y
bedrock/meta.llama3-2-1b-instruct-v1:0|meta.llama3-2-1b-instruct|Llama 3.2 1B Instruct|C|0.05,0.05|128000,8192|VT|-|Llama 3.2 1B Instruct model|Y
bedrock/meta.llama3-2-3b-instruct-v1:0:128k|meta.llama3-2-3b-instruct-v1:0:128k|Llama 3.2 3B Instruct|C|0.075,0.075|128000,8192|VT|-|Llama 3.2 3B Instruct model|Y
bedrock/meta.llama3-2-3b-instruct-v1:0|meta.llama3-2-3b-instruct|Llama 3.2 3B Instruct|C|0.075,0.075|128000,8192|VT|-|Llama 3.2 3B Instruct model|Y
bedrock/meta.llama3-3-70b-instruct-v1:0:128k|meta.llama3-3-70b-instruct-v1:0:128k|Llama 3.3 70B Instruct|C|0.36,0.36|128000,8192|VT|86.3,,41.6,47.4,,,,,,|Llama 3.3 70B Instruct model|Y
bedrock/meta.llama3-3-70b-instruct-v1:0|meta.llama3-3-70b-instruct|Llama 3.3 70B Instruct|C|0.36,0.36|128000,8192|VT|86.3,,41.6,47.4,,,,,,|Llama 3.3 70B Instruct model|Y
bedrock/meta.llama4-scout-17b-instruct-v1:0|meta.llama4-scout-17b-instruct|Llama 4 Scout 17B Instruct|C|0.085,0.33|128000,8192|VT|-|Llama 4 Scout 17B Instruct model|Y
bedrock/meta.llama4-maverick-17b-instruct-v1:0|meta.llama4-maverick-17b-instruct|Llama 4 Maverick 17B Instruct|C|0.12,0.485|128000,8192|VT|-|Llama 4 Maverick 17B Instruct model|Y
bedrock/mistral.mistral-7b-instruct-v0:2|mistral.mistral-7b-instruct|Mistral 7B Instruct|C|0.15,0.2|128000,8192|VT|-|Mistral 7B Instruct model|Y
bedrock/mistral.mixtral-8x7b-instruct-v0:1|mistral.mixtral-8x7b-instruct|Mixtral 8x7B Instruct|C|0.45,0.7|128000,8192|VT|-|Mixtral 8x7B Instruct model|Y
bedrock/mistral.mistral-large-2402-v1:0|mistral.mistral-large-2402|Mistral Large (24.02)|C|4.0,12.0|128000,8192|VT|80.0,,24.5,49.0,,,,,,|Mistral Large (24.02) model|Y
bedrock/mistral.mistral-large-2407-v1:0|mistral.mistral-large-2407|Mistral Large (24.07)|C|4.0,12.0|128000,8192|VT|80.0,,24.5,49.0,,,,,,|Mistral Large (24.07) model|Y
bedrock/mistral.pixtral-large-2502-v1:0|mistral.pixtral-large-2502|Pixtral Large (25.02)|C|2.0,6.0|128000,8192|VT|-|Pixtral Large (25.02) model|Y
bedrock/luma.ray-v2:0|luma.ray|Ray v2|C|1.0,5.0|128000,8192|VT|-|Ray v2 model|N
bedrock/writer.palmyra-x4-v1:0|writer.palmyra-x4|Palmyra X4|C|2.5,10.0|128000,8192|VT|-|Palmyra X4 model|Y
bedrock/writer.palmyra-x5-v1:0|writer.palmyra-x5|Palmyra X5|C|0.6,6.0|128000,8192|VT|-|Palmyra X5 model|Y
bedrock/amazon.nova-2-lite-v1:0:256k|amazon.nova-2-lite-v1:0:256k|Nova 2 Lite|C|0.15,0.125|128000,8192|VT|-|Nova 2 Lite model|Y
bedrock/amazon.nova-pro-v1:0:24k|amazon.nova-pro-v1:0:24k|Nova Pro|C|0.4,1.6|128000,8192|VT|82.0,,,,,,,,,|Nova Pro model|Y
bedrock/amazon.nova-pro-v1:0:300k|amazon.nova-pro-v1:0:300k|Nova Pro|C|0.4,1.6|128000,8192|VT|82.0,,,,,,,,,|Nova Pro model|Y
bedrock/amazon.nova-lite-v1:0:24k|amazon.nova-lite-v1:0:24k|Nova Lite|C|0.03,0.12|128000,8192|VT|77.0,,,,,,,,,|Nova Lite model|Y
bedrock/amazon.nova-lite-v1:0:300k|amazon.nova-lite-v1:0:300k|Nova Lite|C|0.03,0.12|128000,8192|VT|77.0,,,,,,,,,|Nova Lite model|Y
bedrock/amazon.nova-canvas-v1:0|amazon.nova-canvas|Nova Canvas|C|1.0,5.0|128000,8192|VT|-|Nova Canvas model|N
bedrock/amazon.nova-reel-v1:0|amazon.nova-reel|Nova Reel|C|1.0,5.0|128000,8192|VT|-|Nova Reel model|N
bedrock/amazon.nova-reel-v1:1|amazon.nova-reel|Nova Reel|C|1.0,5.0|128000,8192|VT|-|Nova Reel model|N
bedrock/amazon.nova-micro-v1:0:24k|amazon.nova-micro-v1:0:24k|Nova Micro|C|0.0175,0.07|128000,8192|VT|70.8,,,,,,,,,|Nova Micro model|Y
bedrock/amazon.nova-micro-v1:0:128k|amazon.nova-micro-v1:0:128k|Nova Micro|C|0.0175,0.07|128000,8192|VT|70.8,,,,,,,,,|Nova Micro model|Y
bedrock/amazon.nova-sonic-v1:0|amazon.nova-sonic|Nova Sonic|C|0.06,0.24|128000,8192|VT|-|Nova Sonic model|Y
bedrock/ai21.jamba-1-5-large-v1:0|ai21.jamba-1.5-large|Jamba 1.5 Large|C|1.0,5.0|128000,8192|VT|-|Jamba 1.5 Large model|N
bedrock/ai21.jamba-1-5-mini-v1:0|ai21.jamba-1.5-mini|Jamba 1.5 Mini|C|1.0,5.0|128000,8192|VT|-|Jamba 1.5 Mini model|N
bedrock/mistral.mistral-small-2402-v1:0|mistral.mistral-small-2402|Mistral Small (24.02)|C|0.5,1.5|128000,8192|VT|68.7,,44.8,45.3,,,,,,|Mistral Small (24.02) model|Y
bedrock/us.anthropic.claude-3-haiku-20240307-v1:0|us.anthropic.claude-3-haiku-20240307|US Anthropic Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Haiku in us-east-1 and us-west-2.|N
bedrock/us.anthropic.claude-3-5-sonnet-20240620-v1:0|us.anthropic.claude-3.5-sonnet-20240620|US Anthropic Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Sonnet in us-east-1 and us-west-2.|N
bedrock/us.anthropic.claude-3-sonnet-20240229-v1:0|us.anthropic.claude-3-sonnet-20240229|US Anthropic Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Sonnet in us-east-1 and us-west-2.|N
bedrock/us.anthropic.claude-3-opus-20240229-v1:0|us.anthropic.claude-3-opus-20240229|US Anthropic Claude 3 Opus|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Cluade 3 Opus in us-east-1 and us-west-2.|N
bedrock/us.meta.llama3-2-11b-instruct-v1:0|us.meta.llama3-2-11b-instruct|US Meta Llama 3.2 11B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 11B Instruct in us-east-1 and us-west-2.|N
bedrock/us.meta.llama3-2-90b-instruct-v1:0|us.meta.llama3-2-90b-instruct|US Meta Llama 3.2 90B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 90B Instruct in us-east-1 and us-west-2.|N
bedrock/us.meta.llama3-2-3b-instruct-v1:0|us.meta.llama3-2-3b-instruct|US Meta Llama 3.2 3B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 3B Instruct in us-east-1 and us-west-2.|N
bedrock/us.meta.llama3-2-1b-instruct-v1:0|us.meta.llama3-2-1b-instruct|US Meta Llama 3.2 1B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 1B Instruct in us-east-1 and us-west-2.|N
bedrock/us.anthropic.claude-3-5-haiku-20241022-v1:0|us.anthropic.claude-3.5-haiku-20241022|US Anthropic Claude 3.5 Haiku|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Haiku in us-east-1, us-east-2 and us-wes|N
bedrock/us.meta.llama3-1-8b-instruct-v1:0|us.meta.llama3-1-8b-instruct|US Meta Llama 3.1 8B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.1 8B Instruct in us-east-1, us-east-2 and us-wes|N
bedrock/us.meta.llama3-1-70b-instruct-v1:0|us.meta.llama3-1-70b-instruct|US Meta Llama 3.1 70B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.1 70B Instruct in us-east-1, us-east-2 and us-we|N
bedrock/us.meta.llama3-3-70b-instruct-v1:0|us.meta.llama3-3-70b-instruct|US Meta Llama 3.3 70B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.3 70B Instruct in us-east-1, us-east-2 and us-we|N
bedrock/us.deepseek.r1-v1:0|us.deepseek.r1|US DeepSeek-R1|C|1.0,5.0|128000,8192|VT|-|Routes requests to DeepSeek-R1 in us-east-1, us-east-2 and us-west-2.|N
bedrock/us.mistral.pixtral-large-2502-v1:0|us.mistral.pixtral-large-2502|US Mistral Pixtral Large 25.02|C|1.0,5.0|128000,8192|VT|-|Routes requests to Mistral Pixtral Large 25.02 in us-east-1, us-east-2 and us-we|N
bedrock/us.writer.palmyra-x4-v1:0|us.writer.palmyra-x4|US Palmyra X4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Palmyra X4 in us-east-1, us-east-2 and us-west-2.|N
bedrock/us.writer.palmyra-x5-v1:0|us.writer.palmyra-x5|US Palmyra X5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Palmyra X5 in us-east-1, us-east-2 and us-west-2.|N
bedrock/us.meta.llama4-maverick-17b-instruct-v1:0|us.meta.llama4-maverick-17b-instruct|US Llama 4 Maverick 17B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Llama 4 Maverick 17B Instruct in us-east-1, us-east-2 and us-|N
bedrock/us.meta.llama4-scout-17b-instruct-v1:0|us.meta.llama4-scout-17b-instruct|US Llama 4 Scout 17B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Llama 4 Scout 17B Instruct in us-east-1, us-east-2 and us-wes|N
bedrock/us.amazon.nova-premier-v1:0|us.amazon.nova-premier|US Nova Premier|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Premier in us-east-1, us-west-2 and us-east-2.|N
bedrock/us.anthropic.claude-opus-4-20250514-v1:0|us.anthropic.claude-opus-4-20250514|US Claude Opus 4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Opus 4 in us-east-1, us-east-2 and us-west-2.|N
bedrock/global.anthropic.claude-sonnet-4-20250514-v1:0|-|Global Claude Sonnet 4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4 globally across all supported AWS Regions.|N
bedrock/us.stability.stable-conservative-upscale-v1:0|-|US Stable Image Conservative Upscale|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Conservative Upscale in us-east-1, us-east-2, us|N
bedrock/us.stability.stable-creative-upscale-v1:0|us.stability.stable-creative-upscale|US Stable Image Creative Upscale|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Creative Upscale in us-east-1, us-east-2, us-wes|N
bedrock/us.stability.stable-fast-upscale-v1:0|us.stability.stable-fast-upscale|US Stable Image Fast Upscale|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Fast Upscale in us-east-1, us-east-2, us-west-2.|N
bedrock/us.stability.stable-image-control-sketch-v1:0|-|US Stable Image Control Sketch|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Control Sketch in us-east-1, us-east-2, us-west-|N
bedrock/us.stability.stable-image-control-structure-v1:0|-|US Stable Image Control Structure|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Control Structure in us-east-1, us-east-2, us-we|N
bedrock/us.stability.stable-image-erase-object-v1:0|us.stability.stable-image-erase-object|US Stable Image Erase Object|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Erase Object in us-east-1, us-east-2, us-west-2.|N
bedrock/us.stability.stable-image-inpaint-v1:0|us.stability.stable-image-inpaint|US Stable Image Inpaint|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Inpaint in us-east-1, us-east-2, us-west-2.|N
bedrock/us.stability.stable-image-remove-background-v1:0|-|US Stable Image Remove Background|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Remove Background in us-east-1, us-east-2, us-we|N
bedrock/us.stability.stable-image-search-recolor-v1:0|-|US Stable Image Search and Recolor|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Search and Recolor in us-east-1, us-east-2, us-w|N
bedrock/us.stability.stable-image-search-replace-v1:0|-|US Stable Image Search and Replace|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Search and Replace in us-east-1, us-east-2, us-w|N
bedrock/us.stability.stable-image-style-guide-v1:0|us.stability.stable-image-style-guide|US Stable Image Style Guide|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Style Guide in us-east-1, us-east-2, us-west-2.|N
bedrock/us.stability.stable-outpaint-v1:0|us.stability.stable-outpaint|US Stable Image Outpaint|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Outpaint in us-east-1, us-east-2, us-west-2.|N
bedrock/us.stability.stable-style-transfer-v1:0|us.stability.stable-style-transfer|US Stable Image Style Transfer|C|1.0,5.0|128000,8192|VT|-|Routes requests to Stable Image Style Transfer in us-east-1, us-east-2, us-west-|N
bedrock/us.anthropic.claude-3-7-sonnet-20250219-v1:0|us.anthropic.claude-3.7-sonnet-20250219|US Anthropic Claude 3.7 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.7 Sonnet in us-east-1, us-east-2 and us-we|N
bedrock/us.anthropic.claude-haiku-4-5-20251001-v1:0|us.anthropic.claude-haiku-4.5-20251001|US Anthropic Claude Haiku 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Haiku 4.5 in us-east-1, us-east-2, us-west-2.|N
bedrock/us.twelvelabs.pegasus-1-2-v1:0|us.twelvelabs.pegasus-1-2|US TwelveLabs Pegasus v1.2|C|1.0,5.0|128000,8192|VT|-|Routes requests to TwelveLabs Pegasus v1.2 in us-east-1, us-east-2 and us-west-2|N
bedrock/us.amazon.nova-pro-v1:0|us.amazon.nova-pro|US Nova Pro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Pro in us-east-1, us-west-2 and us-east-2.|N
bedrock/us.anthropic.claude-3-5-sonnet-20241022-v2:0|us.anthropic.claude-3.5-sonnet-20241022|US Anthropic Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Sonnet v2 in us-east-1, us-east-2 and us|N
bedrock/us.amazon.nova-micro-v1:0|us.amazon.nova-micro|US Nova Micro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Micro in us-east-1, us-west-2 and us-east-2.|N
bedrock/global.anthropic.claude-haiku-4-5-20251001-v1:0|-|Global Anthropic Claude Haiku 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude Haiku 4.5 globally across all supported AWS |N
bedrock/global.amazon.nova-2-lite-v1:0|global.amazon.nova-2-lite|GLOBAL Amazon Nova 2 Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Amazon Nova 2 Lite globally across all supported AWS Regions.|N
bedrock/us.amazon.nova-2-lite-v1:0|us.amazon.nova-2-lite|US Amazon Nova 2 Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Amazon Nova 2 Lite in us-east-1, us-east-2 and us-west-2.|N
bedrock/us.anthropic.claude-sonnet-4-20250514-v1:0|us.anthropic.claude-sonnet-4-20250514|US Claude Sonnet 4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4 in us-east-1, us-east-2 and us-west-2.|N
bedrock/us.amazon.nova-lite-v1:0|us.amazon.nova-lite|US Nova Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Lite in us-east-1, us-west-2 and us-east-2.|N
bedrock/global.twelvelabs.pegasus-1-2-v1:0|global.twelvelabs.pegasus-1-2|GLOBAL TwelveLabs Pegasus v1.2|C|1.0,5.0|128000,8192|VT|-|Routes requests to Pegasus v1.2 globally across all supported AWS Regions.|N
bedrock/us.anthropic.claude-opus-4-5-20251101-v1:0|us.anthropic.claude-opus-4.5-20251101|US Anthropic Claude Opus 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Opus 4.5 in us-east-1, us-east-2, us-west-2.|N
bedrock/global.anthropic.claude-opus-4-5-20251101-v1:0|-|GLOBAL Anthropic Claude Opus 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude Opus 4.5 globally across all supported AWS R|N
bedrock/us.anthropic.claude-sonnet-4-5-20250929-v1:0|us.anthropic.claude-sonnet-4.5-20250929|US Anthropic Claude Sonnet 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude Sonnet 4.5 in us-east-1, us-east-2 and us-we|N
bedrock/us.anthropic.claude-opus-4-1-20250805-v1:0|us.anthropic.claude-opus-4.1-20250805|US Claude Opus 4.1|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Opus 4.1 in us-east-2, us-east-1 and us-west-2.|N
bedrock/global.anthropic.claude-sonnet-4-5-20250929-v1:0|-|Global Claude Sonnet 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4.5 globally across all supported AWS Regions.|N
bedrock/eu.anthropic.claude-3-sonnet-20240229-v1:0|eu.anthropic.claude-3-sonnet-20240229|EU Anthropic Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Sonnet in eu-central-1, eu-west-1 and eu-w|N
bedrock/eu.anthropic.claude-3-haiku-20240307-v1:0|eu.anthropic.claude-3-haiku-20240307|EU Anthropic Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Haiku in eu-central-1, eu-west-1 and eu-we|N
bedrock/eu.anthropic.claude-3-5-sonnet-20240620-v1:0|eu.anthropic.claude-3.5-sonnet-20240620|EU Anthropic Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Sonnet in eu-central-1, eu-west-1 and eu|N
bedrock/eu.meta.llama3-2-3b-instruct-v1:0|eu.meta.llama3-2-3b-instruct|EU Meta Llama 3.2 3B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 3B Instruct in eu-central-1, eu-west-1 and eu-|N
bedrock/eu.meta.llama3-2-1b-instruct-v1:0|eu.meta.llama3-2-1b-instruct|EU Meta Llama 3.2 1B Instruct|C|1.0,5.0|128000,8192|VT|-|Routes requests to Meta Llama 3.2 1B Instruct in eu-central-1, eu-west-1 and eu-|N
bedrock/eu.amazon.nova-micro-v1:0|eu.amazon.nova-micro|EU Nova Micro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Micro in eu-west-3, eu-west-1, eu-central-1 and eu-north|N
bedrock/eu.amazon.nova-lite-v1:0|eu.amazon.nova-lite|EU Nova Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Lite in eu-west-3, eu-west-1, eu-central-1 and eu-north-|N
bedrock/eu.mistral.pixtral-large-2502-v1:0|eu.mistral.pixtral-large-2502|EU Mistral Pixtral Large 25.02|C|1.0,5.0|128000,8192|VT|-|Routes requests to Mistral Pixtral Large 25.02 in eu-central-1, eu-north-1, eu-w|N
bedrock/eu.amazon.nova-pro-v1:0|eu.amazon.nova-pro|EU Nova Pro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Pro in eu-west-3, eu-west-1, eu-central-1 and eu-north-1|N
bedrock/eu.anthropic.claude-sonnet-4-20250514-v1:0|eu.anthropic.claude-sonnet-4-20250514|EU Claude Sonnet 4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4 in eu-central-1, eu-north-1, eu-south-1, eu-s|N
bedrock/eu.twelvelabs.pegasus-1-2-v1:0|eu.twelvelabs.pegasus-1-2|EU TwelveLabs Pegasus v1.2|C|1.0,5.0|128000,8192|VT|-|Routes requests to TwelveLabs Pegasus v1.2 in eu-central-1, eu-north-1, eu-south|N
bedrock/eu.anthropic.claude-3-7-sonnet-20250219-v1:0|eu.anthropic.claude-3.7-sonnet-20250219|EU Anthropic Claude 3.7 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.7 Sonnet in eu-central-1, eu-north-1, eu-w|N
bedrock/eu.anthropic.claude-sonnet-4-5-20250929-v1:0|eu.anthropic.claude-sonnet-4.5-20250929|EU Anthropic Claude Sonnet 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude Sonnet 4.5 in eu-north-1, eu-west-3, eu-sout|N
bedrock/eu.anthropic.claude-haiku-4-5-20251001-v1:0|eu.anthropic.claude-haiku-4.5-20251001|EU Anthropic Claude Haiku 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude Haiku 4.5 in eu-north-1, eu-west-3, eu-south|N
bedrock/eu.amazon.nova-2-lite-v1:0|eu.amazon.nova-2-lite|EU Amazon Nova 2 Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Amazon Nova 2 Lite in eu-central-1, eu-north-1, eu-south-1, e|N
bedrock/eu.anthropic.claude-opus-4-5-20251101-v1:0|eu.anthropic.claude-opus-4.5-20251101|EU Anthropic Claude Opus 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Opus 4.5 in eu-north-1, eu-west-3, eu-south-1, eu-sout|N
bedrock/apac.anthropic.claude-3-sonnet-20240229-v1:0|apac.anthropic.claude-3-sonnet-20240229|APAC Anthropic Claude 3 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Sonnet in ap-northeast-1, ap-northeast-2, |N
bedrock/apac.anthropic.claude-3-5-sonnet-20240620-v1:0|-|APAC Anthropic Claude 3.5 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Sonnet in ap-northeast-1, ap-northeast-2|N
bedrock/apac.anthropic.claude-3-haiku-20240307-v1:0|apac.anthropic.claude-3-haiku-20240307|APAC Anthropic Claude 3 Haiku|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3 Haiku in ap-northeast-1, ap-northeast-2, a|N
bedrock/apac.anthropic.claude-3-5-sonnet-20241022-v2:0|-|APAC Anthropic Claude 3.5 Sonnet v2|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.5 Sonnet v2 in ap-northeast-1, ap-northeas|N
bedrock/apac.anthropic.claude-3-7-sonnet-20250219-v1:0|-|APAC Anthropic Claude 3.7 Sonnet|C|1.0,5.0|128000,8192|VT|-|Routes requests to Anthropic Claude 3.7 Sonnet in ap-northeast-1, ap-northeast-2|N
bedrock/apac.amazon.nova-micro-v1:0|apac.amazon.nova-micro|APAC Nova Micro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Micro in ap-southeast-2, ap-northeast-1, ap-south-1, ap-|N
bedrock/apac.amazon.nova-lite-v1:0|apac.amazon.nova-lite|APAC Nova Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Lite in ap-southeast-2, ap-northeast-1, ap-south-1, ap-n|N
bedrock/apac.amazon.nova-pro-v1:0|apac.amazon.nova-pro|APAC Nova Pro|C|1.0,5.0|128000,8192|VT|-|Routes requests to Nova Pro in ap-southeast-2, ap-northeast-1, ap-south-1, ap-no|N
bedrock/jp.anthropic.claude-sonnet-4-5-20250929-v1:0|jp.anthropic.claude-sonnet-4.5-20250929|JP Anthropic Claude Sonnet 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4.5 in ap-northeast-3, ap-northeast-1.|N
bedrock/apac.anthropic.claude-sonnet-4-20250514-v1:0|apac.anthropic.claude-sonnet-4-20250514|APAC Claude Sonnet 4|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Sonnet 4 in ap-northeast-1, ap-northeast-2, ap-northea|N
bedrock/jp.anthropic.claude-haiku-4-5-20251001-v1:0|jp.anthropic.claude-haiku-4.5-20251001|JP Anthropic Claude Haiku 4.5|C|1.0,5.0|128000,8192|VT|-|Routes requests to Claude Haiku 4.5 in ap-northeast-3, ap-northeast-1.|N
bedrock/jp.amazon.nova-2-lite-v1:0|jp.amazon.nova-2-lite|JP Amazon Nova 2 Lite|C|1.0,5.0|128000,8192|VT|-|Routes requests to Amazon Nova 2 Lite in ap-northeast-1 and ap-northeast-3.|N
# =============================================================================
# BFL - Direct API (13 models)
# =============================================================================
bfl//v1/flux-2-flex|/v1/flux-2-flex|FLUX.2 [max]|C|1.0,5.0|128000,8192|-|-|FLUX.2 [max] model|N
bfl//v1/flux-kontext-max|/v1/flux-kontext-max|FLUX.1 Kontext [max]|C|1.0,5.0|128000,8192|-|-|FLUX.1 Kontext [max] model|N
bfl//v1/flux-kontext-pro|/v1/flux-kontext-pro|FLUX.1 Kontext [pro]|C|1.0,5.0|128000,8192|-|-|FLUX.1 Kontext [pro] model|N
bfl//v1/flux-pro-1.1-ultra|/v1/flux-pro-1.1-ultra|FLUX 1.1 [pro] Ultra|C|1.0,5.0|128000,8192|-|-|FLUX 1.1 [pro] Ultra model|N
bfl//v1/flux-pro-1.1|/v1/flux-pro-1.1|FLUX 1.1 [pro]|C|1.0,5.0|128000,8192|-|-|FLUX 1.1 [pro] model|N
bfl//v1/flux-pro|/v1/flux-pro|FLUX.1 [pro]|C|1.0,5.0|128000,8192|-|-|FLUX.1 [pro] model|N
bfl//v1/flux-dev|/v1/flux-dev|FLUX.1 [dev]|C|1.0,5.0|128000,8192|-|-|FLUX.1 [dev] model|N
bfl//v1/flux-pro-1.0-fill|/v1/flux-pro-1.0-fill|FLUX.1 Fill [pro]|C|1.0,5.0|128000,8192|-|-|FLUX.1 Fill [pro] model|N
bfl//v1/flux-pro-1.1-ultra-finetuned|/v1/flux-pro-1.1-ultra-finetuned|FLUX 1.1 [pro] ultra Finetune|C|1.0,5.0|128000,8192|-|-|FLUX 1.1 [pro] ultra Finetune model|N
bfl//v1/flux-pro-1.0-finetuned|/v1/flux-pro-1.0-finetuned|FLUX.1 [pro] Finetune|C|1.0,5.0|128000,8192|-|-|FLUX.1 [pro] Finetune model|N
bfl//v1/flux-pro-1.0-depth-finetuned|/v1/flux-pro-1.0-depth-finetuned|FLUX.1 [pro] depth Finetune|C|1.0,5.0|128000,8192|-|-|FLUX.1 [pro] depth Finetune model|N
bfl//v1/flux-pro-1.0-canny-finetuned|/v1/flux-pro-1.0-canny-finetuned|FLUX.1 [pro] canny Finetune|C|1.0,5.0|128000,8192|-|-|FLUX.1 [pro] canny Finetune model|N
bfl//v1/flux-pro-1.0-fill-finetuned|/v1/flux-pro-1.0-fill-finetuned|FLUX.1 [pro] fill Finetune|C|1.0,5.0|128000,8192|-|-|FLUX.1 [pro] fill Finetune model|N
# =============================================================================
# CEREBRAS - Direct API (7 models)
# =============================================================================
cerebras/ZAI GLM 4.7*|zai glm 4.7*|ZAI GLM 4.7*|C|1000.0,2.25|128000,8192|T|-|ZAI GLM 4.7* model|N
cerebras/ZAI GLM 4.6**|zai glm 4.6**|ZAI GLM 4.6**|C|1000.0,2.25|128000,8192|T|-|ZAI GLM 4.6** model|N
cerebras/GPT OSS 120B|gpt oss 120b|GPT OSS 120B|C|3000.0,0.35|128000,8192|T|-|GPT OSS 120B model|N
cerebras/Llama 3.1 8B|llama 3.1 8b|Llama 3.1 8B|C|2200.0,0.1|128000,8192|T|56.1,,22.9,25.9,,,,,,|Llama 3.1 8B model|N
cerebras/Llama 3.3 70B|llama 3.3 70b|Llama 3.3 70B|C|2100.0,0.85|128000,8192|T|86.3,,41.6,47.4,,,,,,|Llama 3.3 70B model|N
cerebras/Qwen 3 32B|qwen 3 32b|Qwen 3 32B|C|2600.0,0.4|128000,8192|T|-|Qwen 3 32B model|N
cerebras/Qwen 3 235B Instruct*|qwen 3 235b instruct*|Qwen 3 235B Instruct*|C|1400.0,0.6|128000,8192|T|,,68.9,70.7,,,,,,|Qwen 3 235B Instruct* model|N
# =============================================================================
# CEREBRIUM - Direct API (4 models)
# =============================================================================
cerebrium/llama-3.1-70b|llama-3.1-70b|llama-3.1-70b|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|llama-3.1-70b model|N
cerebrium/llama-3.1-8b|llama-3.1-8b|llama-3.1-8b|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b model|N
cerebrium/mistral-7b|mistral-7b|mistral-7b|C|1.0,5.0|32768,4096|-|-|mistral-7b model|N
cerebrium/mixtral-8x7b|mixtral-8x7b|mixtral-8x7b|C|1.0,5.0|32768,4096|-|-|mixtral-8x7b model|N
# =============================================================================
# CLARIFAI - Direct API (7 models)
# =============================================================================
clarifai/general-image-recognition|general-image-recognition|general-image-recognition|C|1.0,5.0|1,8192|-|-|general-image-recognition model|N
clarifai/face-detection|face-detection|face-detection|C|1.0,5.0|128000,8192|-|-|face-detection model|N
clarifai/food-recognition|food-recognition|food-recognition|C|1.0,5.0|128000,8192|-|-|food-recognition model|N
clarifai/gpt-4-vision|gpt-4-vision|gpt-4-vision|C|1.0,5.0|128000,4096|V|-|gpt-4-vision model|N
clarifai/claude-3-opus|claude-3-opus|claude-3-opus|C|1.0,5.0|200000,4096|-|84.6,,37.5,47.2,,,,,,|claude-3-opus model|N
clarifai/stable-diffusion-xl|stable-diffusion-xl|stable-diffusion-xl|C|1.0,5.0|128000,8192|-|-|stable-diffusion-xl model|N
clarifai/dall-e-3|dall-e-3|dall-e-3|C|1.0,5.0|128000,8192|-|-|dall-e-3 model|N
# =============================================================================
# CLOUDFLARE - Direct API (69 models)
# =============================================================================
cloudflare/deepgram/aura-1|deepgram/aura-1|@cf/deepgram/aura-1|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/deepgram/aura-2-en|deepgram/aura-2-en|@cf/deepgram/aura-2-en|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/deepgram/aura-2-es|deepgram/aura-2-es|@cf/deepgram/aura-2-es|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/facebook/bart-large-cnn|facebook/bart-large-cnn|@cf/facebook/bart-large-cnn|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/deepseek-ai/deepseek-math-7b-instruct|deepseek-ai/deepseek-math-7b-instruct|@cf/deepseek-ai/deepseek-math-7b-instruct|C|0.11,0.19|128000,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/deepseek-ai/deepseek-r1-distill-qwen-32b|-|@cf/deepseek-ai/deepseek-r1-distill-qwen-32b|C|0.497,4.881|128000,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/facebook/detr-resnet-50|facebook/detr-resnet-50|@cf/facebook/detr-resnet-50|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/thebloke/discolm-german-7b-v1-awq|thebloke/discolm-german-7b-v1-awq|@cf/thebloke/discolm-german-7b-v1-awq|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/huggingface/distilbert-sst-2-int8|huggingface/distilbert-sst-2-int8|@cf/huggingface/distilbert-sst-2-int8|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/lykon/dreamshaper-8-lcm|lykon/dreamshaper-8-lcm|@cf/lykon/dreamshaper-8-lcm|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/tiiuae/falcon-7b-instruct|tiiuae/falcon-7b-instruct|@cf/tiiuae/falcon-7b-instruct|C|1.0,5.0|128000,8192|-|23.9,,,,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/black-forest-labs/flux-1-schnell|black-forest-labs/flux-1-schnell|@cf/black-forest-labs/flux-1-schnell|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/black-forest-labs/flux-2-dev|black-forest-labs/flux-2-dev|@cf/black-forest-labs/flux-2-dev|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/deepgram/flux|deepgram/flux|@cf/deepgram/flux|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/google/gemma-2b-it-lora|google/gemma-2b-it-lora|@cf/google/gemma-2b-it-lora|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/google/gemma-3-12b-it|google/gemma-3-12b-it|@cf/google/gemma-3-12b-it|C|0.152,0.287|8192,4096|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/google/gemma-7b-it-lora|google/gemma-7b-it-lora|@cf/google/gemma-7b-it-lora|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openai/gpt-oss-120b|openai/gpt-oss-120b|@cf/openai/gpt-oss-120b|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openai/gpt-oss-20b|openai/gpt-oss-20b|@cf/openai/gpt-oss-20b|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/aisingapore/gemma-sea-lion-v4-27b-it|aisingapore/gemma-sea-lion-v4-27b-it|@cf/aisingapore/gemma-sea-lion-v4-27b-it|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/ibm-granite/granite-4.0-h-micro|ibm-granite/granite-4.0-h-micro|@cf/ibm-granite/granite-4.0-h-micro|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/ai4bharat/indictrans2-en-indic-1B|ai4bharat/indictrans2-en-indic-1b|@cf/ai4bharat/indictrans2-en-indic-1B|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/meta/llama-2-7b-chat-fp16|meta/llama-2-7b-chat-fp16|@cf/meta/llama-2-7b-chat-fp16|C|1.0,5.0|128000,8192|-|45.3,,,,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/meta-llama/llama-2-7b-chat-hf-lora|meta-llama/llama-2-7b-chat-hf-lora|@cf/meta-llama/llama-2-7b-chat-hf-lora|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/meta/llama-2-7b-chat-int8|meta/llama-2-7b-chat-int8|@cf/meta/llama-2-7b-chat-int8|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/meta/llama-3-8b-instruct|meta/llama-3-8b-instruct|@cf/meta/llama-3-8b-instruct|C|0.152,0.287|128000,8192|-|,,,2.1,,24.0,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3-8b-instruct-awq|meta/llama-3-8b-instruct-awq|@cf/meta/llama-3-8b-instruct-awq|C|0.152,0.287|128000,8192|-|,,,2.1,,24.0,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.1-70b-instruct|meta/llama-3.1-70b-instruct|@cf/meta/llama-3.1-70b-instruct|C|0.293,2.253|131072,4096|-|80.1,,36.7,44.2,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.1-8b-instruct-awq|meta/llama-3.1-8b-instruct-awq|@cf/meta/llama-3.1-8b-instruct-awq|C|0.152,0.287|131072,4096|-|56.1,,22.9,25.9,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.1-8b-instruct-fast|meta/llama-3.1-8b-instruct-fast|@cf/meta/llama-3.1-8b-instruct-fast|C|0.152,0.287|131072,4096|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.1-8b-instruct-fp8|meta/llama-3.1-8b-instruct-fp8|@cf/meta/llama-3.1-8b-instruct-fp8|C|0.152,0.287|131072,4096|-|56.1,,22.9,25.9,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.1-8b-instruct|meta/llama-3.1-8b-instruct|@cf/meta/llama-3.1-8b-instruct|C|0.152,0.287|131072,4096|-|56.1,,22.9,25.9,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.2-11b-vision-instruct|meta/llama-3.2-11b-vision-instruct|@cf/meta/llama-3.2-11b-vision-instruct|C|0.152,0.287|131072,4096|V|56.5,,,,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.2-1b-instruct|meta/llama-3.2-1b-instruct|@cf/meta/llama-3.2-1b-instruct|C|0.027,0.201|128000,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.2-3b-instruct|meta/llama-3.2-3b-instruct|@cf/meta/llama-3.2-3b-instruct|C|0.055,0.201|128000,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-3.3-70b-instruct-fp8-fast|meta/llama-3.3-70b-instruct-fp8-fast|@cf/meta/llama-3.3-70b-instruct-fp8-fast|C|0.293,2.253|131072,4096|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/meta/llama-4-scout-17b-16e-instruct|meta/llama-4-scout-17b-16e-instruct|@cf/meta/llama-4-scout-17b-16e-instruct|C|1.0,5.0|128000,8192|-|,,62.3,51.8,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/meta/llama-guard-3-8b|meta/llama-guard-3-8b|@cf/meta/llama-guard-3-8b|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/llava-hf/llava-1.5-7b-hf|llava-hf/llava-1.5-7b-hf|@cf/llava-hf/llava-1.5-7b-hf|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/leonardo/lucid-origin|leonardo/lucid-origin|@cf/leonardo/lucid-origin|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/meta/m2m100-1.2b|meta/m2m100-1.2b|@cf/meta/m2m100-1.2b|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/myshell-ai/melotts|myshell-ai/melotts|@cf/myshell-ai/melotts|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/mistral/mistral-7b-instruct-v0.1|mistral/mistral-7b-instruct|@cf/mistral/mistral-7b-instruct-v0.1|C|0.11,0.19|128000,8192|V|56.6,,,,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/mistral/mistral-7b-instruct-v0.2-lora|mistral/mistral-7b-instruct-v0.2-lora|@cf/mistral/mistral-7b-instruct-v0.2-lora|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/mistralai/mistral-small-3.1-24b-instruct|-|@cf/mistralai/mistral-small-3.1-24b-instruct|C|0.293,2.253|32768,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/deepgram/nova-3|deepgram/nova-3|@cf/deepgram/nova-3|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openchat/openchat-3.5-0106|openchat/openchat-3.5-0106|@cf/openchat/openchat-3.5-0106|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/microsoft/phi-2|microsoft/phi-2|@cf/microsoft/phi-2|C|1.0,5.0|128000,8192|-|56.3,,,,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/leonardo/phoenix-1.0|leonardo/phoenix-1.0|@cf/leonardo/phoenix-1.0|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/qwen/qwen1.5-0.5b-chat|qwen/qwen1.5-0.5b-chat|@cf/qwen/qwen1.5-0.5b-chat|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/qwen/qwen1.5-1.8b-chat|qwen/qwen1.5-1.8b-chat|@cf/qwen/qwen1.5-1.8b-chat|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/qwen/qwen1.5-14b-chat-awq|qwen/qwen1.5-14b-chat-awq|@cf/qwen/qwen1.5-14b-chat-awq|C|1.0,5.0|128000,8192|-|68.6,,,,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/qwen/qwen1.5-7b-chat-awq|qwen/qwen1.5-7b-chat-awq|@cf/qwen/qwen1.5-7b-chat-awq|C|1.0,5.0|128000,8192|-|62.6,,,,,,,,,|Runs on Cloudflare Workers AI global network|N
cloudflare/qwen/qwen2.5-coder-32b-instruct|qwen/qwen2.5-coder-32b-instruct|@cf/qwen/qwen2.5-coder-32b-instruct|C|0.497,4.881|32768,8192|-|79.1,,,,,,,,,|Runs on Cloudflare Workers AI global network|Y
cloudflare/qwen/qwen3-30b-a3b-fp8|qwen/qwen3-30b-a3b-fp8|@cf/qwen/qwen3-30b-a3b-fp8|C|0.293,2.253|128000,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/qwen/qwq-32b|qwen/qwq-32b|@cf/qwen/qwq-32b|C|0.497,4.881|32768,8192|-|-|Runs on Cloudflare Workers AI global network|Y
cloudflare/microsoft/resnet-50|microsoft/resnet-50|@cf/microsoft/resnet-50|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/pipecat-ai/smart-turn-v2|pipecat-ai/smart-turn|@cf/pipecat-ai/smart-turn-v2|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/defog/sqlcoder-7b-2|defog/sqlcoder-7b-2|@cf/defog/sqlcoder-7b-2|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/runwayml/stable-diffusion-v1-5-img2img|runwayml/stable-diffusion-v1-5-img2img|@cf/runwayml/stable-diffusion-v1-5-img2img|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/runwayml/stable-diffusion-v1-5-inpainting|-|@cf/runwayml/stable-diffusion-v1-5-inpainting|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/stabilityai/stable-diffusion-xl-base-1.0|-|@cf/stabilityai/stable-diffusion-xl-base-1.0|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/bytedance/stable-diffusion-xl-lightning|bytedance/stable-diffusion-xl-lightning|@cf/bytedance/stable-diffusion-xl-lightning|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/tinyllama/tinyllama-1.1b-chat-v1.0|tinyllama/tinyllama-1.1b-chat|@cf/tinyllama/tinyllama-1.1b-chat-v1.0|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/unum/uform-gen2-qwen-500m|unum/uform-gen2-qwen-500m|@cf/unum/uform-gen2-qwen-500m|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openai/whisper-large-v3-turbo|openai/whisper-large-v3-turbo|@cf/openai/whisper-large-v3-turbo|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/fblgit/una-cybertron-7b-v2-bf16|fblgit/una-cybertron-7b-v2-bf16|@cf/fblgit/una-cybertron-7b-v2-bf16|C|1.0,5.0|128000,8192|V|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openai/whisper-tiny-en|openai/whisper-tiny-en|@cf/openai/whisper-tiny-en|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
cloudflare/openai/whisper|openai/whisper|@cf/openai/whisper|C|1.0,5.0|128000,8192|-|-|Runs on Cloudflare Workers AI global network|N
# =============================================================================
# CLOUDFLARE AI - Direct API (90 models)
# =============================================================================
cloudflare/gpt-oss-120b|gpt-oss-120b|gpt-oss-120b|C|1.0,5.0|128000,8192|-|-|gpt-oss-120b model|N
cloudflare/gpt-oss-20b|gpt-oss-20b|gpt-oss-20b|C|1.0,5.0|128000,8192|-|-|gpt-oss-20b model|N
cloudflare/llama-4-scout-17b-16e-instruct|llama-4-scout-17b-16e-instruct|llama-4-scout-17b-16e-instruct|C|1.0,5.0|128000,8192|-|,,62.3,51.8,,,,,,|llama-4-scout-17b-16e-instruct model|N
cloudflare/llama-3.3-70b-instruct-fp8-fast|llama-3.3-70b-instruct-fp8-fast|llama-3.3-70b-instruct-fp8-fast|C|1.0,5.0|128000,8192|-|-|llama-3.3-70b-instruct-fp8-fast model|N
cloudflare/llama-3.1-8b-instruct-fast|llama-3.1-8b-instruct-fast|llama-3.1-8b-instruct-fast|C|1.0,5.0|128000,8192|-|-|llama-3.1-8b-instruct-fast model|N
cloudflare/flux-2-dev|flux-2-dev|flux-2-dev|C|1.0,5.0|128000,8192|-|-|flux-2-dev model|N
cloudflare/aura-2-es|aura-2-es|aura-2-es|C|1.0,5.0|128000,8192|-|-|aura-2-es model|N
cloudflare/aura-2-en|aura-2-en|aura-2-en|C|1.0,5.0|128000,8192|-|-|aura-2-en model|N
cloudflare/granite-4.0-h-micro|granite-4.0-h-micro|granite-4.0-h-micro|C|1.0,5.0|128000,8192|-|-|granite-4.0-h-micro model|N
cloudflare/flux|flux|flux|C|1.0,5.0|128000,8192|-|-|flux model|N
cloudflare/plamo-embedding-1b|plamo-embedding-1b|plamo-embedding-1b|C|1.0,5.0|128000,8192|-|-|plamo-embedding-1b model|N
cloudflare/gemma-sea-lion-v4-27b-it|gemma-sea-lion-v4-27b-it|gemma-sea-lion-v4-27b-it|C|1.0,5.0|128000,8192|V|-|gemma-sea-lion-v4-27b-it model|N
cloudflare/indictrans2-en-indic-1B|indictrans2-en-indic-1b|indictrans2-en-indic-1B|C|1.0,5.0|128000,8192|-|-|indictrans2-en-indic-1B model|N
cloudflare/embeddinggemma-300m|embeddinggemma-300m|embeddinggemma-300m|C|1.0,5.0|128000,8192|-|-|embeddinggemma-300m model|N
cloudflare/aura-1|aura-1|aura-1|C|1.0,5.0|128000,8192|-|-|aura-1 model|N
cloudflare/lucid-origin|lucid-origin|lucid-origin|C|1.0,5.0|128000,8192|-|-|lucid-origin model|N
cloudflare/phoenix-1.0|phoenix-1.0|phoenix-1.0|C|1.0,5.0|128000,8192|-|-|phoenix-1.0 model|N
cloudflare/smart-turn-v2|smart-turn|smart-turn-v2|C|1.0,5.0|128000,8192|V|-|smart-turn-v2 model|N
cloudflare/qwen3-embedding-0.6b|qwen3-embedding-0.6b|qwen3-embedding-0.6b|C|1.0,5.0|128000,8192|-|-|qwen3-embedding-0.6b model|N
cloudflare/nova-3|nova-3|nova-3|C|1.0,5.0|128000,8192|-|-|nova-3 model|N
cloudflare/qwen3-30b-a3b-fp8|qwen3-30b-a3b-fp8|qwen3-30b-a3b-fp8|C|1.0,5.0|128000,8192|-|-|qwen3-30b-a3b-fp8 model|N
cloudflare/gemma-3-12b-it|gemma-3-12b-it|gemma-3-12b-it|C|1.0,5.0|128000,8192|-|-|gemma-3-12b-it model|N
cloudflare/mistral-small-3.1-24b-instruct|mistral-small-3.1-24b-instruct|mistral-small-3.1-24b-instruct|C|1.0,5.0|128000,8192|-|-|mistral-small-3.1-24b-instruct model|N
cloudflare/qwq-32b|qwq-32b|qwq-32b|C|1.0,5.0|128000,8192|-|-|qwq-32b model|N
cloudflare/qwen2.5-coder-32b-instruct|qwen2.5-coder-32b-instruct|qwen2.5-coder-32b-instruct|C|1.0,5.0|128000,8192|-|79.1,,,,,,,,,|qwen2.5-coder-32b-instruct model|N
cloudflare/bge-reranker-base|bge-reranker-base|bge-reranker-base|C|1.0,5.0|128000,8192|-|-|bge-reranker-base model|N
cloudflare/llama-guard-3-8b|llama-guard-3-8b|llama-guard-3-8b|C|1.0,5.0|128000,8192|-|-|llama-guard-3-8b model|N
cloudflare/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|C|1.0,5.0|128000,8192|-|-|deepseek-r1-distill-qwen-32b model|N
cloudflare/llama-3.2-1b-instruct|llama-3.2-1b-instruct|llama-3.2-1b-instruct|C|1.0,5.0|128000,8192|-|-|llama-3.2-1b-instruct model|N
cloudflare/llama-3.2-3b-instruct|llama-3.2-3b-instruct|llama-3.2-3b-instruct|C|1.0,5.0|128000,8192|-|-|llama-3.2-3b-instruct model|N
cloudflare/llama-3.2-11b-vision-instruct|llama-3.2-11b-vision-instruct|llama-3.2-11b-vision-instruct|C|1.0,5.0|128000,8192|V|56.5,,,,,,,,,|llama-3.2-11b-vision-instruct model|N
cloudflare/flux-1-schnell|flux-1-schnell|flux-1-schnell|C|1.0,5.0|128000,8192|-|-|flux-1-schnell model|N
cloudflare/llama-3.1-8b-instruct-awq|llama-3.1-8b-instruct-awq|llama-3.1-8b-instruct-awq|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b-instruct-awq model|N
cloudflare/llama-3.1-8b-instruct-fp8|llama-3.1-8b-instruct-fp8|llama-3.1-8b-instruct-fp8|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b-instruct-fp8 model|N
cloudflare/melotts|melotts|melotts|C|1.0,5.0|128000,8192|-|-|melotts model|N
cloudflare/llama-3.1-8b-instruct|llama-3.1-8b-instruct|llama-3.1-8b-instruct|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b-instruct model|N
cloudflare/bge-m3|bge-m3|bge-m3|C|1.0,5.0|128000,8192|-|-|bge-m3 model|N
cloudflare/meta-llama-3-8b-instruct|meta-llama-3-8b-instruct|meta-llama-3-8b-instruct|C|1.0,5.0|128000,8192|-|66.5,,6.1,26.1,,,,,,|meta-llama-3-8b-instruct model|N
cloudflare/whisper-large-v3-turbo|whisper-large-v3-turbo|whisper-large-v3-turbo|C|1.0,5.0|128000,8192|V|-|whisper-large-v3-turbo model|N
cloudflare/llama-3-8b-instruct-awq|llama-3-8b-instruct-awq|llama-3-8b-instruct-awq|C|1.0,5.0|128000,8192|-|,,,2.1,,24.0,,,,|llama-3-8b-instruct-awq model|N
cloudflare/llava-1.5-7b-hf|llava-1.5-7b-hf|llava-1.5-7b-hf|C|1.0,5.0|128000,8192|-|-|llava-1.5-7b-hf model|N
cloudflare/una-cybertron-7b-v2-bf16|una-cybertron-7b-v2-bf16|una-cybertron-7b-v2-bf16|C|1.0,5.0|128000,8192|V|-|una-cybertron-7b-v2-bf16 model|N
cloudflare/whisper-tiny-en|whisper-tiny-en|whisper-tiny-en|C|1.0,5.0|128000,8192|-|-|whisper-tiny-en model|N
cloudflare/llama-3-8b-instruct|llama-3-8b-instruct|llama-3-8b-instruct|C|1.0,5.0|128000,8192|-|,,,2.1,,24.0,,,,|llama-3-8b-instruct model|N
cloudflare/mistral-7b-instruct-v0.2|mistral-7b-instruct|mistral-7b-instruct-v0.2|C|1.0,5.0|128000,8192|V|62.5,,,,,,,,,|mistral-7b-instruct-v0.2 model|N
cloudflare/gemma-7b-it-lora|gemma-7b-it-lora|gemma-7b-it-lora|C|1.0,5.0|128000,8192|-|-|gemma-7b-it-lora model|N
cloudflare/gemma-2b-it-lora|gemma-2b-it-lora|gemma-2b-it-lora|C|1.0,5.0|128000,8192|-|-|gemma-2b-it-lora model|N
cloudflare/llama-2-7b-chat-hf-lora|llama-2-7b-chat-hf-lora|llama-2-7b-chat-hf-lora|C|1.0,5.0|128000,8192|-|-|llama-2-7b-chat-hf-lora model|N
cloudflare/gemma-7b-it|gemma-7b-it|gemma-7b-it|C|1.0,5.0|128000,8192|-|-|gemma-7b-it model|N
cloudflare/starling-lm-7b-beta|starling-lm-7b-beta|starling-lm-7b-beta|C|1.0,5.0|128000,8192|-|-|starling-lm-7b-beta model|N
cloudflare/hermes-2-pro-mistral-7b|hermes-2-pro-mistral-7b|hermes-2-pro-mistral-7b|C|1.0,5.0|128000,8192|-|-|hermes-2-pro-mistral-7b model|N
cloudflare/mistral-7b-instruct-v0.2-lora|mistral-7b-instruct-v0.2-lora|mistral-7b-instruct-v0.2-lora|C|1.0,5.0|128000,8192|V|-|mistral-7b-instruct-v0.2-lora model|N
cloudflare/qwen1.5-1.8b-chat|qwen1.5-1.8b-chat|qwen1.5-1.8b-chat|C|1.0,5.0|128000,8192|-|-|qwen1.5-1.8b-chat model|N
cloudflare/uform-gen2-qwen-500m|uform-gen2-qwen-500m|uform-gen2-qwen-500m|C|1.0,5.0|128000,8192|-|-|uform-gen2-qwen-500m model|N
cloudflare/bart-large-cnn|bart-large-cnn|bart-large-cnn|C|1.0,5.0|128000,8192|-|-|bart-large-cnn model|N
cloudflare/phi-2|phi-2|phi-2|C|1.0,5.0|128000,8192|-|56.3,,,,,,,,,|phi-2 model|N
cloudflare/tinyllama-1.1b-chat-v1.0|tinyllama-1.1b-chat|tinyllama-1.1b-chat-v1.0|C|1.0,5.0|128000,8192|V|-|tinyllama-1.1b-chat-v1.0 model|N
cloudflare/qwen1.5-14b-chat-awq|qwen1.5-14b-chat-awq|qwen1.5-14b-chat-awq|C|1.0,5.0|128000,8192|-|68.6,,,,,,,,,|qwen1.5-14b-chat-awq model|N
cloudflare/qwen1.5-7b-chat-awq|qwen1.5-7b-chat-awq|qwen1.5-7b-chat-awq|C|1.0,5.0|128000,8192|-|62.6,,,,,,,,,|qwen1.5-7b-chat-awq model|N
cloudflare/qwen1.5-0.5b-chat|qwen1.5-0.5b-chat|qwen1.5-0.5b-chat|C|1.0,5.0|128000,8192|-|-|qwen1.5-0.5b-chat model|N
cloudflare/discolm-german-7b-v1-awq|discolm-german-7b-v1-awq|discolm-german-7b-v1-awq|C|1.0,5.0|128000,8192|V|-|discolm-german-7b-v1-awq model|N
cloudflare/falcon-7b-instruct|falcon-7b-instruct|falcon-7b-instruct|C|1.0,5.0|128000,8192|-|23.9,,,,,,,,,|falcon-7b-instruct model|N
cloudflare/openchat-3.5-0106|openchat-3.5-0106|openchat-3.5-0106|C|1.0,5.0|128000,8192|-|-|openchat-3.5-0106 model|N
cloudflare/sqlcoder-7b-2|sqlcoder-7b-2|sqlcoder-7b-2|C|1.0,5.0|128000,8192|-|-|sqlcoder-7b-2 model|N
cloudflare/deepseek-math-7b-instruct|deepseek-math-7b-instruct|deepseek-math-7b-instruct|C|1.0,5.0|128000,8192|-|-|deepseek-math-7b-instruct model|N
cloudflare/detr-resnet-50|detr-resnet-50|detr-resnet-50|C|1.0,5.0|128000,8192|-|-|detr-resnet-50 model|N
cloudflare/stable-diffusion-xl-lightning|stable-diffusion-xl-lightning|stable-diffusion-xl-lightning|C|1.0,5.0|128000,8192|-|-|stable-diffusion-xl-lightning model|N
cloudflare/dreamshaper-8-lcm|dreamshaper-8-lcm|dreamshaper-8-lcm|C|1.0,5.0|128000,8192|-|-|dreamshaper-8-lcm model|N
cloudflare/stable-diffusion-v1-5-img2img|stable-diffusion-v1-5-img2img|stable-diffusion-v1-5-img2img|C|1.0,5.0|128000,8192|V|-|stable-diffusion-v1-5-img2img model|N
cloudflare/stable-diffusion-v1-5-inpainting|stable-diffusion-v1-5-inpainting|stable-diffusion-v1-5-inpainting|C|1.0,5.0|128000,8192|V|-|stable-diffusion-v1-5-inpainting model|N
cloudflare/deepseek-coder-6.7b-instruct-awq|deepseek-coder-6.7b-instruct-awq|deepseek-coder-6.7b-instruct-awq|C|1.0,5.0|128000,8192|-|-|deepseek-coder-6.7b-instruct-awq model|N
cloudflare/deepseek-coder-6.7b-base-awq|deepseek-coder-6.7b-base-awq|deepseek-coder-6.7b-base-awq|C|1.0,5.0|128000,8192|-|36.4,,,,,,,,,|deepseek-coder-6.7b-base-awq model|N
cloudflare/llamaguard-7b-awq|llamaguard-7b-awq|llamaguard-7b-awq|C|1.0,5.0|128000,8192|-|-|llamaguard-7b-awq model|N
cloudflare/neural-chat-7b-v3-1-awq|neural-chat-7b-v3-1-awq|neural-chat-7b-v3-1-awq|C|1.0,5.0|128000,8192|V|-|neural-chat-7b-v3-1-awq model|N
cloudflare/openhermes-2.5-mistral-7b-awq|openhermes-2.5-mistral-7b-awq|openhermes-2.5-mistral-7b-awq|C|1.0,5.0|128000,8192|-|-|openhermes-2.5-mistral-7b-awq model|N
cloudflare/llama-2-13b-chat-awq|llama-2-13b-chat-awq|llama-2-13b-chat-awq|C|1.0,5.0|128000,8192|-|47.3,,,,,,,,,|llama-2-13b-chat-awq model|N
cloudflare/mistral-7b-instruct-v0.1-awq|mistral-7b-instruct-v0.1-awq|mistral-7b-instruct-v0.1-awq|C|1.0,5.0|128000,8192|V|56.6,,,,,,,,,|mistral-7b-instruct-v0.1-awq model|N
cloudflare/zephyr-7b-beta-awq|zephyr-7b-beta-awq|zephyr-7b-beta-awq|C|1.0,5.0|128000,8192|-|-|zephyr-7b-beta-awq model|N
cloudflare/stable-diffusion-xl-base-1.0|stable-diffusion-xl-base-1.0|stable-diffusion-xl-base-1.0|C|1.0,5.0|128000,8192|-|-|stable-diffusion-xl-base-1.0 model|N
cloudflare/bge-large-en-v1.5|bge-large-en|bge-large-en-v1.5|C|1.0,5.0|128000,8192|V|-|bge-large-en-v1.5 model|N
cloudflare/bge-small-en-v1.5|bge-small-en|bge-small-en-v1.5|C|1.0,5.0|128000,8192|V|-|bge-small-en-v1.5 model|N
cloudflare/llama-2-7b-chat-fp16|llama-2-7b-chat-fp16|llama-2-7b-chat-fp16|C|1.0,5.0|128000,8192|-|45.3,,,,,,,,,|llama-2-7b-chat-fp16 model|N
cloudflare/mistral-7b-instruct-v0.1|mistral-7b-instruct|mistral-7b-instruct-v0.1|C|1.0,5.0|128000,8192|V|56.6,,,,,,,,,|mistral-7b-instruct-v0.1 model|N
cloudflare/bge-base-en-v1.5|bge-base-en|bge-base-en-v1.5|C|1.0,5.0|128000,8192|V|-|bge-base-en-v1.5 model|N
cloudflare/distilbert-sst-2-int8|distilbert-sst-2-int8|distilbert-sst-2-int8|C|1.0,5.0|128000,8192|-|-|distilbert-sst-2-int8 model|N
cloudflare/llama-2-7b-chat-int8|llama-2-7b-chat-int8|llama-2-7b-chat-int8|C|1.0,5.0|128000,8192|-|-|llama-2-7b-chat-int8 model|N
cloudflare/m2m100-1.2b|m2m100-1.2b|m2m100-1.2b|C|1.0,5.0|128000,8192|-|-|m2m100-1.2b model|N
cloudflare/resnet-50|resnet-50|resnet-50|C|1.0,5.0|128000,8192|-|-|resnet-50 model|N
cloudflare/whisper|whisper|whisper|C|1.0,5.0|128000,8192|-|-|whisper model|N
cloudflare/llama-3.1-70b-instruct|llama-3.1-70b-instruct|llama-3.1-70b-instruct|C|1.0,5.0|128000,8192|-|80.1,,36.7,44.2,,,,,,|llama-3.1-70b-instruct model|N
# =============================================================================
# COHERE - Direct API (5 models)
# =============================================================================
cohere/Command|command|Command|C|1.0,2.0|128000,8192|T|-|Command model|Y
cohere/Command-light|command-light|Command-light|C|0.3,0.6|128000,8192|T|-|Command-light model|Y
cohere/command-r-03-2024|command-r-03-2024|command-r-03-2024|C|0.5,1.5|128000,8192|T|-|command-r-03-2024 model|Y
cohere/command-r-plus-04-2024|command-r-plus-04-2024|command-r-plus-04-2024|C|3.0,15.0|128000,8192|T|-|command-r-plus-04-2024 model|Y
cohere/command-r-plus-08-2024|command-r-plus-08-2024|command-r-plus-08-2024|C|2.5,10.0|128000,8192|T|-|command-r-plus-08-2024 model|Y
# =============================================================================
# CRUSOE - Direct API (4 models)
# =============================================================================
crusoe/deepseek-r1|deepseek-r1|deepseek-r1|C|1.0,5.0|131072,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-r1 model|N
crusoe/llama-3.3-70b|llama-3.3-70b|llama-3.3-70b|C|1.0,5.0|131072,8192|-|86.3,,41.6,47.4,,,,,,|llama-3.3-70b model|N
crusoe/llama-3.1-405b|llama-3.1-405b|llama-3.1-405b|C|1.0,5.0|131072,8192|-|84.4,,49.8,50.9,,,,,,|llama-3.1-405b model|N
crusoe/mistral-large|mistral-large|mistral-large|C|1.0,5.0|32768,4096|-|80.0,,24.5,49.0,,,,,,|mistral-large model|N
# =============================================================================
# D ID - Direct API (4 models)
# =============================================================================
did/talks|talks|Speaking Portrait (Talks)|C|1.0,5.0|128000,8192|-|-|Basic talking head video generation|N
did/premium_plus_avatar|premium_plus_avatar|Premium+ Avatar|C|1.0,5.0|128000,8192|-|-|High-quality custom avatars|N
did/express_avatar|express_avatar|Express Avatar|C|1.0,5.0|128000,8192|-|-|Quick avatar generation|N
did/agents|agents|Conversational Agents|C|1.0,5.0|128000,8192|-|-|AI agents with avatar personas|N
# =============================================================================
# DATABRICKS - Direct API (4 models)
# =============================================================================
databricks/databricks-dbrx-instruct|databricks-dbrx-instruct|databricks-dbrx-instruct|C|1.0,5.0|32768,4096|-|-|databricks-dbrx-instruct model|N
databricks/databricks-meta-llama-3-1-405b-instruct|databricks-meta-llama-3.1-405b-instruct|databricks-meta-llama-3-1-405b-instruct|C|1.0,5.0|131072,8192|-|-|databricks-meta-llama-3-1-405b-instruct model|N
databricks/databricks-meta-llama-3-1-70b-instruct|databricks-meta-llama-3.1-70b-instruct|databricks-meta-llama-3-1-70b-instruct|C|1.0,5.0|131072,8192|-|-|databricks-meta-llama-3-1-70b-instruct model|N
databricks/databricks-mixtral-8x7b-instruct|databricks-mixtral-8x7b-instruct|databricks-mixtral-8x7b-instruct|C|1.0,5.0|32768,4096|-|-|databricks-mixtral-8x7b-instruct model|N
# =============================================================================
# DEEPGRAM - Direct API (7 models)
# =============================================================================
deepgram/nova-3|nova-3|Nova 3|C|1.0,5.0|128000,8192|-|-|Latest, highest accuracy STT|N
deepgram/nova-2|nova-2|Nova 2|C|1.0,5.0|128000,8192|-|-|Previous generation STT|N
deepgram/enhanced|enhanced|Enhanced|C|1.0,5.0|128000,8192|-|-|High accuracy STT for complex audio|N
deepgram/base|base|Base|C|1.0,5.0|128000,8192|-|-|Cost-effective STT|N
deepgram/whisper|whisper|Whisper|C|1.0,5.0|128000,8192|-|-|OpenAI Whisper multilingual|N
deepgram/aura-2|aura-2|Aura 2|C|1.0,5.0|128000,8192|-|-|Latest TTS model|N
deepgram/aura-1|aura-1|Aura 1|C|1.0,5.0|128000,8192|-|-|Previous generation TTS|N
# =============================================================================
# DEEPINFRA - Direct API (43 models)
# =============================================================================
deepinfra/DeepSeek-OCR|deepseek-ocr|deepseek-ai/DeepSeek-OCR|C|0.03,0.1|8k,8192|-|-|deepseek-ai/DeepSeek-OCR model|Y
deepinfra/DeepSeek-V3|deepseek|deepseek-ai/DeepSeek-V3|C|0.32,0.89|160k,8192|V|87.1,,64.9,56.5,52.1,,,,,|deepseek-ai/DeepSeek-V3 model|Y
deepinfra/DeepSeek-R1-0528-Turbo|deepseek-r1-0528-turbo|deepseek-ai/DeepSeek-R1-0528-Turbo|C|1.0,3.0|32k,8192|-|-|deepseek-ai/DeepSeek-R1-0528-Turbo model|Y
deepinfra/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|deepseek-ai/DeepSeek-R1-Distill-Llama-70B|C|0.6,1.2|128k,8192|-|,,89.9,55.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Llama-70B model|Y
deepinfra/Qwen3-Next-80B-A3B-Instruct|qwen3-next-80b-a3b-instruct|Qwen/Qwen3-Next-80B-A3B-Instruct|C|0.09,1.1|256k,8192|-|-|Qwen/Qwen3-Next-80B-A3B-Instruct model|Y
deepinfra/Qwen3-Coder-480B-A35B-Instruct-Turbo|qwen3-coder-480b-a35b-instruct-turbo|Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo|C|0.28,1.2|256k,8192|-|-|Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo model|Y
deepinfra/Qwen3-Coder-480B-A35B-Instruct|qwen3-coder-480b-a35b-instruct|Qwen/Qwen3-Coder-480B-A35B-Instruct|C|0.4,1.6|256k,8192|-|-|Qwen/Qwen3-Coder-480B-A35B-Instruct model|Y
deepinfra/Qwen3-235B-A22B-Thinking-2507|qwen3-235b-a22b-thinking-2507|Qwen/Qwen3-235B-A22B-Thinking-2507|C|0.23,2.39|256k,8192|K|,,,80.1,,,,,,|Qwen/Qwen3-235B-A22B-Thinking-2507 model|Y
deepinfra/Qwen3-235B-A22B-Instruct-2507|qwen3-235b-a22b-instruct-2507|Qwen/Qwen3-235B-A22B-Instruct-2507|C|0.071,0.463|256k,8192|-|,,68.9,70.7,,,,,,|Qwen/Qwen3-235B-A22B-Instruct-2507 model|Y
deepinfra/Qwen3-32B|qwen3-32b|Qwen/Qwen3-32B|C|0.08,0.28|40k,8192|-|-|Qwen/Qwen3-32B model|Y
deepinfra/Qwen3-30B-A3B|qwen3-30b-a3b|Qwen/Qwen3-30B-A3B|C|0.08,0.29|40k,8192|-|-|Qwen/Qwen3-30B-A3B model|Y
deepinfra/Qwen3-14B|qwen3-14b|Qwen/Qwen3-14B|C|0.08,0.24|40k,8192|-|-|Qwen/Qwen3-14B model|Y
deepinfra/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|Qwen/Qwen2.5-72B-Instruct|C|0.12,0.39|32k,8192|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B-Instruct model|Y
deepinfra/Llama-4-Scout-17B-16E-Instruct|llama-4-scout-17b-16e-instruct|meta-llama/Llama-4-Scout-17B-16E-Instruct|C|0.08,0.3|320k,8192|-|,,62.3,51.8,,,,,,|meta-llama/Llama-4-Scout-17B-16E-Instruct model|Y
deepinfra/Llama-4-Maverick-17B-128E-Instruct-FP8|llama-4-maverick-17b-128e-instruct-fp8|meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8|C|0.15,0.6|1024k,8192|-|,,73.0,67.0,,,,,,|meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8 model|Y
deepinfra/Llama-Guard-4-12B|llama-guard-4-12b|meta-llama/Llama-Guard-4-12B|C|0.18,0.18|160k,8192|-|-|meta-llama/Llama-Guard-4-12B model|Y
deepinfra/Llama-3.3-70B-Instruct-Turbo|llama-3.3-70b-instruct-turbo|meta-llama/Llama-3.3-70B-Instruct-Turbo|C|0.1,0.32|128k,8192|-|-|meta-llama/Llama-3.3-70B-Instruct-Turbo model|Y
deepinfra/Llama-3.2-11B-Vision-Instruct|llama-3.2-11b-vision-instruct|meta-llama/Llama-3.2-11B-Vision-Instruct|C|0.049,0.049|128k,8192|V|56.5,,,,,,,,,|meta-llama/Llama-3.2-11B-Vision-Instruct model|Y
deepinfra/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|meta-llama/Llama-3.2-3B-Instruct|C|0.02,0.02|128k,8192|-|-|meta-llama/Llama-3.2-3B-Instruct model|Y
deepinfra/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|meta-llama/Meta-Llama-3.1-70B-Instruct|C|0.4,0.4|128k,8192|-|-|meta-llama/Meta-Llama-3.1-70B-Instruct model|Y
deepinfra/Meta-Llama-3.1-70B-Instruct-Turbo|meta-llama-3.1-70b-instruct-turbo|meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo|C|0.4,0.4|128k,8192|-|-|meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo model|Y
deepinfra/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|meta-llama/Meta-Llama-3.1-8B-Instruct|C|0.03,0.05|128k,8192|-|-|meta-llama/Meta-Llama-3.1-8B-Instruct model|Y
deepinfra/Meta-Llama-3.1-8B-Instruct-Turbo|meta-llama-3.1-8b-instruct-turbo|meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo|C|0.02,0.03|128k,8192|-|-|meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo model|Y
deepinfra/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|meta-llama/Meta-Llama-3-8B-Instruct|C|0.03,0.06|8k,8192|-|66.5,,6.1,26.1,,,,,,|meta-llama/Meta-Llama-3-8B-Instruct model|Y
deepinfra/gemini-2.5-pro|gemini-2.5-pro|google/gemini-2.5-pro|C|1.25,10.0|976k,8192|-|,,,85.3,,,,,,|google/gemini-2.5-pro model|Y
deepinfra/gemini-2.5-flash|gemini-2.5-flash|google/gemini-2.5-flash|C|0.3,2.5|976k,8192|-|-|google/gemini-2.5-flash model|Y
deepinfra/gemma-3-27b-it|gemma-3-27b-it|google/gemma-3-27b-it|C|0.09,0.16|128k,8192|-|,,74.0,48.9,,,,,,|google/gemma-3-27b-it model|Y
deepinfra/gemma-3-12b-it|gemma-3-12b-it|google/gemma-3-12b-it|C|0.04,0.13|128k,8192|-|-|google/gemma-3-12b-it model|Y
deepinfra/gemma-3-4b-it|gemma-3-4b-it|google/gemma-3-4b-it|C|0.04,0.08|128k,8192|-|-|google/gemma-3-4b-it model|Y
deepinfra/Nemotron-3-Nano-30B-A3B|nemotron-3-nano-30b-a3b|nvidia/Nemotron-3-Nano-30B-A3B|C|0.06,0.24|256k,8192|-|-|nvidia/Nemotron-3-Nano-30B-A3B model|Y
deepinfra/NVIDIA-Nemotron-Nano-12B-v2-VL|nvidia-nemotron-nano-12b-v2-vl|nvidia/NVIDIA-Nemotron-Nano-12B-v2-VL|C|0.2,0.6|128k,8192|V|-|nvidia/NVIDIA-Nemotron-Nano-12B-v2-VL model|Y
deepinfra/Llama-3.1-Nemotron-70B-Instruct|llama-3.1-nemotron-70b-instruct|nvidia/Llama-3.1-Nemotron-70B-Instruct|C|1.2,1.2|128k,8192|-|-|nvidia/Llama-3.1-Nemotron-70B-Instruct model|Y
deepinfra/Llama-3.3-Nemotron-Super-49B-v1.5|llama-3.3-nemotron-super-49b|nvidia/Llama-3.3-Nemotron-Super-49B-v1.5|C|0.1,0.4|128k,8192|V|-|nvidia/Llama-3.3-Nemotron-Super-49B-v1.5 model|Y
deepinfra/NVIDIA-Nemotron-Nano-9B-v2|nvidia-nemotron-nano-9b|nvidia/NVIDIA-Nemotron-Nano-9B-v2|C|0.04,0.16|128k,8192|V|-|nvidia/NVIDIA-Nemotron-Nano-9B-v2 model|Y
deepinfra/claude-4-opus|claude-4-opus|anthropic/claude-4-opus|C|16.5,82.5|195k,8192|-|,,85.0,69.2,62.2,,,,,|anthropic/claude-4-opus model|N
deepinfra/claude-4-sonnet|claude-4-sonnet|anthropic/claude-4-sonnet|C|3.3,16.5|195k,8192|-|,,84.4,66.7,60.6,,,,,|anthropic/claude-4-sonnet model|Y
deepinfra/phi-4|phi-4|microsoft/phi-4|C|0.07,0.14|16k,8192|-|84.8,,64.9,56.1,,,,,,|microsoft/phi-4 model|Y
deepinfra/Mistral-Small-3.2-24B-Instruct-2506|mistral-small-3.2-24b-instruct-2506|mistralai/Mistral-Small-3.2-24B-Instruct-2506|C|0.075,0.2|125k,8192|-|-|mistralai/Mistral-Small-3.2-24B-Instruct-2506 model|Y
deepinfra/Mistral-Small-24B-Instruct-2501|mistral-small-24b-instruct-2501|mistralai/Mistral-Small-24B-Instruct-2501|C|0.05,0.08|32k,8192|-|-|mistralai/Mistral-Small-24B-Instruct-2501 model|Y
deepinfra/Mistral-Nemo-Instruct-2407|mistral-nemo-instruct-2407|mistralai/Mistral-Nemo-Instruct-2407|C|0.02,0.04|128k,8192|-|-|mistralai/Mistral-Nemo-Instruct-2407 model|Y
deepinfra/Mixtral-8x7B-Instruct-v0.1|mixtral-8x7b-instruct|mistralai/Mixtral-8x7B-Instruct-v0.1|C|0.54,0.54|32k,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/Mixtral-8x7B-Instruct-v0.1 model|Y
deepinfra/WizardLM-2-8x22B|wizardlm-2-8x22b|microsoft/WizardLM-2-8x22B|C|0.48,0.48|64k,8192|-|,,25.7,43.4,,,,,,|microsoft/WizardLM-2-8x22B model|Y
deepinfra/MythoMax-L2-13b|mythomax-l2-13b|Gryphe/MythoMax-L2-13b|C|0.08,0.08|4k,8192|-|-|Gryphe/MythoMax-L2-13b model|Y
# =============================================================================
# ELEVENLABS - Direct API (5 models)
# =============================================================================
elevenlabs/eleven_multilingual_v2|eleven_multilingual_v2|Multilingual V2|C|1.0,5.0|128000,8192|-|-|Best quality, 29 languages|N
elevenlabs/eleven_multilingual_v3|eleven_multilingual_v3|Multilingual V3|C|1.0,5.0|128000,8192|-|-|Latest multilingual model|N
elevenlabs/eleven_flash_v2_5|eleven_flash_v2_5|Flash V2.5|C|1.0,5.0|128000,8192|-|-|Fast, multilingual, low latency|N
elevenlabs/eleven_turbo_v2|eleven_turbo_v2|Turbo V2|C|1.0,5.0|128000,8192|-|-|Low latency English only|N
elevenlabs/eleven_monolingual_v1|eleven_monolingual_v1|Monolingual V1|C|1.0,5.0|128000,8192|-|-|Legacy English model|N
# =============================================================================
# FAL - Direct API (8 models)
# =============================================================================
fal/Wan 2.5|wan 2.5|Wan 2.5|C|1.0,5.0|128000,8192|-|-|Wan 2.5 model|N
fal/Kling 2.5 Turbo Pro|kling 2.5 turbo pro|Kling 2.5 Turbo Pro|C|1.0,5.0|128000,8192|-|-|Kling 2.5 Turbo Pro model|N
fal/Veo 3|veo 3|Veo 3|C|1.0,5.0|128000,8192|-|-|Veo 3 model|N
fal/Ovi|ovi|Ovi|C|1.0,5.0|128000,8192|-|-|Ovi model|N
fal/Seedream V4|seedream v4|Seedream V4|C|1.0,5.0|128000,8192|-|-|Seedream V4 model|N
fal/Flux Kontext Pro|flux kontext pro|Flux Kontext Pro|C|1.0,5.0|128000,8192|-|-|Flux Kontext Pro model|N
fal/Nanobanana|nanobanana|Nanobanana|C|1.0,5.0|128000,8192|-|-|Nanobanana model|N
fal/Qwen|qwen|Qwen|C|1.0,5.0|128000,8192|-|-|Qwen model|N
# =============================================================================
# FEATHERLESS - Direct API (7176 models)
# =============================================================================
featherless/Fimbulvetr-11B-v2|fimbulvetr-11b|Sao10K/Fimbulvetr-11B-v2|C|1.0,5.0|4096,4096|V|-|Sao10K/Fimbulvetr-11B-v2 model|N
featherless/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|meta-llama/Meta-Llama-3-8B-Instruct|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|meta-llama/Meta-Llama-3-8B-Instruct model|N
featherless/Kunoichi-DPO-v2-7B|kunoichi-dpo-v2-7b|SanjiWatsuki/Kunoichi-DPO-v2-7B|C|1.0,5.0|8192,4096|V|-|SanjiWatsuki/Kunoichi-DPO-v2-7B model|N
featherless/Llama-3-TenyxChat-DaybreakStorywriter-70B|-|Envoid/Llama-3-TenyxChat-DaybreakStorywriter-70B|C|1.0,5.0|8192,4096|-|-|Envoid/Llama-3-TenyxChat-DaybreakStorywriter-70B model|N
featherless/mini-magnum-12b-v1.1|mini-magnum-12b|intervitens/mini-magnum-12b-v1.1|C|1.0,5.0|32768,4096|V|-|intervitens/mini-magnum-12b-v1.1 model|N
featherless/MN-12B-Celeste-V1.9|mn-12b-celeste|nothingiisreal/MN-12B-Celeste-V1.9|C|1.0,5.0|32768,4096|V|-|nothingiisreal/MN-12B-Celeste-V1.9 model|N
featherless/magnum-12b-v2|magnum-12b|anthracite-org/magnum-12b-v2|C|1.0,5.0|32768,4096|V|-|anthracite-org/magnum-12b-v2 model|N
featherless/L3.1-70B-Celeste-V0.1-BF16|l3.1-70b-celeste-v0.1-bf16|nothingiisreal/L3.1-70B-Celeste-V0.1-BF16|C|1.0,5.0|32768,4096|V|-|nothingiisreal/L3.1-70B-Celeste-V0.1-BF16 model|N
featherless/MN-12B-Lyra-v2a1|mn-12b-lyra-v2a1|Sao10K/MN-12B-Lyra-v2a1|C|1.0,5.0|32768,4096|V|-|Sao10K/MN-12B-Lyra-v2a1 model|N
featherless/MagnusIntellectus-12B-v1|magnusintellectus-12b|GalrionSoftworks/MagnusIntellectus-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/MagnusIntellectus-12B-v1 model|N
featherless/Rocinante-12B-v1|rocinante-12b|TheDrummer/Rocinante-12B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Rocinante-12B-v1 model|N
featherless/ghost-8b-beta-1608|ghost-8b-beta-1608|ghost-x/ghost-8b-beta-1608|C|1.0,5.0|8192,4096|-|-|ghost-x/ghost-8b-beta-1608 model|N
featherless/StarDust-12b-v2|stardust-12b|Luni/StarDust-12b-v2|C|1.0,5.0|32768,4096|V|-|Luni/StarDust-12b-v2 model|N
featherless/MN-12B-Mag-Mell-R1|mn-12b-mag-mell-r1|inflatebot/MN-12B-Mag-Mell-R1|C|1.0,5.0|32768,4096|-|-|inflatebot/MN-12B-Mag-Mell-R1 model|N
featherless/L3-Dark-Planet-8B-V2-Eight-Orbs-Of-Power|-|DavidAU/L3-Dark-Planet-8B-V2-Eight-Orbs-Of-Power|C|1.0,5.0|8192,4096|V|-|DavidAU/L3-Dark-Planet-8B-V2-Eight-Orbs-Of-Power model|N
featherless/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|Qwen/Qwen2.5-72B-Instruct|C|1.0,5.0|131072,4096|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B-Instruct model|N
featherless/EVA-Qwen2.5-72B-v0.1|eva-qwen2.5-72b|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.1 model|N
featherless/EVA-Qwen2.5-72B-v0.2|eva-qwen2.5-72b|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2 model|N
featherless/Evathene-v1.3|evathene|sophosympatheia/Evathene-v1.3|C|1.0,5.0|131072,4096|V|-|sophosympatheia/Evathene-v1.3 model|N
featherless/L3.3-70B-Euryale-v2.3|l3.3-70b-euryale|Sao10K/L3.3-70B-Euryale-v2.3|C|1.0,5.0|32768,4096|V|-|Sao10K/L3.3-70B-Euryale-v2.3 model|N
featherless/EVA-LLaMA-3.33-70B-v0.0|eva-llama-3.33-70b|EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0|C|1.0,5.0|32768,4096|V|-|EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0 model|N
featherless/Anubis-70B-v1|anubis-70b|TheDrummer/Anubis-70B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Anubis-70B-v1 model|N
featherless/L3.3-MS-Nevoria-70b|l3.3-ms-nevoria-70b|Steelskull/L3.3-MS-Nevoria-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-MS-Nevoria-70b model|N
featherless/Llama-3.X-Workout-70B|llama-3.x-workout-70b|KaraKaraWitch/Llama-3.X-Workout-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.X-Workout-70B model|N
featherless/L3.3-Nevoria-R1-70b|l3.3-nevoria-r1-70b|Steelskull/L3.3-Nevoria-R1-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-Nevoria-R1-70b model|N
featherless/L3.3-Damascus-R1|l3.3-damascus-r1|Steelskull/L3.3-Damascus-R1|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-Damascus-R1 model|N
featherless/Mistral-Small-24B-Instruct-2501|mistral-small-24b-instruct-2501|mistralai/Mistral-Small-24B-Instruct-2501|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Small-24B-Instruct-2501 model|N
featherless/EVA-Qwen2.5-32B-v0.1|eva-qwen2.5-32b|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.1|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.1 model|N
featherless/oxy-1-small|oxy-1-small|oxyapi/oxy-1-small|C|1.0,5.0|131072,4096|-|-|oxyapi/oxy-1-small model|N
featherless/L3.3-Prikol-70B-v0.5|l3.3-prikol-70b|Nohobby/L3.3-Prikol-70B-v0.5|C|1.0,5.0|32768,4096|V|-|Nohobby/L3.3-Prikol-70B-v0.5 model|N
featherless/Wayfarer-Large-70B-Llama-3.3|wayfarer-large-70b-llama-3.3|LatitudeGames/Wayfarer-Large-70B-Llama-3.3|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Wayfarer-Large-70B-Llama-3.3 model|N
featherless/L3.3-Electra-R1-70b|l3.3-electra-r1-70b|Steelskull/L3.3-Electra-R1-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-Electra-R1-70b model|N
featherless/L3-8B-Stheno-v3.2|l3-8b-stheno|Sao10K/L3-8B-Stheno-v3.2|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-8B-Stheno-v3.2 model|N
featherless/DeepSeek-V3-0324|deepseek-v3-0324|deepseek-ai/DeepSeek-V3-0324|C|1.0,5.0|32768,32768|V|87.1,,64.9,56.5,52.1,,,,,|deepseek-ai/DeepSeek-V3-0324 model|N
featherless/CardProjector-24B-v3|cardprojector-24b|SlerpE/CardProjector-24B-v3|C|1.0,5.0|32768,4096|V|-|SlerpE/CardProjector-24B-v3 model|N
featherless/CardProjector-27B-v4|cardprojector-27b|SlerpE/CardProjector-27B-v4|C|1.0,5.0|32768,4096|V|-|SlerpE/CardProjector-27B-v4 model|N
featherless/Gemma-3-Glitter-27B|gemma-3-glitter-27b|allura-org/Gemma-3-Glitter-27B|C|1.0,5.0|32768,4096|-|-|allura-org/Gemma-3-Glitter-27B model|N
featherless/DeepSeek-R1-0528|deepseek-r1-0528|deepseek-ai/DeepSeek-R1-0528|C|1.0,5.0|32768,32768|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1-0528 model|N
featherless/Anubis-70B-v1.1|anubis-70b|TheDrummer/Anubis-70B-v1.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Anubis-70B-v1.1 model|N
featherless/medgemma-4b-it|medgemma-4b-it|google/medgemma-4b-it|C|1.0,5.0|32768,4096|-|-|google/medgemma-4b-it model|N
featherless/gemma-3-27b-it-abliterated|gemma-3-27b-it-abliterated|huihui-ai/gemma-3-27b-it-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/gemma-3-27b-it-abliterated model|N
featherless/Qwen3-0.6B|qwen3-0.6b|Qwen/Qwen3-0.6B|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-0.6B model|N
featherless/Kimi-K2-Instruct|kimi-k2-instruct|moonshotai/Kimi-K2-Instruct|C|1.0,5.0|32768,32768|-|-|moonshotai/Kimi-K2-Instruct model|N
featherless/Luna|luna|beyoru/Luna|C|1.0,5.0|40960,4096|-|-|beyoru/Luna model|N
featherless/GLM-4.6|glm-4.6|zai-org/GLM-4.6|C|1.0,5.0|32768,32768|-|-|zai-org/GLM-4.6 model|N
featherless/Ling-1T|ling-1t|inclusionAI/Ling-1T|C|1.0,5.0|32768,4096|-|-|inclusionAI/Ling-1T model|N
featherless/MN-12B-Starcannon-v2|mn-12b-starcannon|AuriAetherwiing/MN-12B-Starcannon-v2|C|1.0,5.0|32768,4096|V|-|AuriAetherwiing/MN-12B-Starcannon-v2 model|N
featherless/Qwen2.5-3B-Instruct|qwen2.5-3b-instruct|Qwen/Qwen2.5-3B-Instruct|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-3B-Instruct model|N
featherless/MG-FinalMix-72B|mg-finalmix-72b|Undi95/MG-FinalMix-72B|C|1.0,5.0|131072,4096|-|-|Undi95/MG-FinalMix-72B model|N
featherless/Cydonia-24B-v2|cydonia-24b|TheDrummer/Cydonia-24B-v2|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v2 model|N
featherless/Qwen3-4B-Instruct-2507|qwen3-4b-instruct-2507|Qwen/Qwen3-4B-Instruct-2507|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-4B-Instruct-2507 model|N
featherless/magnum-72b-v1|magnum-72b|alpindale/magnum-72b-v1|C|1.0,5.0|131072,4096|V|-|alpindale/magnum-72b-v1 model|N
featherless/MN-LooseCannon-12B-v1|mn-loosecannon-12b|GalrionSoftworks/MN-LooseCannon-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/MN-LooseCannon-12B-v1 model|N
featherless/Unity-12B|unity-12b|OddTheGreat/Unity-12B|C|1.0,5.0|32768,4096|-|-|OddTheGreat/Unity-12B model|N
featherless/CardProjector-14B-v2|cardprojector-14b|SlerpE/CardProjector-14B-v2|C|1.0,5.0|131072,4096|V|-|SlerpE/CardProjector-14B-v2 model|N
featherless/Kimi-K2-Thinking|kimi-k2-thinking|moonshotai/Kimi-K2-Thinking|C|1.0,5.0|32768,32768|K|-|moonshotai/Kimi-K2-Thinking model|N
featherless/New-Dawn-Llama-3.1-70B-v1.1|new-dawn-llama-3.1-70b|sophosympatheia/New-Dawn-Llama-3.1-70B-v1.1|C|1.0,5.0|32768,4096|V|-|sophosympatheia/New-Dawn-Llama-3.1-70B-v1.1 model|N
featherless/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored|C|1.0,5.0|32768,4096|-|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored model|N
featherless/Kimi-K2-Instruct-0905|kimi-k2-instruct-0905|moonshotai/Kimi-K2-Instruct-0905|C|1.0,5.0|32768,32768|-|-|moonshotai/Kimi-K2-Instruct-0905 model|N
featherless/L3-70B-Euryale-v2.1|l3-70b-euryale|Sao10K/L3-70B-Euryale-v2.1|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-70B-Euryale-v2.1 model|N
featherless/Llama-3.1-Centaur-70B|llama-3.1-centaur-70b|marcelbinz/Llama-3.1-Centaur-70B|C|1.0,5.0|32768,4096|-|-|marcelbinz/Llama-3.1-Centaur-70B model|N
featherless/Roleplay-Llama-3-8B|roleplay-llama-3-8b|vicgalle/Roleplay-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|vicgalle/Roleplay-Llama-3-8B model|N
featherless/SOLAR-10.7B-Instruct-v1.0-uncensored|solar-10.7b-instruct-v1.0-uncensored|w4r10ck/SOLAR-10.7B-Instruct-v1.0-uncensored|C|1.0,5.0|4096,4096|V|-|w4r10ck/SOLAR-10.7B-Instruct-v1.0-uncensored model|N
featherless/L3-Aethora-15B|l3-aethora-15b|SteelStorage/L3-Aethora-15B|C|1.0,5.0|8192,4096|-|-|SteelStorage/L3-Aethora-15B model|N
featherless/Llama-3-Luminurse-v0.2-OAS-8B|llama-3-luminurse-v0.2-oas-8b|grimjim/Llama-3-Luminurse-v0.2-OAS-8B|C|1.0,5.0|8192,4096|V|-|grimjim/Llama-3-Luminurse-v0.2-OAS-8B model|N
featherless/Meta-Llama-3-8B-Instruct-abliterated-v3|meta-llama-3-8b-instruct-abliterated|failspy/Meta-Llama-3-8B-Instruct-abliterated-v3|C|1.0,5.0|8192,4096|V|-|failspy/Meta-Llama-3-8B-Instruct-abliterated-v3 model|N
featherless/Llama-3-Smaug-8B|llama-3-smaug-8b|abacusai/Llama-3-Smaug-8B|C|1.0,5.0|8192,4096|-|-|abacusai/Llama-3-Smaug-8B model|N
featherless/Llama-3-OpenBioMed-8B-dare-ties-v1.0|llama-3-openbiomed-8b-dare-ties|abhinand/Llama-3-OpenBioMed-8B-dare-ties-v1.0|C|1.0,5.0|8192,4096|V|-|abhinand/Llama-3-OpenBioMed-8B-dare-ties-v1.0 model|N
featherless/Llama-3-8B-Dolphin-Portuguese-v0.2|llama-3-8b-dolphin-portuguese|adalbertojunior/Llama-3-8B-Dolphin-Portuguese-v0.2|C|1.0,5.0|8192,4096|V|-|adalbertojunior/Llama-3-8B-Dolphin-Portuguese-v0.2 model|N
featherless/Llama-3-8B-Instruct-Portuguese-v0.1|llama-3-8b-instruct-portuguese|adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.1|C|1.0,5.0|8192,4096|V|-|adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.1 model|N
featherless/Llama-3-8B-Instruct-Portuguese-v0.4|llama-3-8b-instruct-portuguese|adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.4|C|1.0,5.0|8192,4096|V|-|adalbertojunior/Llama-3-8B-Instruct-Portuguese-v0.4 model|N
featherless/Llama-3-8B|llama-3-8b|AI-Sweden-Models/Llama-3-8B|C|1.0,5.0|8192,4096|-|,,,2.1,,24.0,,,,|AI-Sweden-Models/Llama-3-8B model|N
featherless/SlimOrca-Llama-3-8B|slimorca-llama-3-8b|ajibawa-2023/SlimOrca-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|ajibawa-2023/SlimOrca-Llama-3-8B model|N
featherless/Llama-3-Alpha-Ko-8B-Instruct|llama-3-alpha-ko-8b-instruct|allganize/Llama-3-Alpha-Ko-8B-Instruct|C|1.0,5.0|8192,4096|-|-|allganize/Llama-3-Alpha-Ko-8B-Instruct model|N
featherless/Alphallama3-8B_v2|alphallama3-8b_v2|Alphacode-AI/Alphallama3-8B_v2|C|1.0,5.0|8192,4096|-|-|Alphacode-AI/Alphallama3-8B_v2 model|N
featherless/Llama-3-8b-ita-slerp|llama-3-8b-ita-slerp|anakin87/Llama-3-8b-ita-slerp|C|1.0,5.0|8192,4096|-|-|anakin87/Llama-3-8b-ita-slerp model|N
featherless/Llama-3-8b-ita-ties|llama-3-8b-ita-ties|anakin87/Llama-3-8b-ita-ties|C|1.0,5.0|8192,4096|-|-|anakin87/Llama-3-8b-ita-ties model|N
featherless/Llama-3-8b-ita-ties-pro|llama-3-8b-ita-ties-pro|anakin87/Llama-3-8b-ita-ties-pro|C|1.0,5.0|8192,4096|-|-|anakin87/Llama-3-8b-ita-ties-pro model|N
featherless/Awanllm-Llama-3-8B-Dolfin-v0.3|awanllm-llama-3-8b-dolfin|AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.3|C|1.0,5.0|8192,4096|V|-|AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.3 model|N
featherless/Meta-Llama-3-8B-Instruct-Dolfin-v0.1|meta-llama-3-8b-instruct-dolfin|AwanLLM/Meta-Llama-3-8B-Instruct-Dolfin-v0.1|C|1.0,5.0|8192,4096|V|-|AwanLLM/Meta-Llama-3-8B-Instruct-Dolfin-v0.1 model|N
featherless/blossom-v5-llama3-8b|blossom-v5-llama3-8b|Azure99/blossom-v5-llama3-8b|C|1.0,5.0|8192,4096|V|,,,2.0,,43.4,,,,|Azure99/blossom-v5-llama3-8b model|N
featherless/CabraLlama3-8b|cabrallama3-8b|botbotrobotics/CabraLlama3-8b|C|1.0,5.0|8192,4096|-|-|botbotrobotics/CabraLlama3-8b model|N
featherless/L3-TheSpice-8b-v0.1.3|l3-thespice-8b-v0.1.3|cgato/L3-TheSpice-8b-v0.1.3|C|1.0,5.0|8192,4096|V|-|cgato/L3-TheSpice-8b-v0.1.3 model|N
featherless/MedLlama-3-8B_DARE|medllama-3-8b_dare|ChenWeiLi/MedLlama-3-8B_DARE|C|1.0,5.0|8192,4096|-|-|ChenWeiLi/MedLlama-3-8B_DARE model|N
featherless/T3Q-Llama3-8B-Inst-sft1.0|t3q-llama3-8b-inst-sft1.0|chlee10/T3Q-Llama3-8B-Inst-sft1.0|C|1.0,5.0|8192,4096|-|-|chlee10/T3Q-Llama3-8B-Inst-sft1.0 model|N
featherless/Llama-3-8B-Ultra-Instruct|llama-3-8b-ultra-instruct|Dampfinchen/Llama-3-8B-Ultra-Instruct|C|1.0,5.0|8192,4096|-|-|Dampfinchen/Llama-3-8B-Ultra-Instruct model|N
featherless/llama-3-sqlcoder-8b|llama-3-sqlcoder-8b|defog/llama-3-sqlcoder-8b|C|1.0,5.0|8192,4096|-|-|defog/llama-3-sqlcoder-8b model|N
featherless/Llama3-German-8B|llama3-german-8b|DiscoResearch/Llama3-German-8B|C|1.0,5.0|8192,4096|-|-|DiscoResearch/Llama3-German-8B model|N
featherless/Llama-3-8B-Instruct-ortho-baukit-toxic-v2|llama-3-8b-instruct-ortho-baukit-toxic|Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-v2|C|1.0,5.0|8192,4096|V|-|Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-v2 model|N
featherless/llama3-8b-dpo_v1|llama3-8b-dpo_v1|etri-xainlp/llama3-8b-dpo_v1|C|1.0,5.0|8192,4096|-|-|etri-xainlp/llama3-8b-dpo_v1 model|N
featherless/Llama-3-8B-Instruct-Gradient-1048k|llama-3-8b-instruct-gradient-1048k|gradientai/Llama-3-8B-Instruct-Gradient-1048k|C|1.0,5.0|8192,4096|-|-|gradientai/Llama-3-8B-Instruct-Gradient-1048k model|N
featherless/llama-3-chinese-8b-instruct-v3|llama-3-chinese-8b-instruct|hfl/llama-3-chinese-8b-instruct-v3|C|1.0,5.0|8192,4096|V|-|hfl/llama-3-chinese-8b-instruct-v3 model|N
featherless/Average_Normie_l3_v1_8B|average_normie_l3_v1_8b|jeiku/Average_Normie_l3_v1_8B|C|1.0,5.0|8192,4096|-|-|jeiku/Average_Normie_l3_v1_8B model|N
featherless/Chaos_RP_l3_8B|chaos_rp_l3_8b|jeiku/Chaos_RP_l3_8B|C|1.0,5.0|8192,4096|-|-|jeiku/Chaos_RP_l3_8B model|N
featherless/JSL-Med-Sft-Llama-3-8B|jsl-med-sft-llama-3-8b|johnsnowlabs/JSL-Med-Sft-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|johnsnowlabs/JSL-Med-Sft-Llama-3-8B model|N
featherless/JSL-MedLlama-3-8B-v1.0|jsl-medllama-3-8b|johnsnowlabs/JSL-MedLlama-3-8B-v1.0|C|1.0,5.0|8192,4096|V|-|johnsnowlabs/JSL-MedLlama-3-8B-v1.0 model|N
featherless/NeuralLLaMa-3-8b-DT-v0.1|neuralllama-3-8b-dt|Kukedlc/NeuralLLaMa-3-8b-DT-v0.1|C|1.0,5.0|8192,4096|V|-|Kukedlc/NeuralLLaMa-3-8b-DT-v0.1 model|N
featherless/llama-3-8b-it-kor-extented-chang|llama-3-8b-it-kor-extented-chang|lcw99/llama-3-8b-it-kor-extented-chang|C|1.0,5.0|8192,4096|-|-|lcw99/llama-3-8b-it-kor-extented-chang model|N
featherless/suzume-llama-3-8B-japanese|suzume-llama-3-8b-japanese|lightblue/suzume-llama-3-8B-japanese|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-japanese model|N
featherless/Llama3-merge-biomed-8b|llama3-merge-biomed-8b|lighteternal/Llama3-merge-biomed-8b|C|1.0,5.0|8192,4096|-|-|lighteternal/Llama3-merge-biomed-8b model|N
featherless/Llama-3-Ko-8B-Instruct|llama-3-ko-8b-instruct|maywell/Llama-3-Ko-8B-Instruct|C|1.0,5.0|8192,4096|-|-|maywell/Llama-3-Ko-8B-Instruct model|N
featherless/Llama-3-8B-Instruct-v0.8|llama-3-8b-instruct|MaziyarPanahi/Llama-3-8B-Instruct-v0.8|C|1.0,5.0|8192,4096|V|-|MaziyarPanahi/Llama-3-8B-Instruct-v0.8 model|N
featherless/Tess-2.0-Llama-3-8B|tess-2.0-llama-3-8b|migtissera/Tess-2.0-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|migtissera/Tess-2.0-Llama-3-8B model|N
featherless/ChimeraLlama-3-8B-v3|chimerallama-3-8b|mlabonne/ChimeraLlama-3-8B-v3|C|1.0,5.0|8192,4096|V|-|mlabonne/ChimeraLlama-3-8B-v3 model|N
featherless/NeuralLlama-3-8B-Instruct-abliterated|neuralllama-3-8b-instruct-abliterated|mlabonne/NeuralLlama-3-8B-Instruct-abliterated|C|1.0,5.0|8192,4096|-|-|mlabonne/NeuralLlama-3-8B-Instruct-abliterated model|N
featherless/Arabic-Orpo-Llama-3-8B-Instruct|arabic-orpo-llama-3-8b-instruct|MohamedRashad/Arabic-Orpo-Llama-3-8B-Instruct|C|1.0,5.0|8192,4096|-|-|MohamedRashad/Arabic-Orpo-Llama-3-8B-Instruct model|N
featherless/Llama-3-Lumimaid-8B-v0.1|llama-3-lumimaid-8b|NeverSleep/Llama-3-Lumimaid-8B-v0.1|C|1.0,5.0|8192,4096|V|-|NeverSleep/Llama-3-Lumimaid-8B-v0.1 model|N
featherless/Llama-3-Lumimaid-8B-v0.1-OAS|llama-3-lumimaid-8b-v0.1-oas|NeverSleep/Llama-3-Lumimaid-8B-v0.1-OAS|C|1.0,5.0|8192,4096|V|-|NeverSleep/Llama-3-Lumimaid-8B-v0.1-OAS model|N
featherless/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|NousResearch/Meta-Llama-3-8B-Instruct|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|NousResearch/Meta-Llama-3-8B-Instruct model|N
featherless/Llama-3-8B-LexiFun-Uncensored-V1|llama-3-8b-lexifun-uncensored|Orenguteng/Llama-3-8B-LexiFun-Uncensored-V1|C|1.0,5.0|8192,4096|V|-|Orenguteng/Llama-3-8B-LexiFun-Uncensored-V1 model|N
featherless/Llama-3-Instruct-8B-SimPO|llama-3-instruct-8b-simpo|princeton-nlp/Llama-3-Instruct-8B-SimPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-SimPO model|N
featherless/llama-3-youko-8b|llama-3-youko-8b|rinna/llama-3-youko-8b|C|1.0,5.0|8192,4096|-|-|rinna/llama-3-youko-8b model|N
featherless/Llama-3-8B-Instruct-Chinese|llama-3-8b-instruct-chinese|Rookie/Llama-3-8B-Instruct-Chinese|C|1.0,5.0|8192,4096|-|-|Rookie/Llama-3-8B-Instruct-Chinese model|N
featherless/Aura-Uncensored-OAS-8B-L3|aura-uncensored-oas-8b-l3|saishf/Aura-Uncensored-OAS-8B-L3|C|1.0,5.0|8192,4096|-|-|saishf/Aura-Uncensored-OAS-8B-L3 model|N
featherless/Meta-Llama-3-8B-Instruct-function-calling|-|Trelis/Meta-Llama-3-8B-Instruct-function-calling|C|1.0,5.0|8192,4096|-|-|Trelis/Meta-Llama-3-8B-Instruct-function-calling model|N
featherless/Llama-3-8B-UltraMedical|llama-3-8b-ultramedical|TsinghuaC3I/Llama-3-8B-UltraMedical|C|1.0,5.0|8192,4096|-|-|TsinghuaC3I/Llama-3-8B-UltraMedical model|N
featherless/Llama-3-Unholy-8B|llama-3-unholy-8b|Undi95/Llama-3-Unholy-8B|C|1.0,5.0|8192,4096|-|-|Undi95/Llama-3-Unholy-8B model|N
featherless/Meta-Llama-3-8B-hf|meta-llama-3-8b-hf|Undi95/Meta-Llama-3-8B-hf|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|Undi95/Meta-Llama-3-8B-hf model|N
featherless/llama-3-8b|llama-3-8b|unsloth/llama-3-8b|C|1.0,5.0|8192,4096|-|,,,2.1,,24.0,,,,|unsloth/llama-3-8b model|N
featherless/Llama-3-SauerkrautLM-8b-Instruct|llama-3-sauerkrautlm-8b-instruct|VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct|C|1.0,5.0|8192,4096|-|-|VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct model|N
featherless/Configurable-Llama-3-8B-v0.3|configurable-llama-3-8b|vicgalle/Configurable-Llama-3-8B-v0.3|C|1.0,5.0|8192,4096|V|-|vicgalle/Configurable-Llama-3-8B-v0.3 model|N
featherless/Llama-3-8b-64k-PoSE|llama-3-8b-64k-pose|winglian/Llama-3-8b-64k-PoSE|C|1.0,5.0|8192,4096|-|-|winglian/Llama-3-8b-64k-PoSE model|N
featherless/WiNGPT2-Llama-3-8B-Base|wingpt2-llama-3-8b-base|winninghealth/WiNGPT2-Llama-3-8B-Base|C|1.0,5.0|8192,4096|-|-|winninghealth/WiNGPT2-Llama-3-8B-Base model|N
featherless/Gigi-Llama3-8B-Chinese-zh|gigi-llama3-8b-chinese-zh|yaojialzc/Gigi-Llama3-8B-Chinese-zh|C|1.0,5.0|8192,4096|-|-|yaojialzc/Gigi-Llama3-8B-Chinese-zh model|N
featherless/Llama-3-8B-Instruct-abliterated-v2|llama-3-8b-instruct-abliterated|QuixiAI/Llama-3-8B-Instruct-abliterated-v2|C|1.0,5.0|8192,4096|V|-|QuixiAI/Llama-3-8B-Instruct-abliterated-v2 model|N
featherless/KoLlama-3-8B-Instruct|kollama-3-8b-instruct|fiveflow/KoLlama-3-8B-Instruct|C|1.0,5.0|8192,4096|-|-|fiveflow/KoLlama-3-8B-Instruct model|N
featherless/llama-3-chinese-8b-instruct|llama-3-chinese-8b-instruct|hfl/llama-3-chinese-8b-instruct|C|1.0,5.0|8192,4096|-|-|hfl/llama-3-chinese-8b-instruct model|N
featherless/Llama3-8B-Chinese-Chat|llama3-8b-chinese-chat|shenzhi-wang/Llama3-8B-Chinese-Chat|C|1.0,5.0|8192,4096|-|-|shenzhi-wang/Llama3-8B-Chinese-Chat model|N
featherless/Barcenas-Llama3-8b-ORPO|barcenas-llama3-8b-orpo|Danielbrdz/Barcenas-Llama3-8b-ORPO|C|1.0,5.0|8192,4096|-|-|Danielbrdz/Barcenas-Llama3-8b-ORPO model|N
featherless/Llama-3-8B-Instruct-ortho-baukit-toxic-n128-v3|-|Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-n128-v3|C|1.0,5.0|8192,4096|V|-|Edgerunners/Llama-3-8B-Instruct-ortho-baukit-toxic-n128-v3 model|N
featherless/llama3-8B-slerp-biomed-chat-chinese|llama3-8b-slerp-biomed-chat-chinese|shanchen/llama3-8B-slerp-biomed-chat-chinese|C|1.0,5.0|8192,4096|-|-|shanchen/llama3-8B-slerp-biomed-chat-chinese model|N
featherless/ko-Llama-3-8B-sft-v0.3|ko-llama-3-8b-sft|12thD/ko-Llama-3-8B-sft-v0.3|C|1.0,5.0|8192,4096|V|-|12thD/ko-Llama-3-8B-sft-v0.3 model|N
featherless/llama-3-8b-instruct-toxic|llama-3-8b-instruct-toxic|bababababooey/llama-3-8b-instruct-toxic|C|1.0,5.0|8192,4096|-|-|bababababooey/llama-3-8b-instruct-toxic model|N
featherless/T3Q-Llama3-8B-sft1.0-dpo1.0|t3q-llama3-8b-sft1.0-dpo1.0|chlee10/T3Q-Llama3-8B-sft1.0-dpo1.0|C|1.0,5.0|8192,4096|-|-|chlee10/T3Q-Llama3-8B-sft1.0-dpo1.0 model|N
featherless/llama-3-spicy-abliterated-stella-8B|llama-3-spicy-abliterated-stella-8b|nbeerbower/llama-3-spicy-abliterated-stella-8B|C|1.0,5.0|8192,4096|-|-|nbeerbower/llama-3-spicy-abliterated-stella-8B model|N
featherless/Awanllm-Llama-3-8B-Dolfin-v0.6-Abliterated|-|AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.6-Abliterated|C|1.0,5.0|8192,4096|V|-|AwanLLM/Awanllm-Llama-3-8B-Dolfin-v0.6-Abliterated model|N
featherless/Llama-3-KoEn-8B-Instruct-preview|llama-3-koen-8b-instruct-preview|beomi/Llama-3-KoEn-8B-Instruct-preview|C|1.0,5.0|8192,4096|-|-|beomi/Llama-3-KoEn-8B-Instruct-preview model|N
featherless/Llama-3-Open-Ko-8B|llama-3-open-ko-8b|beomi/Llama-3-Open-Ko-8B|C|1.0,5.0|8192,4096|-|-|beomi/Llama-3-Open-Ko-8B model|N
featherless/openbuddy-llama3-8b-v21.1-8k|openbuddy-llama3-8b-v21.1-8k|OpenBuddy/openbuddy-llama3-8b-v21.1-8k|C|1.0,5.0|8192,4096|V|-|OpenBuddy/openbuddy-llama3-8b-v21.1-8k model|N
featherless/Medical-Llama3-8B|medical-llama3-8b|ruslanmv/Medical-Llama3-8B|C|1.0,5.0|8192,4096|-|-|ruslanmv/Medical-Llama3-8B model|N
featherless/Llama-3-KoEn-8B|llama-3-koen-8b|beomi/Llama-3-KoEn-8B|C|1.0,5.0|8192,4096|-|-|beomi/Llama-3-KoEn-8B model|N
featherless/L3-TheSpice-8b-v0.8.3|l3-thespice-8b-v0.8.3|cgato/L3-TheSpice-8b-v0.8.3|C|1.0,5.0|8192,4096|V|-|cgato/L3-TheSpice-8b-v0.8.3 model|N
featherless/Med-ChimeraLlama-3-8B_SHERP|med-chimerallama-3-8b_sherp|ChenWeiLi/Med-ChimeraLlama-3-8B_SHERP|C|1.0,5.0|8192,4096|-|-|ChenWeiLi/Med-ChimeraLlama-3-8B_SHERP model|N
featherless/Llama3-DiscoLeo-Instruct-8B-v0.1|llama3-discoleo-instruct-8b|DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1|C|1.0,5.0|8192,4096|V|-|DiscoResearch/Llama3-DiscoLeo-Instruct-8B-v0.1 model|N
featherless/llama-3-8b-English-to-Hinglish|llama-3-8b-english-to-hinglish|Hinglish-Project/llama-3-8b-English-to-Hinglish|C|1.0,5.0|8192,4096|-|-|Hinglish-Project/llama-3-8b-English-to-Hinglish model|N
featherless/Llama-3-Orca-1.0-8B|llama-3-orca-1.0-8b|Locutusque/Llama-3-Orca-1.0-8B|C|1.0,5.0|8192,4096|-|-|Locutusque/Llama-3-Orca-1.0-8B model|N
featherless/Llama-3-LewdPlay-8B-evo|llama-3-lewdplay-8b-evo|Undi95/Llama-3-LewdPlay-8B-evo|C|1.0,5.0|8192,4096|-|-|Undi95/Llama-3-LewdPlay-8B-evo model|N
featherless/Turkish-Llama-8b-v0.1|turkish-llama-8b|ytu-ce-cosmos/Turkish-Llama-8b-v0.1|C|1.0,5.0|8192,4096|V|-|ytu-ce-cosmos/Turkish-Llama-8b-v0.1 model|N
featherless/ko-Llama-3-8B-sft-v0.1|ko-llama-3-8b-sft|12thD/ko-Llama-3-8B-sft-v0.1|C|1.0,5.0|8192,4096|V|-|12thD/ko-Llama-3-8B-sft-v0.1 model|N
featherless/Awanllm-Llama-3-8B-Instruct-DPO-v0.2|awanllm-llama-3-8b-instruct-dpo|AwanLLM/Awanllm-Llama-3-8B-Instruct-DPO-v0.2|C|1.0,5.0|8192,4096|V|-|AwanLLM/Awanllm-Llama-3-8B-Instruct-DPO-v0.2 model|N
featherless/Llama3-Chinese-8B-Instruct|llama3-chinese-8b-instruct|FlagAlpha/Llama3-Chinese-8B-Instruct|C|1.0,5.0|8192,4096|-|-|FlagAlpha/Llama3-Chinese-8B-Instruct model|N
featherless/WebSquareAI-Instruct-llama-3-8B-v0.5.39|websquareai-instruct-llama-3-8b-v0.5.39|kimwooglae/WebSquareAI-Instruct-llama-3-8B-v0.5.39|C|1.0,5.0|8192,4096|V|-|kimwooglae/WebSquareAI-Instruct-llama-3-8B-v0.5.39 model|N
featherless/Meta-Llama-3-8B|meta-llama-3-8b|NousResearch/Meta-Llama-3-8B|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|NousResearch/Meta-Llama-3-8B model|N
featherless/pair-preference-model-LLaMA3-8B|pair-preference-model-llama3-8b|RLHFlow/pair-preference-model-LLaMA3-8B|C|1.0,5.0|8192,4096|-|-|RLHFlow/pair-preference-model-LLaMA3-8B model|N
featherless/Llama-3-Ko-8B-OpenOrca|llama-3-ko-8b-openorca|werty1248/Llama-3-Ko-8B-OpenOrca|C|1.0,5.0|8192,4096|-|-|werty1248/Llama-3-Ko-8B-OpenOrca model|N
featherless/Alphallama3-8B|alphallama3-8b|Alphacode-AI/Alphallama3-8B|C|1.0,5.0|8192,4096|-|-|Alphacode-AI/Alphallama3-8B model|N
featherless/Llama-3-Open-Ko-8B-Instruct-preview|llama-3-open-ko-8b-instruct-preview|beomi/Llama-3-Open-Ko-8B-Instruct-preview|C|1.0,5.0|8192,4096|-|-|beomi/Llama-3-Open-Ko-8B-Instruct-preview model|N
featherless/Llama-3-8B-saiga-suzume-ties|llama-3-8b-saiga-suzume-ties|d0rj/Llama-3-8B-saiga-suzume-ties|C|1.0,5.0|8192,4096|-|-|d0rj/Llama-3-8B-saiga-suzume-ties model|N
featherless/Llama-3-8B-Instruct-262k|llama-3-8b-instruct-262k|gradientai/Llama-3-8B-Instruct-262k|C|1.0,5.0|8192,4096|-|-|gradientai/Llama-3-8B-Instruct-262k model|N
featherless/suzume-llama-3-8B-multilingual|suzume-llama-3-8b-multilingual|lightblue/suzume-llama-3-8B-multilingual|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-multilingual model|N
featherless/Llama-3-8B-Synthia-v3.5|llama-3-8b-synthia|migtissera/Llama-3-8B-Synthia-v3.5|C|1.0,5.0|8192,4096|V|-|migtissera/Llama-3-8B-Synthia-v3.5 model|N
featherless/ChimeraLlama-3-8B-v2|chimerallama-3-8b|mlabonne/ChimeraLlama-3-8B-v2|C|1.0,5.0|8192,4096|V|-|mlabonne/ChimeraLlama-3-8B-v2 model|N
featherless/Poppy_Porpoise-0.72-L3-8B|poppy_porpoise-0.72-l3-8b|Nitral-AI/Poppy_Porpoise-0.72-L3-8B|C|1.0,5.0|8192,4096|-|-|Nitral-AI/Poppy_Porpoise-0.72-L3-8B model|N
featherless/Hermes-2-Theta-Llama-3-8B|hermes-2-theta-llama-3-8b|NousResearch/Hermes-2-Theta-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|NousResearch/Hermes-2-Theta-Llama-3-8B model|N
featherless/llama-3-typhoon-v1.5-8b|llama-3-typhoon-v1.5-8b|scb10x/llama-3-typhoon-v1.5-8b|C|1.0,5.0|8192,4096|V|-|scb10x/llama-3-typhoon-v1.5-8b model|N
featherless/llama-3-typhoon-v1.5-8b-instruct|llama-3-typhoon-v1.5-8b-instruct|scb10x/llama-3-typhoon-v1.5-8b-instruct|C|1.0,5.0|8192,4096|V|-|scb10x/llama-3-typhoon-v1.5-8b-instruct model|N
featherless/llama3-8B-slerp-med-262k|llama3-8b-slerp-med-262k|shanchen/llama3-8B-slerp-med-262k|C|1.0,5.0|8192,4096|-|-|shanchen/llama3-8B-slerp-med-262k model|N
featherless/llama3-8B-slerp-med-chinese|llama3-8b-slerp-med-chinese|shanchen/llama3-8B-slerp-med-chinese|C|1.0,5.0|8192,4096|-|-|shanchen/llama3-8B-slerp-med-chinese model|N
featherless/LLaMAntino-3-ANITA-8B-Inst-DPO-ITA|llamantino-3-anita-8b-inst-dpo-ita|swap-uniba/LLaMAntino-3-ANITA-8B-Inst-DPO-ITA|C|1.0,5.0|8192,4096|-|-|swap-uniba/LLaMAntino-3-ANITA-8B-Inst-DPO-ITA model|N
featherless/llama-3-8b-Instruct|llama-3-8b-instruct|unsloth/llama-3-8b-Instruct|C|1.0,5.0|8192,4096|-|,,,2.1,,24.0,,,,|unsloth/llama-3-8b-Instruct model|N
featherless/WiNGPT2-Llama-3-8B-Chat|wingpt2-llama-3-8b-chat|winninghealth/WiNGPT2-Llama-3-8B-Chat|C|1.0,5.0|8192,4096|-|-|winninghealth/WiNGPT2-Llama-3-8B-Chat model|N
featherless/llama-3-8b-quantized|llama-3-8b-quantized|SweatyCrayfish/llama-3-8b-quantized|C|1.0,5.0|8192,4096|-|-|SweatyCrayfish/llama-3-8b-quantized model|N
featherless/saiga_llama3_8b|saiga_llama3_8b|IlyaGusev/saiga_llama3_8b|C|1.0,5.0|8192,4096|-|-|IlyaGusev/saiga_llama3_8b model|N
featherless/Llama-3-8b-Ita|llama-3-8b-ita|DeepMount00/Llama-3-8b-Ita|C|1.0,5.0|8192,4096|-|-|DeepMount00/Llama-3-8b-Ita model|N
featherless/Uncensored-Frank-Llama-3-8B|uncensored-frank-llama-3-8b|ajibawa-2023/Uncensored-Frank-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|ajibawa-2023/Uncensored-Frank-Llama-3-8B model|N
featherless/Pantheon-RP-1.0-8b-Llama-3|pantheon-rp-1.0-8b-llama-3|Gryphe/Pantheon-RP-1.0-8b-Llama-3|C|1.0,5.0|8192,4096|-|-|Gryphe/Pantheon-RP-1.0-8b-Llama-3 model|N
featherless/llama-3-chinese-8b-instruct-v2|llama-3-chinese-8b-instruct|hfl/llama-3-chinese-8b-instruct-v2|C|1.0,5.0|8192,4096|V|-|hfl/llama-3-chinese-8b-instruct-v2 model|N
featherless/JSL-MedLlama-3-8B-v2.0|jsl-medllama-3-8b|johnsnowlabs/JSL-MedLlama-3-8B-v2.0|C|1.0,5.0|8192,4096|V|-|johnsnowlabs/JSL-MedLlama-3-8B-v2.0 model|N
featherless/Llama-3-Base-8B-SFT|llama-3-base-8b-sft|princeton-nlp/Llama-3-Base-8B-SFT|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT model|N
featherless/Medichat-Llama3-8B|medichat-llama3-8b|sethuiyer/Medichat-Llama3-8B|C|1.0,5.0|8192,4096|-|-|sethuiyer/Medichat-Llama3-8B model|N
featherless/I-SOLAR-10.7B-dpo-sft-v0.1|i-solar-10.7b-dpo-sft|12thD/I-SOLAR-10.7B-dpo-sft-v0.1|C|1.0,5.0|4096,4096|V|-|12thD/I-SOLAR-10.7B-dpo-sft-v0.1 model|N
featherless/I-SOLAR-10.7B-dpo-sft-v0.2|i-solar-10.7b-dpo-sft|12thD/I-SOLAR-10.7B-dpo-sft-v0.2|C|1.0,5.0|4096,4096|V|-|12thD/I-SOLAR-10.7B-dpo-sft-v0.2 model|N
featherless/I-SOLAR-10.7B-sft-v0.1|i-solar-10.7b-sft|12thD/I-SOLAR-10.7B-sft-v0.1|C|1.0,5.0|4096,4096|V|-|12thD/I-SOLAR-10.7B-sft-v0.1 model|N
featherless/Silver-Sun-11B|silver-sun-11b|ABX-AI/Silver-Sun-11B|C|1.0,5.0|4096,4096|-|-|ABX-AI/Silver-Sun-11B model|N
featherless/Silver-Sun-v2-11B|silver-sun-v2-11b|ABX-AI/Silver-Sun-v2-11B|C|1.0,5.0|4096,4096|V|-|ABX-AI/Silver-Sun-v2-11B model|N
featherless/SOLAR-10.7b-ko-Y24_v0.1|solar-10.7b-ko-y24_v0.1|AIdenU/SOLAR-10.7b-ko-Y24_v0.1|C|1.0,5.0|4096,4096|-|-|AIdenU/SOLAR-10.7b-ko-Y24_v0.1 model|N
featherless/SOLAR-10.7b-ko-Y24_v1.0|solar-10.7b-ko-y24_v1.0|AIdenU/SOLAR-10.7b-ko-Y24_v1.0|C|1.0,5.0|4096,4096|-|-|AIdenU/SOLAR-10.7b-ko-Y24_v1.0 model|N
featherless/test_wanda_240109|test_wanda_240109|alnrg2arg/test_wanda_240109|C|1.0,5.0|4096,4096|-|-|alnrg2arg/test_wanda_240109 model|N
featherless/SOLAR-10B-OrcaDPO-Jawade|solar-10b-orcadpo-jawade|bhavinjawade/SOLAR-10B-OrcaDPO-Jawade|C|1.0,5.0|4096,4096|-|-|bhavinjawade/SOLAR-10B-OrcaDPO-Jawade model|N
featherless/k2s3_test_0002|k2s3_test_0002|Byungchae/k2s3_test_0002|C|1.0,5.0|4096,4096|-|-|Byungchae/k2s3_test_0002 model|N
featherless/SOLAR-10.7B-Instruct-v1.0-128k|solar-10.7b-instruct-v1.0-128k|CallComply/SOLAR-10.7B-Instruct-v1.0-128k|C|1.0,5.0|4096,4096|V|-|CallComply/SOLAR-10.7B-Instruct-v1.0-128k model|N
featherless/solar_test_240517_16bit|solar_test_240517_16bit|Chan2chan1/solar_test_240517_16bit|C|1.0,5.0|4096,4096|-|-|Chan2chan1/solar_test_240517_16bit model|N
featherless/K2S3-SOLAR-11b-v3.0|k2s3-solar-11b|Changgil/K2S3-SOLAR-11b-v3.0|C|1.0,5.0|4096,4096|V|-|Changgil/K2S3-SOLAR-11b-v3.0 model|N
featherless/K2S3-SOLAR-11b-v4.0|k2s3-solar-11b|Changgil/K2S3-SOLAR-11b-v4.0|C|1.0,5.0|4096,4096|V|-|Changgil/K2S3-SOLAR-11b-v4.0 model|N
featherless/Kimiko-10.7B-v3|kimiko-10.7b|Chat-Error/Kimiko-10.7B-v3|C|1.0,5.0|4096,4096|V|-|Chat-Error/Kimiko-10.7B-v3 model|N
featherless/T3Q-ko-solar-dpo-v1.0|t3q-ko-solar-dpo|chihoonlee10/T3Q-ko-solar-dpo-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-ko-solar-dpo-v1.0 model|N
featherless/T3Q-ko-solar-dpo-v3.0|t3q-ko-solar-dpo|chihoonlee10/T3Q-ko-solar-dpo-v3.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-ko-solar-dpo-v3.0 model|N
featherless/T3Q-ko-solar-dpo-v7.0|t3q-ko-solar-dpo|chihoonlee10/T3Q-ko-solar-dpo-v7.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-ko-solar-dpo-v7.0 model|N
featherless/T3Q-ko-solar-sft-dpo-v1.0|t3q-ko-solar-sft-dpo|chihoonlee10/T3Q-ko-solar-sft-dpo-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-ko-solar-sft-dpo-v1.0 model|N
featherless/T3Q-LLM-MG-DPO-v1.0|t3q-llm-mg-dpo|chihoonlee10/T3Q-LLM-MG-DPO-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-LLM-MG-DPO-v1.0 model|N
featherless/Underground|underground|ClaudioItaly/Underground|C|1.0,5.0|4096,4096|-|-|ClaudioItaly/Underground model|N
featherless/solar-sft-qlora|solar-sft-qlora|cockroach54/solar-sft-qlora|C|1.0,5.0|4096,4096|-|-|cockroach54/solar-sft-qlora model|N
featherless/nox-solar-10.7b-v2|nox-solar-10.7b|davidkim205/nox-solar-10.7b-v2|C|1.0,5.0|4096,4096|V|-|davidkim205/nox-solar-10.7b-v2 model|N
featherless/nox-solar-10.7b-v4|nox-solar-10.7b|davidkim205/nox-solar-10.7b-v4|C|1.0,5.0|4096,4096|V|-|davidkim205/nox-solar-10.7b-v4 model|N
featherless/deep-solar-Rev-v2.0.4|deep-solar-rev-v2.0.4|Deepnoid/deep-solar-Rev-v2.0.4|C|1.0,5.0|4096,4096|V|-|Deepnoid/deep-solar-Rev-v2.0.4 model|N
featherless/deep-solar-Rev-v3.0.4|deep-solar-rev-v3.0.4|Deepnoid/deep-solar-Rev-v3.0.4|C|1.0,5.0|4096,4096|V|-|Deepnoid/deep-solar-Rev-v3.0.4 model|N
featherless/deep-solar-v2.0.7|deep-solar-v2.0.7|Deepnoid/deep-solar-v2.0.7|C|1.0,5.0|4096,4096|V|-|Deepnoid/deep-solar-v2.0.7 model|N
featherless/DataVortexS-10.7B-dpo-v1.0|datavortexs-10.7b-dpo|Edentns/DataVortexS-10.7B-dpo-v1.0|C|1.0,5.0|4096,4096|V|-|Edentns/DataVortexS-10.7B-dpo-v1.0 model|N
featherless/DataVortexS-10.7B-dpo-v1.2|datavortexs-10.7b-dpo|Edentns/DataVortexS-10.7B-dpo-v1.2|C|1.0,5.0|4096,4096|V|-|Edentns/DataVortexS-10.7B-dpo-v1.2 model|N
featherless/DataVortexS-10.7B-dpo-v1.5|datavortexs-10.7b-dpo|Edentns/DataVortexS-10.7B-dpo-v1.5|C|1.0,5.0|4096,4096|V|-|Edentns/DataVortexS-10.7B-dpo-v1.5 model|N
featherless/DataVortexS-10.7B-dpo-v1.8|datavortexs-10.7b-dpo|Edentns/DataVortexS-10.7B-dpo-v1.8|C|1.0,5.0|4096,4096|V|-|Edentns/DataVortexS-10.7B-dpo-v1.8 model|N
featherless/DataVortexS-10.7B-v1.0|datavortexs-10.7b|Edentns/DataVortexS-10.7B-v1.0|C|1.0,5.0|4096,4096|V|-|Edentns/DataVortexS-10.7B-v1.0 model|N
featherless/deepnoid_DPOv3|deepnoid_dpov3|ENERGY-DRINK-LOVE/deepnoid_DPOv3|C|1.0,5.0|4096,4096|-|-|ENERGY-DRINK-LOVE/deepnoid_DPOv3 model|N
featherless/nox_DPOv3|nox_dpov3|ENERGY-DRINK-LOVE/nox_DPOv3|C|1.0,5.0|4096,4096|-|-|ENERGY-DRINK-LOVE/nox_DPOv3 model|N
featherless/SOLAR_merge_DPOv3|solar_merge_dpov3|ENERGY-DRINK-LOVE/SOLAR_merge_DPOv3|C|1.0,5.0|4096,4096|-|-|ENERGY-DRINK-LOVE/SOLAR_merge_DPOv3 model|N
featherless/SOLAR-10.7B-merge-dpo|solar-10.7b-merge-dpo|etri-xainlp/SOLAR-10.7B-merge-dpo|C|1.0,5.0|4096,4096|-|-|etri-xainlp/SOLAR-10.7B-merge-dpo model|N
featherless/SOLAR-10.7B-merge-dpo_v1|solar-10.7b-merge-dpo_v1|etri-xainlp/SOLAR-10.7B-merge-dpo_v1|C|1.0,5.0|4096,4096|-|-|etri-xainlp/SOLAR-10.7B-merge-dpo_v1 model|N
featherless/SOLAR-10.7B-sft-dpo-v1|solar-10.7b-sft-dpo|etri-xainlp/SOLAR-10.7B-sft-dpo-v1|C|1.0,5.0|4096,4096|V|-|etri-xainlp/SOLAR-10.7B-sft-dpo-v1 model|N
featherless/free-solar-evo-v0.1|free-solar-evo|freewheelin/free-solar-evo-v0.1|C|1.0,5.0|4096,4096|V|-|freewheelin/free-solar-evo-v0.1 model|N
featherless/free-solar-evo-v0.11|free-solar-evo|freewheelin/free-solar-evo-v0.11|C|1.0,5.0|4096,4096|V|-|freewheelin/free-solar-evo-v0.11 model|N
featherless/free-solar-evo-v0.13|free-solar-evo|freewheelin/free-solar-evo-v0.13|C|1.0,5.0|4096,4096|V|-|freewheelin/free-solar-evo-v0.13 model|N
featherless/linear-merge|linear-merge|hchung1017/linear-merge|C|1.0,5.0|4096,4096|-|-|hchung1017/linear-merge model|N
featherless/kullm-solar|kullm-solar|heavytail/kullm-solar|C|1.0,5.0|4096,4096|-|-|heavytail/kullm-solar model|N
featherless/kullm-solar-S|kullm-solar-s|heavytail/kullm-solar-S|C|1.0,5.0|4096,4096|-|-|heavytail/kullm-solar-S model|N
featherless/Kaiju-11B|kaiju-11b|Himitsui/Kaiju-11B|C|1.0,5.0|4096,4096|-|-|Himitsui/Kaiju-11B model|N
featherless/hk-SOLAR-10.7B-v1.4|hk-solar-10.7b|hkss/hk-SOLAR-10.7B-v1.4|C|1.0,5.0|4096,4096|V|-|hkss/hk-SOLAR-10.7B-v1.4 model|N
featherless/S-SOLAR-10.7B-v1.4|s-solar-10.7b|hwkwon/S-SOLAR-10.7B-v1.4|C|1.0,5.0|4096,4096|V|-|hwkwon/S-SOLAR-10.7B-v1.4 model|N
featherless/hkcode-solar-youtube-merged|hkcode-solar-youtube-merged|hyokwan/hkcode-solar-youtube-merged|C|1.0,5.0|4096,4096|-|-|hyokwan/hkcode-solar-youtube-merged model|N
featherless/ft-solar-10.7b-v2.1-dpo|ft-solar-10.7b-v2.1-dpo|ifuseok/ft-solar-10.7b-v2.1-dpo|C|1.0,5.0|4096,4096|V|-|ifuseok/ft-solar-10.7b-v2.1-dpo model|N
featherless/sft-solar-10.7b-v1.1|sft-solar-10.7b|ifuseok/sft-solar-10.7b-v1.1|C|1.0,5.0|4096,4096|V|-|ifuseok/sft-solar-10.7b-v1.1 model|N
featherless/M-SOLAR-10.7B-v1.0|m-solar-10.7b|jjourney1125/M-SOLAR-10.7B-v1.0|C|1.0,5.0|4096,4096|V|-|jjourney1125/M-SOLAR-10.7B-v1.0 model|N
featherless/Sakura-SOLAR-Instruct|sakura-solar-instruct|kyujinpy/Sakura-SOLAR-Instruct|C|1.0,5.0|4096,4096|-|-|kyujinpy/Sakura-SOLAR-Instruct model|N
featherless/Sakura-SOLAR-Instruct-DPO-v2|sakura-solar-instruct-dpo|kyujinpy/Sakura-SOLAR-Instruct-DPO-v2|C|1.0,5.0|4096,4096|V|-|kyujinpy/Sakura-SOLAR-Instruct-DPO-v2 model|N
featherless/Sakura-SOLRCA-Math-Instruct-DPO-v1|sakura-solrca-math-instruct-dpo|kyujinpy/Sakura-SOLRCA-Math-Instruct-DPO-v1|C|1.0,5.0|4096,4096|V|-|kyujinpy/Sakura-SOLRCA-Math-Instruct-DPO-v1 model|N
featherless/solar-megamerge-dare-10.7b-v1|solar-megamerge-dare-10.7b|martyn/solar-megamerge-dare-10.7b-v1|C|1.0,5.0|4096,4096|V|-|martyn/solar-megamerge-dare-10.7b-v1 model|N
featherless/M-SOLAR-10.7B-v1.1-beta|m-solar-10.7b-v1.1-beta|megastudyedu/M-SOLAR-10.7B-v1.1-beta|C|1.0,5.0|4096,4096|V|-|megastudyedu/M-SOLAR-10.7B-v1.1-beta model|N
featherless/M-SOLAR-10.7B-v1.3|m-solar-10.7b|megastudyedu/M-SOLAR-10.7B-v1.3|C|1.0,5.0|4096,4096|V|-|megastudyedu/M-SOLAR-10.7B-v1.3 model|N
featherless/M-SOLAR-10.7B-v1.3-dpo|m-solar-10.7b-v1.3-dpo|megastudyedu/M-SOLAR-10.7B-v1.3-dpo|C|1.0,5.0|4096,4096|V|-|megastudyedu/M-SOLAR-10.7B-v1.3-dpo model|N
featherless/Fimburs11V3|fimburs11v3|mergekit-community/Fimburs11V3|C|1.0,5.0|4096,4096|-|-|mergekit-community/Fimburs11V3 model|N
featherless/Myrrh_solar_10.7b_3.0|myrrh_solar_10.7b_3.0|MoaData/Myrrh_solar_10.7b_3.0|C|1.0,5.0|4096,4096|-|-|MoaData/Myrrh_solar_10.7b_3.0 model|N
featherless/upstage-SOLAR-10.7B-v1.0-classification-with-mixtral-explanation-3-epochs-finetuned|-|mtc/upstage-SOLAR-10.7B-v1.0-classification-with-mixtral-explanation-3-epochs-finetuned|C|1.0,5.0|4096,4096|V|-|mtc/upstage-SOLAR-10.7B-v1.0-classification-with-mixtral-explanation-3-epochs-finetuned model|N
featherless/KULLM3|kullm3|nlpai-lab/KULLM3|C|1.0,5.0|4096,4096|-|-|nlpai-lab/KULLM3 model|N
featherless/chucklesFimbulvetrSFTmerged|chucklesfimbulvetrsftmerged|patruff/chucklesFimbulvetrSFTmerged|C|1.0,5.0|4096,4096|-|-|patruff/chucklesFimbulvetrSFTmerged model|N
featherless/SOLAR-tail-10.7B-Merge-v1.0|solar-tail-10.7b-merge|PracticeLLM/SOLAR-tail-10.7B-Merge-v1.0|C|1.0,5.0|4096,4096|V|-|PracticeLLM/SOLAR-tail-10.7B-Merge-v1.0 model|N
featherless/ruadapt_solar_10.7_part2_v5_as1.5|ruadapt_solar_10.7_part2_v5_as1.5|RefalMachine/ruadapt_solar_10.7_part2_v5_as1.5|C|1.0,5.0|4096,4096|-|-|RefalMachine/ruadapt_solar_10.7_part2_v5_as1.5 model|N
featherless/KoSOLAR-10.7B-v2.1|kosolar-10.7b|rrw-x2/KoSOLAR-10.7B-v2.1|C|1.0,5.0|4096,4096|V|-|rrw-x2/KoSOLAR-10.7B-v2.1 model|N
featherless/hansoldeco-SOLAR-10.7B|hansoldeco-solar-10.7b|sosoai/hansoldeco-SOLAR-10.7B|C|1.0,5.0|4096,4096|-|-|sosoai/hansoldeco-SOLAR-10.7B model|N
featherless/T3Q-LLM2-CV-v1.0|t3q-llm2-cv|T3Q-LLM/T3Q-LLM2-CV-v1.0|C|1.0,5.0|4096,4096|V|-|T3Q-LLM/T3Q-LLM2-CV-v1.0 model|N
featherless/SOLAR-10.7B-Instruct-v1.0|solar-10.7b-instruct|upstage/SOLAR-10.7B-Instruct-v1.0|C|1.0,5.0|4096,4096|V|-|upstage/SOLAR-10.7B-Instruct-v1.0 model|N
featherless/SOLAR-10.7B-v1.0|solar-10.7b|upstage/SOLAR-10.7B-v1.0|C|1.0,5.0|4096,4096|V|-|upstage/SOLAR-10.7B-v1.0 model|N
featherless/ConfigurableSOLAR-10.7B|configurablesolar-10.7b|vicgalle/ConfigurableSOLAR-10.7B|C|1.0,5.0|4096,4096|-|-|vicgalle/ConfigurableSOLAR-10.7B model|N
featherless/SOLAR-10.7B-orca-alpaca-gpt4-math|solar-10.7b-orca-alpaca-gpt4-math|We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-math|C|1.0,5.0|4096,4096|-|-|We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-math model|N
featherless/LMCocktail-10.7B-v1|lmcocktail-10.7b|Yhyu13/LMCocktail-10.7B-v1|C|1.0,5.0|4096,4096|V|-|Yhyu13/LMCocktail-10.7B-v1 model|N
featherless/M-SOLAR-10.7B-v1.4-dpo|m-solar-10.7b-v1.4-dpo|megastudyedu/M-SOLAR-10.7B-v1.4-dpo|C|1.0,5.0|4096,4096|V|-|megastudyedu/M-SOLAR-10.7B-v1.4-dpo model|N
featherless/kiwi_solar_merge_slerp_test_v1|kiwi_solar_merge_slerp_test_v1|genne/kiwi_solar_merge_slerp_test_v1|C|1.0,5.0|4096,4096|-|-|genne/kiwi_solar_merge_slerp_test_v1 model|N
featherless/M-SOLAR-10.7B-v1.2|m-solar-10.7b|megastudyedu/M-SOLAR-10.7B-v1.2|C|1.0,5.0|4096,4096|V|-|megastudyedu/M-SOLAR-10.7B-v1.2 model|N
featherless/kosolar_4.1_sft|kosolar_4.1_sft|spow12/kosolar_4.1_sft|C|1.0,5.0|4096,4096|-|-|spow12/kosolar_4.1_sft model|N
featherless/SOLAR-10.7B-orca-alpaca-gpt4-lora-653|solar-10.7b-orca-alpaca-gpt4-lora-653|We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-lora-653|C|1.0,5.0|4096,4096|-|-|We-Want-GPU/SOLAR-10.7B-orca-alpaca-gpt4-lora-653 model|N
featherless/sft-solar-10.7b-v1|sft-solar-10.7b|ifuseok/sft-solar-10.7b-v1|C|1.0,5.0|4096,4096|V|-|ifuseok/sft-solar-10.7b-v1 model|N
featherless/Moistral-11B-v3|moistral-11b|TheDrummer/Moistral-11B-v3|C|1.0,5.0|4096,4096|V|-|TheDrummer/Moistral-11B-v3 model|N
featherless/Meta-Llama-3-70B-Instruct-abliterated-v3.5|meta-llama-3-70b-instruct-abliterated|failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5|C|1.0,5.0|8192,4096|V|-|failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5 model|N
featherless/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|NousResearch/Meta-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|NousResearch/Meta-Llama-3-70B-Instruct model|N
featherless/Qwen2-72B-Instruct|qwen2-72b-instruct|Qwen/Qwen2-72B-Instruct|C|1.0,5.0|131072,4096|-|82.4,,39.1,40.8,,,,,,|Qwen/Qwen2-72B-Instruct model|N
featherless/Nous-Hermes-2-SOLAR-10.7B|nous-hermes-2-solar-10.7b|NousResearch/Nous-Hermes-2-SOLAR-10.7B|C|1.0,5.0|4096,4096|-|-|NousResearch/Nous-Hermes-2-SOLAR-10.7B model|N
featherless/Smaug-Llama-3-70B-Instruct|smaug-llama-3-70b-instruct|abacusai/Smaug-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|-|abacusai/Smaug-Llama-3-70B-Instruct model|N
featherless/Hermes-2-Theta-Llama-3-70B|hermes-2-theta-llama-3-70b|NousResearch/Hermes-2-Theta-Llama-3-70B|C|1.0,5.0|8192,4096|-|,,22.7,37.5,,,,,,|NousResearch/Hermes-2-Theta-Llama-3-70B model|N
featherless/L3-MS-Astoria-70b|l3-ms-astoria-70b|Steelskull/L3-MS-Astoria-70b|C|1.0,5.0|8192,4096|-|-|Steelskull/L3-MS-Astoria-70b model|N
featherless/Llama3-ChatQA-1.5-70B|llama3-chatqa-1.5-70b|nvidia/Llama3-ChatQA-1.5-70B|C|1.0,5.0|8192,4096|-|-|nvidia/Llama3-ChatQA-1.5-70B model|N
featherless/llama-3-70B-uncensored|llama-3-70b-uncensored|Dogge/llama-3-70B-uncensored|C|1.0,5.0|8192,4096|-|-|Dogge/llama-3-70B-uncensored model|N
featherless/llama-3-70B-Instruct-abliterated|llama-3-70b-instruct-abliterated|failspy/llama-3-70B-Instruct-abliterated|C|1.0,5.0|8192,4096|-|-|failspy/llama-3-70B-Instruct-abliterated model|N
featherless/Llama3-70B-Orion-Chinese|llama3-70b-orion-chinese|Orion-zhen/Llama3-70B-Orion-Chinese|C|1.0,5.0|8192,4096|-|-|Orion-zhen/Llama3-70B-Orion-Chinese model|N
featherless/Llama-3-70b-Arimas-story-RP-V2.0|llama-3-70b-arimas-story-rp|ryzen88/Llama-3-70b-Arimas-story-RP-V2.0|C|1.0,5.0|8192,4096|V|-|ryzen88/Llama-3-70b-Arimas-story-RP-V2.0 model|N
featherless/Llama-3-SauerkrautLM-70b-Instruct|llama-3-sauerkrautlm-70b-instruct|VAGOsolutions/Llama-3-SauerkrautLM-70b-Instruct|C|1.0,5.0|8192,4096|-|-|VAGOsolutions/Llama-3-SauerkrautLM-70b-Instruct model|N
featherless/Llama3-TenyxChat-70B|llama3-tenyxchat-70b|tenyx/Llama3-TenyxChat-70B|C|1.0,5.0|8192,4096|-|-|tenyx/Llama3-TenyxChat-70B model|N
featherless/Llama-3-70B-Instruct-Storywriter|llama-3-70b-instruct-storywriter|tdrussell/Llama-3-70B-Instruct-Storywriter|C|1.0,5.0|8192,4096|-|-|tdrussell/Llama-3-70B-Instruct-Storywriter model|N
featherless/openbuddy-llama3-70b-v21.2-32k|openbuddy-llama3-70b-v21.2-32k|OpenBuddy/openbuddy-llama3-70b-v21.2-32k|C|1.0,5.0|8192,4096|V|-|OpenBuddy/openbuddy-llama3-70b-v21.2-32k model|N
featherless/Llama-3-Lumimaid-70B-v0.1|llama-3-lumimaid-70b|NeverSleep/Llama-3-Lumimaid-70B-v0.1|C|1.0,5.0|8192,4096|V|-|NeverSleep/Llama-3-Lumimaid-70B-v0.1 model|N
featherless/Llama-3-Lumimaid-70B-v0.1-alt|llama-3-lumimaid-70b-v0.1-alt|NeverSleep/Llama-3-Lumimaid-70B-v0.1-alt|C|1.0,5.0|8192,4096|V|-|NeverSleep/Llama-3-Lumimaid-70B-v0.1-alt model|N
featherless/Llama-3-Lumimaid-70B-v0.1-OAS|llama-3-lumimaid-70b-v0.1-oas|NeverSleep/Llama-3-Lumimaid-70B-v0.1-OAS|C|1.0,5.0|8192,4096|V|-|NeverSleep/Llama-3-Lumimaid-70B-v0.1-OAS model|N
featherless/dolphin-2.9.2-qwen2-72b|dolphin-2.9.2-qwen2-72b|dphn/dolphin-2.9.2-qwen2-72b|C|1.0,5.0|131072,4096|-|-|dphn/dolphin-2.9.2-qwen2-72b model|N
featherless/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|meta-llama/Meta-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|meta-llama/Meta-Llama-3-70B-Instruct model|N
featherless/Smaug-Qwen2-72B-Instruct|smaug-qwen2-72b-instruct|abacusai/Smaug-Qwen2-72B-Instruct|C|1.0,5.0|131072,4096|-|-|abacusai/Smaug-Qwen2-72B-Instruct model|N
featherless/Qwen2-72B|qwen2-72b|Qwen/Qwen2-72B|C|1.0,5.0|131072,4096|-|82.4,,39.1,40.8,,,,,,|Qwen/Qwen2-72B model|N
featherless/Llama-2-13b-hf|llama-2-13b-hf|NousResearch/Llama-2-13b-hf|C|1.0,5.0|4096,4096|-|47.3,,,,,,,,,|NousResearch/Llama-2-13b-hf model|N
featherless/Nous-Hermes-Llama2-13b|nous-hermes-llama2-13b|NousResearch/Nous-Hermes-Llama2-13b|C|1.0,5.0|4096,4096|-|-|NousResearch/Nous-Hermes-Llama2-13b model|N
featherless/LLaMA2-13B-Tiefighter|llama2-13b-tiefighter|KoboldAI/LLaMA2-13B-Tiefighter|C|1.0,5.0|4096,4096|-|-|KoboldAI/LLaMA2-13B-Tiefighter model|N
featherless/MythoMax-L2-13b|mythomax-l2-13b|Gryphe/MythoMax-L2-13b|C|1.0,5.0|4096,4096|-|-|Gryphe/MythoMax-L2-13b model|N
featherless/airoboros-l2-13b-gpt4-2.0|airoboros-l2-13b-gpt4-2.0|jondurbin/airoboros-l2-13b-gpt4-2.0|C|1.0,5.0|4096,4096|-|-|jondurbin/airoboros-l2-13b-gpt4-2.0 model|N
featherless/vicuna-13b-v1.5|vicuna-13b|lmsys/vicuna-13b-v1.5|C|1.0,5.0|4096,4096|V|-|lmsys/vicuna-13b-v1.5 model|N
featherless/airoboros-l2-13b-2.1|airoboros-l2-13b-2.1|jondurbin/airoboros-l2-13b-2.1|C|1.0,5.0|4096,4096|-|-|jondurbin/airoboros-l2-13b-2.1 model|N
featherless/ReMM-v2.2-L2-13B|remm-v2.2-l2-13b|Undi95/ReMM-v2.2-L2-13B|C|1.0,5.0|4096,4096|V|-|Undi95/ReMM-v2.2-L2-13B model|N
featherless/ReMM-SLERP-L2-13B|remm-slerp-l2-13b|Undi95/ReMM-SLERP-L2-13B|C|1.0,5.0|4096,4096|-|-|Undi95/ReMM-SLERP-L2-13B model|N
featherless/CalliopeDS-L2-13B|calliopeds-l2-13b|DS-Archive/CalliopeDS-L2-13B|C|1.0,5.0|4096,4096|-|-|DS-Archive/CalliopeDS-L2-13B model|N
featherless/New-Dawn-Llama-3-70B-32K-v1.0|new-dawn-llama-3-70b-32k|sophosympatheia/New-Dawn-Llama-3-70B-32K-v1.0|C|1.0,5.0|8192,4096|V|-|sophosympatheia/New-Dawn-Llama-3-70B-32K-v1.0 model|N
featherless/L3-8B-Lunaris-v1|l3-8b-lunaris|Sao10K/L3-8B-Lunaris-v1|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-8B-Lunaris-v1 model|N
featherless/Llama-3-ELYZA-JP-8B|llama-3-elyza-jp-8b|elyza/Llama-3-ELYZA-JP-8B|C|1.0,5.0|8192,4096|-|-|elyza/Llama-3-ELYZA-JP-8B model|N
featherless/llama-3-Korean-Bllossom-8B|llama-3-korean-bllossom-8b|MLP-KTLim/llama-3-Korean-Bllossom-8B|C|1.0,5.0|8192,4096|-|-|MLP-KTLim/llama-3-Korean-Bllossom-8B model|N
featherless/llama3-turbcat-instruct-8b|llama3-turbcat-instruct-8b|turboderp/llama3-turbcat-instruct-8b|C|1.0,5.0|8192,4096|-|-|turboderp/llama3-turbcat-instruct-8b model|N
featherless/NeuralDaredevil-7B|neuraldaredevil-7b|mlabonne/NeuralDaredevil-7B|C|1.0,5.0|8192,4096|-|-|mlabonne/NeuralDaredevil-7B model|N
featherless/zephyr-7b-beta|zephyr-7b-beta|HuggingFaceH4/zephyr-7b-beta|C|1.0,5.0|8192,4096|-|-|HuggingFaceH4/zephyr-7b-beta model|N
featherless/zephyr-7b-alpha|zephyr-7b-alpha|HuggingFaceH4/zephyr-7b-alpha|C|1.0,5.0|8192,4096|-|-|HuggingFaceH4/zephyr-7b-alpha model|N
featherless/zephyr-speakleash-010-pl-3072-32-16-0.01|-|Nondzu/zephyr-speakleash-010-pl-3072-32-16-0.01|C|1.0,5.0|8192,4096|-|-|Nondzu/zephyr-speakleash-010-pl-3072-32-16-0.01 model|N
featherless/GritLM-7B|gritlm-7b|GritLM/GritLM-7B|C|1.0,5.0|8192,4096|-|-|GritLM/GritLM-7B model|N
featherless/Mistral-7B-v0.2|mistral-7b|mistral-community/Mistral-7B-v0.2|C|1.0,5.0|8192,4096|V|62.5,,,,,,,,,|mistral-community/Mistral-7B-v0.2 model|N
featherless/zephyr-speakleash-007-pl-8192-32-16-0.05|-|Nondzu/zephyr-speakleash-007-pl-8192-32-16-0.05|C|1.0,5.0|8192,4096|-|-|Nondzu/zephyr-speakleash-007-pl-8192-32-16-0.05 model|N
featherless/shisa-gamma-7b-v1|shisa-gamma-7b|augmxnt/shisa-gamma-7b-v1|C|1.0,5.0|8192,4096|V|-|augmxnt/shisa-gamma-7b-v1 model|N
featherless/zephyr-7b-sft-full|zephyr-7b-sft-full|alignment-handbook/zephyr-7b-sft-full|C|1.0,5.0|8192,4096|-|-|alignment-handbook/zephyr-7b-sft-full model|N
featherless/Bielik-7B-Instruct-v0.1|bielik-7b-instruct|speakleash/Bielik-7B-Instruct-v0.1|C|1.0,5.0|8192,4096|V|-|speakleash/Bielik-7B-Instruct-v0.1 model|N
featherless/Delexa-7b|delexa-7b|lex-hue/Delexa-7b|C|1.0,5.0|8192,4096|-|-|lex-hue/Delexa-7b model|N
featherless/model_s9_7b_13|model_s9_7b_13|CognitoLibera2/model_s9_7b_13|C|1.0,5.0|8192,4096|-|-|CognitoLibera2/model_s9_7b_13 model|N
featherless/model_s9_7b_10|model_s9_7b_10|CognitoLibera2/model_s9_7b_10|C|1.0,5.0|8192,4096|-|-|CognitoLibera2/model_s9_7b_10 model|N
featherless/WizardLM-2-7B|wizardlm-2-7b|dreamgen/WizardLM-2-7B|C|1.0,5.0|8192,4096|-|-|dreamgen/WizardLM-2-7B model|N
featherless/japanese-stablelm-base-gamma-7b|japanese-stablelm-base-gamma-7b|stabilityai/japanese-stablelm-base-gamma-7b|C|1.0,5.0|8192,4096|-|-|stabilityai/japanese-stablelm-base-gamma-7b model|N
featherless/mistral-7b-nf4-fp16-upscaled|mistral-7b-nf4-fp16-upscaled|arnavgrg/mistral-7b-nf4-fp16-upscaled|C|1.0,5.0|8192,4096|-|-|arnavgrg/mistral-7b-nf4-fp16-upscaled model|N
featherless/NeuralMonarch-7B|neuralmonarch-7b|mlabonne/NeuralMonarch-7B|C|1.0,5.0|8192,4096|-|-|mlabonne/NeuralMonarch-7B model|N
featherless/Mistral-RAG|mistral-rag|DeepMount00/Mistral-RAG|C|1.0,5.0|8192,4096|-|-|DeepMount00/Mistral-RAG model|N
featherless/Mistral-Ita-7b|mistral-ita-7b|DeepMount00/Mistral-Ita-7b|C|1.0,5.0|8192,4096|-|-|DeepMount00/Mistral-Ita-7b model|N
featherless/AlphaMonarch-7B|alphamonarch-7b|mlabonne/AlphaMonarch-7B|C|1.0,5.0|8192,4096|-|-|mlabonne/AlphaMonarch-7B model|N
featherless/neural-chat-7b-v3-1|neural-chat-7b-v3-1|Intel/neural-chat-7b-v3-1|C|1.0,5.0|8192,4096|V|-|Intel/neural-chat-7b-v3-1 model|N
featherless/ZephRP-m7b|zephrp-m7b|royallab/ZephRP-m7b|C|1.0,5.0|8192,4096|-|-|royallab/ZephRP-m7b model|N
featherless/MAmmoTH2-7B-Plus|mammoth2-7b-plus|TIGER-Lab/MAmmoTH2-7B-Plus|C|1.0,5.0|8192,4096|-|-|TIGER-Lab/MAmmoTH2-7B-Plus model|N
featherless/multi_verse_model|multi_verse_model|MTSAIR/multi_verse_model|C|1.0,5.0|8192,4096|-|-|MTSAIR/multi_verse_model model|N
featherless/em_german_leo_mistral|em_german_leo_mistral|jphme/em_german_leo_mistral|C|1.0,5.0|8192,4096|-|-|jphme/em_german_leo_mistral model|N
featherless/BioMistralMerged|biomistralmerged|skfrost19/BioMistralMerged|C|1.0,5.0|8192,4096|-|-|skfrost19/BioMistralMerged model|N
featherless/ghost-7b-alpha|ghost-7b-alpha|ghost-x/ghost-7b-alpha|C|1.0,5.0|8192,4096|-|-|ghost-x/ghost-7b-alpha model|N
featherless/NeuralSynthesis-7b-v0.4-slerp|neuralsynthesis-7b-v0.4-slerp|Kukedlc/NeuralSynthesis-7b-v0.4-slerp|C|1.0,5.0|8192,4096|V|-|Kukedlc/NeuralSynthesis-7b-v0.4-slerp model|N
featherless/Mini_DPO_test02|mini_dpo_test02|Minirecord/Mini_DPO_test02|C|1.0,5.0|8192,4096|-|-|Minirecord/Mini_DPO_test02 model|N
featherless/NeuralSynthesis-7B-v0.1|neuralsynthesis-7b|Kukedlc/NeuralSynthesis-7B-v0.1|C|1.0,5.0|8192,4096|V|-|Kukedlc/NeuralSynthesis-7B-v0.1 model|N
featherless/Mistroll-7B-v2.2|mistroll-7b|BarraHome/Mistroll-7B-v2.2|C|1.0,5.0|8192,4096|V|-|BarraHome/Mistroll-7B-v2.2 model|N
featherless/BioLing-7B-Dare|bioling-7b-dare|johnsnowlabs/BioLing-7B-Dare|C|1.0,5.0|8192,4096|-|-|johnsnowlabs/BioLing-7B-Dare model|N
featherless/Hercules-3.1-Mistral-7B|hercules-3.1-mistral-7b|Locutusque/Hercules-3.1-Mistral-7B|C|1.0,5.0|8192,4096|-|-|Locutusque/Hercules-3.1-Mistral-7B model|N
featherless/Azzurro|azzurro|MoxoffSrL/Azzurro|C|1.0,5.0|8192,4096|-|-|MoxoffSrL/Azzurro model|N
featherless/Bio-Saul-Dolphin-Beagle-Breadcrumbs|bio-saul-dolphin-beagle-breadcrumbs|varox34/Bio-Saul-Dolphin-Beagle-Breadcrumbs|C|1.0,5.0|8192,4096|-|-|varox34/Bio-Saul-Dolphin-Beagle-Breadcrumbs model|N
featherless/Mistral-7B-v0.2-meditron-turkish|mistral-7b-v0.2-meditron-turkish|malhajar/Mistral-7B-v0.2-meditron-turkish|C|1.0,5.0|8192,4096|V|-|malhajar/Mistral-7B-v0.2-meditron-turkish model|N
featherless/NSFW_DPO_Noromaid-7b|nsfw_dpo_noromaid-7b|athirdpath/NSFW_DPO_Noromaid-7b|C|1.0,5.0|8192,4096|-|-|athirdpath/NSFW_DPO_Noromaid-7b model|N
featherless/MegaBeam-Mistral-7B-300k|megabeam-mistral-7b-300k|aws-prototyping/MegaBeam-Mistral-7B-300k|C|1.0,5.0|8192,4096|-|-|aws-prototyping/MegaBeam-Mistral-7B-300k model|N
featherless/Configurable-Mistral-7B|configurable-mistral-7b|vicgalle/Configurable-Mistral-7B|C|1.0,5.0|8192,4096|-|-|vicgalle/Configurable-Mistral-7B model|N
featherless/MD-Judge-v0.1|md-judge|OpenSafetyLab/MD-Judge-v0.1|C|1.0,5.0|8192,4096|V|-|OpenSafetyLab/MD-Judge-v0.1 model|N
featherless/Slerp-CM-mist-dpo|slerp-cm-mist-dpo|abacusai/Slerp-CM-mist-dpo|C|1.0,5.0|8192,4096|-|-|abacusai/Slerp-CM-mist-dpo model|N
featherless/synapsellm-7b-mistral-v0.3-preview|synapsellm-7b-mistral-v0.3-preview|WebraftAI/synapsellm-7b-mistral-v0.3-preview|C|1.0,5.0|8192,4096|V|-|WebraftAI/synapsellm-7b-mistral-v0.3-preview model|N
featherless/MythoMist-7b|mythomist-7b|Gryphe/MythoMist-7b|C|1.0,5.0|8192,4096|-|-|Gryphe/MythoMist-7b model|N
featherless/Mistral-7B-v0.1-flashback-v2|mistral-7b-v0.1-flashback|timpal0l/Mistral-7B-v0.1-flashback-v2|C|1.0,5.0|8192,4096|V|-|timpal0l/Mistral-7B-v0.1-flashback-v2 model|N
featherless/flux-7b-v0.1|flux-7b|chanwit/flux-7b-v0.1|C|1.0,5.0|8192,4096|V|-|chanwit/flux-7b-v0.1 model|N
featherless/Mistral-7B-Instruct-v0.2|mistral-7b-instruct|MaziyarPanahi/Mistral-7B-Instruct-v0.2|C|1.0,5.0|8192,4096|V|62.5,,,,,,,,,|MaziyarPanahi/Mistral-7B-Instruct-v0.2 model|N
featherless/cymist2-v01-SFT|cymist2-v01-sft|cypienai/cymist2-v01-SFT|C|1.0,5.0|8192,4096|V|-|cypienai/cymist2-v01-SFT model|N
featherless/zefiro-7b-dpo-ITA|zefiro-7b-dpo-ita|mii-community/zefiro-7b-dpo-ITA|C|1.0,5.0|8192,4096|-|-|mii-community/zefiro-7b-dpo-ITA model|N
featherless/Spaetzle-v60-7b|spaetzle-v60-7b|cstr/Spaetzle-v60-7b|C|1.0,5.0|8192,4096|V|-|cstr/Spaetzle-v60-7b model|N
featherless/RoMistral-7b-Instruct|romistral-7b-instruct|OpenLLM-Ro/RoMistral-7b-Instruct|C|1.0,5.0|8192,4096|-|-|OpenLLM-Ro/RoMistral-7b-Instruct model|N
featherless/WizardLM-2-7B-abliterated|wizardlm-2-7b-abliterated|fearlessdots/WizardLM-2-7B-abliterated|C|1.0,5.0|8192,4096|-|-|fearlessdots/WizardLM-2-7B-abliterated model|N
featherless/GritLM-7B-KTO|gritlm-7b-kto|GritLM/GritLM-7B-KTO|C|1.0,5.0|8192,4096|-|-|GritLM/GritLM-7B-KTO model|N
featherless/mistral-7B-v0.1|mistral-7b|wons/mistral-7B-v0.1|C|1.0,5.0|8192,4096|V|56.6,,,,,,,,,|wons/mistral-7B-v0.1 model|N
featherless/mistral-orpo-capybara-7k|mistral-orpo-capybara-7k|kaist-ai/mistral-orpo-capybara-7k|C|1.0,5.0|8192,4096|-|-|kaist-ai/mistral-orpo-capybara-7k model|N
featherless/zefiro-7b-beta-ITA-v0.1|zefiro-7b-beta-ita|giux78/zefiro-7b-beta-ITA-v0.1|C|1.0,5.0|8192,4096|V|-|giux78/zefiro-7b-beta-ITA-v0.1 model|N
featherless/zefiro-7b-dpo-qlora-ITA-v0.7|zefiro-7b-dpo-qlora-ita|giux78/zefiro-7b-dpo-qlora-ITA-v0.7|C|1.0,5.0|8192,4096|V|-|giux78/zefiro-7b-dpo-qlora-ITA-v0.7 model|N
featherless/zefiro-7b-sft-qlora-ITA-v0.5|zefiro-7b-sft-qlora-ita|giux78/zefiro-7b-sft-qlora-ITA-v0.5|C|1.0,5.0|8192,4096|V|-|giux78/zefiro-7b-sft-qlora-ITA-v0.5 model|N
featherless/Zion_Alpha|zion_alpha|SicariusSicariiStuff/Zion_Alpha|C|1.0,5.0|8192,4096|-|-|SicariusSicariiStuff/Zion_Alpha model|N
featherless/Zion_Alpha_Instruction_Tuned|zion_alpha_instruction_tuned|SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned|C|1.0,5.0|8192,4096|-|-|SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned model|N
featherless/WestLake-7B-v2-laser-truthy-dpo|westlake-7b-v2-laser-truthy-dpo|macadeliccc/WestLake-7B-v2-laser-truthy-dpo|C|1.0,5.0|8192,4096|V|-|macadeliccc/WestLake-7B-v2-laser-truthy-dpo model|N
featherless/Mistral-7B-code-16k-qlora|mistral-7b-code-16k-qlora|Nondzu/Mistral-7B-code-16k-qlora|C|1.0,5.0|8192,4096|-|-|Nondzu/Mistral-7B-code-16k-qlora model|N
featherless/Mistral-7B-codealpaca-lora|mistral-7b-codealpaca-lora|Nondzu/Mistral-7B-codealpaca-lora|C|1.0,5.0|8192,4096|-|-|Nondzu/Mistral-7B-codealpaca-lora model|N
featherless/TopEvolutionWiz|topevolutionwiz|ClaudioItaly/TopEvolutionWiz|C|1.0,5.0|8192,4096|-|-|ClaudioItaly/TopEvolutionWiz model|N
featherless/zephyr-wizard-kuno-royale-BF16-merge-7B|zephyr-wizard-kuno-royale-bf16-merge-7b|grimjim/zephyr-wizard-kuno-royale-BF16-merge-7B|C|1.0,5.0|8192,4096|-|-|grimjim/zephyr-wizard-kuno-royale-BF16-merge-7B model|N
featherless/rank_zephyr_7b_v1_full|rank_zephyr_7b_v1_full|castorini/rank_zephyr_7b_v1_full|C|1.0,5.0|8192,4096|-|-|castorini/rank_zephyr_7b_v1_full model|N
featherless/Mistral-7B-Erebus-v3|mistral-7b-erebus|KoboldAI/Mistral-7B-Erebus-v3|C|1.0,5.0|8192,4096|V|-|KoboldAI/Mistral-7B-Erebus-v3 model|N
featherless/Zion_Alpha_Instruction_Tuned_SLERP|zion_alpha_instruction_tuned_slerp|SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned_SLERP|C|1.0,5.0|8192,4096|-|-|SicariusSicariiStuff/Zion_Alpha_Instruction_Tuned_SLERP model|N
featherless/Mistral-7B-Holodeck-1|mistral-7b-holodeck-1|KoboldAI/Mistral-7B-Holodeck-1|C|1.0,5.0|8192,4096|-|-|KoboldAI/Mistral-7B-Holodeck-1 model|N
featherless/Configurable-Janus-7B|configurable-janus-7b|vicgalle/Configurable-Janus-7B|C|1.0,5.0|8192,4096|-|-|vicgalle/Configurable-Janus-7B model|N
featherless/mistral-indo-7b|mistral-indo-7b|sarahlintang/mistral-indo-7b|C|1.0,5.0|8192,4096|-|-|sarahlintang/mistral-indo-7b model|N
featherless/Mistral-dolphin-2.8-grok-instract-2-7B-slerp|-|nasiruddin15/Mistral-dolphin-2.8-grok-instract-2-7B-slerp|C|1.0,5.0|8192,4096|-|-|nasiruddin15/Mistral-dolphin-2.8-grok-instract-2-7B-slerp model|N
featherless/Cerebrum-1.0-7b|cerebrum-1.0-7b|AetherResearch/Cerebrum-1.0-7b|C|1.0,5.0|8192,4096|-|-|AetherResearch/Cerebrum-1.0-7b model|N
featherless/Chimera-Apex-7B|chimera-apex-7b|bunnycore/Chimera-Apex-7B|C|1.0,5.0|8192,4096|-|-|bunnycore/Chimera-Apex-7B model|N
featherless/dragonwar-7b-alpha|dragonwar-7b-alpha|maldv/dragonwar-7b-alpha|C|1.0,5.0|8192,4096|-|-|maldv/dragonwar-7b-alpha model|N
featherless/NeuralSynthesis-7B-v0.3|neuralsynthesis-7b|Kukedlc/NeuralSynthesis-7B-v0.3|C|1.0,5.0|8192,4096|V|-|Kukedlc/NeuralSynthesis-7B-v0.3 model|N
featherless/NeuralExperiment-7b-MagicCoder-v7.5|neuralexperiment-7b-magiccoder|Kukedlc/NeuralExperiment-7b-MagicCoder-v7.5|C|1.0,5.0|8192,4096|V|-|Kukedlc/NeuralExperiment-7b-MagicCoder-v7.5 model|N
featherless/MultiverseEx26-7B-slerp|multiverseex26-7b-slerp|allknowingroger/MultiverseEx26-7B-slerp|C|1.0,5.0|8192,4096|-|-|allknowingroger/MultiverseEx26-7B-slerp model|N
featherless/Mistral-CatMacaroni-slerp-uncensored-7B|mistral-catmacaroni-slerp-uncensored-7b|diffnamehard/Mistral-CatMacaroni-slerp-uncensored-7B|C|1.0,5.0|8192,4096|-|-|diffnamehard/Mistral-CatMacaroni-slerp-uncensored-7B model|N
featherless/Delexa-Instruct-V0.1-7b|delexa-instruct-v0.1-7b|lex-hue/Delexa-Instruct-V0.1-7b|C|1.0,5.0|8192,4096|V|-|lex-hue/Delexa-Instruct-V0.1-7b model|N
featherless/Mistral-1-from-Mixtral-8x7B-v0.1|mistral-1-from-mixtral-8x7b|DrNicefellow/Mistral-1-from-Mixtral-8x7B-v0.1|C|1.0,5.0|8192,4096|V|-|DrNicefellow/Mistral-1-from-Mixtral-8x7B-v0.1 model|N
featherless/Arithmo-Wizard-2-7B|arithmo-wizard-2-7b|saucam/Arithmo-Wizard-2-7B|C|1.0,5.0|8192,4096|-|-|saucam/Arithmo-Wizard-2-7B model|N
featherless/Mistral-4-from-Mixtral-8x7B-v0.1|mistral-4-from-mixtral-8x7b|DrNicefellow/Mistral-4-from-Mixtral-8x7B-v0.1|C|1.0,5.0|8192,4096|V|-|DrNicefellow/Mistral-4-from-Mixtral-8x7B-v0.1 model|N
featherless/SwedishBeagle-dare|swedishbeagle-dare|FredrikBL/SwedishBeagle-dare|C|1.0,5.0|8192,4096|-|-|FredrikBL/SwedishBeagle-dare model|N
featherless/Llama3-OpenBioLLM-70B|llama3-openbiollm-70b|aaditya/Llama3-OpenBioLLM-70B|C|1.0,5.0|8192,4096|-|-|aaditya/Llama3-OpenBioLLM-70B model|N
featherless/Meta-Llama-3-70B|meta-llama-3-70b|NousResearch/Meta-Llama-3-70B|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|NousResearch/Meta-Llama-3-70B model|N
featherless/llama-3-70b-fp16|llama-3-70b-fp16|casperhansen/llama-3-70b-fp16|C|1.0,5.0|8192,4096|-|-|casperhansen/llama-3-70b-fp16 model|N
featherless/Llama-3-70B-japanese-suzume-vector-v0.1|llama-3-70b-japanese-suzume-vector|mmnga/Llama-3-70B-japanese-suzume-vector-v0.1|C|1.0,5.0|8192,4096|V|-|mmnga/Llama-3-70B-japanese-suzume-vector-v0.1 model|N
featherless/Smaug-Llama-3-70B-Instruct-abliterated-v3|smaug-llama-3-70b-instruct-abliterated|failspy/Smaug-Llama-3-70B-Instruct-abliterated-v3|C|1.0,5.0|8192,4096|V|-|failspy/Smaug-Llama-3-70B-Instruct-abliterated-v3 model|N
featherless/Llama3-70B-Chinese-Chat|llama3-70b-chinese-chat|shenzhi-wang/Llama3-70B-Chinese-Chat|C|1.0,5.0|8192,4096|-|-|shenzhi-wang/Llama3-70B-Chinese-Chat model|N
featherless/Llama-3-70B-Instruct-Gradient-262k|llama-3-70b-instruct-gradient-262k|gradientai/Llama-3-70B-Instruct-Gradient-262k|C|1.0,5.0|8192,4096|-|-|gradientai/Llama-3-70B-Instruct-Gradient-262k model|N
featherless/Xiangxin-2XL-Chat-1048k-Chinese-Llama3-70B|-|WDKT/Xiangxin-2XL-Chat-1048k-Chinese-Llama3-70B|C|1.0,5.0|8192,4096|-|-|WDKT/Xiangxin-2XL-Chat-1048k-Chinese-Llama3-70B model|N
featherless/Tess-2.0-Llama-3-70B|tess-2.0-llama-3-70b|migtissera/Tess-2.0-Llama-3-70B|C|1.0,5.0|8192,4096|-|-|migtissera/Tess-2.0-Llama-3-70B model|N
featherless/Meta-LLama-3-Cat-Smaug-LLama-70b|meta-llama-3-cat-smaug-llama-70b|gbueno86/Meta-LLama-3-Cat-Smaug-LLama-70b|C|1.0,5.0|8192,4096|-|-|gbueno86/Meta-LLama-3-Cat-Smaug-LLama-70b model|N
featherless/Tess-2.0-Llama-3-70B-v0.2|tess-2.0-llama-3-70b|migtissera/Tess-2.0-Llama-3-70B-v0.2|C|1.0,5.0|8192,4096|V|-|migtissera/Tess-2.0-Llama-3-70B-v0.2 model|N
featherless/Meta-LLama-3-Cat-A-LLama-70b|meta-llama-3-cat-a-llama-70b|gbueno86/Meta-LLama-3-Cat-A-LLama-70b|C|1.0,5.0|8192,4096|-|-|gbueno86/Meta-LLama-3-Cat-A-LLama-70b model|N
featherless/Llama-3-70B-Instruct-abliterated-v3|llama-3-70b-instruct-abliterated|failspy/Llama-3-70B-Instruct-abliterated-v3|C|1.0,5.0|8192,4096|V|-|failspy/Llama-3-70B-Instruct-abliterated-v3 model|N
featherless/Tess-v2.5-Qwen2-72B|tess-v2.5-qwen2-72b|migtissera/Tess-v2.5-Qwen2-72B|C|1.0,5.0|131072,4096|V|-|migtissera/Tess-v2.5-Qwen2-72B model|N
featherless/Llama-3-70B|llama-3-70b|v2ray/Llama-3-70B|C|1.0,5.0|8192,4096|-|-|v2ray/Llama-3-70B model|N
featherless/Smaug-Llama-3-70B-Instruct-32K|smaug-llama-3-70b-instruct-32k|abacusai/Smaug-Llama-3-70B-Instruct-32K|C|1.0,5.0|8192,4096|-|-|abacusai/Smaug-Llama-3-70B-Instruct-32K model|N
featherless/Llama-3-70B-Synthia-v3.5|llama-3-70b-synthia|migtissera/Llama-3-70B-Synthia-v3.5|C|1.0,5.0|8192,4096|V|-|migtissera/Llama-3-70B-Synthia-v3.5 model|N
featherless/Smaug-Llama-3-70B-Instruct-ExPO|smaug-llama-3-70b-instruct-expo|chujiezheng/Smaug-Llama-3-70B-Instruct-ExPO|C|1.0,5.0|8192,4096|-|-|chujiezheng/Smaug-Llama-3-70B-Instruct-ExPO model|N
featherless/Llama-3-70B-Instruct|llama-3-70b-instruct|v2ray/Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|-|v2ray/Llama-3-70B-Instruct model|N
featherless/llama-3-firefunction-v2|llama-3-firefunction|fireworks-ai/llama-3-firefunction-v2|C|1.0,5.0|8192,4096|V|-|fireworks-ai/llama-3-firefunction-v2 model|N
featherless/airoboros-70b-3.3|airoboros-70b-3.3|jondurbin/airoboros-70b-3.3|C|1.0,5.0|8192,4096|-|-|jondurbin/airoboros-70b-3.3 model|N
featherless/Hermes-2-Pro-Llama-3-70B|hermes-2-pro-llama-3-70b|NousResearch/Hermes-2-Pro-Llama-3-70B|C|1.0,5.0|8192,4096|-|-|NousResearch/Hermes-2-Pro-Llama-3-70B model|N
featherless/airoboros-dpo-70b-3.3|airoboros-dpo-70b-3.3|jondurbin/airoboros-dpo-70b-3.3|C|1.0,5.0|8192,4096|-|-|jondurbin/airoboros-dpo-70b-3.3 model|N
featherless/Meta-Llama-3-70B-Instruct-hf|meta-llama-3-70b-instruct-hf|Undi95/Meta-Llama-3-70B-Instruct-hf|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|Undi95/Meta-Llama-3-70B-Instruct-hf model|N
featherless/Meta-Llama-3-70B-hf|meta-llama-3-70b-hf|Undi95/Meta-Llama-3-70B-hf|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|Undi95/Meta-Llama-3-70B-hf model|N
featherless/Llama-3-SEC-Base|llama-3-sec-base|arcee-ai/Llama-3-SEC-Base|C|1.0,5.0|8192,4096|-|-|arcee-ai/Llama-3-SEC-Base model|N
featherless/Llama-3-70B-Instruct-norefusal|llama-3-70b-instruct-norefusal|theo77186/Llama-3-70B-Instruct-norefusal|C|1.0,5.0|8192,4096|-|-|theo77186/Llama-3-70B-Instruct-norefusal model|N
featherless/Meta-Llama-3-70B-Instruct-DPO|meta-llama-3-70b-instruct-dpo|cloudyu/Meta-Llama-3-70B-Instruct-DPO|C|1.0,5.0|8192,4096|-|-|cloudyu/Meta-Llama-3-70B-Instruct-DPO model|N
featherless/Yakult-70B|yakult-70b|jan-hq/Yakult-70B|C|1.0,5.0|8192,4096|-|-|jan-hq/Yakult-70B model|N
featherless/Llama-3-Swallow-70B-Instruct-v0.1|llama-3-swallow-70b-instruct|tokyotech-llm/Llama-3-Swallow-70B-Instruct-v0.1|C|1.0,5.0|8192,4096|V|-|tokyotech-llm/Llama-3-Swallow-70B-Instruct-v0.1 model|N
featherless/Llama-3-70B-Instruct-32k-v0.1|llama-3-70b-instruct-32k|MaziyarPanahi/Llama-3-70B-Instruct-32k-v0.1|C|1.0,5.0|8192,4096|V|-|MaziyarPanahi/Llama-3-70B-Instruct-32k-v0.1 model|N
featherless/AkaLlama-llama3-70b-v0.1|akallama-llama3-70b|mirlab/AkaLlama-llama3-70b-v0.1|C|1.0,5.0|8192,4096|V|-|mirlab/AkaLlama-llama3-70b-v0.1 model|N
featherless/Llama-3-Swallow-70B-v0.1|llama-3-swallow-70b|tokyotech-llm/Llama-3-Swallow-70B-v0.1|C|1.0,5.0|8192,4096|V|-|tokyotech-llm/Llama-3-Swallow-70B-v0.1 model|N
featherless/introspection-test2|introspection-test2|tomekkorbak/introspection-test2|C|1.0,5.0|8192,4096|-|-|tomekkorbak/introspection-test2 model|N
featherless/llama-3-typhoon-v1.5x-70b-instruct|llama-3-typhoon-v1.5x-70b-instruct|scb10x/llama-3-typhoon-v1.5x-70b-instruct|C|1.0,5.0|8192,4096|V|-|scb10x/llama-3-typhoon-v1.5x-70b-instruct model|N
featherless/neural-chat-7b-v3-3|neural-chat-7b-v3-3|Intel/neural-chat-7b-v3-3|C|1.0,5.0|8192,4096|V|-|Intel/neural-chat-7b-v3-3 model|N
featherless/mistral-7b-sft-beta|mistral-7b-sft-beta|HuggingFaceH4/mistral-7b-sft-beta|C|1.0,5.0|8192,4096|-|-|HuggingFaceH4/mistral-7b-sft-beta model|N
featherless/WizardMath-7B-V1.1|wizardmath-7b|WizardLMTeam/WizardMath-7B-V1.1|C|1.0,5.0|8192,4096|V|-|WizardLMTeam/WizardMath-7B-V1.1 model|N
featherless/blossom-v4-mistral-7b|blossom-v4-mistral-7b|Azure99/blossom-v4-mistral-7b|C|1.0,5.0|8192,4096|V|-|Azure99/blossom-v4-mistral-7b model|N
featherless/Mistral-7B-claude-instruct|mistral-7b-claude-instruct|Norquinal/Mistral-7B-claude-instruct|C|1.0,5.0|8192,4096|-|-|Norquinal/Mistral-7B-claude-instruct model|N
featherless/openchat-3.6-8b-20240522|openchat-3.6-8b|openchat/openchat-3.6-8b-20240522|C|1.0,5.0|8192,4096|-|-|openchat/openchat-3.6-8b-20240522 model|N
featherless/Llama3-OpenBioLLM-8B|llama3-openbiollm-8b|aaditya/Llama3-OpenBioLLM-8B|C|1.0,5.0|8192,4096|-|-|aaditya/Llama3-OpenBioLLM-8B model|N
featherless/MAmmoTH2-8B-Plus|mammoth2-8b-plus|TIGER-Lab/MAmmoTH2-8B-Plus|C|1.0,5.0|8192,4096|-|-|TIGER-Lab/MAmmoTH2-8B-Plus model|N
featherless/NeuralDaredevil-8B-abliterated|neuraldaredevil-8b-abliterated|mlabonne/NeuralDaredevil-8B-abliterated|C|1.0,5.0|8192,4096|-|-|mlabonne/NeuralDaredevil-8B-abliterated model|N
featherless/tulu-2-dpo-13b|tulu-2-dpo-13b|allenai/tulu-2-dpo-13b|C|1.0,5.0|4096,4096|-|-|allenai/tulu-2-dpo-13b model|N
featherless/llama-3-merged-linear|llama-3-merged-linear|uygarkurt/llama-3-merged-linear|C|1.0,5.0|8192,4096|-|-|uygarkurt/llama-3-merged-linear model|N
featherless/Llama3-Aloe-8B-Alpha|llama3-aloe-8b-alpha|HPAI-BSC/Llama3-Aloe-8B-Alpha|C|1.0,5.0|8192,4096|-|-|HPAI-BSC/Llama3-Aloe-8B-Alpha model|N
featherless/Daredevil-8B-abliterated|daredevil-8b-abliterated|mlabonne/Daredevil-8B-abliterated|C|1.0,5.0|8192,4096|-|-|mlabonne/Daredevil-8B-abliterated model|N
featherless/Llama-3-8B-instruct|llama-3-8b-instruct|AI-Sweden-Models/Llama-3-8B-instruct|C|1.0,5.0|8192,4096|-|,,,2.1,,24.0,,,,|AI-Sweden-Models/Llama-3-8B-instruct model|N
featherless/bagel-8b-v1.0|bagel-8b|jondurbin/bagel-8b-v1.0|C|1.0,5.0|8192,4096|V|-|jondurbin/bagel-8b-v1.0 model|N
featherless/LLaMA3-SFT|llama3-sft|RLHFlow/LLaMA3-SFT|C|1.0,5.0|8192,4096|-|-|RLHFlow/LLaMA3-SFT model|N
featherless/LLaMA3-iterative-DPO-final|llama3-iterative-dpo-final|RLHFlow/LLaMA3-iterative-DPO-final|C|1.0,5.0|8192,4096|-|-|RLHFlow/LLaMA3-iterative-DPO-final model|N
featherless/tnayajv2.0|tnayajv2.0|Jayant9928/tnayajv2.0|C|1.0,5.0|8192,4096|-|-|Jayant9928/tnayajv2.0 model|N
featherless/suzume-llama-3-8B-multilingual-orpo-borda-half|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-half|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-half model|N
featherless/Waktaverse-Llama-3-KO-8B-Instruct|waktaverse-llama-3-ko-8b-instruct|PathFinderKR/Waktaverse-Llama-3-KO-8B-Instruct|C|1.0,5.0|8192,4096|-|-|PathFinderKR/Waktaverse-Llama-3-KO-8B-Instruct model|N
featherless/Llama-3-Refueled|llama-3-refueled|refuelai/Llama-3-Refueled|C|1.0,5.0|8192,4096|-|-|refuelai/Llama-3-Refueled model|N
featherless/suzume-llama-3-8B-multilingual-orpo-borda-top25|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top25|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top25 model|N
featherless/llama-3-typhoon-v1.5x-8b-instruct|llama-3-typhoon-v1.5x-8b-instruct|scb10x/llama-3-typhoon-v1.5x-8b-instruct|C|1.0,5.0|8192,4096|V|-|scb10x/llama-3-typhoon-v1.5x-8b-instruct model|N
featherless/free-llama3-dpo-v0.2|free-llama3-dpo|freewheelin/free-llama3-dpo-v0.2|C|1.0,5.0|8192,4096|V|-|freewheelin/free-llama3-dpo-v0.2 model|N
featherless/Llama-3-instruction-constructionsafety-layertuning|-|DBCMLAB/Llama-3-instruction-constructionsafety-layertuning|C|1.0,5.0|8192,4096|-|-|DBCMLAB/Llama-3-instruction-constructionsafety-layertuning model|N
featherless/Unichat-llama3-Chinese-8B|unichat-llama3-chinese-8b|UnicomLLM/Unichat-llama3-Chinese-8B|C|1.0,5.0|8192,4096|-|-|UnicomLLM/Unichat-llama3-Chinese-8B model|N
featherless/suzume-llama-3-8B-multilingual-orpo-borda-full|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-full|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-full model|N
featherless/suzume-llama-3-8B-multilingual-orpo-borda-top75|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top75|C|1.0,5.0|8192,4096|-|-|lightblue/suzume-llama-3-8B-multilingual-orpo-borda-top75 model|N
featherless/Llama-3-Swallow-8B-Instruct-v0.1|llama-3-swallow-8b-instruct|tokyotech-llm/Llama-3-Swallow-8B-Instruct-v0.1|C|1.0,5.0|8192,4096|V|-|tokyotech-llm/Llama-3-Swallow-8B-Instruct-v0.1 model|N
featherless/easy-ko-Llama3-8b-Instruct-v1|easy-ko-llama3-8b-instruct|Easy-Systems/easy-ko-Llama3-8b-Instruct-v1|C|1.0,5.0|8192,4096|V|-|Easy-Systems/easy-ko-Llama3-8b-Instruct-v1 model|N
featherless/Unichat-llama3-Chinese-8B-28K|unichat-llama3-chinese-8b-28k|UnicomLLM/Unichat-llama3-Chinese-8B-28K|C|1.0,5.0|8192,4096|-|-|UnicomLLM/Unichat-llama3-Chinese-8B-28K model|N
featherless/open-bio-med-merge|open-bio-med-merge|timberrific/open-bio-med-merge|C|1.0,5.0|8192,4096|-|-|timberrific/open-bio-med-merge model|N
featherless/Test1_SLIDE|test1_slide|NLPark/Test1_SLIDE|C|1.0,5.0|8192,4096|-|-|NLPark/Test1_SLIDE model|N
featherless/tnayaj|tnayaj|Jayant9928/tnayaj|C|1.0,5.0|8192,4096|-|-|Jayant9928/tnayaj model|N
featherless/T3Q-LLM3-NC-v1.0|t3q-llm3-nc|T3Q-LLM/T3Q-LLM3-NC-v1.0|C|1.0,5.0|8192,4096|V|-|T3Q-LLM/T3Q-LLM3-NC-v1.0 model|N
featherless/T3Q-LLM3-Llama3-sft1.0-dpo1.0|t3q-llm3-llama3-sft1.0-dpo1.0|chlee10/T3Q-LLM3-Llama3-sft1.0-dpo1.0|C|1.0,5.0|8192,4096|-|-|chlee10/T3Q-LLM3-Llama3-sft1.0-dpo1.0 model|N
featherless/Llama3_ko_4.2_sft|llama3_ko_4.2_sft|spow12/Llama3_ko_4.2_sft|C|1.0,5.0|8192,4096|-|-|spow12/Llama3_ko_4.2_sft model|N
featherless/Llama-3-Ko-8B-Instruct-AOG|llama-3-ko-8b-instruct-aog|werty1248/Llama-3-Ko-8B-Instruct-AOG|C|1.0,5.0|8192,4096|-|-|werty1248/Llama-3-Ko-8B-Instruct-AOG model|N
featherless/LLaMA3-iterative-DPO-final-ExPO|llama3-iterative-dpo-final-expo|chujiezheng/LLaMA3-iterative-DPO-final-ExPO|C|1.0,5.0|8192,4096|-|-|chujiezheng/LLaMA3-iterative-DPO-final-ExPO model|N
featherless/Llama-3-Instruct-8B-SPPO-Iter3|llama-3-instruct-8b-sppo-iter3|UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3|C|1.0,5.0|8192,4096|-|-|UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter3 model|N
featherless/mytest|mytest|khKim/mytest|C|1.0,5.0|8192,4096|-|-|khKim/mytest model|N
featherless/Kocdigital-LLM-8b-v0.1|kocdigital-llm-8b|KOCDIGITAL/Kocdigital-LLM-8b-v0.1|C|1.0,5.0|8192,4096|V|-|KOCDIGITAL/Kocdigital-LLM-8b-v0.1 model|N
featherless/HarmBench-Llama-2-13b-cls|harmbench-llama-2-13b-cls|cais/HarmBench-Llama-2-13b-cls|C|1.0,5.0|4096,4096|-|-|cais/HarmBench-Llama-2-13b-cls model|N
featherless/ALMA-13B-R|alma-13b-r|haoranxu/ALMA-13B-R|C|1.0,5.0|4096,4096|-|-|haoranxu/ALMA-13B-R model|N
featherless/Noromaid-13b-v0.1.1|noromaid-13b-v0.1.1|NeverSleep/Noromaid-13b-v0.1.1|C|1.0,5.0|4096,4096|V|-|NeverSleep/Noromaid-13b-v0.1.1 model|N
featherless/orca_mini_v3_13b|orca_mini_v3_13b|pankajmathur/orca_mini_v3_13b|C|1.0,5.0|4096,4096|-|-|pankajmathur/orca_mini_v3_13b model|N
featherless/DiarizationLM-13b-Fisher-v1|diarizationlm-13b-fisher|google/DiarizationLM-13b-Fisher-v1|C|1.0,5.0|4096,4096|V|-|google/DiarizationLM-13b-Fisher-v1 model|N
featherless/ELYZA-japanese-Llama-2-13b-instruct|elyza-japanese-llama-2-13b-instruct|elyza/ELYZA-japanese-Llama-2-13b-instruct|C|1.0,5.0|4096,4096|-|-|elyza/ELYZA-japanese-Llama-2-13b-instruct model|N
featherless/chronos-13b-v2|chronos-13b|elinas/chronos-13b-v2|C|1.0,5.0|4096,4096|V|-|elinas/chronos-13b-v2 model|N
featherless/mythalion-13b|mythalion-13b|PygmalionAI/mythalion-13b|C|1.0,5.0|4096,4096|-|-|PygmalionAI/mythalion-13b model|N
featherless/LLAMA2-13B-Holodeck-1|llama2-13b-holodeck-1|KoboldAI/LLAMA2-13B-Holodeck-1|C|1.0,5.0|4096,4096|-|-|KoboldAI/LLAMA2-13B-Holodeck-1 model|N
featherless/CodeLlama-13B-Python-fp16|codellama-13b-python-fp16|TheBloke/CodeLlama-13B-Python-fp16|C|1.0,5.0|4096,4096|-|-|TheBloke/CodeLlama-13B-Python-fp16 model|N
featherless/h2ogpt-16k-codellama-13b-python|h2ogpt-16k-codellama-13b-python|h2oai/h2ogpt-16k-codellama-13b-python|C|1.0,5.0|4096,4096|-|-|h2oai/h2ogpt-16k-codellama-13b-python model|N
featherless/pygmalion-2-13b|pygmalion-2-13b|PygmalionAI/pygmalion-2-13b|C|1.0,5.0|4096,4096|-|-|PygmalionAI/pygmalion-2-13b model|N
featherless/MLewd-v2.4-13B|mlewd-v2.4-13b|Undi95/MLewd-v2.4-13B|C|1.0,5.0|4096,4096|V|-|Undi95/MLewd-v2.4-13B model|N
featherless/CodeLlama-13b-Python-hf|codellama-13b-python-hf|codellama/CodeLlama-13b-Python-hf|C|1.0,5.0|4096,4096|-|-|codellama/CodeLlama-13b-Python-hf model|N
featherless/k2s3_test_24001|k2s3_test_24001|Changgil/k2s3_test_24001|C|1.0,5.0|4096,4096|-|-|Changgil/k2s3_test_24001 model|N
featherless/MLewd-L2-Chat-13B|mlewd-l2-chat-13b|Undi95/MLewd-L2-Chat-13B|C|1.0,5.0|4096,4096|-|-|Undi95/MLewd-L2-Chat-13B model|N
featherless/Noromaid-13b-v0.3|noromaid-13b|NeverSleep/Noromaid-13b-v0.3|C|1.0,5.0|4096,4096|V|-|NeverSleep/Noromaid-13b-v0.3 model|N
featherless/MLewd-Chat-v2-13B|mlewd-chat-v2-13b|Undi95/MLewd-Chat-v2-13B|C|1.0,5.0|4096,4096|V|-|Undi95/MLewd-Chat-v2-13B model|N
featherless/LewdEngine|lewdengine|Undi95/LewdEngine|C|1.0,5.0|4096,4096|-|-|Undi95/LewdEngine model|N
featherless/MythoLogic-L2-13b|mythologic-l2-13b|Gryphe/MythoLogic-L2-13b|C|1.0,5.0|4096,4096|-|-|Gryphe/MythoLogic-L2-13b model|N
featherless/Emerald-13B|emerald-13b|Undi95/Emerald-13B|C|1.0,5.0|4096,4096|-|-|Undi95/Emerald-13B model|N
featherless/Dans-MysteryModel-13b|dans-mysterymodel-13b|PocketDoc/Dans-MysteryModel-13b|C|1.0,5.0|4096,4096|-|-|PocketDoc/Dans-MysteryModel-13b model|N
featherless/StableBeluga-13B-instruct-PL-lora_unload|-|Aspik101/StableBeluga-13B-instruct-PL-lora_unload|C|1.0,5.0|4096,4096|-|-|Aspik101/StableBeluga-13B-instruct-PL-lora_unload model|N
featherless/MythoMix-L2-13b|mythomix-l2-13b|Gryphe/MythoMix-L2-13b|C|1.0,5.0|4096,4096|-|-|Gryphe/MythoMix-L2-13b model|N
featherless/FinanceConnect-13B|financeconnect-13b|ceadar-ie/FinanceConnect-13B|C|1.0,5.0|4096,4096|-|-|ceadar-ie/FinanceConnect-13B model|N
featherless/vicuna-13b-v1.5-PL-lora_unload|vicuna-13b-v1.5-pl-lora_unload|Aspik101/vicuna-13b-v1.5-PL-lora_unload|C|1.0,5.0|4096,4096|V|-|Aspik101/vicuna-13b-v1.5-PL-lora_unload model|N
featherless/Guanaco-13B-Uncensored|guanaco-13b-uncensored|Fredithefish/Guanaco-13B-Uncensored|C|1.0,5.0|4096,4096|-|-|Fredithefish/Guanaco-13B-Uncensored model|N
featherless/Pygmalion-2-13b-SuperCOT|pygmalion-2-13b-supercot|royallab/Pygmalion-2-13b-SuperCOT|C|1.0,5.0|4096,4096|-|-|royallab/Pygmalion-2-13b-SuperCOT model|N
featherless/TimeCrystal-l2-13B|timecrystal-l2-13b|BlueNipples/TimeCrystal-l2-13B|C|1.0,5.0|4096,4096|-|-|BlueNipples/TimeCrystal-l2-13B model|N
featherless/KoR-Orca-Platypus-13B|kor-orca-platypus-13b|kyujinpy/KoR-Orca-Platypus-13B|C|1.0,5.0|4096,4096|-|-|kyujinpy/KoR-Orca-Platypus-13B model|N
featherless/PACK-13b-v1.1|pack-13b|AIFT/PACK-13b-v1.1|C|1.0,5.0|4096,4096|V|-|AIFT/PACK-13b-v1.1 model|N
featherless/llama-2-13b-DPO-Y24-v2|llama-2-13b-dpo-y24|Ja-ck/llama-2-13b-DPO-Y24-v2|C|1.0,5.0|4096,4096|V|-|Ja-ck/llama-2-13b-DPO-Y24-v2 model|N
featherless/llama-2-13b-instruct-Y24-v2|llama-2-13b-instruct-y24|Ja-ck/llama-2-13b-instruct-Y24-v2|C|1.0,5.0|4096,4096|V|-|Ja-ck/llama-2-13b-instruct-Y24-v2 model|N
featherless/Sydney_Overthinker_13b_HF|sydney_overthinker_13b_hf|FPHam/Sydney_Overthinker_13b_HF|C|1.0,5.0|4096,4096|K|-|FPHam/Sydney_Overthinker_13b_HF model|N
featherless/Korean-OpenOrca-v3|korean-openorca|kyujinpy/Korean-OpenOrca-v3|C|1.0,5.0|4096,4096|V|-|kyujinpy/Korean-OpenOrca-v3 model|N
featherless/KoT-platypus2-13B|kot-platypus2-13b|kyujinpy/KoT-platypus2-13B|C|1.0,5.0|4096,4096|-|-|kyujinpy/KoT-platypus2-13B model|N
featherless/KOR-Orca-Platypus-13B-v3|kor-orca-platypus-13b|kyujinpy/KOR-Orca-Platypus-13B-v3|C|1.0,5.0|4096,4096|V|-|kyujinpy/KOR-Orca-Platypus-13B-v3 model|N
featherless/llama-2-13b-instruct-Y24-v1|llama-2-13b-instruct-y24|Ja-ck/llama-2-13b-instruct-Y24-v1|C|1.0,5.0|4096,4096|V|-|Ja-ck/llama-2-13b-instruct-Y24-v1 model|N
featherless/llama2-13b.kor.v2|llama2-13b.kor.v2|sanghwa-na/llama2-13b.kor.v2|C|1.0,5.0|4096,4096|-|-|sanghwa-na/llama2-13b.kor.v2 model|N
featherless/llama2-13b.kor.v1|llama2-13b.kor.v1|sanghwa-na/llama2-13b.kor.v1|C|1.0,5.0|4096,4096|-|-|sanghwa-na/llama2-13b.kor.v1 model|N
featherless/Nete-13B|nete-13b|Undi95/Nete-13B|C|1.0,5.0|4096,4096|-|-|Undi95/Nete-13B model|N
featherless/k2s3_test_0001|k2s3_test_0001|Byungchae/k2s3_test_0001|C|1.0,5.0|4096,4096|-|-|Byungchae/k2s3_test_0001 model|N
featherless/k2s3_test_0000|k2s3_test_0000|Byungchae/k2s3_test_0000|C|1.0,5.0|4096,4096|-|-|Byungchae/k2s3_test_0000 model|N
featherless/UtopiaXL-13B|utopiaxl-13b|Undi95/UtopiaXL-13B|C|1.0,5.0|4096,4096|-|-|Undi95/UtopiaXL-13B model|N
featherless/ReasoningEngine|reasoningengine|Undi95/ReasoningEngine|C|1.0,5.0|4096,4096|K|-|Undi95/ReasoningEngine model|N
featherless/LLaMA2-13B-TiefighterLR|llama2-13b-tiefighterlr|KoboldAI/LLaMA2-13B-TiefighterLR|C|1.0,5.0|4096,4096|-|-|KoboldAI/LLaMA2-13B-TiefighterLR model|N
featherless/mistral-7b-openhermes-sft|mistral-7b-openhermes-sft|CorticalStack/mistral-7b-openhermes-sft|C|1.0,5.0|8192,4096|-|-|CorticalStack/mistral-7b-openhermes-sft model|N
featherless/Hypernova-experimental|hypernova-experimental|theNovaAI/Hypernova-experimental|C|1.0,5.0|4096,4096|-|-|theNovaAI/Hypernova-experimental model|N
featherless/Commencis-LLM|commencis-llm|Commencis/Commencis-LLM|C|1.0,5.0|8192,4096|-|-|Commencis/Commencis-LLM model|N
featherless/MythoMax-L2-Kimiko-v2-13b|mythomax-l2-kimiko-v2-13b|Undi95/MythoMax-L2-Kimiko-v2-13b|C|1.0,5.0|4096,4096|V|-|Undi95/MythoMax-L2-Kimiko-v2-13b model|N
featherless/albertlight-7b|albertlight-7b|AgentPublic/albertlight-7b|C|1.0,5.0|4096,4096|-|-|AgentPublic/albertlight-7b model|N
featherless/LLaMA2-13B-Erebus-v3|llama2-13b-erebus|KoboldAI/LLaMA2-13B-Erebus-v3|C|1.0,5.0|4096,4096|V|-|KoboldAI/LLaMA2-13B-Erebus-v3 model|N
featherless/llama-2-13b|llama-2-13b|unsloth/llama-2-13b|C|1.0,5.0|4096,4096|-|47.3,,,,,,,,,|unsloth/llama-2-13b model|N
featherless/Llama-3-Swallow-8B-v0.1|llama-3-swallow-8b|tokyotech-llm/Llama-3-Swallow-8B-v0.1|C|1.0,5.0|8192,4096|V|-|tokyotech-llm/Llama-3-Swallow-8B-v0.1 model|N
featherless/Anjir-8B-L3|anjir-8b-l3|Hastagaras/Anjir-8B-L3|C|1.0,5.0|8192,4096|-|-|Hastagaras/Anjir-8B-L3 model|N
featherless/Jamet-8B-L3-MK.V-Blackroot|jamet-8b-l3-mk.v-blackroot|Hastagaras/Jamet-8B-L3-MK.V-Blackroot|C|1.0,5.0|8192,4096|-|-|Hastagaras/Jamet-8B-L3-MK.V-Blackroot model|N
featherless/LLaMA-3-8B-Instruct-TR-DPO|llama-3-8b-instruct-tr-dpo|Metin/LLaMA-3-8B-Instruct-TR-DPO|C|1.0,5.0|8192,4096|-|-|Metin/LLaMA-3-8B-Instruct-TR-DPO model|N
featherless/L3-TenyxChat-Daybreak-Storywriter-RAE-70B|-|Envoid/L3-TenyxChat-Daybreak-Storywriter-RAE-70B|C|1.0,5.0|8192,4096|-|-|Envoid/L3-TenyxChat-Daybreak-Storywriter-RAE-70B model|N
featherless/L3-70B-daybreak-abliterated-v0.4|l3-70b-daybreak-abliterated|crestf411/L3-70B-daybreak-abliterated-v0.4|C|1.0,5.0|8192,4096|V|-|crestf411/L3-70B-daybreak-abliterated-v0.4 model|N
featherless/L3-70B-daybreak-storywriter-v0.4|l3-70b-daybreak-storywriter|crestf411/L3-70B-daybreak-storywriter-v0.4|C|1.0,5.0|8192,4096|V|-|crestf411/L3-70B-daybreak-storywriter-v0.4 model|N
featherless/functionary-small-v2.5|functionary-small|meetkai/functionary-small-v2.5|C|1.0,5.0|8192,4096|V|-|meetkai/functionary-small-v2.5 model|N
featherless/llama3-eng-ko-8-llama|llama3-eng-ko-8-llama|4yo1/llama3-eng-ko-8-llama|C|1.0,5.0|8192,4096|-|-|4yo1/llama3-eng-ko-8-llama model|N
featherless/Llama-3-Taiwan-70B-Instruct|llama-3-taiwan-70b-instruct|yentinglin/Llama-3-Taiwan-70B-Instruct|C|1.0,5.0|8192,4096|-|-|yentinglin/Llama-3-Taiwan-70B-Instruct model|N
featherless/Llama-3-8b-sft-mixture|llama-3-8b-sft-mixture|OpenRLHF/Llama-3-8b-sft-mixture|C|1.0,5.0|8192,4096|-|-|OpenRLHF/Llama-3-8b-sft-mixture model|N
featherless/VeriUS-LLM-8b-v0.2|verius-llm-8b|VeriUs/VeriUS-LLM-8b-v0.2|C|1.0,5.0|8192,4096|V|-|VeriUs/VeriUS-LLM-8b-v0.2 model|N
featherless/Turkish-Llama-8b-Instruct-v0.1|turkish-llama-8b-instruct|ytu-ce-cosmos/Turkish-Llama-8b-Instruct-v0.1|C|1.0,5.0|8192,4096|V|-|ytu-ce-cosmos/Turkish-Llama-8b-Instruct-v0.1 model|N
featherless/Llama3-beomi-Open-Ko-8B-Instruct-preview-test6|-|Jsoo/Llama3-beomi-Open-Ko-8B-Instruct-preview-test6|C|1.0,5.0|8192,4096|-|-|Jsoo/Llama3-beomi-Open-Ko-8B-Instruct-preview-test6 model|N
featherless/llama-3-8B-inst-unsloth-ko-merged-1|llama-3-8b-inst-unsloth-ko-merged-1|richard-park/llama-3-8B-inst-unsloth-ko-merged-1|C|1.0,5.0|8192,4096|-|-|richard-park/llama-3-8B-inst-unsloth-ko-merged-1 model|N
featherless/BioLlama-Ko-8B|biollama-ko-8b|iRASC/BioLlama-Ko-8B|C|1.0,5.0|8192,4096|-|-|iRASC/BioLlama-Ko-8B model|N
featherless/llama3-8B-dpo-sft-v1|llama3-8b-dpo-sft|youjunhyeok/llama3-8B-dpo-sft-v1|C|1.0,5.0|8192,4096|V|-|youjunhyeok/llama3-8B-dpo-sft-v1 model|N
featherless/llama3-eng-ko-8b-sl|llama3-eng-ko-8b-sl|4yo1/llama3-eng-ko-8b-sl|C|1.0,5.0|8192,4096|-|-|4yo1/llama3-eng-ko-8b-sl model|N
featherless/llama3-koen-sft-dpo-v1|llama3-koen-sft-dpo|youjunhyeok/llama3-koen-sft-dpo-v1|C|1.0,5.0|8192,4096|V|-|youjunhyeok/llama3-koen-sft-dpo-v1 model|N
featherless/llama3-eng-ko-8b-sl2|llama3-eng-ko-8b-sl2|4yo1/llama3-eng-ko-8b-sl2|C|1.0,5.0|8192,4096|-|-|4yo1/llama3-eng-ko-8b-sl2 model|N
featherless/SKY-Ko-Llama3-8B-lora|sky-ko-llama3-8b-lora|SkyOrbis/SKY-Ko-Llama3-8B-lora|C|1.0,5.0|8192,4096|-|-|SkyOrbis/SKY-Ko-Llama3-8B-lora model|N
featherless/solar-ko-common-merged|solar-ko-common-merged|Jsoo/solar-ko-common-merged|C|1.0,5.0|4096,4096|-|-|Jsoo/solar-ko-common-merged model|N
featherless/hkcode_llama3_8b|hkcode_llama3_8b|hyokwan/hkcode_llama3_8b|C|1.0,5.0|8192,4096|-|-|hyokwan/hkcode_llama3_8b model|N
featherless/llama3-koen-8b-sft-v1|llama3-koen-8b-sft|youjunhyeok/llama3-koen-8b-sft-v1|C|1.0,5.0|8192,4096|V|-|youjunhyeok/llama3-koen-8b-sft-v1 model|N
featherless/Llama-3-instruction-constructionsafety|llama-3-instruction-constructionsafety|juungwon/Llama-3-instruction-constructionsafety|C|1.0,5.0|8192,4096|-|-|juungwon/Llama-3-instruction-constructionsafety model|N
featherless/Llama-3-8B-Instruct-RR|llama-3-8b-instruct-rr|GraySwanAI/Llama-3-8B-Instruct-RR|C|1.0,5.0|8192,4096|-|-|GraySwanAI/Llama-3-8B-Instruct-RR model|N
featherless/Llama-3-COT-ITA|llama-3-cot-ita|DeepMount00/Llama-3-COT-ITA|C|1.0,5.0|8192,4096|-|-|DeepMount00/Llama-3-COT-ITA model|N
featherless/llama3-eng-ko-8b-sl3|llama3-eng-ko-8b-sl3|4yo1/llama3-eng-ko-8b-sl3|C|1.0,5.0|8192,4096|-|-|4yo1/llama3-eng-ko-8b-sl3 model|N
featherless/Llama3-8B-Chinese-Chat-ExPO|llama3-8b-chinese-chat-expo|chujiezheng/Llama3-8B-Chinese-Chat-ExPO|C|1.0,5.0|8192,4096|-|-|chujiezheng/Llama3-8B-Chinese-Chat-ExPO model|N
featherless/llama|llama|4yo1/llama|C|1.0,5.0|8192,4096|-|-|4yo1/llama model|N
featherless/llama3-diverce-ver1.0|llama3-diverce-ver1.0|sel303/llama3-diverce-ver1.0|C|1.0,5.0|8192,4096|V|-|sel303/llama3-diverce-ver1.0 model|N
featherless/llama3-eng-ko-8b-sl4|llama3-eng-ko-8b-sl4|4yo1/llama3-eng-ko-8b-sl4|C|1.0,5.0|8192,4096|-|-|4yo1/llama3-eng-ko-8b-sl4 model|N
featherless/L3-8B-Stheno-v3.3-32K|l3-8b-stheno-v3.3-32k|Sao10K/L3-8B-Stheno-v3.3-32K|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-8B-Stheno-v3.3-32K model|N
featherless/Llama-3-Patronus-Lynx-8B-Instruct|llama-3-patronus-lynx-8b-instruct|PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct|C|1.0,5.0|8192,4096|-|-|PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct model|N
featherless/L3-SthenoMaidBlackroot-8B-V1|l3-sthenomaidblackroot-8b|bluuwhale/L3-SthenoMaidBlackroot-8B-V1|C|1.0,5.0|8192,4096|V|-|bluuwhale/L3-SthenoMaidBlackroot-8B-V1 model|N
featherless/llama3-8B-DarkIdol-2.1-Uncensored-32K|llama3-8b-darkidol-2.1-uncensored-32k|aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-32K|C|1.0,5.0|8192,4096|-|-|aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-32K model|N
featherless/openbuddy-llama3-8b-v21.2-32k|openbuddy-llama3-8b-v21.2-32k|OpenBuddy/openbuddy-llama3-8b-v21.2-32k|C|1.0,5.0|8192,4096|V|-|OpenBuddy/openbuddy-llama3-8b-v21.2-32k model|N
featherless/Llama3-Med42-8B|llama3-med42-8b|m42-health/Llama3-Med42-8B|C|1.0,5.0|8192,4096|-|-|m42-health/Llama3-Med42-8B model|N
featherless/cere-llama-3-8b-tr|cere-llama-3-8b-tr|CerebrumTech/cere-llama-3-8b-tr|C|1.0,5.0|8192,4096|-|-|CerebrumTech/cere-llama-3-8b-tr model|N
featherless/LLama3-Lexi-Aura-3Some-SLERP-SLERP|llama3-lexi-aura-3some-slerp-slerp|Fischerboot/LLama3-Lexi-Aura-3Some-SLERP-SLERP|C|1.0,5.0|8192,4096|-|-|Fischerboot/LLama3-Lexi-Aura-3Some-SLERP-SLERP model|N
featherless/Llama-3SOME-8B-v2|llama-3some-8b|TheDrummer/Llama-3SOME-8B-v2|C|1.0,5.0|8192,4096|V|-|TheDrummer/Llama-3SOME-8B-v2 model|N
featherless/Infinirc-Llama3-8B-2G-Release-v1.0|infinirc-llama3-8b-2g-release|Infinirc/Infinirc-Llama3-8B-2G-Release-v1.0|C|1.0,5.0|8192,4096|V|-|Infinirc/Infinirc-Llama3-8B-2G-Release-v1.0 model|N
featherless/YoutubeVtuber|youtubevtuber|kahou1234/YoutubeVtuber|C|1.0,5.0|32768,4096|-|-|kahou1234/YoutubeVtuber model|N
featherless/Llama-3-8B-Magpie-Align-SFT-v0.1|llama-3-8b-magpie-align-sft|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v0.1|C|1.0,5.0|8192,4096|V|-|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v0.1 model|N
featherless/TARS-8B-llama-REMIX|tars-8b-llama-remix|picAIso/TARS-8B-llama-REMIX|C|1.0,5.0|8192,4096|-|-|picAIso/TARS-8B-llama-REMIX model|N
featherless/Pantheon-Hermes-rp|pantheon-hermes-rp|ohyeah1/Pantheon-Hermes-rp|C|1.0,5.0|8192,4096|-|-|ohyeah1/Pantheon-Hermes-rp model|N
featherless/L3-Umbral-Mind-RP-v1.0-8B|l3-umbral-mind-rp-v1.0-8b|Casual-Autopsy/L3-Umbral-Mind-RP-v1.0-8B|C|1.0,5.0|8192,4096|V|-|Casual-Autopsy/L3-Umbral-Mind-RP-v1.0-8B model|N
featherless/Hathor_RP-v.01-L3-8B|hathor_rp-v.01-l3-8b|Nitral-AI/Hathor_RP-v.01-L3-8B|C|1.0,5.0|8192,4096|V|-|Nitral-AI/Hathor_RP-v.01-L3-8B model|N
featherless/Llama-3-WhiteRabbitNeo-8B-v2.0|llama-3-whiterabbitneo-8b|WhiteRabbitNeo/Llama-3-WhiteRabbitNeo-8B-v2.0|C|1.0,5.0|8192,4096|V|-|WhiteRabbitNeo/Llama-3-WhiteRabbitNeo-8B-v2.0 model|N
featherless/Llama-3-8B-Instruct-v0.9|llama-3-8b-instruct|MaziyarPanahi/Llama-3-8B-Instruct-v0.9|C|1.0,5.0|8192,4096|V|-|MaziyarPanahi/Llama-3-8B-Instruct-v0.9 model|N
featherless/Llama-3-8B-Magpie-Align-v0.1|llama-3-8b-magpie-align|Magpie-Align/Llama-3-8B-Magpie-Align-v0.1|C|1.0,5.0|8192,4096|V|-|Magpie-Align/Llama-3-8B-Magpie-Align-v0.1 model|N
featherless/NorskGPT-Llama3-8b|norskgpt-llama3-8b|bineric/NorskGPT-Llama3-8b|C|1.0,5.0|8192,4096|-|-|bineric/NorskGPT-Llama3-8b model|N
featherless/Llama-3-8B-Magpie-Align-SFT-v1.0|llama-3-8b-magpie-align-sft|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v1.0|C|1.0,5.0|8192,4096|V|-|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v1.0 model|N
featherless/Llama3-Med42-70B|llama3-med42-70b|m42-health/Llama3-Med42-70B|C|1.0,5.0|8192,4096|-|-|m42-health/Llama3-Med42-70B model|N
featherless/llama3-8B-DarkIdol-2.1-Uncensored-1048K|llama3-8b-darkidol-2.1-uncensored-1048k|aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-1048K|C|1.0,5.0|8192,4096|-|-|aifeifei798/llama3-8B-DarkIdol-2.1-Uncensored-1048K model|N
featherless/llama3-diverce-ver1.6|llama3-diverce-ver1.6|sel303/llama3-diverce-ver1.6|C|1.0,5.0|8192,4096|V|-|sel303/llama3-diverce-ver1.6 model|N
featherless/llama-3-fantasy-writer-8b|llama-3-fantasy-writer-8b|maldv/llama-3-fantasy-writer-8b|C|1.0,5.0|8192,4096|-|-|maldv/llama-3-fantasy-writer-8b model|N
featherless/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|rubra-ai/Meta-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|rubra-ai/Meta-Llama-3-70B-Instruct model|N
featherless/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge|-|grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge|C|1.0,5.0|8192,4096|-|-|grimjim/Llama-3-Instruct-8B-SPPO-Iter3-SimPO-merge model|N
featherless/llama-3-meerkat-8b-v1.0|llama-3-meerkat-8b|dmis-lab/llama-3-meerkat-8b-v1.0|C|1.0,5.0|8192,4096|V|-|dmis-lab/llama-3-meerkat-8b-v1.0 model|N
featherless/LLama3-Gaja-Hindi-8B-v0.1|llama3-gaja-hindi-8b|Cognitive-Lab/LLama3-Gaja-Hindi-8B-v0.1|C|1.0,5.0|8192,4096|V|-|Cognitive-Lab/LLama3-Gaja-Hindi-8B-v0.1 model|N
featherless/CabraLlama3-70b|cabrallama3-70b|botbot-ai/CabraLlama3-70b|C|1.0,5.0|8192,4096|-|-|botbot-ai/CabraLlama3-70b model|N
featherless/Medical-Llama3-v2|medical-llama3|ruslanmv/Medical-Llama3-v2|C|1.0,5.0|8192,4096|V|-|ruslanmv/Medical-Llama3-v2 model|N
featherless/Unholy-v2-13B|unholy-v2-13b|Undi95/Unholy-v2-13B|C|1.0,5.0|4096,4096|V|-|Undi95/Unholy-v2-13B model|N
featherless/Llama-3-70b-Arimas-story-RP-V2.1|llama-3-70b-arimas-story-rp|ryzen88/Llama-3-70b-Arimas-story-RP-V2.1|C|1.0,5.0|8192,4096|V|-|ryzen88/Llama-3-70b-Arimas-story-RP-V2.1 model|N
featherless/summary-llama3-8b-f16-full|summary-llama3-8b-f16-full|vincentmireau/summary-llama3-8b-f16-full|C|1.0,5.0|8192,4096|-|-|vincentmireau/summary-llama3-8b-f16-full model|N
featherless/llama3-8B-DarkIdol-2.2-Uncensored-1048K|llama3-8b-darkidol-2.2-uncensored-1048k|aifeifei798/llama3-8B-DarkIdol-2.2-Uncensored-1048K|C|1.0,5.0|8192,4096|-|-|aifeifei798/llama3-8B-DarkIdol-2.2-Uncensored-1048K model|N
featherless/Llama-3-Base-8B-SFT-SimPO|llama-3-base-8b-sft-simpo|princeton-nlp/Llama-3-Base-8B-SFT-SimPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-SimPO model|N
featherless/llama-3-8b-gpt-4o-ru1.0|llama-3-8b-gpt-4o-ru1.0|ruslandev/llama-3-8b-gpt-4o-ru1.0|C|1.0,5.0|8192,4096|-|-|ruslandev/llama-3-8b-gpt-4o-ru1.0 model|N
featherless/Llama-3-Patronus-Lynx-70B-Instruct|llama-3-patronus-lynx-70b-instruct|PatronusAI/Llama-3-Patronus-Lynx-70B-Instruct|C|1.0,5.0|8192,4096|-|-|PatronusAI/Llama-3-Patronus-Lynx-70B-Instruct model|N
featherless/L3-8B-Celeste-v1|l3-8b-celeste|nothingiisreal/L3-8B-Celeste-v1|C|1.0,5.0|8192,4096|V|-|nothingiisreal/L3-8B-Celeste-v1 model|N
featherless/L3-8B-dolphin-2.9.1-WritingPrompts|l3-8b-dolphin-2.9.1-writingprompts|nothingiisreal/L3-8B-dolphin-2.9.1-WritingPrompts|C|1.0,5.0|8192,4096|-|-|nothingiisreal/L3-8B-dolphin-2.9.1-WritingPrompts model|N
featherless/Infinity-Instruct-3M-0625-Llama3-8B|infinity-instruct-3m-0625-llama3-8b|BAAI/Infinity-Instruct-3M-0625-Llama3-8B|C|1.0,5.0|8192,4096|-|,,,3.4,,60.5,,,,|BAAI/Infinity-Instruct-3M-0625-Llama3-8B model|N
featherless/llama-3-Korean-8B-V2|llama-3-korean-8b|VIRNECT/llama-3-Korean-8B-V2|C|1.0,5.0|8192,4096|V|-|VIRNECT/llama-3-Korean-8B-V2 model|N
featherless/Athene-70B|athene-70b|Nexusflow/Athene-70B|C|1.0,5.0|8192,4096|-|-|Nexusflow/Athene-70B model|N
featherless/L3-8B-Niitama-v1|l3-8b-niitama|Sao10K/L3-8B-Niitama-v1|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-8B-Niitama-v1 model|N
featherless/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|PrimeIntellect/Meta-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|PrimeIntellect/Meta-Llama-3-70B-Instruct model|N
featherless/Llama-3-8B-Magpie-Align-SFT-v0.3|llama-3-8b-magpie-align-sft|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v0.3|C|1.0,5.0|8192,4096|V|-|Magpie-Align/Llama-3-8B-Magpie-Align-SFT-v0.3 model|N
featherless/Llama-3-Instruct-8B-SimPO-v0.2|llama-3-instruct-8b-simpo|princeton-nlp/Llama-3-Instruct-8B-SimPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-SimPO-v0.2 model|N
featherless/T-lite-0.1|t-lite-0.1|AnatoliiPotapov/T-lite-0.1|C|1.0,5.0|8192,4096|-|-|AnatoliiPotapov/T-lite-0.1 model|N
featherless/Llama-3-8B-Instruct-v0.10|llama-3-8b-instruct|MaziyarPanahi/Llama-3-8B-Instruct-v0.10|C|1.0,5.0|8192,4096|V|-|MaziyarPanahi/Llama-3-8B-Instruct-v0.10 model|N
featherless/Cerebro_BM_solar_v01|cerebro_bm_solar_v01|I-BRICKS/Cerebro_BM_solar_v01|C|1.0,5.0|4096,4096|-|-|I-BRICKS/Cerebro_BM_solar_v01 model|N
featherless/Llama-3-70b-Arimas-story-RP-V1.5|llama-3-70b-arimas-story-rp|ryzen88/Llama-3-70b-Arimas-story-RP-V1.5|C|1.0,5.0|8192,4096|V|-|ryzen88/Llama-3-70b-Arimas-story-RP-V1.5 model|N
featherless/Llama-3-70B-Special-Tokens-Adjusted|llama-3-70b-special-tokens-adjusted|astronomer/Llama-3-70B-Special-Tokens-Adjusted|C|1.0,5.0|8192,4096|-|-|astronomer/Llama-3-70B-Special-Tokens-Adjusted model|N
featherless/L3-8B-Lunar-Stheno|l3-8b-lunar-stheno|HiroseKoichi/L3-8B-Lunar-Stheno|C|1.0,5.0|8192,4096|-|-|HiroseKoichi/L3-8B-Lunar-Stheno model|N
featherless/Llama-3-Cantonese-8B-Instruct|llama-3-cantonese-8b-instruct|lordjia/Llama-3-Cantonese-8B-Instruct|C|1.0,5.0|8192,4096|-|-|lordjia/Llama-3-Cantonese-8B-Instruct model|N
featherless/Llama3-Preferred-MedSwallow-70B|llama3-preferred-medswallow-70b|pfnet/Llama3-Preferred-MedSwallow-70B|C|1.0,5.0|8192,4096|-|-|pfnet/Llama3-Preferred-MedSwallow-70B model|N
featherless/Llama-3-Base-8B-SFT-DPO|llama-3-base-8b-sft-dpo|princeton-nlp/Llama-3-Base-8B-SFT-DPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-DPO model|N
featherless/Meta-Llama-3.1-8B-Instruct-abliterated|meta-llama-3.1-8b-instruct-abliterated|mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated model|N
featherless/L3.1-8B-Celeste-V1.5|l3.1-8b-celeste|nothingiisreal/L3.1-8B-Celeste-V1.5|C|1.0,5.0|32768,4096|V|-|nothingiisreal/L3.1-8B-Celeste-V1.5 model|N
featherless/Lumimaid-v0.2-8B|lumimaid-v0.2-8b|NeverSleep/Lumimaid-v0.2-8B|C|1.0,5.0|32768,4096|V|-|NeverSleep/Lumimaid-v0.2-8B model|N
featherless/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|meta-llama/Meta-Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|-|meta-llama/Meta-Llama-3.1-70B-Instruct model|N
featherless/mistral-doryV2-12b|mistral-doryv2-12b|BeaverAI/mistral-doryV2-12b|C|1.0,5.0|32768,4096|-|-|BeaverAI/mistral-doryV2-12b model|N
featherless/Mistral-Nemo-Base-2407-chatml|mistral-nemo-base-2407-chatml|IntervitensInc/Mistral-Nemo-Base-2407-chatml|C|1.0,5.0|32768,4096|-|-|IntervitensInc/Mistral-Nemo-Base-2407-chatml model|N
featherless/Mistral-Nemo-Instruct-2407-norefuse-OAS|mistral-nemo-instruct-2407-norefuse-oas|Kooten/Mistral-Nemo-Instruct-2407-norefuse-OAS|C|1.0,5.0|32768,4096|-|-|Kooten/Mistral-Nemo-Instruct-2407-norefuse-OAS model|N
featherless/Celeste-12B-V1.6|celeste-12b|nothingiisreal/Celeste-12B-V1.6|C|1.0,5.0|32768,4096|V|-|nothingiisreal/Celeste-12B-V1.6 model|N
featherless/mistralai_Mistral-Nemo-Base-2407|mistralai_mistral-nemo-base-2407|SillyTilly/mistralai_Mistral-Nemo-Base-2407|C|1.0,5.0|32768,4096|-|-|SillyTilly/mistralai_Mistral-Nemo-Base-2407 model|N
featherless/mistralai_Mistral-Nemo-Instruct-2407|mistralai_mistral-nemo-instruct-2407|SillyTilly/mistralai_Mistral-Nemo-Instruct-2407|C|1.0,5.0|32768,4096|-|-|SillyTilly/mistralai_Mistral-Nemo-Instruct-2407 model|N
featherless/Mistral-Nemo-Base-2407|mistral-nemo-base-2407|unsloth/Mistral-Nemo-Base-2407|C|1.0,5.0|32768,4096|-|-|unsloth/Mistral-Nemo-Base-2407 model|N
featherless/Mistral-Nemo-Instruct-2407|mistral-nemo-instruct-2407|unsloth/Mistral-Nemo-Instruct-2407|C|1.0,5.0|32768,4096|-|-|unsloth/Mistral-Nemo-Instruct-2407 model|N
featherless/SauerkrautLM-Nemo-12b-Instruct|sauerkrautlm-nemo-12b-instruct|VAGOsolutions/SauerkrautLM-Nemo-12b-Instruct|C|1.0,5.0|32768,4096|-|-|VAGOsolutions/SauerkrautLM-Nemo-12b-Instruct model|N
featherless/Lumimaid-v0.2-12B|lumimaid-v0.2-12b|NeverSleep/Lumimaid-v0.2-12B|C|1.0,5.0|32768,4096|V|-|NeverSleep/Lumimaid-v0.2-12B model|N
featherless/Atlantis-v0.1-12B|atlantis-v0.1-12b|invisietch/Atlantis-v0.1-12B|C|1.0,5.0|32768,4096|V|-|invisietch/Atlantis-v0.1-12B model|N
featherless/Fimbulvetr-11B-v2.1-16K|fimbulvetr-11b-v2.1-16k|Sao10K/Fimbulvetr-11B-v2.1-16K|C|1.0,5.0|4096,4096|V|-|Sao10K/Fimbulvetr-11B-v2.1-16K model|N
featherless/Llama3.1-8B-Chinese-Chat|llama3.1-8b-chinese-chat|shenzhi-wang/Llama3.1-8B-Chinese-Chat|C|1.0,5.0|32768,4096|-|-|shenzhi-wang/Llama3.1-8B-Chinese-Chat model|N
featherless/Meta-Llama-3.1-8B|meta-llama-3.1-8b|unsloth/Meta-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|unsloth/Meta-Llama-3.1-8B model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|NousResearch/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|NousResearch/Meta-Llama-3.1-8B-Instruct model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|unsloth/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Meta-Llama-3.1-8B-Instruct model|N
featherless/Llama3.1-70B-Chinese-Chat|llama3.1-70b-chinese-chat|shenzhi-wang/Llama3.1-70B-Chinese-Chat|C|1.0,5.0|32768,4096|-|-|shenzhi-wang/Llama3.1-70B-Chinese-Chat model|N
featherless/Llama-3.1-70B-Japanese-Instruct-2407|llama-3.1-70b-japanese-instruct-2407|cyberagent/Llama-3.1-70B-Japanese-Instruct-2407|C|1.0,5.0|32768,4096|-|-|cyberagent/Llama-3.1-70B-Japanese-Instruct-2407 model|N
featherless/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|NousResearch/Meta-Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|-|NousResearch/Meta-Llama-3.1-70B-Instruct model|N
featherless/Meta-Llama-3.1-8B|meta-llama-3.1-8b|NousResearch/Meta-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|NousResearch/Meta-Llama-3.1-8B model|N
featherless/llama-3.1-openhermes-tr|llama-3.1-openhermes-tr|umarigan/llama-3.1-openhermes-tr|C|1.0,5.0|32768,4096|-|-|umarigan/llama-3.1-openhermes-tr model|N
featherless/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|SillyTilly/Meta-Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|-|SillyTilly/Meta-Llama-3.1-70B-Instruct model|N
featherless/BioinspiredLlama-3-1-8B-128k|bioinspiredllama-3.1-8b-128k|lamm-mit/BioinspiredLlama-3-1-8B-128k|C|1.0,5.0|32768,4096|-|-|lamm-mit/BioinspiredLlama-3-1-8B-128k model|N
featherless/Llama-3.1-AlternateTokenizer|llama-3.1-alternatetokenizer|teknium/Llama-3.1-AlternateTokenizer|C|1.0,5.0|32768,4096|-|-|teknium/Llama-3.1-AlternateTokenizer model|N
featherless/llama-3-Korean-8B-r-v1|llama-3-korean-8b-r|VIRNECT/llama-3-Korean-8B-r-v1|C|1.0,5.0|8192,4096|V|-|VIRNECT/llama-3-Korean-8B-r-v1 model|N
featherless/meta-llama-3.1-8b|meta-llama-3.1-8b|Crystalcareai/meta-llama-3.1-8b|C|1.0,5.0|32768,4096|-|-|Crystalcareai/meta-llama-3.1-8b model|N
featherless/llama-3-Korean-8B-V3|llama-3-korean-8b|VIRNECT/llama-3-Korean-8B-V3|C|1.0,5.0|8192,4096|V|-|VIRNECT/llama-3-Korean-8B-V3 model|N
featherless/DarkIdol-Llama-3.1-8B-Instruct-1.0-Uncensored|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.0-Uncensored|C|1.0,5.0|32768,4096|-|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.0-Uncensored model|N
featherless/Meta-Llama-3.1-8B|meta-llama-3.1-8b|SillyTilly/Meta-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|SillyTilly/Meta-Llama-3.1-8B model|N
featherless/Llama-3.1-8B-Lexi-Uncensored|llama-3.1-8b-lexi-uncensored|Orenguteng/Llama-3.1-8B-Lexi-Uncensored|C|1.0,5.0|32768,4096|-|-|Orenguteng/Llama-3.1-8B-Lexi-Uncensored model|N
featherless/openbuddy-llama3.1-8b-v22.1-131k|openbuddy-llama3.1-8b-v22.1-131k|OpenBuddy/openbuddy-llama3.1-8b-v22.1-131k|C|1.0,5.0|32768,4096|V|-|OpenBuddy/openbuddy-llama3.1-8b-v22.1-131k model|N
featherless/Llama-3-uncensored-Dare-1|llama-3-uncensored-dare-1|ModelsLab/Llama-3-uncensored-Dare-1|C|1.0,5.0|8192,4096|-|-|ModelsLab/Llama-3-uncensored-Dare-1 model|N
featherless/Llama-3.1-SauerkrautLM-8b-Instruct|llama-3.1-sauerkrautlm-8b-instruct|VAGOsolutions/Llama-3.1-SauerkrautLM-8b-Instruct|C|1.0,5.0|32768,4096|-|-|VAGOsolutions/Llama-3.1-SauerkrautLM-8b-Instruct model|N
featherless/Llama-3.1-8B-Instruct-abliterated_via_adapter|-|grimjim/Llama-3.1-8B-Instruct-abliterated_via_adapter|C|1.0,5.0|32768,4096|-|-|grimjim/Llama-3.1-8B-Instruct-abliterated_via_adapter model|N
featherless/Llama-3.1-70B-EZO-1.1-it|llama-3.1-70b-ezo-1.1-it|HODACHI/Llama-3.1-70B-EZO-1.1-it|C|1.0,5.0|32768,4096|-|-|HODACHI/Llama-3.1-70B-EZO-1.1-it model|N
featherless/Llama-3.1-Korean-8B-Instruct|llama-3.1-korean-8b-instruct|sh2orc/Llama-3.1-Korean-8B-Instruct|C|1.0,5.0|32768,4096|-|-|sh2orc/Llama-3.1-Korean-8B-Instruct model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|SillyTilly/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|SillyTilly/Meta-Llama-3.1-8B-Instruct model|N
featherless/Llama-3.1-8B-EZO-1.1-it|llama-3.1-8b-ezo-1.1-it|HODACHI/Llama-3.1-8B-EZO-1.1-it|C|1.0,5.0|32768,4096|-|-|HODACHI/Llama-3.1-8B-EZO-1.1-it model|N
featherless/llama3-8b-cpt-sea-lionv2-instruct|llama3-8b-cpt-sea-lionv2-instruct|aisingapore/llama3-8b-cpt-sea-lionv2-instruct|C|1.0,5.0|8192,4096|-|-|aisingapore/llama3-8b-cpt-sea-lionv2-instruct model|N
featherless/Llama3.1-ArrowSE-v0.4|llama3.1-arrowse|DataPilot/Llama3.1-ArrowSE-v0.4|C|1.0,5.0|32768,4096|V|-|DataPilot/Llama3.1-ArrowSE-v0.4 model|N
featherless/Meta-Llama-3.1-8B-Instruct-OAS|meta-llama-3.1-8b-instruct-oas|Undi95/Meta-Llama-3.1-8B-Instruct-OAS|C|1.0,5.0|32768,4096|-|-|Undi95/Meta-Llama-3.1-8B-Instruct-OAS model|N
featherless/DarkIdol-Llama-3.1-8B-Instruct-1.1-Uncensored|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.1-Uncensored|C|1.0,5.0|32768,4096|-|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.1-Uncensored model|N
featherless/insane-llama3.1|insane-llama3.1|Gydoo/insane-llama3.1|C|1.0,5.0|32768,4096|-|-|Gydoo/insane-llama3.1 model|N
featherless/llama3-8B-DarkIdol-2.3-Uncensored-32K|llama3-8b-darkidol-2.3-uncensored-32k|aifeifei798/llama3-8B-DarkIdol-2.3-Uncensored-32K|C|1.0,5.0|8192,4096|-|-|aifeifei798/llama3-8B-DarkIdol-2.3-Uncensored-32K model|N
featherless/Meta-Llama-3.1-8B-Instruct-plus-Swallow|meta-llama-3.1-8b-instruct-plus-swallow|aixsatoshi/Meta-Llama-3.1-8B-Instruct-plus-Swallow|C|1.0,5.0|32768,4096|-|-|aixsatoshi/Meta-Llama-3.1-8B-Instruct-plus-Swallow model|N
featherless/Meta-Llama-3.1-70B|meta-llama-3.1-70b|NousResearch/Meta-Llama-3.1-70B|C|1.0,5.0|32768,4096|-|-|NousResearch/Meta-Llama-3.1-70B model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|sparsh35/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|sparsh35/Meta-Llama-3.1-8B-Instruct model|N
featherless/L3-8B-Tamamo-v1|l3-8b-tamamo|Sao10K/L3-8B-Tamamo-v1|C|1.0,5.0|8192,4096|V|-|Sao10K/L3-8B-Tamamo-v1 model|N
featherless/Meta-llama-3.1-8b-instruct|meta-llama-3.1-8b-instruct|Crystalcareai/Meta-llama-3.1-8b-instruct|C|1.0,5.0|32768,4096|-|-|Crystalcareai/Meta-llama-3.1-8b-instruct model|N
featherless/natsumura-storytelling-rp-1.0-llama-3.1-8b|-|tohur/natsumura-storytelling-rp-1.0-llama-3.1-8b|C|1.0,5.0|32768,4096|-|-|tohur/natsumura-storytelling-rp-1.0-llama-3.1-8b model|N
featherless/Bioinspired-Llama-3-1-8B-128k-alpha|bioinspired-llama-3.1-8b-128k-alpha|lamm-mit/Bioinspired-Llama-3-1-8B-128k-alpha|C|1.0,5.0|32768,4096|-|-|lamm-mit/Bioinspired-Llama-3-1-8B-128k-alpha model|N
featherless/L3-Umbral-Mind-RP-v3.0-8B|l3-umbral-mind-rp-v3.0-8b|Casual-Autopsy/L3-Umbral-Mind-RP-v3.0-8B|C|1.0,5.0|8192,4096|V|-|Casual-Autopsy/L3-Umbral-Mind-RP-v3.0-8B model|N
featherless/Llama-3-Patronus-Lynx-8B-Instruct-v1.1|llama-3-patronus-lynx-8b-instruct|PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1|C|1.0,5.0|32768,4096|V|-|PatronusAI/Llama-3-Patronus-Lynx-8B-Instruct-v1.1 model|N
featherless/Configurable-Llama-3.1-8B-Instruct|configurable-llama-3.1-8b-instruct|vicgalle/Configurable-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|vicgalle/Configurable-Llama-3.1-8B-Instruct model|N
featherless/experiment-45-intelligent-layer-2-plus-exp-39-data|-|FogTeams/experiment-45-intelligent-layer-2-plus-exp-39-data|C|1.0,5.0|8192,4096|-|-|FogTeams/experiment-45-intelligent-layer-2-plus-exp-39-data model|N
featherless/Sekhmet_Bet-L3.1-8B-v0.2|sekhmet_bet-l3.1-8b|ChaoticNeutrals/Sekhmet_Bet-L3.1-8B-v0.2|C|1.0,5.0|32768,4096|V|-|ChaoticNeutrals/Sekhmet_Bet-L3.1-8B-v0.2 model|N
featherless/model|model|muhammadkwanso/model|C|1.0,5.0|32768,4096|-|-|muhammadkwanso/model model|N
featherless/Llama-3-8B-Stroganoff-2.0|llama-3-8b-stroganoff-2.0|HiroseKoichi/Llama-3-8B-Stroganoff-2.0|C|1.0,5.0|8192,4096|-|-|HiroseKoichi/Llama-3-8B-Stroganoff-2.0 model|N
featherless/Lumimaid-v0.2-70B|lumimaid-v0.2-70b|NeverSleep/Lumimaid-v0.2-70B|C|1.0,5.0|32768,4096|V|-|NeverSleep/Lumimaid-v0.2-70B model|N
featherless/L3.1-70b-glitz-v0.2|l3.1-70b-glitz|Fizzarolli/L3.1-70b-glitz-v0.2|C|1.0,5.0|32768,4096|V|-|Fizzarolli/L3.1-70b-glitz-v0.2 model|N
featherless/Hathor_Tahsin-L3-8B-v0.9|hathor_tahsin-l3-8b|ChaoticNeutrals/Hathor_Tahsin-L3-8B-v0.9|C|1.0,5.0|32768,4096|V|-|ChaoticNeutrals/Hathor_Tahsin-L3-8B-v0.9 model|N
featherless/L3-8B-Helium3-baseStheno|l3-8b-helium3-basestheno|inflatebot/L3-8B-Helium3-baseStheno|C|1.0,5.0|8192,4096|-|-|inflatebot/L3-8B-Helium3-baseStheno model|N
featherless/guns-and-roses-r1|guns-and-roses-r1|inflatebot/guns-and-roses-r1|C|1.0,5.0|32768,4096|-|-|inflatebot/guns-and-roses-r1 model|N
featherless/L3.1-70B-sunfall-v0.6.1|l3.1-70b-sunfall-v0.6.1|crestf411/L3.1-70B-sunfall-v0.6.1|C|1.0,5.0|32768,4096|V|-|crestf411/L3.1-70B-sunfall-v0.6.1 model|N
featherless/Atlantum-12B-v1|atlantum-12b|GalrionSoftworks/Atlantum-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/Atlantum-12B-v1 model|N
featherless/Pleiades-12B-v1|pleiades-12b|GalrionSoftworks/Pleiades-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/Pleiades-12B-v1 model|N
featherless/Llama-3.1-70B-Instruct-lorablated|llama-3.1-70b-instruct-lorablated|mlabonne/Llama-3.1-70B-Instruct-lorablated|C|1.0,5.0|32768,4096|-|-|mlabonne/Llama-3.1-70B-Instruct-lorablated model|N
featherless/llama-3-Korean-8B-r-v2|llama-3-korean-8b-r|VIRNECT/llama-3-Korean-8B-r-v2|C|1.0,5.0|8192,4096|V|-|VIRNECT/llama-3-Korean-8B-r-v2 model|N
featherless/Arabic-llama3.1-16bit-FT|arabic-llama3.1-16bit-ft|Omartificial-Intelligence-Space/Arabic-llama3.1-16bit-FT|C|1.0,5.0|32768,4096|-|-|Omartificial-Intelligence-Space/Arabic-llama3.1-16bit-FT model|N
featherless/MFANNv0.19.12|mfannv0.19.12|netcat420/MFANNv0.19.12|C|1.0,5.0|32768,4096|-|-|netcat420/MFANNv0.19.12 model|N
featherless/MFANNv0.19.10|mfannv0.19.10|netcat420/MFANNv0.19.10|C|1.0,5.0|32768,4096|-|-|netcat420/MFANNv0.19.10 model|N
featherless/Llama-3-8B-Magpie-Align-v0.3|llama-3-8b-magpie-align|Magpie-Align/Llama-3-8B-Magpie-Align-v0.3|C|1.0,5.0|8192,4096|V|-|Magpie-Align/Llama-3-8B-Magpie-Align-v0.3 model|N
featherless/functionary-small-v3.1|functionary-small|meetkai/functionary-small-v3.1|C|1.0,5.0|32768,4096|V|-|meetkai/functionary-small-v3.1 model|N
featherless/Linkbricks-Horizon-AI-Korean-llama-3.1-sft-dpo-8B|-|Saxo/Linkbricks-Horizon-AI-Korean-llama-3.1-sft-dpo-8B|C|1.0,5.0|32768,4096|-|-|Saxo/Linkbricks-Horizon-AI-Korean-llama-3.1-sft-dpo-8B model|N
featherless/Meta-Llama-3.1-Chat-Uncensored|meta-llama-3.1-chat-uncensored|tachyphylaxis/Meta-Llama-3.1-Chat-Uncensored|C|1.0,5.0|32768,4096|-|-|tachyphylaxis/Meta-Llama-3.1-Chat-Uncensored model|N
featherless/llama-3-1-8b|llama-3.1-8b|cobrokerai/llama-3-1-8b|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|cobrokerai/llama-3-1-8b model|N
featherless/FineLlama-3.1-8B|finellama-3.1-8b|mlabonne/FineLlama-3.1-8B|C|1.0,5.0|32768,4096|-|-|mlabonne/FineLlama-3.1-8B model|N
featherless/L3-Super-Nova-RP-8B|l3-super-nova-rp-8b|Casual-Autopsy/L3-Super-Nova-RP-8B|C|1.0,5.0|8192,4096|-|-|Casual-Autopsy/L3-Super-Nova-RP-8B model|N
featherless/Bioinspired-Llama-3-1-8B-128k-2-alpha|bioinspired-llama-3.1-8b-128k-2-alpha|lamm-mit/Bioinspired-Llama-3-1-8B-128k-2-alpha|C|1.0,5.0|32768,4096|-|-|lamm-mit/Bioinspired-Llama-3-1-8B-128k-2-alpha model|N
featherless/finetunellama3.1|finetunellama3.1|rafajafa/finetunellama3.1|C|1.0,5.0|32768,4096|-|-|rafajafa/finetunellama3.1 model|N
featherless/Qwen2-Math-72B-Instruct|qwen2-math-72b-instruct|Qwen/Qwen2-Math-72B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-72B-Instruct model|N
featherless/Canidori-12B-v1|canidori-12b|GalrionSoftworks/Canidori-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/Canidori-12B-v1 model|N
featherless/Lyralin-12B-v1|lyralin-12b|GalrionSoftworks/Lyralin-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/Lyralin-12B-v1 model|N
featherless/Margnum-12B-v1|margnum-12b|GalrionSoftworks/Margnum-12B-v1|C|1.0,5.0|32768,4096|V|-|GalrionSoftworks/Margnum-12B-v1 model|N
featherless/mistral-nemo-gutenberg-12B-v2|mistral-nemo-gutenberg-12b|nbeerbower/mistral-nemo-gutenberg-12B-v2|C|1.0,5.0|32768,4096|V|-|nbeerbower/mistral-nemo-gutenberg-12B-v2 model|N
featherless/magnum-12b-v2.5-kto|magnum-12b-v2.5-kto|anthracite-org/magnum-12b-v2.5-kto|C|1.0,5.0|32768,4096|V|-|anthracite-org/magnum-12b-v2.5-kto model|N
featherless/Hermes-3-Llama-3.1-8B|hermes-3-llama-3.1-8b|NousResearch/Hermes-3-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|NousResearch/Hermes-3-Llama-3.1-8B model|N
featherless/Hermes-3-Llama-3.1-70B|hermes-3-llama-3.1-70b|NousResearch/Hermes-3-Llama-3.1-70B|C|1.0,5.0|32768,4096|-|-|NousResearch/Hermes-3-Llama-3.1-70B model|N
featherless/Pantheon-RP-1.5-12b-Nemo|pantheon-rp-1.5-12b-nemo|Gryphe/Pantheon-RP-1.5-12b-Nemo|C|1.0,5.0|32768,4096|-|-|Gryphe/Pantheon-RP-1.5-12b-Nemo model|N
featherless/Defne-llama3.1-8B|defne-llama3.1-8b|Eurdem/Defne-llama3.1-8B|C|1.0,5.0|32768,4096|-|-|Eurdem/Defne-llama3.1-8B model|N
featherless/LongWriter-llama3.1-8b|longwriter-llama3.1-8b|zai-org/LongWriter-llama3.1-8b|C|1.0,5.0|32768,4096|-|-|zai-org/LongWriter-llama3.1-8b model|N
featherless/Llama-3.1-8b-Ita|llama-3.1-8b-ita|DeepMount00/Llama-3.1-8b-Ita|C|1.0,5.0|32768,4096|-|-|DeepMount00/Llama-3.1-8b-Ita model|N
featherless/SFR-Iterative-DPO-LLaMA-3-8B-R|sfr-iterative-dpo-llama-3-8b-r|TriAiExperiments/SFR-Iterative-DPO-LLaMA-3-8B-R|C|1.0,5.0|8192,4096|-|-|TriAiExperiments/SFR-Iterative-DPO-LLaMA-3-8B-R model|N
featherless/Linkbricks-Horizon-AI-Korean-llama3.1-sft-rlhf-dpo-8B|-|Saxo/Linkbricks-Horizon-AI-Korean-llama3.1-sft-rlhf-dpo-8B|C|1.0,5.0|32768,4096|-|-|Saxo/Linkbricks-Horizon-AI-Korean-llama3.1-sft-rlhf-dpo-8B model|N
featherless/llama-3.1-8B-Instruct-finance-analyst|llama-3.1-8b-instruct-finance-analyst|Wengwengwhale/llama-3.1-8B-Instruct-finance-analyst|C|1.0,5.0|32768,4096|-|-|Wengwengwhale/llama-3.1-8B-Instruct-finance-analyst model|N
featherless/Llama3.1-8b-instruct|llama3.1-8b-instruct|VityaVitalich/Llama3.1-8b-instruct|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|VityaVitalich/Llama3.1-8b-instruct model|N
featherless/Meta-Llama-3.1-8B-openhermes-2.5|meta-llama-3.1-8b-openhermes-2.5|artificialguybr/Meta-Llama-3.1-8B-openhermes-2.5|C|1.0,5.0|32768,4096|-|-|artificialguybr/Meta-Llama-3.1-8B-openhermes-2.5 model|N
featherless/openbuddy-llama3.1-8b-v22.2-131k|openbuddy-llama3.1-8b-v22.2-131k|OpenBuddy/openbuddy-llama3.1-8b-v22.2-131k|C|1.0,5.0|32768,4096|V|-|OpenBuddy/openbuddy-llama3.1-8b-v22.2-131k model|N
featherless/Apollo-0.4-Llama-3.1-8B|apollo-0.4-llama-3.1-8b|Locutusque/Apollo-0.4-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|Locutusque/Apollo-0.4-Llama-3.1-8B model|N
featherless/FineLlama-3.1-8B|finellama-3.1-8b|xkbang/FineLlama-3.1-8B|C|1.0,5.0|32768,4096|-|-|xkbang/FineLlama-3.1-8B model|N
featherless/HarmBench-Llama-2-13b-cls-multimodal-behaviors|-|cais/HarmBench-Llama-2-13b-cls-multimodal-behaviors|C|1.0,5.0|4096,4096|-|-|cais/HarmBench-Llama-2-13b-cls-multimodal-behaviors model|N
featherless/Linkbricks-Horizon-AI-Korean-llama3.1-sft-dpo-70B|-|Saxo/Linkbricks-Horizon-AI-Korean-llama3.1-sft-dpo-70B|C|1.0,5.0|32768,4096|-|-|Saxo/Linkbricks-Horizon-AI-Korean-llama3.1-sft-dpo-70B model|N
featherless/Llama-3.1-8b-Uncensored-Dare|llama-3.1-8b-uncensored-dare|Rupesh2/Llama-3.1-8b-Uncensored-Dare|C|1.0,5.0|32768,4096|-|-|Rupesh2/Llama-3.1-8b-Uncensored-Dare model|N
featherless/Llama-3.1-8B-Instruct-Mental-Health-Classification|-|kingabzpro/Llama-3.1-8B-Instruct-Mental-Health-Classification|C|1.0,5.0|32768,4096|-|-|kingabzpro/Llama-3.1-8B-Instruct-Mental-Health-Classification model|N
featherless/Lyraea-large-llama-3.1|lyraea-large-llama-3.1|Edgerunners/Lyraea-large-llama-3.1|C|1.0,5.0|32768,4096|-|-|Edgerunners/Lyraea-large-llama-3.1 model|N
featherless/Llama-3.1-8B-Ko-bigdefence|llama-3.1-8b-ko-bigdefence|bigdefence/Llama-3.1-8B-Ko-bigdefence|C|1.0,5.0|32768,4096|-|-|bigdefence/Llama-3.1-8B-Ko-bigdefence model|N
featherless/llama-3-youko-70b-instruct|llama-3-youko-70b-instruct|rinna/llama-3-youko-70b-instruct|C|1.0,5.0|8192,4096|-|-|rinna/llama-3-youko-70b-instruct model|N
featherless/L3.1-8B-sunfall-v0.6.1-dpo|l3.1-8b-sunfall-v0.6.1-dpo|crestf411/L3.1-8B-sunfall-v0.6.1-dpo|C|1.0,5.0|32768,4096|V|-|crestf411/L3.1-8B-sunfall-v0.6.1-dpo model|N
featherless/L3.1-70b-Ginny|l3.1-70b-ginny|KaraKaraWitch/L3.1-70b-Ginny|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-Ginny model|N
featherless/L3.1-70b-Inori|l3.1-70b-inori|KaraKaraWitch/L3.1-70b-Inori|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-Inori model|N
featherless/Crimson_Dawn-V0.1|crimson_dawn|Epiculous/Crimson_Dawn-V0.1|C|1.0,5.0|32768,4096|V|-|Epiculous/Crimson_Dawn-V0.1 model|N
featherless/Pantheon-RP-1.6-12b-Nemo|pantheon-rp-1.6-12b-nemo|Gryphe/Pantheon-RP-1.6-12b-Nemo|C|1.0,5.0|32768,4096|-|-|Gryphe/Pantheon-RP-1.6-12b-Nemo model|N
featherless/magnum-v2-72b|magnum-v2-72b|anthracite-org/magnum-v2-72b|C|1.0,5.0|131072,4096|V|-|anthracite-org/magnum-v2-72b model|N
featherless/MN-12B-Starcannon-v2|mn-12b-starcannon|nothingiisreal/MN-12B-Starcannon-v2|C|1.0,5.0|32768,4096|V|-|nothingiisreal/MN-12B-Starcannon-v2 model|N
featherless/MN-12B-Starcannon-v3|mn-12b-starcannon|nothingiisreal/MN-12B-Starcannon-v3|C|1.0,5.0|32768,4096|V|-|nothingiisreal/MN-12B-Starcannon-v3 model|N
featherless/L3.1-70b-MeowMix|l3.1-70b-meowmix|KaraKaraWitch/L3.1-70b-MeowMix|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-MeowMix model|N
featherless/Qwen2-Math-72B|qwen2-math-72b|Qwen/Qwen2-Math-72B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-72B model|N
featherless/Llama-3.1-8B-EZO-1.1-it|llama-3.1-8b-ezo-1.1-it|AXCXEPT/Llama-3.1-8B-EZO-1.1-it|C|1.0,5.0|32768,4096|-|-|AXCXEPT/Llama-3.1-8B-EZO-1.1-it model|N
featherless/Llama-3.1-Storm-8B|llama-3.1-storm-8b|akjindal53244/Llama-3.1-Storm-8B|C|1.0,5.0|32768,4096|-|-|akjindal53244/Llama-3.1-Storm-8B model|N
featherless/L3.1-70B-Euryale-v2.2|l3.1-70b-euryale|Sao10K/L3.1-70B-Euryale-v2.2|C|1.0,5.0|32768,4096|V|-|Sao10K/L3.1-70B-Euryale-v2.2 model|N
featherless/MN-LooseCannon-12B-v2|mn-loosecannon-12b|royallab/MN-LooseCannon-12B-v2|C|1.0,5.0|32768,4096|V|-|royallab/MN-LooseCannon-12B-v2 model|N
featherless/L3.1-70b-MeowMix2|l3.1-70b-meowmix2|KaraKaraWitch/L3.1-70b-MeowMix2|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-MeowMix2 model|N
featherless/Mistral-Nemo-Instruct-2407|mistral-nemo-instruct-2407|mistralai/Mistral-Nemo-Instruct-2407|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Nemo-Instruct-2407 model|N
featherless/Herplete-LLM-Llama-3.1-8b|herplete-llm-llama-3.1-8b|Etherll/Herplete-LLM-Llama-3.1-8b|C|1.0,5.0|32768,4096|-|-|Etherll/Herplete-LLM-Llama-3.1-8b model|N
featherless/Llama-3.1-8B-ArliAI-RPMax-v1.1|llama-3.1-8b-arliai-rpmax|ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.1|C|1.0,5.0|32768,4096|V|,,,4.5,,63.6,,,,|ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.1 model|N
featherless/Llama-3.1-8B-ArliAI-Indo-Formax-v1.0|llama-3.1-8b-arliai-indo-formax|ArliAI/Llama-3.1-8B-ArliAI-Indo-Formax-v1.0|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-8B-ArliAI-Indo-Formax-v1.0 model|N
featherless/Llama-3.1-8B-ArliAI-Formax-v1.0|llama-3.1-8b-arliai-formax|ArliAI/Llama-3.1-8B-ArliAI-Formax-v1.0|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-8B-ArliAI-Formax-v1.0 model|N
featherless/ArliAI-RPMax-12B-v1.1|arliai-rpmax-12b|ArliAI/ArliAI-RPMax-12B-v1.1|C|1.0,5.0|32768,4096|V|,,,4.3,,53.5,,,,|ArliAI/ArliAI-RPMax-12B-v1.1 model|N
featherless/MN-12B-Estrella-v2.2|mn-12b-estrella|v000000/MN-12B-Estrella-v2.2|C|1.0,5.0|32768,4096|V|-|v000000/MN-12B-Estrella-v2.2 model|N
featherless/Himeyuri-v0.1-12B|himeyuri-v0.1-12b|Elizezen/Himeyuri-v0.1-12B|C|1.0,5.0|32768,4096|V|-|Elizezen/Himeyuri-v0.1-12B model|N
featherless/Mahou-1.3-mistral-nemo-12B|mahou-1.3-mistral-nemo-12b|flammenai/Mahou-1.3-mistral-nemo-12B|C|1.0,5.0|32768,4096|-|-|flammenai/Mahou-1.3-mistral-nemo-12B model|N
featherless/Nemomix-v4.0-12B|nemomix-v4.0-12b|MarinaraSpaghetti/Nemomix-v4.0-12B|C|1.0,5.0|32768,4096|V|-|MarinaraSpaghetti/Nemomix-v4.0-12B model|N
featherless/NemoRemix-12B|nemoremix-12b|MarinaraSpaghetti/NemoRemix-12B|C|1.0,5.0|32768,4096|-|-|MarinaraSpaghetti/NemoRemix-12B model|N
featherless/Llama-3.1-8B-Instruct-Fei-v1-Uncensored|llama-3.1-8b-instruct-fei-v1-uncensored|aifeifei799/Llama-3.1-8B-Instruct-Fei-v1-Uncensored|C|1.0,5.0|32768,4096|V|-|aifeifei799/Llama-3.1-8B-Instruct-Fei-v1-Uncensored model|N
featherless/Llama-3.1-8B-Lexi-Uncensored-V2|llama-3.1-8b-lexi-uncensored|Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2|C|1.0,5.0|32768,4096|V|-|Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2 model|N
featherless/Llama-3.1-8B-Stheno-v3.4|llama-3.1-8b-stheno|Sao10K/Llama-3.1-8B-Stheno-v3.4|C|1.0,5.0|32768,4096|V|-|Sao10K/Llama-3.1-8B-Stheno-v3.4 model|N
featherless/MN-12B-Starsong-v1|mn-12b-starsong|aetherwiing/MN-12B-Starsong-v1|C|1.0,5.0|32768,4096|V|-|aetherwiing/MN-12B-Starsong-v1 model|N
featherless/Rocinante-12B-v1.1|rocinante-12b|TheDrummer/Rocinante-12B-v1.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Rocinante-12B-v1.1 model|N
featherless/PiVoT-10.7B-Mistral-v0.2|pivot-10.7b-mistral|maywell/PiVoT-10.7B-Mistral-v0.2|C|1.0,5.0|4096,4096|V|-|maywell/PiVoT-10.7B-Mistral-v0.2 model|N
featherless/CarbonBeagle-11B-truthy|carbonbeagle-11b-truthy|vicgalle/CarbonBeagle-11B-truthy|C|1.0,5.0|4096,4096|-|-|vicgalle/CarbonBeagle-11B-truthy model|N
featherless/ConfigurableBeagle-11B|configurablebeagle-11b|vicgalle/ConfigurableBeagle-11B|C|1.0,5.0|4096,4096|-|-|vicgalle/ConfigurableBeagle-11B model|N
featherless/llama-3-70B-instruct-uncensored|llama-3-70b-instruct-uncensored|Dogge/llama-3-70B-instruct-uncensored|C|1.0,5.0|8192,4096|-|-|Dogge/llama-3-70B-instruct-uncensored model|N
featherless/Meta-Llama-3-8B-Instruct-LongTest|meta-llama-3-8b-instruct-longtest|mattshumer/Meta-Llama-3-8B-Instruct-LongTest|C|1.0,5.0|8192,4096|-|-|mattshumer/Meta-Llama-3-8B-Instruct-LongTest model|N
featherless/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|pvbhanuteja/Meta-Llama-3-70B-Instruct|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|pvbhanuteja/Meta-Llama-3-70B-Instruct model|N
featherless/llama-3-Korean-Bllossom-70B|llama-3-korean-bllossom-70b|Bllossom/llama-3-Korean-Bllossom-70B|C|1.0,5.0|8192,4096|-|-|Bllossom/llama-3-Korean-Bllossom-70B model|N
featherless/Llama-3.1-70B-ArliAI-RPMax-v1.1|llama-3.1-70b-arliai-rpmax|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.1|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.1 model|N
featherless/Unhinged-Qwen2-72B|unhinged-qwen2-72b|FiditeNemini/Unhinged-Qwen2-72B|C|1.0,5.0|131072,4096|-|-|FiditeNemini/Unhinged-Qwen2-72B model|N
featherless/magnum-v1-72b|magnum-v1-72b|anthracite-org/magnum-v1-72b|C|1.0,5.0|131072,4096|V|-|anthracite-org/magnum-v1-72b model|N
featherless/Trendyol-LLM-8b-chat-v2.0|trendyol-llm-8b-chat|Trendyol/Trendyol-LLM-8b-chat-v2.0|C|1.0,5.0|8192,4096|V|-|Trendyol/Trendyol-LLM-8b-chat-v2.0 model|N
featherless/MedLLama3-JP-v2|medllama3-jp|EQUES/MedLLama3-JP-v2|C|1.0,5.0|8192,4096|V|-|EQUES/MedLLama3-JP-v2 model|N
featherless/Hermes-2-Theta-L3-Euryale-Ties-0.8-70B|hermes-2-theta-l3-euryale-ties-0.8-70b|juvi21/Hermes-2-Theta-L3-Euryale-Ties-0.8-70B|C|1.0,5.0|8192,4096|-|-|juvi21/Hermes-2-Theta-L3-Euryale-Ties-0.8-70B model|N
featherless/SEMIKONG-70B|semikong-70b|pentagoniac/SEMIKONG-70B|C|1.0,5.0|8192,4096|-|-|pentagoniac/SEMIKONG-70B model|N
featherless/Arcee-Nova|arcee-nova|arcee-ai/Arcee-Nova|C|1.0,5.0|131072,4096|-|-|arcee-ai/Arcee-Nova model|N
featherless/romulus-mistral-nemo-12b-simpo|romulus-mistral-nemo-12b-simpo|axolotl-ai-co/romulus-mistral-nemo-12b-simpo|C|1.0,5.0|32768,4096|-|-|axolotl-ai-co/romulus-mistral-nemo-12b-simpo model|N
featherless/Infinity-Instruct-7M-Gen-Llama3_1-70B|infinity-instruct-7m-gen-llama3_1-70b|BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B|C|1.0,5.0|8192,4096|-|-|BAAI/Infinity-Instruct-7M-Gen-Llama3_1-70B model|N
featherless/Qwen2-72B-Instruct-kor-dpo|qwen2-72b-instruct-kor-dpo|denial07/Qwen2-72B-Instruct-kor-dpo|C|1.0,5.0|131072,4096|-|-|denial07/Qwen2-72B-Instruct-kor-dpo model|N
featherless/Llama-SEA-LION-v2-8B-IT|llama-sea-lion-v2-8b-it|aisingapore/Llama-SEA-LION-v2-8B-IT|C|1.0,5.0|8192,4096|V|-|aisingapore/Llama-SEA-LION-v2-8B-IT model|N
featherless/Llama-3.1-8b-Uncensored-Dare|llama-3.1-8b-uncensored-dare|ModelsLab/Llama-3.1-8b-Uncensored-Dare|C|1.0,5.0|32768,4096|-|-|ModelsLab/Llama-3.1-8b-Uncensored-Dare model|N
featherless/Llama3-8b-Legal-Mind|llama3-8b-legal-mind|aigrant/Llama3-8b-Legal-Mind|C|1.0,5.0|8192,4096|-|-|aigrant/Llama3-8b-Legal-Mind model|N
featherless/magnum-v2-12b|magnum-v2-12b|anthracite-org/magnum-v2-12b|C|1.0,5.0|32768,4096|V|-|anthracite-org/magnum-v2-12b model|N
featherless/Humanish-Roleplay-Llama-3.1-8B|humanish-roleplay-llama-3.1-8b|vicgalle/Humanish-Roleplay-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|vicgalle/Humanish-Roleplay-Llama-3.1-8B model|N
featherless/mistral-nemo-gutenberg-12B|mistral-nemo-gutenberg-12b|nbeerbower/mistral-nemo-gutenberg-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/mistral-nemo-gutenberg-12B model|N
featherless/magnum-v2.5-12b-kto|magnum-v2.5-12b-kto|anthracite-org/magnum-v2.5-12b-kto|C|1.0,5.0|32768,4096|V|-|anthracite-org/magnum-v2.5-12b-kto model|N
featherless/mistral-nemo-wissenschaft-12B|mistral-nemo-wissenschaft-12b|nbeerbower/mistral-nemo-wissenschaft-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/mistral-nemo-wissenschaft-12B model|N
featherless/mistral-nemo-bophades-12B|mistral-nemo-bophades-12b|nbeerbower/mistral-nemo-bophades-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/mistral-nemo-bophades-12B model|N
featherless/NemoReRemix-12B|nemoreremix-12b|MarinaraSpaghetti/NemoReRemix-12B|C|1.0,5.0|32768,4096|-|-|MarinaraSpaghetti/NemoReRemix-12B model|N
featherless/Roleplay-Hermes-3-Llama-3.1-8B|roleplay-hermes-3-llama-3.1-8b|vicgalle/Roleplay-Hermes-3-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|vicgalle/Roleplay-Hermes-3-Llama-3.1-8B model|N
featherless/ChatWaifu_v1.3|chatwaifu_v1.3|spow12/ChatWaifu_v1.3|C|1.0,5.0|32768,4096|-|-|spow12/ChatWaifu_v1.3 model|N
featherless/openbuddy-llama3.1-8b-v22.3-131k|openbuddy-llama3.1-8b-v22.3-131k|OpenBuddy/openbuddy-llama3.1-8b-v22.3-131k|C|1.0,5.0|32768,4096|V|-|OpenBuddy/openbuddy-llama3.1-8b-v22.3-131k model|N
featherless/Hermes-3-Llama-3.1-8B-lorablated|hermes-3-llama-3.1-8b-lorablated|mlabonne/Hermes-3-Llama-3.1-8B-lorablated|C|1.0,5.0|32768,4096|-|-|mlabonne/Hermes-3-Llama-3.1-8B-lorablated model|N
featherless/Magnum-Instruct-DPO-12B|magnum-instruct-dpo-12b|ParasiticRogue/Magnum-Instruct-DPO-12B|C|1.0,5.0|32768,4096|-|-|ParasiticRogue/Magnum-Instruct-DPO-12B model|N
featherless/Hermes-3-Llama-3.1-70B-lorablated|hermes-3-llama-3.1-70b-lorablated|mlabonne/Hermes-3-Llama-3.1-70B-lorablated|C|1.0,5.0|32768,4096|-|-|mlabonne/Hermes-3-Llama-3.1-70B-lorablated model|N
featherless/L3.1-70B-Hanami-x1|l3.1-70b-hanami-x1|Sao10K/L3.1-70B-Hanami-x1|C|1.0,5.0|32768,4096|-|-|Sao10K/L3.1-70B-Hanami-x1 model|N
featherless/ChatFrame-Uncensored-Instruct-Small|chatframe-uncensored-instruct-small|explorewithai/ChatFrame-Uncensored-Instruct-Small|C|1.0,5.0|8192,4096|-|-|explorewithai/ChatFrame-Uncensored-Instruct-Small model|N
featherless/llama3.1-gutenberg-8B|llama3.1-gutenberg-8b|nbeerbower/llama3.1-gutenberg-8B|C|1.0,5.0|32768,4096|-|-|nbeerbower/llama3.1-gutenberg-8B model|N
featherless/L3.1-8B-sunfall-stheno-v0.6.1|l3.1-8b-sunfall-stheno-v0.6.1|crestf411/L3.1-8B-sunfall-stheno-v0.6.1|C|1.0,5.0|32768,4096|V|-|crestf411/L3.1-8B-sunfall-stheno-v0.6.1 model|N
featherless/Chronos-Gold-12B-1.0|chronos-gold-12b-1.0|elinas/Chronos-Gold-12B-1.0|C|1.0,5.0|32768,4096|-|-|elinas/Chronos-Gold-12B-1.0 model|N
featherless/Shi-Ci_v3-Robin|shi-ci_v3-robin|NLPark/Shi-Ci_v3-Robin|C|1.0,5.0|8192,4096|-|-|NLPark/Shi-Ci_v3-Robin model|N
featherless/mistral-nemo-gutenberg-12B-v4|mistral-nemo-gutenberg-12b|nbeerbower/mistral-nemo-gutenberg-12B-v4|C|1.0,5.0|32768,4096|V|-|nbeerbower/mistral-nemo-gutenberg-12B-v4 model|N
featherless/Nemo-12B-Marlin-v8|nemo-12b-marlin|UsernameJustAnother/Nemo-12B-Marlin-v8|C|1.0,5.0|32768,4096|V|-|UsernameJustAnother/Nemo-12B-Marlin-v8 model|N
featherless/Lyra-Gutenberg-mistral-nemo-12B|lyra-gutenberg-mistral-nemo-12b|nbeerbower/Lyra-Gutenberg-mistral-nemo-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Lyra-Gutenberg-mistral-nemo-12B model|N
featherless/Llama-3.1-8B-Ultra-Instruct|llama-3.1-8b-ultra-instruct|Dampfinchen/Llama-3.1-8B-Ultra-Instruct|C|1.0,5.0|32768,4096|-|-|Dampfinchen/Llama-3.1-8B-Ultra-Instruct model|N
featherless/ChatWaifu_v1.3.1|chatwaifu_v1.3.1|spow12/ChatWaifu_v1.3.1|C|1.0,5.0|32768,4096|-|-|spow12/ChatWaifu_v1.3.1 model|N
featherless/Hermes-3-Llama-3.1-8B|hermes-3-llama-3.1-8b|unsloth/Hermes-3-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|unsloth/Hermes-3-Llama-3.1-8B model|N
featherless/mediaDescr_2epoch_Mistral-Nemo-Base-2407_model|-|xxxxxccc/mediaDescr_2epoch_Mistral-Nemo-Base-2407_model|C|1.0,5.0|32768,4096|-|-|xxxxxccc/mediaDescr_2epoch_Mistral-Nemo-Base-2407_model model|N
featherless/L3.1-Artemis-c-8B|l3.1-artemis-c-8b|mergekit-community/L3.1-Artemis-c-8B|C|1.0,5.0|32768,4096|-|-|mergekit-community/L3.1-Artemis-c-8B model|N
featherless/Turkish-Llama-8b-DPO-v0.1|turkish-llama-8b-dpo|ytu-ce-cosmos/Turkish-Llama-8b-DPO-v0.1|C|1.0,5.0|8192,4096|V|-|ytu-ce-cosmos/Turkish-Llama-8b-DPO-v0.1 model|N
featherless/Llama-3.1-8B-Instruct-suicide-related-text-classification|-|AndresR2909/Llama-3.1-8B-Instruct-suicide-related-text-classification|C|1.0,5.0|32768,4096|-|-|AndresR2909/Llama-3.1-8B-Instruct-suicide-related-text-classification model|N
featherless/Reflection-Llama-3.1-8B|reflection-llama-3.1-8b|terrycraddock/Reflection-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|terrycraddock/Reflection-Llama-3.1-8B model|N
featherless/Magnum-Picaro-0.7-v2-12b|magnum-picaro-0.7-v2-12b|Trappu/Magnum-Picaro-0.7-v2-12b|C|1.0,5.0|32768,4096|V|-|Trappu/Magnum-Picaro-0.7-v2-12b model|N
featherless/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|tuneai/Meta-Llama-3-8B-Instruct|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|tuneai/Meta-Llama-3-8B-Instruct model|N
featherless/Llama-3.1-Storm-8B|llama-3.1-storm-8b|unsloth/Llama-3.1-Storm-8B|C|1.0,5.0|32768,4096|-|-|unsloth/Llama-3.1-Storm-8B model|N
featherless/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|unsloth/Meta-Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Meta-Llama-3.1-70B-Instruct model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|zgrgr/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|8192,4096|-|-|zgrgr/Meta-Llama-3.1-8B-Instruct model|N
featherless/Llama-3.1-SuperNova-Lite|llama-3.1-supernova-lite|arcee-ai/Llama-3.1-SuperNova-Lite|C|1.0,5.0|32768,4096|-|-|arcee-ai/Llama-3.1-SuperNova-Lite model|N
featherless/Crimson_Dawn-v0.2|crimson_dawn|Epiculous/Crimson_Dawn-v0.2|C|1.0,5.0|32768,4096|V|-|Epiculous/Crimson_Dawn-v0.2 model|N
featherless/Meta-Llama-3.1-70B|meta-llama-3.1-70b|unsloth/Meta-Llama-3.1-70B|C|1.0,5.0|32768,4096|-|-|unsloth/Meta-Llama-3.1-70B model|N
featherless/Llama-eus-8B|llama-eus-8b|orai-nlp/Llama-eus-8B|C|1.0,5.0|32768,4096|-|-|orai-nlp/Llama-eus-8B model|N
featherless/Nemo_Pony_2-merged|nemo_pony_2-merged|Fizzarolli/Nemo_Pony_2-merged|C|1.0,5.0|32768,4096|-|-|Fizzarolli/Nemo_Pony_2-merged model|N
featherless/Meta-Llama-3.1-8B|meta-llama-3.1-8b|meta-llama/Meta-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|meta-llama/Meta-Llama-3.1-8B model|N
featherless/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|meta-llama/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|meta-llama/Meta-Llama-3.1-8B-Instruct model|N
featherless/Meta-Llama-3-8B|meta-llama-3-8b|meta-llama/Meta-Llama-3-8B|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|meta-llama/Meta-Llama-3-8B model|N
featherless/Dracarys-Llama-3.1-70B-Instruct|dracarys-llama-3.1-70b-instruct|abacusai/Dracarys-Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|-|abacusai/Dracarys-Llama-3.1-70B-Instruct model|N
featherless/L3.1-70b-Swallow-Saigetsu|l3.1-70b-swallow-saigetsu|KaraKaraWitch/L3.1-70b-Swallow-Saigetsu|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-Swallow-Saigetsu model|N
featherless/MN-12b-Rosier-v1|mn-12b-rosier|Fizzarolli/MN-12b-Rosier-v1|C|1.0,5.0|32768,4096|V|-|Fizzarolli/MN-12b-Rosier-v1 model|N
featherless/MN-12b-Sunrose|mn-12b-sunrose|Fizzarolli/MN-12b-Sunrose|C|1.0,5.0|32768,4096|-|-|Fizzarolli/MN-12b-Sunrose model|N
featherless/Vikhr-Llama3.1-8B-Instruct-R-21-09-24|vikhr-llama3.1-8b-instruct-r-21-09-24|Vikhrmodels/Vikhr-Llama3.1-8B-Instruct-R-21-09-24|C|1.0,5.0|32768,4096|-|-|Vikhrmodels/Vikhr-Llama3.1-8B-Instruct-R-21-09-24 model|N
featherless/Vikhr-Nemo-12B-Instruct-R-21-09-24|vikhr-nemo-12b-instruct-r-21-09-24|Vikhrmodels/Vikhr-Nemo-12B-Instruct-R-21-09-24|C|1.0,5.0|32768,4096|-|-|Vikhrmodels/Vikhr-Nemo-12B-Instruct-R-21-09-24 model|N
featherless/Llama-3-Instruct-8B-SimPO-SPPO-Iter3-merge|-|grimjim/Llama-3-Instruct-8B-SimPO-SPPO-Iter3-merge|C|1.0,5.0|8192,4096|-|-|grimjim/Llama-3-Instruct-8B-SimPO-SPPO-Iter3-merge model|N
featherless/lawma-8b|lawma-8b|ricdomolm/lawma-8b|C|1.0,5.0|8192,4096|-|-|ricdomolm/lawma-8b model|N
featherless/greesychat-turbo|greesychat-turbo|OnlyCheeini/greesychat-turbo|C|1.0,5.0|8192,4096|-|-|OnlyCheeini/greesychat-turbo model|N
featherless/Configurable-Hermes-3-Llama-3.1-8B|configurable-hermes-3-llama-3.1-8b|vicgalle/Configurable-Hermes-3-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|vicgalle/Configurable-Hermes-3-Llama-3.1-8B model|N
featherless/Lyra4-Gutenberg-12B|lyra4-gutenberg-12b|nbeerbower/Lyra4-Gutenberg-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Lyra4-Gutenberg-12B model|N
featherless/Violet_Twilight-v0.2|violet_twilight|Epiculous/Violet_Twilight-v0.2|C|1.0,5.0|32768,4096|V|-|Epiculous/Violet_Twilight-v0.2 model|N
featherless/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta|-|EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta|C|1.0,5.0|32768,4096|-|-|EpistemeAI/Fireball-Alpaca-Llama3.1.07-8B-Philos-Math-KTO-beta model|N
featherless/llama3.1-factory|llama3.1-factory|anthonymeo/llama3.1-factory|C|1.0,5.0|32768,4096|-|-|anthonymeo/llama3.1-factory model|N
featherless/MagpieLM-8B-SFT-v0.1|magpielm-8b-sft|Magpie-Align/MagpieLM-8B-SFT-v0.1|C|1.0,5.0|32768,4096|V|-|Magpie-Align/MagpieLM-8B-SFT-v0.1 model|N
featherless/Qwen2.5-72B|qwen2.5-72b|Qwen/Qwen2.5-72B|C|1.0,5.0|131072,4096|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B model|N
featherless/MagpieLM-8B-Chat-v0.1|magpielm-8b-chat|Magpie-Align/MagpieLM-8B-Chat-v0.1|C|1.0,5.0|32768,4096|V|-|Magpie-Align/MagpieLM-8B-Chat-v0.1 model|N
featherless/Qwen2.5-Math-72B-Instruct|qwen2.5-math-72b-instruct|Qwen/Qwen2.5-Math-72B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-72B-Instruct model|N
featherless/Linkbricks-Horizon-AI-Nous-Hermes-3-Llama3.1-Korean-cpt-8b|-|Saxo/Linkbricks-Horizon-AI-Nous-Hermes-3-Llama3.1-Korean-cpt-8b|C|1.0,5.0|32768,4096|-|-|Saxo/Linkbricks-Horizon-AI-Nous-Hermes-3-Llama3.1-Korean-cpt-8b model|N
featherless/Mistral-7B-Instruct-v0.2|mistral-7b-instruct|mistralai/Mistral-7B-Instruct-v0.2|C|1.0,5.0|8192,4096|V|62.5,,,,,,,,,|mistralai/Mistral-7B-Instruct-v0.2 model|N
featherless/Llama-2-13b-chat-hf|llama-2-13b-chat-hf|meta-llama/Llama-2-13b-chat-hf|C|1.0,5.0|4096,4096|-|47.3,,,,,,,,,|meta-llama/Llama-2-13b-chat-hf model|N
featherless/Llama-3-Base-8B-SFT-KTO|llama-3-base-8b-sft-kto|princeton-nlp/Llama-3-Base-8B-SFT-KTO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-KTO model|N
featherless/Llama-3-Instruct-8B-CPO|llama-3-instruct-8b-cpo|princeton-nlp/Llama-3-Instruct-8B-CPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-CPO model|N
featherless/Llama-3-Instruct-8B-CPO-v0.2|llama-3-instruct-8b-cpo|princeton-nlp/Llama-3-Instruct-8B-CPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-CPO-v0.2 model|N
featherless/Llama-3-Instruct-8B-KTO-v0.2|llama-3-instruct-8b-kto|princeton-nlp/Llama-3-Instruct-8B-KTO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-KTO-v0.2 model|N
featherless/Llama-3-Instruct-8B-ORPO-v0.2|llama-3-instruct-8b-orpo|princeton-nlp/Llama-3-Instruct-8B-ORPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-ORPO-v0.2 model|N
featherless/Llama-3-Instruct-8B-RDPO-v0.2|llama-3-instruct-8b-rdpo|princeton-nlp/Llama-3-Instruct-8B-RDPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-RDPO-v0.2 model|N
featherless/ChatWaifu_v1.4|chatwaifu_v1.4|spow12/ChatWaifu_v1.4|C|1.0,5.0|32768,4096|-|-|spow12/ChatWaifu_v1.4 model|N
featherless/calme-2.2-llama3.1-70b|calme-2.2-llama3.1-70b|MaziyarPanahi/calme-2.2-llama3.1-70b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-2.2-llama3.1-70b model|N
featherless/calme-2.3-llama3.1-70b|calme-2.3-llama3.1-70b|MaziyarPanahi/calme-2.3-llama3.1-70b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-2.3-llama3.1-70b model|N
featherless/Llama-3.1-8B-MultiReflection-Instruct|llama-3.1-8b-multireflection-instruct|leafspark/Llama-3.1-8B-MultiReflection-Instruct|C|1.0,5.0|32768,4096|-|-|leafspark/Llama-3.1-8B-MultiReflection-Instruct model|N
featherless/LLama-3.1-8B-Matrix|llama-3.1-8b-matrix|bunnycore/LLama-3.1-8B-Matrix|C|1.0,5.0|32768,4096|-|-|bunnycore/LLama-3.1-8B-Matrix model|N
featherless/Qwen2.5-Math-72B|qwen2.5-math-72b|Qwen/Qwen2.5-Math-72B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-72B model|N
featherless/Arcanum-12b|arcanum-12b|Xclbr7/Arcanum-12b|C|1.0,5.0|32768,4096|-|-|Xclbr7/Arcanum-12b model|N
featherless/Meta-Llama-3.1-8B-Instruct-HalfAbliterated-TIES|-|gaverfraxz/Meta-Llama-3.1-8B-Instruct-HalfAbliterated-TIES|C|1.0,5.0|32768,4096|-|-|gaverfraxz/Meta-Llama-3.1-8B-Instruct-HalfAbliterated-TIES model|N
featherless/Llama3.1-8B-Identity-TrucLinh|llama3.1-8b-identity-truclinh|mekongai/Llama3.1-8B-Identity-TrucLinh|C|1.0,5.0|32768,4096|-|-|mekongai/Llama3.1-8B-Identity-TrucLinh model|N
featherless/MFANN-llama3.1-Abliterated-SLERP|mfann-llama3.1-abliterated-slerp|netcat420/MFANN-llama3.1-Abliterated-SLERP|C|1.0,5.0|32768,4096|-|-|netcat420/MFANN-llama3.1-Abliterated-SLERP model|N
featherless/banana-2-b-72b|banana-2-b-72b|m8than/banana-2-b-72b|C|1.0,5.0|131072,4096|-|-|m8than/banana-2-b-72b model|N
featherless/EZO-Qwen2.5-72B-Instruct|ezo-qwen2.5-72b-instruct|AXCXEPT/EZO-Qwen2.5-72B-Instruct|C|1.0,5.0|131072,4096|-|-|AXCXEPT/EZO-Qwen2.5-72B-Instruct model|N
featherless/Chronos-Platinum-72B|chronos-platinum-72b|ZeusLabs/Chronos-Platinum-72B|C|1.0,5.0|131072,4096|-|-|ZeusLabs/Chronos-Platinum-72B model|N
featherless/AceGPT-v2-8B-Chat|acegpt-v2-8b-chat|FreedomIntelligence/AceGPT-v2-8B-Chat|C|1.0,5.0|8192,4096|V|-|FreedomIntelligence/AceGPT-v2-8B-Chat model|N
featherless/Azure_Dusk-v0.2|azure_dusk|Epiculous/Azure_Dusk-v0.2|C|1.0,5.0|32768,4096|V|-|Epiculous/Azure_Dusk-v0.2 model|N
featherless/L3.1-Niitorm-8B-DPO-t0.0001|l3.1-niitorm-8b-dpo-t0.0001|v000000/L3.1-Niitorm-8B-DPO-t0.0001|C|1.0,5.0|32768,4096|-|-|v000000/L3.1-Niitorm-8B-DPO-t0.0001 model|N
featherless/Meta-Llama-3.1-8B-Instruct-abliterated|meta-llama-3.1-8b-instruct-abliterated|huihui-ai/Meta-Llama-3.1-8B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Meta-Llama-3.1-8B-Instruct-abliterated model|N
featherless/Magnum-v1-72b-Qwen2.5|magnum-v1-72b-qwen2.5|gghfez/Magnum-v1-72b-Qwen2.5|C|1.0,5.0|131072,4096|V|-|gghfez/Magnum-v1-72b-Qwen2.5 model|N
featherless/Llama-3-Instruct-8B-DPO|llama-3-instruct-8b-dpo|princeton-nlp/Llama-3-Instruct-8B-DPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-DPO model|N
featherless/Llama-3-Instruct-8B-IPO|llama-3-instruct-8b-ipo|princeton-nlp/Llama-3-Instruct-8B-IPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-IPO model|N
featherless/Llama-3-Instruct-8B-KTO|llama-3-instruct-8b-kto|princeton-nlp/Llama-3-Instruct-8B-KTO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-KTO model|N
featherless/Llama-3-Instruct-8B-ORPO|llama-3-instruct-8b-orpo|princeton-nlp/Llama-3-Instruct-8B-ORPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-ORPO model|N
featherless/Llama-3-Instruct-8B-RDPO|llama-3-instruct-8b-rdpo|princeton-nlp/Llama-3-Instruct-8B-RDPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-RDPO model|N
featherless/Llama-3-Base-8B-SFT-IPO|llama-3-base-8b-sft-ipo|princeton-nlp/Llama-3-Base-8B-SFT-IPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-IPO model|N
featherless/Llama-3-Base-8B-SFT-ORPO|llama-3-base-8b-sft-orpo|princeton-nlp/Llama-3-Base-8B-SFT-ORPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-ORPO model|N
featherless/Llama-3-Base-8B-SFT-RDPO|llama-3-base-8b-sft-rdpo|princeton-nlp/Llama-3-Base-8B-SFT-RDPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-RDPO model|N
featherless/Llama-3-Instruct-8B-SPPO-Iter1|llama-3-instruct-8b-sppo-iter1|UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter1|C|1.0,5.0|8192,4096|-|-|UCLA-AGI/Llama-3-Instruct-8B-SPPO-Iter1 model|N
featherless/Llama-3-Base-8B-SFT-CPO|llama-3-base-8b-sft-cpo|princeton-nlp/Llama-3-Base-8B-SFT-CPO|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-CPO model|N
featherless/Llama-3-Base-8B-SFT-RRHF|llama-3-base-8b-sft-rrhf|princeton-nlp/Llama-3-Base-8B-SFT-RRHF|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-RRHF model|N
featherless/Llama-3-Base-8B-SFT-SLiC-HF|llama-3-base-8b-sft-slic-hf|princeton-nlp/Llama-3-Base-8B-SFT-SLiC-HF|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Base-8B-SFT-SLiC-HF model|N
featherless/Llama-3-Instruct-8B-RRHF|llama-3-instruct-8b-rrhf|princeton-nlp/Llama-3-Instruct-8B-RRHF|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-RRHF model|N
featherless/Llama-3-Instruct-8B-SLiC-HF|llama-3-instruct-8b-slic-hf|princeton-nlp/Llama-3-Instruct-8B-SLiC-HF|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-Instruct-8B-SLiC-HF model|N
featherless/Llama-3-Instruct-8B-SLiC-HF-v0.2|llama-3-instruct-8b-slic-hf|princeton-nlp/Llama-3-Instruct-8B-SLiC-HF-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-SLiC-HF-v0.2 model|N
featherless/Llama-3-Instruct-8B-DPO-v0.2|llama-3-instruct-8b-dpo|princeton-nlp/Llama-3-Instruct-8B-DPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-DPO-v0.2 model|N
featherless/Llama-3-Instruct-8B-IPO-v0.2|llama-3-instruct-8b-ipo|princeton-nlp/Llama-3-Instruct-8B-IPO-v0.2|C|1.0,5.0|8192,4096|V|-|princeton-nlp/Llama-3-Instruct-8B-IPO-v0.2 model|N
featherless/Meta-Llama-3.1-8B-Claude-bf16|meta-llama-3.1-8b-claude-bf16|Undi95/Meta-Llama-3.1-8B-Claude-bf16|C|1.0,5.0|32768,4096|-|-|Undi95/Meta-Llama-3.1-8B-Claude-bf16 model|N
featherless/Amal-70b-v2|amal-70b|airev-ai/Amal-70b-v2|C|1.0,5.0|131072,4096|V|-|airev-ai/Amal-70b-v2 model|N
featherless/fin-llama3.1-8b|fin-llama3.1-8b|us4/fin-llama3.1-8b|C|1.0,5.0|8192,4096|-|-|us4/fin-llama3.1-8b model|N
featherless/fikri-3.1-8B-Instruct|fikri-3.1-8b-instruct|BrewInteractive/fikri-3.1-8B-Instruct|C|1.0,5.0|8192,4096|-|-|BrewInteractive/fikri-3.1-8B-Instruct model|N
featherless/LLaMA3-SFT-v2|llama3-sft|RLHFlow/LLaMA3-SFT-v2|C|1.0,5.0|8192,4096|V|-|RLHFlow/LLaMA3-SFT-v2 model|N
featherless/MFANN-llama3.1-abliterated-v2|mfann-llama3.1-abliterated|netcat420/MFANN-llama3.1-abliterated-v2|C|1.0,5.0|32768,4096|V|-|netcat420/MFANN-llama3.1-abliterated-v2 model|N
featherless/Dracarys2-72B-Instruct|dracarys2-72b-instruct|abacusai/Dracarys2-72B-Instruct|C|1.0,5.0|131072,4096|-|-|abacusai/Dracarys2-72B-Instruct model|N
featherless/Llama-VARCO-8B-Instruct|llama-varco-8b-instruct|NCSOFT/Llama-VARCO-8B-Instruct|C|1.0,5.0|8192,4096|V|-|NCSOFT/Llama-VARCO-8B-Instruct model|N
featherless/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base|-|Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base|C|1.0,5.0|32768,4096|-|-|Joseph717171/Llama-3.1-SuperNova-8B-Lite_TIES_with_Base model|N
featherless/Lumimaid-Magnum-12B|lumimaid-magnum-12b|Undi95/Lumimaid-Magnum-12B|C|1.0,5.0|32768,4096|-|-|Undi95/Lumimaid-Magnum-12B model|N
featherless/Dracarys-72B-Instruct|dracarys-72b-instruct|abacusai/Dracarys-72B-Instruct|C|1.0,5.0|131072,4096|-|-|abacusai/Dracarys-72B-Instruct model|N
featherless/L3-Umbral-Storm-8B-t0.0001|l3-umbral-storm-8b-t0.0001|v000000/L3-Umbral-Storm-8B-t0.0001|C|1.0,5.0|8192,4096|-|-|v000000/L3-Umbral-Storm-8B-t0.0001 model|N
featherless/Lyra4-Gutenberg2-12B|lyra4-gutenberg2-12b|nbeerbower/Lyra4-Gutenberg2-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Lyra4-Gutenberg2-12B model|N
featherless/MN-Dark-Planet-TITAN-12B|mn-dark-planet-titan-12b|DavidAU/MN-Dark-Planet-TITAN-12B|C|1.0,5.0|32768,4096|-|-|DavidAU/MN-Dark-Planet-TITAN-12B model|N
featherless/Dans-PersonalityEngine-v1.0.0-8b|dans-personalityengine-v1.0.0-8b|PocketDoc/Dans-PersonalityEngine-v1.0.0-8b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-PersonalityEngine-v1.0.0-8b model|N
featherless/OpenMath2-Llama3.1-8B|openmath2-llama3.1-8b|nvidia/OpenMath2-Llama3.1-8B|C|1.0,5.0|32768,4096|-|-|nvidia/OpenMath2-Llama3.1-8B model|N
featherless/Rombos-LLM-V2.5-Qwen-72b|rombos-llm-v2.5-qwen-72b|rombodawg/Rombos-LLM-V2.5-Qwen-72b|C|1.0,5.0|131072,4096|V|-|rombodawg/Rombos-LLM-V2.5-Qwen-72b model|N
featherless/Llama-3.1-Swallow-8B-Instruct-v0.1|llama-3.1-swallow-8b-instruct|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.1|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.1 model|N
featherless/Llama-3.1-Swallow-70B-Instruct-v0.1|llama-3.1-swallow-70b-instruct|tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.1|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.1 model|N
featherless/MN-12B-Siskin-v0.1|mn-12b-siskin|Nohobby/MN-12B-Siskin-v0.1|C|1.0,5.0|32768,4096|V|-|Nohobby/MN-12B-Siskin-v0.1 model|N
featherless/Qwen2.5-72B-Instruct-abliterated|qwen2.5-72b-instruct-abliterated|zetasepic/Qwen2.5-72B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|zetasepic/Qwen2.5-72B-Instruct-abliterated model|N
featherless/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-DARKNESS|-|DavidAU/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-DARKNESS|C|1.0,5.0|32768,4096|-|-|DavidAU/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-DARKNESS model|N
featherless/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-MADNESS|-|DavidAU/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-MADNESS|C|1.0,5.0|32768,4096|-|-|DavidAU/MN-GRAND-Gutenberg-Lyra4-Lyra-12B-MADNESS model|N
featherless/X-ALMA-13B-Pretrain|x-alma-13b-pretrain|haoranxu/X-ALMA-13B-Pretrain|C|1.0,5.0|4096,4096|-|-|haoranxu/X-ALMA-13B-Pretrain model|N
featherless/OpenMath2-Llama3.1-70B|openmath2-llama3.1-70b|nvidia/OpenMath2-Llama3.1-70B|C|1.0,5.0|32768,4096|-|-|nvidia/OpenMath2-Llama3.1-70B model|N
featherless/Mistral-Nemo-Gutenberg-Doppel-12B-v2|mistral-nemo-gutenberg-doppel-12b|nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B-v2|C|1.0,5.0|32768,4096|V|-|nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B-v2 model|N
featherless/fusion-guide-12b-0.1|fusion-guide-12b-0.1|fusionbase/fusion-guide-12b-0.1|C|1.0,5.0|32768,4096|-|-|fusionbase/fusion-guide-12b-0.1 model|N
featherless/ChatWaifu_12B_v2.0|chatwaifu_12b_v2.0|spow12/ChatWaifu_12B_v2.0|C|1.0,5.0|32768,4096|-|-|spow12/ChatWaifu_12B_v2.0 model|N
featherless/Mahou-1.5-mistral-nemo-12B|mahou-1.5-mistral-nemo-12b|flammenai/Mahou-1.5-mistral-nemo-12B|C|1.0,5.0|32768,4096|-|-|flammenai/Mahou-1.5-mistral-nemo-12B model|N
featherless/Llama-3.2-8B-Instruct|llama-3.2-8b-instruct|theo77186/Llama-3.2-8B-Instruct|C|1.0,5.0|32768,4096|-|-|theo77186/Llama-3.2-8B-Instruct model|N
featherless/Llama3.1-Gutenberg-Doppel-70B|llama3.1-gutenberg-doppel-70b|nbeerbower/Llama3.1-Gutenberg-Doppel-70B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Llama3.1-Gutenberg-Doppel-70B model|N
featherless/rombos_Replete-Coder-Llama3-8B|rombos_replete-coder-llama3-8b|rombodawg/rombos_Replete-Coder-Llama3-8B|C|1.0,5.0|8192,4096|-|-|rombodawg/rombos_Replete-Coder-Llama3-8B model|N
featherless/Llama-3.1-Nemotron-70B-Instruct-HF|llama-3.1-nemotron-70b-instruct-hf|nvidia/Llama-3.1-Nemotron-70B-Instruct-HF|C|1.0,5.0|32768,4096|-|-|nvidia/Llama-3.1-Nemotron-70B-Instruct-HF model|N
featherless/Llama-3.1-Swallow-8B-v0.1|llama-3.1-swallow-8b|tokyotech-llm/Llama-3.1-Swallow-8B-v0.1|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-v0.1 model|N
featherless/L3.1-70b-Milasha|l3.1-70b-milasha|KaraKaraWitch/L3.1-70b-Milasha|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/L3.1-70b-Milasha model|N
featherless/Infinity-Instruct-3M-0613-Llama3-70B|infinity-instruct-3m-0613-llama3-70b|BAAI/Infinity-Instruct-3M-0613-Llama3-70B|C|1.0,5.0|8192,4096|-|,,,14.4,,68.2,,,,|BAAI/Infinity-Instruct-3M-0613-Llama3-70B model|N
featherless/Llama-3.1-8B-Instruct-Spatial-SQL-1.0|llama-3.1-8b-instruct-spatial-sql-1.0|markrodrigo/Llama-3.1-8B-Instruct-Spatial-SQL-1.0|C|1.0,5.0|32768,4096|-|-|markrodrigo/Llama-3.1-8B-Instruct-Spatial-SQL-1.0 model|N
featherless/Meta-Llama-3.1-70B-Instruct-bf16-CORRECTED|-|mlx-community/Meta-Llama-3.1-70B-Instruct-bf16-CORRECTED|C|1.0,5.0|32768,4096|-|-|mlx-community/Meta-Llama-3.1-70B-Instruct-bf16-CORRECTED model|N
featherless/Llama-3.1-8B-LoRA-kolon-sg-v2-merged|llama-3.1-8b-lora-kolon-sg-v2-merged|jjaegii/Llama-3.1-8B-LoRA-kolon-sg-v2-merged|C|1.0,5.0|32768,4096|V|-|jjaegii/Llama-3.1-8B-LoRA-kolon-sg-v2-merged model|N
featherless/magnum-v4-72b|magnum-v4-72b|anthracite-org/magnum-v4-72b|C|1.0,5.0|131072,4096|V|-|anthracite-org/magnum-v4-72b model|N
featherless/magnum-v4-12b|magnum-v4-12b|anthracite-org/magnum-v4-12b|C|1.0,5.0|32768,4096|V|-|anthracite-org/magnum-v4-12b model|N
featherless/spiral-da-HYAH-Qwen2.5-72b|spiral-da-hyah-qwen2.5-72b|KaraKaraWitch/spiral-da-HYAH-Qwen2.5-72b|C|1.0,5.0|131072,4096|-|-|KaraKaraWitch/spiral-da-HYAH-Qwen2.5-72b model|N
featherless/L3.1-MS-Astoria-70b-v2|l3.1-ms-astoria-70b|SteelStorage/L3.1-MS-Astoria-70b-v2|C|1.0,5.0|32768,4096|V|-|SteelStorage/L3.1-MS-Astoria-70b-v2 model|N
featherless/Llama-3.1-Nemotron-lorablated-70B|llama-3.1-nemotron-lorablated-70b|nbeerbower/Llama-3.1-Nemotron-lorablated-70B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Llama-3.1-Nemotron-lorablated-70B model|N
featherless/L3.1-Suze-Vume-2-calc|l3.1-suze-vume-2-calc|djuna/L3.1-Suze-Vume-2-calc|C|1.0,5.0|32768,4096|V|-|djuna/L3.1-Suze-Vume-2-calc model|N
featherless/SuperNeuralDreadDevil-8b|superneuraldreaddevil-8b|BoltMonkey/SuperNeuralDreadDevil-8b|C|1.0,5.0|32768,4096|-|-|BoltMonkey/SuperNeuralDreadDevil-8b model|N
featherless/Llama-3.1-70B-ArliAI-RPMax-v1.2|llama-3.1-70b-arliai-rpmax|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.2|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.2 model|N
featherless/Llama-3.1-Saoirse-70B|llama-3.1-saoirse-70b|nbeerbower/Llama-3.1-Saoirse-70B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Llama-3.1-Saoirse-70B model|N
featherless/Llama-3.1-Carballo|llama-3.1-carballo|proxectonos/Llama-3.1-Carballo|C|1.0,5.0|32768,4096|-|-|proxectonos/Llama-3.1-Carballo model|N
featherless/MadMix-Unleashed-12B|madmix-unleashed-12b|ThijsL202/MadMix-Unleashed-12B|C|1.0,5.0|32768,4096|-|-|ThijsL202/MadMix-Unleashed-12B model|N
featherless/WooWoof_AI_Vision16Bit|woowoof_ai_vision16bit|WooWoof/WooWoof_AI_Vision16Bit|C|1.0,5.0|8192,4096|V|-|WooWoof/WooWoof_AI_Vision16Bit model|N
featherless/Llama-3.1-Nemotron-70B-Instruct-HF-bf16|llama-3.1-nemotron-70b-instruct-hf-bf16|mlx-community/Llama-3.1-Nemotron-70B-Instruct-HF-bf16|C|1.0,5.0|32768,4096|-|-|mlx-community/Llama-3.1-Nemotron-70B-Instruct-HF-bf16 model|N
featherless/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B|-|Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B|C|1.0,5.0|32768,4096|-|-|Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B model|N
featherless/Llama-3.05-NT-Storybreaker-Ministral-70B|-|Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B|C|1.0,5.0|32768,4096|-|-|Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B model|N
featherless/UnslopNemo-12B-v4.1|unslopnemo-12b|TheDrummer/UnslopNemo-12B-v4.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/UnslopNemo-12B-v4.1 model|N
featherless/UnslopNemo-12B-v4|unslopnemo-12b|TheDrummer/UnslopNemo-12B-v4|C|1.0,5.0|32768,4096|V|-|TheDrummer/UnslopNemo-12B-v4 model|N
featherless/UnslopNemo-12B-v3|unslopnemo-12b|TheDrummer/UnslopNemo-12B-v3|C|1.0,5.0|32768,4096|V|-|TheDrummer/UnslopNemo-12B-v3 model|N
featherless/Control-8B|control-8b|Delta-Vector/Control-8B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Control-8B model|N
featherless/ldm_soup_Llama-3.1-8B-Inst|ldm_soup_llama-3.1-8b-inst|DeepAuto-AI/ldm_soup_Llama-3.1-8B-Inst|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/ldm_soup_Llama-3.1-8B-Inst model|N
featherless/EVA-Qwen2.5-72B-v0.0|eva-qwen2.5-72b|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.0|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-72B-v0.0 model|N
featherless/MN-CelesteGold-12B-Merge|mn-celestegold-12b-merge|Slomb/MN-CelesteGold-12B-Merge|C|1.0,5.0|32768,4096|-|-|Slomb/MN-CelesteGold-12B-Merge model|N
featherless/L3.1-70Blivion-v0.1-rc1-70B|l3.1-70blivion-v0.1-rc1-70b|invisietch/L3.1-70Blivion-v0.1-rc1-70B|C|1.0,5.0|32768,4096|V|-|invisietch/L3.1-70Blivion-v0.1-rc1-70B model|N
featherless/Romulus-cpt-Llama-3.1-8B-v0.1-Instruct|romulus-cpt-llama-3.1-8b-v0.1-instruct|louisbrulenaudet/Romulus-cpt-Llama-3.1-8B-v0.1-Instruct|C|1.0,5.0|32768,4096|V|-|louisbrulenaudet/Romulus-cpt-Llama-3.1-8B-v0.1-Instruct model|N
featherless/Llama-3-Trendyol-LLM-8b-chat-v2.0|llama-3-trendyol-llm-8b-chat|Trendyol/Llama-3-Trendyol-LLM-8b-chat-v2.0|C|1.0,5.0|8192,4096|V|-|Trendyol/Llama-3-Trendyol-LLM-8b-chat-v2.0 model|N
featherless/kulmistral-7b-it|kulmistral-7b-it|Loyola/kulmistral-7b-it|C|1.0,5.0|8192,4096|-|-|Loyola/kulmistral-7b-it model|N
featherless/Llama-3.1-Hawkish-8B|llama-3.1-hawkish-8b|mukaj/Llama-3.1-Hawkish-8B|C|1.0,5.0|32768,4096|-|-|mukaj/Llama-3.1-Hawkish-8B model|N
featherless/Starcannon-Unleashed-12B-v1.0|starcannon-unleashed-12b|VongolaChouko/Starcannon-Unleashed-12B-v1.0|C|1.0,5.0|32768,4096|V|-|VongolaChouko/Starcannon-Unleashed-12B-v1.0 model|N
featherless/shuttle-3|shuttle-3|shuttleai/shuttle-3|C|1.0,5.0|131072,4096|-|-|shuttleai/shuttle-3 model|N
featherless/saiga_nemo_12b|saiga_nemo_12b|IlyaGusev/saiga_nemo_12b|C|1.0,5.0|32768,4096|-|-|IlyaGusev/saiga_nemo_12b model|N
featherless/Llama-3.1-Instruct_NSFW-pretrained_e1-plus_reddit|-|athirdpath/Llama-3.1-Instruct_NSFW-pretrained_e1-plus_reddit|C|1.0,5.0|32768,4096|-|-|athirdpath/Llama-3.1-Instruct_NSFW-pretrained_e1-plus_reddit model|N
featherless/Mengzi3-8B-Chat|mengzi3-8b-chat|Langboat/Mengzi3-8B-Chat|C|1.0,5.0|8192,4096|-|-|Langboat/Mengzi3-8B-Chat model|N
featherless/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|unsloth/Qwen2.5-72B-Instruct|C|1.0,5.0|131072,4096|-|83.4,,63.2,49.1,,,,,,|unsloth/Qwen2.5-72B-Instruct model|N
featherless/Meta-Llama-3.1-8B-Text-to-SQL|meta-llama-3.1-8b-text-to-sql|ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL|C|1.0,5.0|32768,4096|-|-|ruslanmv/Meta-Llama-3.1-8B-Text-to-SQL model|N
featherless/KONI-Llama3.1-8B-Instruct-20241024|koni-llama3.1-8b-instruct|KISTI-KONI/KONI-Llama3.1-8B-Instruct-20241024|C|1.0,5.0|32768,4096|-|-|KISTI-KONI/KONI-Llama3.1-8B-Instruct-20241024 model|N
featherless/Llama-3.1-ARC-Potpourri-Induction-8B|llama-3.1-arc-potpourri-induction-8b|barc0/Llama-3.1-ARC-Potpourri-Induction-8B|C|1.0,5.0|32768,4096|-|-|barc0/Llama-3.1-ARC-Potpourri-Induction-8B model|N
featherless/llama3.1_korean_v1.1_sft_by_aidx|llama3.1_korean_v1.1_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.1_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.1_sft_by_aidx model|N
featherless/L3.1-EtherealRainbow-v1.0-rc1-8B|l3.1-etherealrainbow-v1.0-rc1-8b|invisietch/L3.1-EtherealRainbow-v1.0-rc1-8B|C|1.0,5.0|32768,4096|V|-|invisietch/L3.1-EtherealRainbow-v1.0-rc1-8B model|N
featherless/EVA-Qwen2.5-32B-v0.2|eva-qwen2.5-32b|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2 model|N
featherless/LLENN-v0.75-Qwen2.5-72b|llenn-v0.75-qwen2.5-72b|KaraKaraWitch/LLENN-v0.75-Qwen2.5-72b|C|1.0,5.0|131072,4096|V|-|KaraKaraWitch/LLENN-v0.75-Qwen2.5-72b model|N
featherless/Meta-Llama-3-70B|meta-llama-3-70b|meta-llama/Meta-Llama-3-70B|C|1.0,5.0|8192,4096|-|79.3,,22.6,40.6,,,,,,|meta-llama/Meta-Llama-3-70B model|N
featherless/SteyrCannon-Qwen2.5-72b|steyrcannon-qwen2.5-72b|KaraKaraWitch/SteyrCannon-Qwen2.5-72b|C|1.0,5.0|131072,4096|-|-|KaraKaraWitch/SteyrCannon-Qwen2.5-72b model|N
featherless/Qwen2.5-Coder-32B-Instruct|qwen2.5-coder-32b-instruct|Qwen/Qwen2.5-Coder-32B-Instruct|C|1.0,5.0|131072,4096|-|79.1,,,,,,,,,|Qwen/Qwen2.5-Coder-32B-Instruct model|N
featherless/Llama-3-LewdPlay-8B-evo|llama-3-lewdplay-8b-evo|TOPAI-Network/Llama-3-LewdPlay-8B-evo|C|1.0,5.0|8192,4096|-|-|TOPAI-Network/Llama-3-LewdPlay-8B-evo model|N
featherless/llama-3.1-70B-lumitron-lorablated|llama-3.1-70b-lumitron-lorablated|nonetrix/llama-3.1-70B-lumitron-lorablated|C|1.0,5.0|32768,4096|-|-|nonetrix/llama-3.1-70B-lumitron-lorablated model|N
featherless/Llama-3.1-ARC-Potpourri-Transduction-8B|llama-3.1-arc-potpourri-transduction-8b|barc0/Llama-3.1-ARC-Potpourri-Transduction-8B|C|1.0,5.0|32768,4096|-|-|barc0/Llama-3.1-ARC-Potpourri-Transduction-8B model|N
featherless/Llama-3.1-Swallow-8B-Instruct-v0.2|llama-3.1-swallow-8b-instruct|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.2|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.2 model|N
featherless/MN-12B-Inferor-v0.0|mn-12b-inferor|Infermatic/MN-12B-Inferor-v0.0|C|1.0,5.0|32768,4096|V|-|Infermatic/MN-12B-Inferor-v0.0 model|N
featherless/ktdsbaseLM-v0.13-onbased-llama3.1|ktdsbaselm-v0.13-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.13-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.13-onbased-llama3.1 model|N
featherless/NovaSpark|novaspark|Epiculous/NovaSpark|C|1.0,5.0|32768,4096|-|-|Epiculous/NovaSpark model|N
featherless/openbuddy-nemotron-70b-v23.1-131k|openbuddy-nemotron-70b-v23.1-131k|OpenBuddy/openbuddy-nemotron-70b-v23.1-131k|C|1.0,5.0|32768,4096|V|-|OpenBuddy/openbuddy-nemotron-70b-v23.1-131k model|N
featherless/Qwen2.5-72B-Instruct-abliterated-v2|qwen2.5-72b-instruct-abliterated|zetasepic/Qwen2.5-72B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|zetasepic/Qwen2.5-72B-Instruct-abliterated-v2 model|N
featherless/Llama-KoEmpathy|llama-koempathy|byeolki/Llama-KoEmpathy|C|1.0,5.0|32768,4096|-|-|byeolki/Llama-KoEmpathy model|N
featherless/Prismatic-12b|prismatic-12b|ProdeusUnity/Prismatic-12b|C|1.0,5.0|32768,4096|-|-|ProdeusUnity/Prismatic-12b model|N
featherless/Mistral-Nemo-Prism-12B-v5|mistral-nemo-prism-12b|nbeerbower/Mistral-Nemo-Prism-12B-v5|C|1.0,5.0|32768,4096|V|-|nbeerbower/Mistral-Nemo-Prism-12B-v5 model|N
featherless/Mahou-1.5-mistral-nemo-12B-lorablated|mahou-1.5-mistral-nemo-12b-lorablated|nbeerbower/Mahou-1.5-mistral-nemo-12B-lorablated|C|1.0,5.0|32768,4096|-|-|nbeerbower/Mahou-1.5-mistral-nemo-12B-lorablated model|N
featherless/Mistral-Nemo-12B-ArliAI-RPMax-v1.1|mistral-nemo-12b-arliai-rpmax|ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.1|C|1.0,5.0|32768,4096|V|-|ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.1 model|N
featherless/Llama-3.1-8B-ArliAI-RPMax-v1.3|llama-3.1-8b-arliai-rpmax|ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.3|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-8B-ArliAI-RPMax-v1.3 model|N
featherless/Athene-V2-Chat|athene-v2-chat|Nexusflow/Athene-V2-Chat|C|1.0,5.0|131072,4096|V|-|Nexusflow/Athene-V2-Chat model|N
featherless/Evathene-v1.0|evathene|sophosympatheia/Evathene-v1.0|C|1.0,5.0|131072,4096|V|-|sophosympatheia/Evathene-v1.0 model|N
featherless/L3-8B-Soliloquy-v2-SpicyMaid-Lewd-Mergetest|-|HyperBlaze/L3-8B-Soliloquy-v2-SpicyMaid-Lewd-Mergetest|C|1.0,5.0|8192,4096|V|-|HyperBlaze/L3-8B-Soliloquy-v2-SpicyMaid-Lewd-Mergetest model|N
featherless/AstroSage-8B|astrosage-8b|AstroMLab/AstroSage-8B|C|1.0,5.0|32768,4096|-|-|AstroMLab/AstroSage-8B model|N
featherless/Llama-3.1-Swallow-8B-v0.2|llama-3.1-swallow-8b|tokyotech-llm/Llama-3.1-Swallow-8B-v0.2|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-v0.2 model|N
featherless/Llama3.1-8B-PRM-Mistral-Data|llama3.1-8b-prm-mistral-data|RLHFlow/Llama3.1-8B-PRM-Mistral-Data|C|1.0,5.0|32768,4096|-|-|RLHFlow/Llama3.1-8B-PRM-Mistral-Data model|N
featherless/Mistral-Nemo-12B-ArliAI-RPMax-v1.2|mistral-nemo-12b-arliai-rpmax|ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2|C|1.0,5.0|32768,4096|V|-|ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2 model|N
featherless/Matsutei-Qwen2.5-72b|matsutei-qwen2.5-72b|KaraKaraWitch/Matsutei-Qwen2.5-72b|C|1.0,5.0|131072,4096|-|-|KaraKaraWitch/Matsutei-Qwen2.5-72b model|N
featherless/Q2.5-MS-Mistoria-72b|q2.5-ms-mistoria-72b|Steelskull/Q2.5-MS-Mistoria-72b|C|1.0,5.0|131072,4096|-|-|Steelskull/Q2.5-MS-Mistoria-72b model|N
featherless/LLaMA-Mesh|llama-mesh|Zhengyi/LLaMA-Mesh|C|1.0,5.0|32768,4096|-|-|Zhengyi/LLaMA-Mesh model|N
featherless/L3.1-nemotron-sunfall-v0.7.0|l3.1-nemotron-sunfall-v0.7.0|crestf411/L3.1-nemotron-sunfall-v0.7.0|C|1.0,5.0|32768,4096|V|-|crestf411/L3.1-nemotron-sunfall-v0.7.0 model|N
featherless/SteyrCannon-0.2-Qwen2.5-72b|steyrcannon-0.2-qwen2.5-72b|KaraKaraWitch/SteyrCannon-0.2-Qwen2.5-72b|C|1.0,5.0|131072,4096|-|-|KaraKaraWitch/SteyrCannon-0.2-Qwen2.5-72b model|N
featherless/llama-3-Korean-8B|llama-3-korean-8b|VIRNECT/llama-3-Korean-8B|C|1.0,5.0|8192,4096|-|-|VIRNECT/llama-3-Korean-8B model|N
featherless/Llama-3-8B-Instruct-Coding-Expert|llama-3-8b-instruct-coding-expert|SakanaAI/Llama-3-8B-Instruct-Coding-Expert|C|1.0,5.0|8192,4096|-|-|SakanaAI/Llama-3-8B-Instruct-Coding-Expert model|N
featherless/hankook_llama|hankook_llama|jinjinjinjinjinjin/hankook_llama|C|1.0,5.0|32768,4096|-|-|jinjinjinjinjinjin/hankook_llama model|N
featherless/Mistral-Nemo-Instruct-2407_sft_ver_4.4|mistral-nemo-instruct-2407_sft_ver_4.4|spow12/Mistral-Nemo-Instruct-2407_sft_ver_4.4|C|1.0,5.0|32768,4096|-|-|spow12/Mistral-Nemo-Instruct-2407_sft_ver_4.4 model|N
featherless/familidata|familidata|hyokwan/familidata|C|1.0,5.0|4096,4096|-|-|hyokwan/familidata model|N
featherless/familidata_llama31|familidata_llama31|hyokwan/familidata_llama31|C|1.0,5.0|32768,4096|-|-|hyokwan/familidata_llama31 model|N
featherless/llama31_common|llama31_common|hyokwan/llama31_common|C|1.0,5.0|32768,4096|-|-|hyokwan/llama31_common model|N
featherless/d3|d3|ckoozzzu/d3|C|1.0,5.0|32768,4096|-|-|ckoozzzu/d3 model|N
featherless/C-1|c-1|AnasTySia/C-1|C|1.0,5.0|32768,4096|-|-|AnasTySia/C-1 model|N
featherless/Llama-3.1-Tulu-3-70B|llama-3.1-tulu-3-70b|allenai/Llama-3.1-Tulu-3-70B|C|1.0,5.0|32768,4096|-|-|allenai/Llama-3.1-Tulu-3-70B model|N
featherless/MachiNoDolphin-Qwen2.5-72b|machinodolphin-qwen2.5-72b|KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b|C|1.0,5.0|131072,4096|-|-|KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b model|N
featherless/MN-Violet-Lotus-12B|mn-violet-lotus-12b|FallenMerick/MN-Violet-Lotus-12B|C|1.0,5.0|32768,4096|V|-|FallenMerick/MN-Violet-Lotus-12B model|N
featherless/Mistral-Nemo-Prism-12B-v7|mistral-nemo-prism-12b|nbeerbower/Mistral-Nemo-Prism-12B-v7|C|1.0,5.0|32768,4096|V|-|nbeerbower/Mistral-Nemo-Prism-12B-v7 model|N
featherless/L3.1-8B-Slush-v1.1|l3.1-8b-slush|crestf411/L3.1-8B-Slush-v1.1|C|1.0,5.0|32768,4096|V|-|crestf411/L3.1-8B-Slush-v1.1 model|N
featherless/NaturalLM|naturallm|qingy2019/NaturalLM|C|1.0,5.0|32768,4096|-|-|qingy2019/NaturalLM model|N
featherless/QwQ-32B-Preview|qwq-32b-preview|Qwen/QwQ-32B-Preview|C|1.0,5.0|131072,4096|-|-|Qwen/QwQ-32B-Preview model|N
featherless/functionary-medium-v3.2|functionary-medium|meetkai/functionary-medium-v3.2|C|1.0,5.0|32768,4096|V|-|meetkai/functionary-medium-v3.2 model|N
featherless/functionary-small-v3.2|functionary-small|meetkai/functionary-small-v3.2|C|1.0,5.0|32768,4096|V|-|meetkai/functionary-small-v3.2 model|N
featherless/llama3-empower-functions-small-v1.1|llama3-empower-functions-small|empower-dev/llama3-empower-functions-small-v1.1|C|1.0,5.0|32768,4096|V|-|empower-dev/llama3-empower-functions-small-v1.1 model|N
featherless/llama3-empower-functions-large-v1.1|llama3-empower-functions-large|empower-dev/llama3-empower-functions-large-v1.1|C|1.0,5.0|32768,4096|V|-|empower-dev/llama3-empower-functions-large-v1.1 model|N
featherless/llama-3-meerkat-70b-v1.0|llama-3-meerkat-70b|dmis-lab/llama-3-meerkat-70b-v1.0|C|1.0,5.0|8192,4096|V|-|dmis-lab/llama-3-meerkat-70b-v1.0 model|N
featherless/Marco-o1|marco-o1|AIDC-AI/Marco-o1|C|1.0,5.0|131072,4096|-|,,,1.2,,47.7,,,,|AIDC-AI/Marco-o1 model|N
featherless/Llama-Guard-3-8B|llama-guard-3-8b|meta-llama/Llama-Guard-3-8B|C|1.0,5.0|32768,4096|-|-|meta-llama/Llama-Guard-3-8B model|N
featherless/Skywork-o1-Open-Llama-3.1-8B|skywork-o1-open-llama-3.1-8b|Skywork/Skywork-o1-Open-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|Skywork/Skywork-o1-Open-Llama-3.1-8B model|N
featherless/L3.1-Dark-Planet-SpinFire-Uncensored-8B|l3.1-dark-planet-spinfire-uncensored-8b|DavidAU/L3.1-Dark-Planet-SpinFire-Uncensored-8B|C|1.0,5.0|32768,4096|-|-|DavidAU/L3.1-Dark-Planet-SpinFire-Uncensored-8B model|N
featherless/Llama3.1-70B-PlumChat|llama3.1-70b-plumchat|sequelbox/Llama3.1-70B-PlumChat|C|1.0,5.0|32768,4096|-|-|sequelbox/Llama3.1-70B-PlumChat model|N
featherless/Llama-3.1-70B-ArliAI-RPMax-v1.3|llama-3.1-70b-arliai-rpmax|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.3|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.1-70B-ArliAI-RPMax-v1.3 model|N
featherless/L3.1-RP-Hero-Dirty_Harry-8B|l3.1-rp-hero-dirty_harry-8b|DavidAU/L3.1-RP-Hero-Dirty_Harry-8B|C|1.0,5.0|32768,4096|-|-|DavidAU/L3.1-RP-Hero-Dirty_Harry-8B model|N
featherless/Mistral-Nemo-Prism-12B|mistral-nemo-prism-12b|nbeerbower/Mistral-Nemo-Prism-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Mistral-Nemo-Prism-12B model|N
featherless/Lorenzo-8B-Merge|lorenzo-8b-merge|qingy2019/Lorenzo-8B-Merge|C|1.0,5.0|32768,4096|-|-|qingy2019/Lorenzo-8B-Merge model|N
featherless/DarkAtom-12B-v3|darkatom-12b|Khetterman/DarkAtom-12B-v3|C|1.0,5.0|32768,4096|V|-|Khetterman/DarkAtom-12B-v3 model|N
featherless/Evathene-v1.2|evathene|sophosympatheia/Evathene-v1.2|C|1.0,5.0|131072,4096|V|-|sophosympatheia/Evathene-v1.2 model|N
featherless/Llama-3.1-Tango-70b|llama-3.1-tango-70b|Model-SafeTensors/Llama-3.1-Tango-70b|C|1.0,5.0|32768,4096|-|-|Model-SafeTensors/Llama-3.1-Tango-70b model|N
featherless/Llama-3.1-Tango-70b|llama-3.1-tango-70b|sandbox-ai/Llama-3.1-Tango-70b|C|1.0,5.0|32768,4096|-|-|sandbox-ai/Llama-3.1-Tango-70b model|N
featherless/Llama3.1-8B-PRM-Deepseek-Data|llama3.1-8b-prm-deepseek-data|RLHFlow/Llama3.1-8B-PRM-Deepseek-Data|C|1.0,5.0|32768,4096|-|-|RLHFlow/Llama3.1-8B-PRM-Deepseek-Data model|N
featherless/oh-dcft-v3.1-gpt-4o-mini|oh-dcft-v3.1-gpt-4o-mini|mlfoundations-dev/oh-dcft-v3.1-gpt-4o-mini|C|1.0,5.0|32768,4096|V|-|mlfoundations-dev/oh-dcft-v3.1-gpt-4o-mini model|N
featherless/MN-Slush|mn-slush|crestf411/MN-Slush|C|1.0,5.0|32768,4096|-|-|crestf411/MN-Slush model|N
featherless/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|meta-llama/Llama-3.3-70B-Instruct|C|1.0,5.0|32768,4096|-|86.3,,41.6,47.4,,,,,,|meta-llama/Llama-3.3-70B-Instruct model|N
featherless/Qwen2.5-72B-Instruct-abliterated|qwen2.5-72b-instruct-abliterated|huihui-ai/Qwen2.5-72B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-72B-Instruct-abliterated model|N
featherless/ktdsbaseLM-v0.14-onbased-llama3.1|ktdsbaselm-v0.14-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.14-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.14-onbased-llama3.1 model|N
featherless/llama3.1_korean_v1.6_sft_by_aidx|llama3.1_korean_v1.6_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.6_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.6_sft_by_aidx model|N
featherless/Lorenzo-8B-Merge|lorenzo-8b-merge|qingy2024/Lorenzo-8B-Merge|C|1.0,5.0|32768,4096|-|-|qingy2024/Lorenzo-8B-Merge model|N
featherless/72B-Qwen2.5-Kunou-v1|72b-qwen2.5-kunou|Sao10K/72B-Qwen2.5-Kunou-v1|C|1.0,5.0|131072,4096|V|-|Sao10K/72B-Qwen2.5-Kunou-v1 model|N
featherless/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|unsloth/Llama-3.3-70B-Instruct|C|1.0,5.0|32768,4096|-|86.3,,41.6,47.4,,,,,,|unsloth/Llama-3.3-70B-Instruct model|N
featherless/MN-12B-Inferor-v0.1|mn-12b-inferor|Infermatic/MN-12B-Inferor-v0.1|C|1.0,5.0|32768,4096|V|-|Infermatic/MN-12B-Inferor-v0.1 model|N
featherless/Llama-3.1-Tango-8b-f16|llama-3.1-tango-8b-f16|sandbox-ai/Llama-3.1-Tango-8b-f16|C|1.0,5.0|32768,4096|-|-|sandbox-ai/Llama-3.1-Tango-8b-f16 model|N
featherless/Mirai-70B-1.0|mirai-70b-1.0|Blackroot/Mirai-70B-1.0|C|1.0,5.0|32768,4096|-|-|Blackroot/Mirai-70B-1.0 model|N
featherless/ArlowGPT-8B|arlowgpt-8b|yuchenxie/ArlowGPT-8B|C|1.0,5.0|32768,4096|-|-|yuchenxie/ArlowGPT-8B model|N
featherless/Llama-3.1-Tango-8b-Instruct-f16|llama-3.1-tango-8b-instruct-f16|sandbox-ai/Llama-3.1-Tango-8b-Instruct-f16|C|1.0,5.0|32768,4096|-|-|sandbox-ai/Llama-3.1-Tango-8b-Instruct-f16 model|N
featherless/Llama-SoraEToAtetaTegami-3.1X-70B|llama-soraetoatetategami-3.1x-70b|KaraKaraWitch/Llama-SoraEToAtetaTegami-3.1X-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-SoraEToAtetaTegami-3.1X-70B model|N
featherless/L3.3-MS-Evayale-70B|l3.3-ms-evayale-70b|Steelskull/L3.3-MS-Evayale-70B|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-MS-Evayale-70B model|N
featherless/Llama-DNA-1.0-8B-Instruct|llama-dna-1.0-8b-instruct|dnotitia/Llama-DNA-1.0-8B-Instruct|C|1.0,5.0|32768,4096|-|-|dnotitia/Llama-DNA-1.0-8B-Instruct model|N
featherless/L3-8B-Stheno-Horny-v3.3-32K|l3-8b-stheno-horny-v3.3-32k|nothingiisreal/L3-8B-Stheno-Horny-v3.3-32K|C|1.0,5.0|8192,4096|V|-|nothingiisreal/L3-8B-Stheno-Horny-v3.3-32K model|N
featherless/Lumimaid-NSFW-Reddit_Merge|lumimaid-nsfw-reddit_merge|mrcuddle/Lumimaid-NSFW-Reddit_Merge|C|1.0,5.0|32768,4096|-|-|mrcuddle/Lumimaid-NSFW-Reddit_Merge model|N
featherless/SAINEMO-reMIX|sainemo-remix|Moraliane/SAINEMO-reMIX|C|1.0,5.0|32768,4096|-|-|Moraliane/SAINEMO-reMIX model|N
featherless/oh_v1.3_slim_orca_x2|oh_v1.3_slim_orca_x2|mlfoundations-dev/oh_v1.3_slim_orca_x2|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/oh_v1.3_slim_orca_x2 model|N
featherless/Llama-MiraiFanfare-3.3-70B|llama-miraifanfare-3.3-70b|KaraKaraWitch/Llama-MiraiFanfare-3.3-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-MiraiFanfare-3.3-70B model|N
featherless/Lumimaid-v0.2-70B|lumimaid-v0.2-70b|Model-SafeTensors/Lumimaid-v0.2-70B|C|1.0,5.0|32768,4096|V|-|Model-SafeTensors/Lumimaid-v0.2-70B model|N
featherless/HikariBloom-v0.3-RP|hikaribloom-v0.3-rp|Rookied/HikariBloom-v0.3-RP|C|1.0,5.0|32768,4096|V|-|Rookied/HikariBloom-v0.3-RP model|N
featherless/openbuddy-llama3.3-70b-v24.1-131k|openbuddy-llama3.3-70b-v24.1-131k|OpenBuddy/openbuddy-llama3.3-70b-v24.1-131k|C|1.0,5.0|32768,4096|V|-|OpenBuddy/openbuddy-llama3.3-70b-v24.1-131k model|N
featherless/Llama-3.3-70B-Instruct-abliterated|llama-3.3-70b-instruct-abliterated|huihui-ai/Llama-3.3-70B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Llama-3.3-70B-Instruct-abliterated model|N
featherless/ZEUS-8B-V2|zeus-8b|T145/ZEUS-8B-V2|C|1.0,5.0|32768,4096|V|-|T145/ZEUS-8B-V2 model|N
featherless/EVA-LLaMA-3.33-70B-v0.1|eva-llama-3.33-70b|EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1|C|1.0,5.0|32768,4096|V|-|EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1 model|N
featherless/MFANN-SFT|mfann-sft|netcat420/MFANN-SFT|C|1.0,5.0|32768,4096|-|-|netcat420/MFANN-SFT model|N
featherless/Wisedom-8B|wisedom-8b|wisenut-nlp-team/Wisedom-8B|C|1.0,5.0|8192,4096|-|-|wisenut-nlp-team/Wisedom-8B model|N
featherless/Llama-3.3-70B-Instruct-bf16|llama-3.3-70b-instruct-bf16|mlx-community/Llama-3.3-70B-Instruct-bf16|C|1.0,5.0|32768,4096|-|86.3,,41.6,47.4,,,,,,|mlx-community/Llama-3.3-70B-Instruct-bf16 model|N
featherless/orca_mini_v8_0_70b|orca_mini_v8_0_70b|pankajmathur/orca_mini_v8_0_70b|C|1.0,5.0|32768,4096|-|-|pankajmathur/orca_mini_v8_0_70b model|N
featherless/NekoMix-12B|nekomix-12b|Moraliane/NekoMix-12B|C|1.0,5.0|32768,4096|-|-|Moraliane/NekoMix-12B model|N
featherless/Flammades-Mistral-Nemo-12B|flammades-mistral-nemo-12b|flammenai/Flammades-Mistral-Nemo-12B|C|1.0,5.0|32768,4096|-|-|flammenai/Flammades-Mistral-Nemo-12B model|N
featherless/Llama-3.3-70B-Instruct-ablated|llama-3.3-70b-instruct-ablated|NaniDAO/Llama-3.3-70B-Instruct-ablated|C|1.0,5.0|32768,4096|-|-|NaniDAO/Llama-3.3-70B-Instruct-ablated model|N
featherless/oh-dcft-v3.1-gpt-4o-2024-11-20|oh-dcft-v3.1-gpt-4o|mlfoundations-dev/oh-dcft-v3.1-gpt-4o-2024-11-20|C|1.0,5.0|32768,4096|V|-|mlfoundations-dev/oh-dcft-v3.1-gpt-4o-2024-11-20 model|N
featherless/Mirai-3.0-70B|mirai-3.0-70b|Blackroot/Mirai-3.0-70B|C|1.0,5.0|32768,4096|-|-|Blackroot/Mirai-3.0-70B model|N
featherless/Dans-PersonalityEngine-V1.1.0-12b|dans-personalityengine-v1.1.0-12b|PocketDoc/Dans-PersonalityEngine-V1.1.0-12b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-PersonalityEngine-V1.1.0-12b model|N
featherless/Control-Nanuq-8B|control-nanuq-8b|Delta-Vector/Control-Nanuq-8B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Control-Nanuq-8B model|N
featherless/Qwen2.5-Aloe-Beta-72B|qwen2.5-aloe-beta-72b|HPAI-BSC/Qwen2.5-Aloe-Beta-72B|C|1.0,5.0|131072,4096|-|-|HPAI-BSC/Qwen2.5-Aloe-Beta-72B model|N
featherless/Llama-3.3-70B-Instruct-abliterated-finetuned|-|huihui-ai/Llama-3.3-70B-Instruct-abliterated-finetuned|C|1.0,5.0|32768,4096|-|-|huihui-ai/Llama-3.3-70B-Instruct-abliterated-finetuned model|N
featherless/orca_mini_v8_1_70b|orca_mini_v8_1_70b|pankajmathur/orca_mini_v8_1_70b|C|1.0,5.0|32768,4096|-|-|pankajmathur/orca_mini_v8_1_70b model|N
featherless/Llama-3.1-Swallow-8B-Instruct-v0.3|llama-3.1-swallow-8b-instruct|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.3|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.3 model|N
featherless/Llama-SEA-LION-v3-8B-IT|llama-sea-lion-v3-8b-it|aisingapore/Llama-SEA-LION-v3-8B-IT|C|1.0,5.0|32768,4096|V|-|aisingapore/Llama-SEA-LION-v3-8B-IT model|N
featherless/Mistral-Nemo-abliterated-Nemo-Pro-v2|mistral-nemo-abliterated-nemo-pro|win10/Mistral-Nemo-abliterated-Nemo-Pro-v2|C|1.0,5.0|32768,4096|V|-|win10/Mistral-Nemo-abliterated-Nemo-Pro-v2 model|N
featherless/MN-12b-RP-Ink|mn-12b-rp-ink|allura-org/MN-12b-RP-Ink|C|1.0,5.0|32768,4096|-|-|allura-org/MN-12b-RP-Ink model|N
featherless/Llama-TI-8B-Instruct|llama-ti-8b-instruct|fluently-lm/Llama-TI-8B-Instruct|C|1.0,5.0|32768,4096|-|-|fluently-lm/Llama-TI-8B-Instruct model|N
featherless/llama3.1-typhoon2-8b-instruct|llama3.1-typhoon2-8b-instruct|scb10x/llama3.1-typhoon2-8b-instruct|C|1.0,5.0|32768,4096|-|-|scb10x/llama3.1-typhoon2-8b-instruct model|N
featherless/llama3.1-typhoon2-70b-instruct|llama3.1-typhoon2-70b-instruct|scb10x/llama3.1-typhoon2-70b-instruct|C|1.0,5.0|32768,4096|-|-|scb10x/llama3.1-typhoon2-70b-instruct model|N
featherless/Llama-MiraiFanfare-2-3.3-70B|llama-miraifanfare-2-3.3-70b|KaraKaraWitch/Llama-MiraiFanfare-2-3.3-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-MiraiFanfare-2-3.3-70B model|N
featherless/Captain-Eris_Violet-V0.420-12B|captain-eris_violet-v0.420-12b|Nitral-AI/Captain-Eris_Violet-V0.420-12B|C|1.0,5.0|32768,4096|V|-|Nitral-AI/Captain-Eris_Violet-V0.420-12B model|N
featherless/Llama-3.3-70B-Memo-law-Instruct-v2|llama-3.3-70b-memo-law-instruct|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v2|C|1.0,5.0|32768,4096|V|-|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v2 model|N
featherless/L3.3-Prikol-70B-v0.1a|l3.3-prikol-70b-v0.1a|Nohobby/L3.3-Prikol-70B-v0.1a|C|1.0,5.0|32768,4096|V|-|Nohobby/L3.3-Prikol-70B-v0.1a model|N
featherless/LLama-3-8b-Uncensored|llama-3-8b-uncensored|DevsDoCode/LLama-3-8b-Uncensored|C|1.0,5.0|8192,4096|-|-|DevsDoCode/LLama-3-8b-Uncensored model|N
featherless/T-lite-instruct-0.1-abliterated|t-lite-instruct-0.1-abliterated|IlyaGusev/T-lite-instruct-0.1-abliterated|C|1.0,5.0|8192,4096|-|-|IlyaGusev/T-lite-instruct-0.1-abliterated model|N
featherless/stackexchange_quant|stackexchange_quant|mlfoundations-dev/stackexchange_quant|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/stackexchange_quant model|N
featherless/MythoNemo-L3.1-70B-v1.0|mythonemo-l3.1-70b|Ppoyaa/MythoNemo-L3.1-70B-v1.0|C|1.0,5.0|32768,4096|V|-|Ppoyaa/MythoNemo-L3.1-70B-v1.0 model|N
featherless/Llama-3.1-Swallow-70B-Instruct-v0.3|llama-3.1-swallow-70b-instruct|tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.3|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-70B-Instruct-v0.3 model|N
featherless/LLaMa3.1-8B-Legal-ThaiCCL-Combine|llama3.1-8b-legal-thaiccl-combine|airesearch/LLaMa3.1-8B-Legal-ThaiCCL-Combine|C|1.0,5.0|32768,4096|-|-|airesearch/LLaMa3.1-8B-Legal-ThaiCCL-Combine model|N
featherless/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|osllmai-community/Llama-3.3-70B-Instruct|C|1.0,5.0|32768,4096|-|86.3,,41.6,47.4,,,,,,|osllmai-community/Llama-3.3-70B-Instruct model|N
featherless/Llama-3.3-SuperSwallow-70B-Instruct-v0.1|llama-3.3-superswallow-70b-instruct|nitky/Llama-3.3-SuperSwallow-70B-Instruct-v0.1|C|1.0,5.0|32768,4096|V|-|nitky/Llama-3.3-SuperSwallow-70B-Instruct-v0.1 model|N
featherless/stackexchange_graphicdesign|stackexchange_graphicdesign|mlfoundations-dev/stackexchange_graphicdesign|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/stackexchange_graphicdesign model|N
featherless/Linkbricks-Horizon-AI-Llama-3.3-Korean-70B-sft-dpo|-|Saxo/Linkbricks-Horizon-AI-Llama-3.3-Korean-70B-sft-dpo|C|1.0,5.0|32768,4096|-|-|Saxo/Linkbricks-Horizon-AI-Llama-3.3-Korean-70B-sft-dpo model|N
featherless/stackoverflow_10000tasks_0p|stackoverflow_10000tasks_0p|mlfoundations-dev/stackoverflow_10000tasks_0p|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/stackoverflow_10000tasks_0p model|N
featherless/stackoverflow_25000tasks_.75p|stackoverflow_25000tasks_.75p|mlfoundations-dev/stackoverflow_25000tasks_.75p|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/stackoverflow_25000tasks_.75p model|N
featherless/stackoverflow_25000tasks_1p|stackoverflow_25000tasks_1p|mlfoundations-dev/stackoverflow_25000tasks_1p|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/stackoverflow_25000tasks_1p model|N
featherless/evol_tt_2s|evol_tt_2s|mlfoundations-dev/evol_tt_2s|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/evol_tt_2s model|N
featherless/Llama-3.1-8B-lora-merged|llama-3.1-8b-lora-merged|daliabess7/Llama-3.1-8B-lora-merged|C|1.0,5.0|32768,4096|-|-|daliabess7/Llama-3.1-8B-lora-merged model|N
featherless/Evathene-v1.1|evathene|sophosympatheia/Evathene-v1.1|C|1.0,5.0|131072,4096|V|-|sophosympatheia/Evathene-v1.1 model|N
featherless/Captain-Eris-Diogenes_Twilight-V0.420-12B|-|Nitral-AI/Captain-Eris-Diogenes_Twilight-V0.420-12B|C|1.0,5.0|32768,4096|V|-|Nitral-AI/Captain-Eris-Diogenes_Twilight-V0.420-12B model|N
featherless/Lumimaid-Magnum-v4-12B|lumimaid-magnum-v4-12b|Undi95/Lumimaid-Magnum-v4-12B|C|1.0,5.0|32768,4096|V|-|Undi95/Lumimaid-Magnum-v4-12B model|N
featherless/Llama-3.1-8B-exchange-v2|llama-3.1-8b-exchange|davidkim205/Llama-3.1-8B-exchange-v2|C|1.0,5.0|32768,4096|V|-|davidkim205/Llama-3.1-8B-exchange-v2 model|N
featherless/Text-to-Sql-llama3.1-8B|text-to-sql-llama3.1-8b|Vedant3907/Text-to-Sql-llama3.1-8B|C|1.0,5.0|32768,4096|-|-|Vedant3907/Text-to-Sql-llama3.1-8B model|N
featherless/llama3-8b-instruct-uncensored-JR-sft|llama3-8b-instruct-uncensored-jr-sft|jdqqjr/llama3-8b-instruct-uncensored-JR-sft|C|1.0,5.0|8192,4096|-|-|jdqqjr/llama3-8b-instruct-uncensored-JR-sft model|N
featherless/Llama-3.3-70B-Memo-law-Instruct-v1|llama-3.3-70b-memo-law-instruct|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v1|C|1.0,5.0|32768,4096|V|-|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v1 model|N
featherless/Captain-Eris_Twilight-V0.420-12B|captain-eris_twilight-v0.420-12b|ChaoticNeutrals/Captain-Eris_Twilight-V0.420-12B|C|1.0,5.0|32768,4096|V|-|ChaoticNeutrals/Captain-Eris_Twilight-V0.420-12B model|N
featherless/Meta-Llama-3.1-8B_finetune|meta-llama-3.1-8b_finetune|pajacques/Meta-Llama-3.1-8B_finetune|C|1.0,5.0|32768,4096|-|-|pajacques/Meta-Llama-3.1-8B_finetune model|N
featherless/70B-L3.3-mhnnn-x1|70b-l3.3-mhnnn-x1|Sao10K/70B-L3.3-mhnnn-x1|C|1.0,5.0|32768,4096|-|-|Sao10K/70B-L3.3-mhnnn-x1 model|N
featherless/ktdsbaseLM-v0.11-onbased-llama3.1|ktdsbaselm-v0.11-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.11-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.11-onbased-llama3.1 model|N
featherless/ktdsbaseLM-v0.10-onbased-llama3.1|ktdsbaselm-v0.10-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.10-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.10-onbased-llama3.1 model|N
featherless/70B-L3.3-Cirrus-x1|70b-l3.3-cirrus-x1|Sao10K/70B-L3.3-Cirrus-x1|C|1.0,5.0|32768,4096|-|-|Sao10K/70B-L3.3-Cirrus-x1 model|N
featherless/Rombos-LLM-70b-Llama-3.3|rombos-llm-70b-llama-3.3|rombodawg/Rombos-LLM-70b-Llama-3.3|C|1.0,5.0|32768,4096|-|-|rombodawg/Rombos-LLM-70b-Llama-3.3 model|N
featherless/Human-Like-LLama3-8B-Instruct|human-like-llama3-8b-instruct|HumanLLMs/Human-Like-LLama3-8B-Instruct|C|1.0,5.0|8192,4096|-|-|HumanLLMs/Human-Like-LLama3-8B-Instruct model|N
featherless/llama3-open-ko-8b-shimshimi|llama3-open-ko-8b-shimshimi|jc9080/llama3-open-ko-8b-shimshimi|C|1.0,5.0|8192,4096|-|-|jc9080/llama3-open-ko-8b-shimshimi model|N
featherless/llama3-open-ko-8b-Instruct-shimshimi-500-ver2|-|jc9080/llama3-open-ko-8b-Instruct-shimshimi-500-ver2|C|1.0,5.0|8192,4096|V|-|jc9080/llama3-open-ko-8b-Instruct-shimshimi-500-ver2 model|N
featherless/llama3.1_korean_v1.2_sft_by_aidx|llama3.1_korean_v1.2_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.2_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.2_sft_by_aidx model|N
featherless/Llama-SEA-LION-v3-70B-IT|llama-sea-lion-v3-70b-it|aisingapore/Llama-SEA-LION-v3-70B-IT|C|1.0,5.0|32768,4096|V|-|aisingapore/Llama-SEA-LION-v3-70B-IT model|N
featherless/Negative_LLAMA_70B|negative_llama_70b|SicariusSicariiStuff/Negative_LLAMA_70B|C|1.0,5.0|32768,4096|-|-|SicariusSicariiStuff/Negative_LLAMA_70B model|N
featherless/silverspoon-v1-72b|silverspoon-v1-72b|setfunctionenvironment/silverspoon-v1-72b|C|1.0,5.0|131072,4096|V|-|setfunctionenvironment/silverspoon-v1-72b model|N
featherless/Captain_Eris_Noctis-12B-v0.420|captain_eris_noctis-12b|Nitral-AI/Captain_Eris_Noctis-12B-v0.420|C|1.0,5.0|32768,4096|V|-|Nitral-AI/Captain_Eris_Noctis-12B-v0.420 model|N
featherless/Nera_Noctis-12B-v0.420|nera_noctis-12b|Nitral-Archive/Nera_Noctis-12B-v0.420|C|1.0,5.0|32768,4096|V|-|Nitral-Archive/Nera_Noctis-12B-v0.420 model|N
featherless/llama3.1_korean_v1.3_sft_by_aidx|llama3.1_korean_v1.3_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.3_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.3_sft_by_aidx model|N
featherless/Llama-ProgressPushDoll-3.3-70Bees|llama-progresspushdoll-3.3-70bees|KaraKaraWitch/Llama-ProgressPushDoll-3.3-70Bees|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-ProgressPushDoll-3.3-70Bees model|N
featherless/Negative-Anubis-70B-v1|negative-anubis-70b|knifeayumu/Negative-Anubis-70B-v1|C|1.0,5.0|32768,4096|V|-|knifeayumu/Negative-Anubis-70B-v1 model|N
featherless/llama3.1_korean_v1.5_sft_by_aidx|llama3.1_korean_v1.5_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.5_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.5_sft_by_aidx model|N
featherless/Linkbricks-Horizon-AI-Japanese-Superb-V4-70B|-|Saxo/Linkbricks-Horizon-AI-Japanese-Superb-V4-70B|C|1.0,5.0|32768,4096|V|-|Saxo/Linkbricks-Horizon-AI-Japanese-Superb-V4-70B model|N
featherless/mergekit-model_stock-bzcrthr|mergekit-model_stock-bzcrthr|mergekit-community/mergekit-model_stock-bzcrthr|C|1.0,5.0|32768,4096|-|-|mergekit-community/mergekit-model_stock-bzcrthr model|N
featherless/Qwen2.5-72b-RP-Ink|qwen2.5-72b-rp-ink|allura-org/Qwen2.5-72b-RP-Ink|C|1.0,5.0|131072,4096|-|-|allura-org/Qwen2.5-72b-RP-Ink model|N
featherless/orca_mini_v9_3_70B|orca_mini_v9_3_70b|pankajmathur/orca_mini_v9_3_70B|C|1.0,5.0|32768,4096|-|-|pankajmathur/orca_mini_v9_3_70B model|N
featherless/ko-Meta-Llama-3.1-8B-Instruct|ko-meta-llama-3.1-8b-instruct|Leejy0-0/ko-Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|Leejy0-0/ko-Meta-Llama-3.1-8B-Instruct model|N
featherless/Llama3.3-70B-CogniLink|llama3.3-70b-cognilink|Daemontatox/Llama3.3-70B-CogniLink|C|1.0,5.0|32768,4096|-|-|Daemontatox/Llama3.3-70B-CogniLink model|N
featherless/Homer-v1.0-Qwen2.5-72B|homer-v1.0-qwen2.5-72b|newsbang/Homer-v1.0-Qwen2.5-72B|C|1.0,5.0|131072,4096|V|-|newsbang/Homer-v1.0-Qwen2.5-72B model|N
featherless/Chuluun-Qwen2.5-72B-v0.01|chuluun-qwen2.5-72b|DatToad/Chuluun-Qwen2.5-72B-v0.01|C|1.0,5.0|131072,4096|V|-|DatToad/Chuluun-Qwen2.5-72B-v0.01 model|N
featherless/Nova-Tempus-70B-v0.1|nova-tempus-70b|sophosympatheia/Nova-Tempus-70B-v0.1|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Nova-Tempus-70B-v0.1 model|N
featherless/L3.3-Faust-70B-exp.001|l3.3-faust-70b-exp.001|finis-est/L3.3-Faust-70B-exp.001|C|1.0,5.0|32768,4096|-|-|finis-est/L3.3-Faust-70B-exp.001 model|N
featherless/L3.3-70B-Magnum-v4-SE|l3.3-70b-magnum-v4-se|DS-Archive/L3.3-70B-Magnum-v4-SE|C|1.0,5.0|32768,4096|V|-|DS-Archive/L3.3-70B-Magnum-v4-SE model|N
featherless/Human-Like-Mistral-Nemo-Instruct-2407|human-like-mistral-nemo-instruct-2407|HumanLLMs/Human-Like-Mistral-Nemo-Instruct-2407|C|1.0,5.0|32768,4096|-|-|HumanLLMs/Human-Like-Mistral-Nemo-Instruct-2407 model|N
featherless/Dans-DangerousWinds-V1.1.0-12b|dans-dangerouswinds-v1.1.0-12b|PocketDoc/Dans-DangerousWinds-V1.1.0-12b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-DangerousWinds-V1.1.0-12b model|N
featherless/Kosmos-EVAA-Franken-Immersive-v39-8B|kosmos-evaa-franken-immersive-v39-8b|jaspionjader/Kosmos-EVAA-Franken-Immersive-v39-8B|C|1.0,5.0|32768,4096|V|-|jaspionjader/Kosmos-EVAA-Franken-Immersive-v39-8B model|N
featherless/Kosmos-EVAA-Franken-v37-8B|kosmos-evaa-franken-v37-8b|jaspionjader/Kosmos-EVAA-Franken-v37-8B|C|1.0,5.0|8192,4096|V|-|jaspionjader/Kosmos-EVAA-Franken-v37-8B model|N
featherless/oh-dcft-v3.1-claude-3-5-sonnet-20241022|oh-dcft-v3.1-claude-3.5-sonnet|mlfoundations-dev/oh-dcft-v3.1-claude-3-5-sonnet-20241022|C|1.0,5.0|32768,4096|V|-|mlfoundations-dev/oh-dcft-v3.1-claude-3-5-sonnet-20241022 model|N
featherless/simpo-oh-dcft-v3.1-llama-3.3-70b|simpo-oh-dcft-v3.1-llama-3.3-70b|mlfoundations-dev/simpo-oh-dcft-v3.1-llama-3.3-70b|C|1.0,5.0|32768,4096|V|-|mlfoundations-dev/simpo-oh-dcft-v3.1-llama-3.3-70b model|N
featherless/Chuluun-Qwen2.5-72B-v0.08|chuluun-qwen2.5-72b|DatToad/Chuluun-Qwen2.5-72B-v0.08|C|1.0,5.0|131072,4096|V|-|DatToad/Chuluun-Qwen2.5-72B-v0.08 model|N
featherless/Qwen2.5-32b-RP-Ink|qwen2.5-32b-rp-ink|allura-org/Qwen2.5-32b-RP-Ink|C|1.0,5.0|131072,4096|-|-|allura-org/Qwen2.5-32b-RP-Ink model|N
featherless/Qwentile2.5-32B-Instruct|qwentile2.5-32b-instruct|maldv/Qwentile2.5-32B-Instruct|C|1.0,5.0|131072,4096|-|-|maldv/Qwentile2.5-32B-Instruct model|N
featherless/Sky-T1-32B-Preview|sky-t1-32b-preview|NovaSky-AI/Sky-T1-32B-Preview|C|1.0,5.0|131072,4096|-|-|NovaSky-AI/Sky-T1-32B-Preview model|N
featherless/Qwen2.5-32B-Instruct|qwen2.5-32b-instruct|Qwen/Qwen2.5-32B-Instruct|C|1.0,5.0|131072,4096|-|,,56.1,46.1,,,,,,|Qwen/Qwen2.5-32B-Instruct model|N
featherless/14B-Qwen2.5-Kunou-v1|14b-qwen2.5-kunou|Sao10K/14B-Qwen2.5-Kunou-v1|C|1.0,5.0|131072,4096|V|-|Sao10K/14B-Qwen2.5-Kunou-v1 model|N
featherless/typhoon2-qwen2.5-7b-instruct|typhoon2-qwen2.5-7b-instruct|scb10x/typhoon2-qwen2.5-7b-instruct|C|1.0,5.0|131072,4096|-|-|scb10x/typhoon2-qwen2.5-7b-instruct model|N
featherless/Psyfighter2-13B-vore|psyfighter2-13b-vore|SnakyMcSnekFace/Psyfighter2-13B-vore|C|1.0,5.0|4096,4096|V|-|SnakyMcSnekFace/Psyfighter2-13B-vore model|N
featherless/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|deepseek-ai/DeepSeek-R1-Distill-Llama-70B|C|1.0,5.0|32768,4096|-|,,89.9,55.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Llama-70B model|N
featherless/Sto-vo-kor-12B|sto-vo-kor-12b|ToastyPigeon/Sto-vo-kor-12B|C|1.0,5.0|32768,4096|V|-|ToastyPigeon/Sto-vo-kor-12B model|N
featherless/DeepSeek-R1-Distill-Llama-8B|deepseek-r1-distill-llama-8b|deepseek-ai/DeepSeek-R1-Distill-Llama-8B|C|1.0,5.0|32768,4096|-|-|deepseek-ai/DeepSeek-R1-Distill-Llama-8B model|N
featherless/Llama-3.3-70B-o1|llama-3.3-70b-o1|codelion/Llama-3.3-70B-o1|C|1.0,5.0|32768,4096|-|-|codelion/Llama-3.3-70B-o1 model|N
featherless/DeepSeek-R1-Distill-Llama-8B|deepseek-r1-distill-llama-8b|unsloth/DeepSeek-R1-Distill-Llama-8B|C|1.0,5.0|32768,4096|-|-|unsloth/DeepSeek-R1-Distill-Llama-8B model|N
featherless/DeepSeek-R1-Distill-Llama-8B-Abliterated|-|stepenZEN/DeepSeek-R1-Distill-Llama-8B-Abliterated|C|1.0,5.0|32768,4096|-|-|stepenZEN/DeepSeek-R1-Distill-Llama-8B-Abliterated model|N
featherless/ZEUS-8B-V2-abliterated|zeus-8b-v2-abliterated|T145/ZEUS-8B-V2-abliterated|C|1.0,5.0|32768,4096|V|-|T145/ZEUS-8B-V2-abliterated model|N
featherless/oh_v1.3_gpt_4o_mini|oh_v1.3_gpt_4o_mini|mlfoundations-dev/oh_v1.3_gpt_4o_mini|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/oh_v1.3_gpt_4o_mini model|N
featherless/ultiima-72B|ultiima-72b|Sakalti/ultiima-72B|C|1.0,5.0|131072,4096|-|-|Sakalti/ultiima-72B model|N
featherless/Dazzling-Star-Aurora-70b-v0.0-Experimental-0123|-|ProdeusUnity/Dazzling-Star-Aurora-70b-v0.0-Experimental-0123|C|1.0,5.0|32768,4096|V|-|ProdeusUnity/Dazzling-Star-Aurora-70b-v0.0-Experimental-0123 model|N
featherless/DeepSeek-R1-Distill-Qwen-32B|deepseek-r1-distill-qwen-32b|deepseek-ai/DeepSeek-R1-Distill-Qwen-32B|C|1.0,5.0|131072,4096|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-32B model|N
featherless/DeepSeek-R1-Distill-Qwen-14B|deepseek-r1-distill-qwen-14b|deepseek-ai/DeepSeek-R1-Distill-Qwen-14B|C|1.0,5.0|131072,4096|-|,,87.1,44.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Qwen-14B model|N
featherless/DeepSeek-R1-Distill-Qwen-7B|deepseek-r1-distill-qwen-7b|deepseek-ai/DeepSeek-R1-Distill-Qwen-7B|C|1.0,5.0|131072,4096|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-7B model|N
featherless/llama_instruct_adult_seed_42|llama_instruct_adult_seed_42|sert121/llama_instruct_adult_seed_42|C|1.0,5.0|32768,4096|-|-|sert121/llama_instruct_adult_seed_42 model|N
featherless/try11|try11|memevis/try11|C|1.0,5.0|32768,4096|-|-|memevis/try11 model|N
featherless/MN-12B-Starcannon-v4-unofficial|mn-12b-starcannon-v4-unofficial|ockerman0/MN-12B-Starcannon-v4-unofficial|C|1.0,5.0|32768,4096|V|-|ockerman0/MN-12B-Starcannon-v4-unofficial model|N
featherless/DeepSeek-R1-Distill-Llama-8B-abliterated|-|huihui-ai/DeepSeek-R1-Distill-Llama-8B-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/DeepSeek-R1-Distill-Llama-8B-abliterated model|N
featherless/Silver5-Nemo-12B|silver5-nemo-12b|Lambent/Silver5-Nemo-12B|C|1.0,5.0|32768,4096|-|-|Lambent/Silver5-Nemo-12B model|N
featherless/Nova-Tempus-70B-v0.2|nova-tempus-70b|sophosympatheia/Nova-Tempus-70B-v0.2|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Nova-Tempus-70B-v0.2 model|N
featherless/Selene-1-Mini-Llama-3.1-8B|selene-1-mini-llama-3.1-8b|AtlaAI/Selene-1-Mini-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|AtlaAI/Selene-1-Mini-Llama-3.1-8B model|N
featherless/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|unsloth/DeepSeek-R1-Distill-Llama-70B|C|1.0,5.0|32768,4096|-|,,89.9,55.7,,,,,,|unsloth/DeepSeek-R1-Distill-Llama-70B model|N
featherless/mistral-nemo-kartoffel-12B|mistral-nemo-kartoffel-12b|nbeerbower/mistral-nemo-kartoffel-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/mistral-nemo-kartoffel-12B model|N
featherless/DeepSeek-R1-Distill-Llama-8B|deepseek-r1-distill-llama-8b|mlx-community/DeepSeek-R1-Distill-Llama-8B|C|1.0,5.0|32768,4096|-|-|mlx-community/DeepSeek-R1-Distill-Llama-8B model|N
featherless/Llama3.1-SuperDeepFuse|llama3.1-superdeepfuse|agentlans/Llama3.1-SuperDeepFuse|C|1.0,5.0|32768,4096|-|-|agentlans/Llama3.1-SuperDeepFuse model|N
featherless/alpaca_seeding_stackexchange_codegolf|alpaca_seeding_stackexchange_codegolf|mlfoundations-dev/alpaca_seeding_stackexchange_codegolf|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/alpaca_seeding_stackexchange_codegolf model|N
featherless/Llama-3.3-70B-Instruct_ftjob-1e99f7048485-merged|-|robust-rlhf/Llama-3.3-70B-Instruct_ftjob-1e99f7048485-merged|C|1.0,5.0|32768,4096|-|-|robust-rlhf/Llama-3.3-70B-Instruct_ftjob-1e99f7048485-merged model|N
featherless/L3.3-70B-Lycosa-v0.2|l3.3-70b-lycosa|divinetaco/L3.3-70B-Lycosa-v0.2|C|1.0,5.0|32768,4096|V|-|divinetaco/L3.3-70B-Lycosa-v0.2 model|N
featherless/Wayfarer_Eris_Noctis-12B|wayfarer_eris_noctis-12b|ChaoticNeutrals/Wayfarer_Eris_Noctis-12B|C|1.0,5.0|32768,4096|-|-|ChaoticNeutrals/Wayfarer_Eris_Noctis-12B model|N
featherless/DeepSeek-R1-Distill-Llama-70B-abliterated|-|huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated model|N
featherless/Llama-3.3-70B-Inst-Ablit-Flammades-SLERP|-|schonsense/Llama-3.3-70B-Inst-Ablit-Flammades-SLERP|C|1.0,5.0|32768,4096|-|-|schonsense/Llama-3.3-70B-Inst-Ablit-Flammades-SLERP model|N
featherless/Deepseek-R1-Distill-NSFW-RPv1|deepseek-r1-distill-nsfw-rpv1|mergekit-community/Deepseek-R1-Distill-NSFW-RPv1|C|1.0,5.0|32768,4096|-|-|mergekit-community/Deepseek-R1-Distill-NSFW-RPv1 model|N
featherless/nsfw-w-deepseek-r1-retry|nsfw-w-deepseek-r1-retry|mergekit-community/nsfw-w-deepseek-r1-retry|C|1.0,5.0|32768,4096|-|-|mergekit-community/nsfw-w-deepseek-r1-retry model|N
featherless/llama3-1_8b_share_gpt_code|llama3-1_8b_share_gpt_code|mlfoundations-dev/llama3-1_8b_share_gpt_code|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/llama3-1_8b_share_gpt_code model|N
featherless/Progenitor-V1.1-LLaMa-70B|progenitor-v1.1-llama-70b|Tarek07/Progenitor-V1.1-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Progenitor-V1.1-LLaMa-70B model|N
featherless/Dobby-Mini-Unhinged-Llama-3.1-8B|dobby-mini-unhinged-llama-3.1-8b|SentientAGI/Dobby-Mini-Unhinged-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|SentientAGI/Dobby-Mini-Unhinged-Llama-3.1-8B model|N
featherless/AceGPT-v2-70B|acegpt-v2-70b|FreedomIntelligence/AceGPT-v2-70B|C|1.0,5.0|8192,4096|V|-|FreedomIntelligence/AceGPT-v2-70B model|N
featherless/Nova-Tempus-70B-v0.3|nova-tempus-70b|sophosympatheia/Nova-Tempus-70B-v0.3|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Nova-Tempus-70B-v0.3 model|N
featherless/magnum-twilight-12b|magnum-twilight-12b|grimjim/magnum-twilight-12b|C|1.0,5.0|32768,4096|-|-|grimjim/magnum-twilight-12b model|N
featherless/Kosmos-EVAA-immersive-sof-v44-8B|kosmos-evaa-immersive-sof-v44-8b|jaspionjader/Kosmos-EVAA-immersive-sof-v44-8B|C|1.0,5.0|32768,4096|V|-|jaspionjader/Kosmos-EVAA-immersive-sof-v44-8B model|N
featherless/deepseek-r1-qwen-2.5-32B-ablated|deepseek-r1-qwen-2.5-32b-ablated|NaniDAO/deepseek-r1-qwen-2.5-32B-ablated|C|1.0,5.0|131072,4096|-|-|NaniDAO/deepseek-r1-qwen-2.5-32B-ablated model|N
featherless/Mistral-Small-24B-Base-2501|mistral-small-24b-base-2501|mistralai/Mistral-Small-24B-Base-2501|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Small-24B-Base-2501 model|N
featherless/Dans-DangerousWinds-V1.1.1-24b|dans-dangerouswinds-v1.1.1-24b|PocketDoc/Dans-DangerousWinds-V1.1.1-24b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-DangerousWinds-V1.1.1-24b model|N
featherless/Llama-MagicalGirl|llama-magicalgirl|KaraKaraWitch/Llama-MagicalGirl|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-MagicalGirl model|N
featherless/Rei-12B|rei-12b|Delta-Vector/Rei-12B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Rei-12B model|N
featherless/askvox-llama3.3-70b-16bit|askvox-llama3.3-70b-16bit|NalDice/askvox-llama3.3-70b-16bit|C|1.0,5.0|32768,4096|-|-|NalDice/askvox-llama3.3-70b-16bit model|N
featherless/EVA-Qwen2.5-32B-v0.0|eva-qwen2.5-32b|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.0|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-32B-v0.0 model|N
featherless/DeepSeek-R1-Distill-Qwen-32B-abliterated|-|huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated model|N
featherless/MS-24B-Mullein-v0|ms-24b-mullein|trashpanda-org/MS-24B-Mullein-v0|C|1.0,5.0|32768,4096|V|-|trashpanda-org/MS-24B-Mullein-v0 model|N
featherless/MS-24B-Instruct-Mullein-v0|ms-24b-instruct-mullein|trashpanda-org/MS-24B-Instruct-Mullein-v0|C|1.0,5.0|32768,4096|V|-|trashpanda-org/MS-24B-Instruct-Mullein-v0 model|N
featherless/v5-EagleX-v2-7B-HF|v5-eaglex-v2-7b-hf|RWKV/v5-EagleX-v2-7B-HF|C|1.0,5.0|16384,4096|V|-|RWKV/v5-EagleX-v2-7B-HF model|N
featherless/Progenitor-V2.2-LLaMa-70B|progenitor-v2.2-llama-70b|Tarek07/Progenitor-V2.2-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Progenitor-V2.2-LLaMa-70B model|N
featherless/Dobby-Mini-Leashed-Llama-3.1-8B|dobby-mini-leashed-llama-3.1-8b|SentientAGI/Dobby-Mini-Leashed-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|SentientAGI/Dobby-Mini-Leashed-Llama-3.1-8B model|N
featherless/Kosmos-EVAA-Franken-Immersive-v40-8B|kosmos-evaa-franken-immersive-v40-8b|jaspionjader/Kosmos-EVAA-Franken-Immersive-v40-8B|C|1.0,5.0|32768,4096|V|-|jaspionjader/Kosmos-EVAA-Franken-Immersive-v40-8B model|N
featherless/Inception-LLaMa-70B|inception-llama-70b|TareksGraveyard/Inception-LLaMa-70B|C|1.0,5.0|32768,4096|-|-|TareksGraveyard/Inception-LLaMa-70B model|N
featherless/Xwen-72B-Chat|xwen-72b-chat|xwen-team/Xwen-72B-Chat|C|1.0,5.0|131072,4096|-|-|xwen-team/Xwen-72B-Chat model|N
featherless/DeepSeek-R1-ReDistill-Llama3-8B-v1.1|deepseek-r1-redistill-llama3-8b|mobiuslabsgmbh/DeepSeek-R1-ReDistill-Llama3-8B-v1.1|C|1.0,5.0|32768,4096|V|-|mobiuslabsgmbh/DeepSeek-R1-ReDistill-Llama3-8B-v1.1 model|N
featherless/Francois-Huali-12B|francois-huali-12b|Delta-Vector/Francois-Huali-12B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Francois-Huali-12B model|N
featherless/Ohashi-NeMo-12B|ohashi-nemo-12b|Delta-Vector/Ohashi-NeMo-12B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Ohashi-NeMo-12B model|N
featherless/DAN-L3-R1-8B|dan-l3-r1-8b|UnfilteredAI/DAN-L3-R1-8B|C|1.0,5.0|32768,4096|-|-|UnfilteredAI/DAN-L3-R1-8B model|N
featherless/Kosmos-EVAA-Franken-Immersive-v41-8B|kosmos-evaa-franken-immersive-v41-8b|jaspionjader/Kosmos-EVAA-Franken-Immersive-v41-8B|C|1.0,5.0|32768,4096|V|-|jaspionjader/Kosmos-EVAA-Franken-Immersive-v41-8B model|N
featherless/Geneva-12B-GCv2-5m|geneva-12b-gcv2-5m|rubenroy/Geneva-12B-GCv2-5m|C|1.0,5.0|32768,4096|-|-|rubenroy/Geneva-12B-GCv2-5m model|N
featherless/Llama-3-DeepSeek-R1-Distill-8B-LewdPlay-Uncensored|-|mergekit-community/Llama-3-DeepSeek-R1-Distill-8B-LewdPlay-Uncensored|C|1.0,5.0|8192,4096|-|-|mergekit-community/Llama-3-DeepSeek-R1-Distill-8B-LewdPlay-Uncensored model|N
featherless/Machina_24B.V2|machina_24b.v2|OddTheGreat/Machina_24B.V2|C|1.0,5.0|32768,4096|-|-|OddTheGreat/Machina_24B.V2 model|N
featherless/AceMath-72B-Instruct|acemath-72b-instruct|nvidia/AceMath-72B-Instruct|C|1.0,5.0|131072,4096|-|-|nvidia/AceMath-72B-Instruct model|N
featherless/nsfw_merge_test_v4dot1|nsfw_merge_test_v4dot1|mergekit-community/nsfw_merge_test_v4dot1|C|1.0,5.0|32768,4096|-|-|mergekit-community/nsfw_merge_test_v4dot1 model|N
featherless/Meta-Llama-3-8B-Instruct_gsm8k_English|meta-llama-3-8b-instruct_gsm8k_english|Vivian12300/Meta-Llama-3-8B-Instruct_gsm8k_English|C|1.0,5.0|8192,4096|-|-|Vivian12300/Meta-Llama-3-8B-Instruct_gsm8k_English model|N
featherless/Qwen2.5-14B-Instruct|qwen2.5-14b-instruct|Qwen/Qwen2.5-14B-Instruct|C|1.0,5.0|131072,4096|-|79.9,,,,,,,,,|Qwen/Qwen2.5-14B-Instruct model|N
featherless/Qwen2.5-14B|qwen2.5-14b|Qwen/Qwen2.5-14B|C|1.0,5.0|131072,4096|-|79.9,,,,,,,,,|Qwen/Qwen2.5-14B model|N
featherless/Qwen2.5-7B|qwen2.5-7b|Qwen/Qwen2.5-7B|C|1.0,5.0|131072,4096|-|72.9,,,,,,,,,|Qwen/Qwen2.5-7B model|N
featherless/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|Qwen/Qwen2.5-7B-Instruct|C|1.0,5.0|131072,4096|-|72.9,,,,,,,,,|Qwen/Qwen2.5-7B-Instruct model|N
featherless/Progenitor-V3.3-LLaMa-70B|progenitor-v3.3-llama-70b|Tarek07/Progenitor-V3.3-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Progenitor-V3.3-LLaMa-70B model|N
featherless/Mahou-Gutenberg-Nemo-12B|mahou-gutenberg-nemo-12b|nbeerbower/Mahou-Gutenberg-Nemo-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Mahou-Gutenberg-Nemo-12B model|N
featherless/Llama-3.3-70B-Memo-law-Instruct-v2.1|llama-3.3-70b-memo-law-instruct|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v2.1|C|1.0,5.0|32768,4096|V|-|PaxwellPaxwell/Llama-3.3-70B-Memo-law-Instruct-v2.1 model|N
featherless/Meta-Llama-3.1-8B-Instruct-FP16|meta-llama-3.1-8b-instruct-fp16|context-labs/Meta-Llama-3.1-8B-Instruct-FP16|C|1.0,5.0|32768,4096|-|-|context-labs/Meta-Llama-3.1-8B-Instruct-FP16 model|N
featherless/Lascivious-LLaMa-70B|lascivious-llama-70b|TareksGraveyard/Lascivious-LLaMa-70B|C|1.0,5.0|32768,4096|-|-|TareksGraveyard/Lascivious-LLaMa-70B model|N
featherless/BlackSheep-X-Dolphin|blacksheep-x-dolphin|TroyDoesAI/BlackSheep-X-Dolphin|C|1.0,5.0|8192,4096|-|-|TroyDoesAI/BlackSheep-X-Dolphin model|N
featherless/Pygmalion-3-12B|pygmalion-3-12b|PygmalionAI/Pygmalion-3-12B|C|1.0,5.0|32768,4096|-|-|PygmalionAI/Pygmalion-3-12B model|N
featherless/Eleusis-12B|eleusis-12b|PygmalionAI/Eleusis-12B|C|1.0,5.0|32768,4096|-|-|PygmalionAI/Eleusis-12B model|N
featherless/DeepHermes-3-Llama-3-8B-Preview|deephermes-3-llama-3-8b-preview|NousResearch/DeepHermes-3-Llama-3-8B-Preview|C|1.0,5.0|32768,4096|-|-|NousResearch/DeepHermes-3-Llama-3-8B-Preview model|N
featherless/Dobby-Unhinged-Llama-3.3-70B|dobby-unhinged-llama-3.3-70b|SentientAGI/Dobby-Unhinged-Llama-3.3-70B|C|1.0,5.0|32768,4096|-|-|SentientAGI/Dobby-Unhinged-Llama-3.3-70B model|N
featherless/EVA-Qwen2.5-14B-v0.2|eva-qwen2.5-14b|EVA-UNIT-01/EVA-Qwen2.5-14B-v0.2|C|1.0,5.0|131072,4096|V|-|EVA-UNIT-01/EVA-Qwen2.5-14B-v0.2 model|N
featherless/Dans-SakuraKaze-V1.0.0-12b|dans-sakurakaze-v1.0.0-12b|PocketDoc/Dans-SakuraKaze-V1.0.0-12b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-SakuraKaze-V1.0.0-12b model|N
featherless/Llama-3.3-70B-ArliAI-RPMax-v1.4|llama-3.3-70b-arliai-rpmax|ArliAI/Llama-3.3-70B-ArliAI-RPMax-v1.4|C|1.0,5.0|32768,4096|V|-|ArliAI/Llama-3.3-70B-ArliAI-RPMax-v1.4 model|N
featherless/DeepSeek-R1-Distill-Qwen-14B-abliterated-v2|-|huihui-ai/DeepSeek-R1-Distill-Qwen-14B-abliterated-v2|C|1.0,5.0|32768,4096|V|-|huihui-ai/DeepSeek-R1-Distill-Qwen-14B-abliterated-v2 model|N
featherless/OpenThinker-7B|openthinker-7b|open-thoughts/OpenThinker-7B|C|1.0,5.0|131072,4096|K|-|open-thoughts/OpenThinker-7B model|N
featherless/Qwen2.5-7B-Instruct-1M|qwen2.5-7b-instruct-1m|Qwen/Qwen2.5-7B-Instruct-1M|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-7B-Instruct-1M model|N
featherless/OpenR1-Qwen-7B|openr1-qwen-7b|open-r1/OpenR1-Qwen-7B|C|1.0,5.0|131072,4096|-|-|open-r1/OpenR1-Qwen-7B model|N
featherless/Qwen2.5-14B-Instruct-1M|qwen2.5-14b-instruct-1m|Qwen/Qwen2.5-14B-Instruct-1M|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-14B-Instruct-1M model|N
featherless/DeepSeek-R1-Distill-Qwen-7B-abliterated-v2|deepseek-r1-distill-qwen-7b-abliterated|huihui-ai/DeepSeek-R1-Distill-Qwen-7B-abliterated-v2|C|1.0,5.0|131072,4096|V|-|huihui-ai/DeepSeek-R1-Distill-Qwen-7B-abliterated-v2 model|N
featherless/DeepSeek-R1-Distill-Qwen-32B-Japanese|deepseek-r1-distill-qwen-32b-japanese|cyberagent/DeepSeek-R1-Distill-Qwen-32B-Japanese|C|1.0,5.0|32768,4096|-|-|cyberagent/DeepSeek-R1-Distill-Qwen-32B-Japanese model|N
featherless/Qwen2.5-Math-7B|qwen2.5-math-7b|Qwen/Qwen2.5-Math-7B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-7B model|N
featherless/Qwen2.5-32B|qwen2.5-32b|Qwen/Qwen2.5-32B|C|1.0,5.0|131072,4096|-|,,56.1,46.1,,,,,,|Qwen/Qwen2.5-32B model|N
featherless/DeepSeek-R1-Distill-Qwen-14B-abliterated|-|huihui-ai/DeepSeek-R1-Distill-Qwen-14B-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/DeepSeek-R1-Distill-Qwen-14B-abliterated model|N
featherless/Sky-T1-32B-Flash|sky-t1-32b-flash|NovaSky-AI/Sky-T1-32B-Flash|C|1.0,5.0|131072,4096|-|-|NovaSky-AI/Sky-T1-32B-Flash model|N
featherless/Qwen2.5-Coder-7B-Instruct|qwen2.5-coder-7b-instruct|Qwen/Qwen2.5-Coder-7B-Instruct|C|1.0,5.0|131072,4096|-|68.0,,,,,,,,,|Qwen/Qwen2.5-Coder-7B-Instruct model|N
featherless/Qwen2.5-Math-7B-Instruct|qwen2.5-math-7b-instruct|Qwen/Qwen2.5-Math-7B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-7B-Instruct model|N
featherless/Qwen2.5-Coder-14B-Instruct|qwen2.5-coder-14b-instruct|Qwen/Qwen2.5-Coder-14B-Instruct|C|1.0,5.0|131072,4096|-|75.2,,,,,,,,,|Qwen/Qwen2.5-Coder-14B-Instruct model|N
featherless/Qwen2-7B-Instruct|qwen2-7b-instruct|Qwen/Qwen2-7B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-7B-Instruct model|N
featherless/Qwen2.5-Coder-32B|qwen2.5-coder-32b|Qwen/Qwen2.5-Coder-32B|C|1.0,5.0|131072,4096|-|79.1,,,,,,,,,|Qwen/Qwen2.5-Coder-32B model|N
featherless/32B-Qwen2.5-Kunou-v1|32b-qwen2.5-kunou|Sao10K/32B-Qwen2.5-Kunou-v1|C|1.0,5.0|131072,4096|V|-|Sao10K/32B-Qwen2.5-Kunou-v1 model|N
featherless/Qwen2.5-14B-Instruct-1M-abliterated|qwen2.5-14b-instruct-1m-abliterated|huihui-ai/Qwen2.5-14B-Instruct-1M-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-14B-Instruct-1M-abliterated model|N
featherless/deepseek-r1-distill-qwen2.5-bakeneko-32b|-|rinna/deepseek-r1-distill-qwen2.5-bakeneko-32b|C|1.0,5.0|131072,4096|-|-|rinna/deepseek-r1-distill-qwen2.5-bakeneko-32b model|N
featherless/Qwen2-7B|qwen2-7b|Qwen/Qwen2-7B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-7B model|N
featherless/Qwen2.5-Coder-7B|qwen2.5-coder-7b|Qwen/Qwen2.5-Coder-7B|C|1.0,5.0|131072,4096|-|68.0,,,,,,,,,|Qwen/Qwen2.5-Coder-7B model|N
featherless/Qwen2.5-Coder-14B|qwen2.5-coder-14b|Qwen/Qwen2.5-Coder-14B|C|1.0,5.0|131072,4096|-|75.2,,,,,,,,,|Qwen/Qwen2.5-Coder-14B model|N
featherless/AceMath-7B-Instruct|acemath-7b-instruct|nvidia/AceMath-7B-Instruct|C|1.0,5.0|131072,4096|-|-|nvidia/AceMath-7B-Instruct model|N
featherless/DeepSeek-R1-Distill-Qwen-7B-abliterated|deepseek-r1-distill-qwen-7b-abliterated|huihui-ai/DeepSeek-R1-Distill-Qwen-7B-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/DeepSeek-R1-Distill-Qwen-7B-abliterated model|N
featherless/dolphin-2.9.2-qwen2-7b|dolphin-2.9.2-qwen2-7b|dphn/dolphin-2.9.2-qwen2-7b|C|1.0,5.0|131072,4096|-|-|dphn/dolphin-2.9.2-qwen2-7b model|N
featherless/Qwen2-7B|qwen2-7b|unsloth/Qwen2-7B|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2-7B model|N
featherless/Qwen2-7B-Instruct|qwen2-7b-instruct|unsloth/Qwen2-7B-Instruct|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2-7B-Instruct model|N
featherless/Qwen2-7B-Multilingual-RP|qwen2-7b-multilingual-rp|maywell/Qwen2-7B-Multilingual-RP|C|1.0,5.0|131072,4096|-|-|maywell/Qwen2-7B-Multilingual-RP model|N
featherless/Arcee-Agent|arcee-agent|arcee-ai/Arcee-Agent|C|1.0,5.0|131072,4096|-|-|arcee-ai/Arcee-Agent model|N
featherless/SeaLLMs-v3-7B-Chat|seallms-v3-7b-chat|SeaLLMs/SeaLLMs-v3-7B-Chat|C|1.0,5.0|131072,4096|V|-|SeaLLMs/SeaLLMs-v3-7B-Chat model|N
featherless/Qwen2.5-7B|qwen2.5-7b|unsloth/Qwen2.5-7B|C|1.0,5.0|131072,4096|-|72.9,,,,,,,,,|unsloth/Qwen2.5-7B model|N
featherless/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|unsloth/Qwen2.5-7B-Instruct|C|1.0,5.0|131072,4096|-|72.9,,,,,,,,,|unsloth/Qwen2.5-7B-Instruct model|N
featherless/Qwen2.5-7B-Instruct-abliterated-v2|qwen2.5-7b-instruct-abliterated|huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|huihui-ai/Qwen2.5-7B-Instruct-abliterated-v2 model|N
featherless/Qwen2.5-14B-Instruct|qwen2.5-14b-instruct|unsloth/Qwen2.5-14B-Instruct|C|1.0,5.0|131072,4096|-|79.9,,,,,,,,,|unsloth/Qwen2.5-14B-Instruct model|N
featherless/Qwen2.5-32B-Instruct|qwen2.5-32b-instruct|unsloth/Qwen2.5-32B-Instruct|C|1.0,5.0|131072,4096|-|,,56.1,46.1,,,,,,|unsloth/Qwen2.5-32B-Instruct model|N
featherless/Qwen2.5-Coder-7B|qwen2.5-coder-7b|unsloth/Qwen2.5-Coder-7B|C|1.0,5.0|131072,4096|-|68.0,,,,,,,,,|unsloth/Qwen2.5-Coder-7B model|N
featherless/Qwen2.5-Coder-7B-Instruct|qwen2.5-coder-7b-instruct|unsloth/Qwen2.5-Coder-7B-Instruct|C|1.0,5.0|131072,4096|-|68.0,,,,,,,,,|unsloth/Qwen2.5-Coder-7B-Instruct model|N
featherless/Qwen2.5-7B-Instruct-Uncensored|qwen2.5-7b-instruct-uncensored|Orion-zhen/Qwen2.5-7B-Instruct-Uncensored|C|1.0,5.0|131072,4096|-|-|Orion-zhen/Qwen2.5-7B-Instruct-Uncensored model|N
featherless/Meissa-Qwen2.5-7B-Instruct|meissa-qwen2.5-7b-instruct|Orion-zhen/Meissa-Qwen2.5-7B-Instruct|C|1.0,5.0|131072,4096|-|-|Orion-zhen/Meissa-Qwen2.5-7B-Instruct model|N
featherless/Qwen2.5-32B-Instruct-abliterated|qwen2.5-32b-instruct-abliterated|huihui-ai/Qwen2.5-32B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-32B-Instruct-abliterated model|N
featherless/Rombos-LLM-V2.5-Qwen-32b|rombos-llm-v2.5-qwen-32b|rombodawg/Rombos-LLM-V2.5-Qwen-32b|C|1.0,5.0|131072,4096|V|-|rombodawg/Rombos-LLM-V2.5-Qwen-32b model|N
featherless/openthaigpt1.5-7b-instruct|openthaigpt1.5-7b-instruct|openthaigpt/openthaigpt1.5-7b-instruct|C|1.0,5.0|131072,4096|-|-|openthaigpt/openthaigpt1.5-7b-instruct model|N
featherless/SuperNova-Medius|supernova-medius|arcee-ai/SuperNova-Medius|C|1.0,5.0|131072,4096|-|-|arcee-ai/SuperNova-Medius model|N
featherless/CantoneseLLMChat-v1.0-7B|cantonesellmchat-v1.0-7b|hon9kon9ize/CantoneseLLMChat-v1.0-7B|C|1.0,5.0|131072,4096|V|-|hon9kon9ize/CantoneseLLMChat-v1.0-7B model|N
featherless/Qwen2.5-14B-Instruct-abliterated-v2|qwen2.5-14b-instruct-abliterated|huihui-ai/Qwen2.5-14B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|huihui-ai/Qwen2.5-14B-Instruct-abliterated-v2 model|N
featherless/Qwen2.5-32B-Instruct-abliterated-v2|qwen2.5-32b-instruct-abliterated|zetasepic/Qwen2.5-32B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|zetasepic/Qwen2.5-32B-Instruct-abliterated-v2 model|N
featherless/chinese-text-correction-7b|chinese-text-correction-7b|shibing624/chinese-text-correction-7b|C|1.0,5.0|131072,4096|-|-|shibing624/chinese-text-correction-7b model|N
featherless/openthaigpt1.5-14b-instruct|openthaigpt1.5-14b-instruct|openthaigpt/openthaigpt1.5-14b-instruct|C|1.0,5.0|32768,4096|-|-|openthaigpt/openthaigpt1.5-14b-instruct model|N
featherless/FastApply-7B-v1.0|fastapply-7b|Kortix/FastApply-7B-v1.0|C|1.0,5.0|131072,4096|V|-|Kortix/FastApply-7B-v1.0 model|N
featherless/Qwen2.5-Coder-32B-Instruct|qwen2.5-coder-32b-instruct|unsloth/Qwen2.5-Coder-32B-Instruct|C|1.0,5.0|131072,4096|-|79.1,,,,,,,,,|unsloth/Qwen2.5-Coder-32B-Instruct model|N
featherless/Qwen2.5-Coder-14B-Instruct|qwen2.5-coder-14b-instruct|unsloth/Qwen2.5-Coder-14B-Instruct|C|1.0,5.0|131072,4096|-|75.2,,,,,,,,,|unsloth/Qwen2.5-Coder-14B-Instruct model|N
featherless/Qwen2.5-Coder-32B-Instruct-Uncensored|qwen2.5-coder-32b-instruct-uncensored|thirdeyeai/Qwen2.5-Coder-32B-Instruct-Uncensored|C|1.0,5.0|131072,4096|-|-|thirdeyeai/Qwen2.5-Coder-32B-Instruct-Uncensored model|N
featherless/QwQ-32B-Preview-abliterated|qwq-32b-preview-abliterated|huihui-ai/QwQ-32B-Preview-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/QwQ-32B-Preview-abliterated model|N
featherless/14B-Qwen2.5-Freya-x1|14b-qwen2.5-freya-x1|Sao10K/14B-Qwen2.5-Freya-x1|C|1.0,5.0|131072,4096|-|-|Sao10K/14B-Qwen2.5-Freya-x1 model|N
featherless/DeepSeek-R1-Distill-Qwen-7B|deepseek-r1-distill-qwen-7b|unsloth/DeepSeek-R1-Distill-Qwen-7B|C|1.0,5.0|131072,4096|-|-|unsloth/DeepSeek-R1-Distill-Qwen-7B model|N
featherless/DeepSeek-R1-Distill-Qwen-14B|deepseek-r1-distill-qwen-14b|mlx-community/DeepSeek-R1-Distill-Qwen-14B|C|1.0,5.0|32768,4096|-|,,87.1,44.7,,,,,,|mlx-community/DeepSeek-R1-Distill-Qwen-14B model|N
featherless/CoderO1-DeepSeekR1-Coder-32B-Preview|codero1-deepseekr1-coder-32b-preview|RDson/CoderO1-DeepSeekR1-Coder-32B-Preview|C|1.0,5.0|131072,4096|-|-|RDson/CoderO1-DeepSeekR1-Coder-32B-Preview model|N
featherless/Bespoke-Stratos-7B|bespoke-stratos-7b|bespokelabs/Bespoke-Stratos-7B|C|1.0,5.0|131072,4096|-|-|bespokelabs/Bespoke-Stratos-7B model|N
featherless/karakuri-lm-32b-thinking-2501-exp|karakuri-lm-32b-thinking-2501-exp|karakuri-ai/karakuri-lm-32b-thinking-2501-exp|C|1.0,5.0|32768,4096|K|-|karakuri-ai/karakuri-lm-32b-thinking-2501-exp model|N
featherless/DeepSeek-R1-Distill-Qwen-14B-uncensored|deepseek-r1-distill-qwen-14b-uncensored|thirdeyeai/DeepSeek-R1-Distill-Qwen-14B-uncensored|C|1.0,5.0|32768,4096|-|-|thirdeyeai/DeepSeek-R1-Distill-Qwen-14B-uncensored model|N
featherless/DeepSeek-R1-Distill-Qwen-14B-Japanese|deepseek-r1-distill-qwen-14b-japanese|cyberagent/DeepSeek-R1-Distill-Qwen-14B-Japanese|C|1.0,5.0|32768,4096|-|-|cyberagent/DeepSeek-R1-Distill-Qwen-14B-Japanese model|N
featherless/Qwen2.5-14B-DeepSeek-R1-1M-Uncensored|qwen2.5-14b-deepseek-r1-1m-uncensored|FiditeNemini/Qwen2.5-14B-DeepSeek-R1-1M-Uncensored|C|1.0,5.0|131072,4096|-|-|FiditeNemini/Qwen2.5-14B-DeepSeek-R1-1M-Uncensored model|N
featherless/Qwen2.5-7B-nerd-uncensored-v1.0|qwen2.5-7b-nerd-uncensored|jeffmeloy/Qwen2.5-7B-nerd-uncensored-v1.0|C|1.0,5.0|131072,4096|V|-|jeffmeloy/Qwen2.5-7B-nerd-uncensored-v1.0 model|N
featherless/Qwen2-7B-Instruct-abliterated|qwen2-7b-instruct-abliterated|natong19/Qwen2-7B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|natong19/Qwen2-7B-Instruct-abliterated model|N
featherless/Arcee-Spark|arcee-spark|arcee-ai/Arcee-Spark|C|1.0,5.0|131072,4096|-|-|arcee-ai/Arcee-Spark model|N
featherless/Einstein-v7-Qwen2-7B|einstein-v7-qwen2-7b|Weyaxi/Einstein-v7-Qwen2-7B|C|1.0,5.0|131072,4096|V|-|Weyaxi/Einstein-v7-Qwen2-7B model|N
featherless/Qwen2-Math-7B-Instruct|qwen2-math-7b-instruct|Qwen/Qwen2-Math-7B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-7B-Instruct model|N
featherless/Qwen2-Math-7B|qwen2-math-7b|Qwen/Qwen2-Math-7B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-7B model|N
featherless/Qwen2.5-14B|qwen2.5-14b|unsloth/Qwen2.5-14B|C|1.0,5.0|131072,4096|-|79.9,,,,,,,,,|unsloth/Qwen2.5-14B model|N
featherless/Qwen2.5-7B-Instruct-abliterated|qwen2.5-7b-instruct-abliterated|huihui-ai/Qwen2.5-7B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-7B-Instruct-abliterated model|N
featherless/Qwen2.5-Lumen-14B|qwen2.5-lumen-14b|v000000/Qwen2.5-Lumen-14B|C|1.0,5.0|131072,4096|-|-|v000000/Qwen2.5-Lumen-14B model|N
featherless/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2|-|Goekdeniz-Guelmez/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2 model|N
featherless/Lexora-Medium-7B|lexora-medium-7b|DeepMount00/Lexora-Medium-7B|C|1.0,5.0|131072,4096|-|-|DeepMount00/Lexora-Medium-7B model|N
featherless/Vi-Qwen2-7B-RAG|vi-qwen2-7b-rag|AITeamVN/Vi-Qwen2-7B-RAG|C|1.0,5.0|131072,4096|-|-|AITeamVN/Vi-Qwen2-7B-RAG model|N
featherless/Qwen2.5-7B-Instruct-abliterated-v3|qwen2.5-7b-instruct-abliterated|huihui-ai/Qwen2.5-7B-Instruct-abliterated-v3|C|1.0,5.0|131072,4096|V|-|huihui-ai/Qwen2.5-7B-Instruct-abliterated-v3 model|N
featherless/Qwen2.5-slerp-14B|qwen2.5-slerp-14b|allknowingroger/Qwen2.5-slerp-14B|C|1.0,5.0|131072,4096|-|-|allknowingroger/Qwen2.5-slerp-14B model|N
featherless/Josiefied-Qwen2.5-14B-Instruct-abliterated-v4|-|Goekdeniz-Guelmez/Josiefied-Qwen2.5-14B-Instruct-abliterated-v4|C|1.0,5.0|131072,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen2.5-14B-Instruct-abliterated-v4 model|N
featherless/TouchstoneGPT-7B-Instruct|touchstonegpt-7b-instruct|IDEA-FinAI/TouchstoneGPT-7B-Instruct|C|1.0,5.0|131072,4096|-|-|IDEA-FinAI/TouchstoneGPT-7B-Instruct model|N
featherless/LongWriter-Qwen2.5-7B-Instruct|longwriter-qwen2.5-7b-instruct|C10X/LongWriter-Qwen2.5-7B-Instruct|C|1.0,5.0|131072,4096|-|-|C10X/LongWriter-Qwen2.5-7B-Instruct model|N
featherless/oh-dcft-v3.1-llama-3.1-405b-qwen-v2dummytesting|-|mlfoundations-dev/oh-dcft-v3.1-llama-3.1-405b-qwen-v2dummytesting|C|1.0,5.0|131072,4096|V|-|mlfoundations-dev/oh-dcft-v3.1-llama-3.1-405b-qwen-v2dummytesting model|N
featherless/oh-dcft-v3.1-claude-3-5-sonnet-20241022-qwen|-|mlfoundations-dev/oh-dcft-v3.1-claude-3-5-sonnet-20241022-qwen|C|1.0,5.0|131072,4096|V|-|mlfoundations-dev/oh-dcft-v3.1-claude-3-5-sonnet-20241022-qwen model|N
featherless/DeepSeek-R1-Distill-Qwen-14B|deepseek-r1-distill-qwen-14b|unsloth/DeepSeek-R1-Distill-Qwen-14B|C|1.0,5.0|32768,4096|-|,,87.1,44.7,,,,,,|unsloth/DeepSeek-R1-Distill-Qwen-14B model|N
featherless/DS-R1-Distill-Q2.5-14B-Harmony_V0.1|ds-r1-distill-q2.5-14b-harmony_v0.1|Triangle104/DS-R1-Distill-Q2.5-14B-Harmony_V0.1|C|1.0,5.0|32768,4096|-|-|Triangle104/DS-R1-Distill-Q2.5-14B-Harmony_V0.1 model|N
featherless/Reformed-Christian-Bible-Expert-12B|reformed-christian-bible-expert-12b|sleepdeprived3/Reformed-Christian-Bible-Expert-12B|C|1.0,5.0|32768,4096|-|-|sleepdeprived3/Reformed-Christian-Bible-Expert-12B model|N
featherless/Unhinged-Author-70B|unhinged-author-70b|FiditeNemini/Unhinged-Author-70B|C|1.0,5.0|32768,4096|-|-|FiditeNemini/Unhinged-Author-70B model|N
featherless/Llama-3.1-8B-Instruct|llama-3.1-8b-instruct|unsloth/Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|unsloth/Llama-3.1-8B-Instruct model|N
featherless/Llama-3.1-8B|llama-3.1-8b|unsloth/Llama-3.1-8B|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|unsloth/Llama-3.1-8B model|N
featherless/Fino1-8B|fino1-8b|TheFinAI/Fino1-8B|C|1.0,5.0|32768,4096|-|-|TheFinAI/Fino1-8B model|N
featherless/Bigger-Body-12b|bigger-body-12b|allura-org/Bigger-Body-12b|C|1.0,5.0|32768,4096|-|-|allura-org/Bigger-Body-12b model|N
featherless/Llama-3.1-8B-R1-experimental|llama-3.1-8b-r1-experimental|CreitinGameplays/Llama-3.1-8B-R1-experimental|C|1.0,5.0|32768,4096|-|-|CreitinGameplays/Llama-3.1-8B-R1-experimental model|N
featherless/Captain-Eris_Violet_Toxic-Magnum-12B|captain-eris_violet_toxic-magnum-12b|ChaoticNeutrals/Captain-Eris_Violet_Toxic-Magnum-12B|C|1.0,5.0|32768,4096|-|-|ChaoticNeutrals/Captain-Eris_Violet_Toxic-Magnum-12B model|N
featherless/Rombo-LLM-V2.5-Qwen-14b|rombo-llm-v2.5-qwen-14b|Rombo-Org/Rombo-LLM-V2.5-Qwen-14b|C|1.0,5.0|131072,4096|V|-|Rombo-Org/Rombo-LLM-V2.5-Qwen-14b model|N
featherless/Llama_3.x_70b_Smarteaz_V1|llama_3.x_70b_smarteaz_v1|Nexesenex/Llama_3.x_70b_Smarteaz_V1|C|1.0,5.0|32768,4096|-|-|Nexesenex/Llama_3.x_70b_Smarteaz_V1 model|N
featherless/Dans-PersonalityEngine-V1.2.0-24b|dans-personalityengine-v1.2.0-24b|PocketDoc/Dans-PersonalityEngine-V1.2.0-24b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-PersonalityEngine-V1.2.0-24b model|N
featherless/Mistral-Small-24B-Instruct-2501-abliterated|-|huihui-ai/Mistral-Small-24B-Instruct-2501-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Mistral-Small-24B-Instruct-2501-abliterated model|N
featherless/Atlas-Flash-7B-Preview|atlas-flash-7b-preview|Spestly/Atlas-Flash-7B-Preview|C|1.0,5.0|131072,4096|-|-|Spestly/Atlas-Flash-7B-Preview model|N
featherless/QwentileSwap|qwentileswap|Aryanne/QwentileSwap|C|1.0,5.0|131072,4096|-|,,,15.7,,73.8,,,,|Aryanne/QwentileSwap model|N
featherless/L3.3-Cu-Mai-R1-70b|l3.3-cu-mai-r1-70b|Steelskull/L3.3-Cu-Mai-R1-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-Cu-Mai-R1-70b model|N
featherless/L3.3-San-Mai-R1-70b|l3.3-san-mai-r1-70b|Steelskull/L3.3-San-Mai-R1-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-San-Mai-R1-70b model|N
featherless/Captain-Eris_Violet-GRPO-v0.420|captain-eris_violet-grpo|Nitral-AI/Captain-Eris_Violet-GRPO-v0.420|C|1.0,5.0|32768,4096|V|-|Nitral-AI/Captain-Eris_Violet-GRPO-v0.420 model|N
featherless/MedicalEDI-8b-EDI-Base-1|medicaledi-8b-edi-base-1|Shaleen123/MedicalEDI-8b-EDI-Base-1|C|1.0,5.0|32768,4096|-|-|Shaleen123/MedicalEDI-8b-EDI-Base-1 model|N
featherless/llama3_1_relevance_dev|llama3_1_relevance_dev|qqlabs/llama3_1_relevance_dev|C|1.0,5.0|32768,4096|-|-|qqlabs/llama3_1_relevance_dev model|N
featherless/L3.3-Prikol-70B-EXTRA|l3.3-prikol-70b-extra|Nohobby/L3.3-Prikol-70B-EXTRA|C|1.0,5.0|32768,4096|-|-|Nohobby/L3.3-Prikol-70B-EXTRA model|N
featherless/Evac-Opus-14B-Exp|evac-opus-14b-exp|prithivMLmods/Evac-Opus-14B-Exp|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Evac-Opus-14B-Exp model|N
featherless/FluentlyQwen2.5-32B|fluentlyqwen2.5-32b|fluently/FluentlyQwen2.5-32B|C|1.0,5.0|32768,4096|-|-|fluently/FluentlyQwen2.5-32B model|N
featherless/lightnovel_cpt|lightnovel_cpt|shigureui/lightnovel_cpt|C|1.0,5.0|131072,4096|-|-|shigureui/lightnovel_cpt model|N
featherless/Mistral-Nemo-12B-R1-v0.1|mistral-nemo-12b-r1|CreitinGameplays/Mistral-Nemo-12B-R1-v0.1|C|1.0,5.0|32768,4096|V|-|CreitinGameplays/Mistral-Nemo-12B-R1-v0.1 model|N
featherless/Pensez-Llama3.1-8B|pensez-llama3.1-8b|HoangHa/Pensez-Llama3.1-8B|C|1.0,5.0|32768,4096|-|-|HoangHa/Pensez-Llama3.1-8B model|N
featherless/OREAL-7B-SFT|oreal-7b-sft|internlm/OREAL-7B-SFT|C|1.0,5.0|131072,4096|-|-|internlm/OREAL-7B-SFT model|N
featherless/TinyR1-32B-Preview|tinyr1-32b-preview|qihoo360/TinyR1-32B-Preview|C|1.0,5.0|131072,4096|-|-|qihoo360/TinyR1-32B-Preview model|N
featherless/OpenR1-Qwen-7B-Turkish|openr1-qwen-7b-turkish|WiroAI/OpenR1-Qwen-7B-Turkish|C|1.0,5.0|131072,4096|-|-|WiroAI/OpenR1-Qwen-7B-Turkish model|N
featherless/BFS-Prover-V1-7B|bfs-prover-v1-7b|ByteDance-Seed/BFS-Prover-V1-7B|C|1.0,5.0|131072,4096|V|-|ByteDance-Seed/BFS-Prover-V1-7B model|N
featherless/Deepthink-Llama-3-8B-Preview|deepthink-llama-3-8b-preview|prithivMLmods/Deepthink-Llama-3-8B-Preview|C|1.0,5.0|32768,4096|K|-|prithivMLmods/Deepthink-Llama-3-8B-Preview model|N
featherless/Archaeo-12B|archaeo-12b|Delta-Vector/Archaeo-12B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Archaeo-12B model|N
featherless/Qwen2.5-Dyanka-7B-Preview|qwen2.5-dyanka-7b-preview|Xiaojian9992024/Qwen2.5-Dyanka-7B-Preview|C|1.0,5.0|131072,4096|-|-|Xiaojian9992024/Qwen2.5-Dyanka-7B-Preview model|N
featherless/DeepSeek_roleplay_q4_k_m|deepseek_roleplay_q4_k_m|volkfox/DeepSeek_roleplay_q4_k_m|C|1.0,5.0|32768,4096|-|-|volkfox/DeepSeek_roleplay_q4_k_m model|N
featherless/SFT-base_merged_fp16_E1_D40005|sft-base_merged_fp16_e1_d40005|clembench-playpen/SFT-base_merged_fp16_E1_D40005|C|1.0,5.0|32768,4096|-|-|clembench-playpen/SFT-base_merged_fp16_E1_D40005 model|N
featherless/Captain-Eris_BMO-Violent-12B|captain-eris_bmo-violent-12b|ChaoticNeutrals/Captain-Eris_BMO-Violent-12B|C|1.0,5.0|32768,4096|V|-|ChaoticNeutrals/Captain-Eris_BMO-Violent-12B model|N
featherless/deepseek-r1-14b-cot-math-reasoning-full|deepseek-r1-14b-cot-math-reasoning-full|Jianyuan1/deepseek-r1-14b-cot-math-reasoning-full|C|1.0,5.0|32768,4096|K|-|Jianyuan1/deepseek-r1-14b-cot-math-reasoning-full model|N
featherless/Llama-PRM800K|llama-prm800k|UW-Madison-Lee-Lab/Llama-PRM800K|C|1.0,5.0|32768,4096|-|-|UW-Madison-Lee-Lab/Llama-PRM800K model|N
featherless/DeepHermes-3-Llama-3-8B-Preview-abliterated|-|huihui-ai/DeepHermes-3-Llama-3-8B-Preview-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/DeepHermes-3-Llama-3-8B-Preview-abliterated model|N
featherless/PLLuM-12B-nc-chat|pllum-12b-nc-chat|CYFRAGOVPL/PLLuM-12B-nc-chat|C|1.0,5.0|32768,4096|-|-|CYFRAGOVPL/PLLuM-12B-nc-chat model|N
featherless/PLLuM-12B-chat|pllum-12b-chat|CYFRAGOVPL/PLLuM-12B-chat|C|1.0,5.0|32768,4096|-|-|CYFRAGOVPL/PLLuM-12B-chat model|N
featherless/Fallen-Llama-3.3-R1-70B-v1|fallen-llama-3.3-r1-70b|TheDrummer/Fallen-Llama-3.3-R1-70B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Fallen-Llama-3.3-R1-70B-v1 model|N
featherless/L3.3-Mokume-Gane-R1-70b-v1.1|l3.3-mokume-gane-r1-70b|Steelskull/L3.3-Mokume-Gane-R1-70b-v1.1|C|1.0,5.0|32768,4096|V|-|Steelskull/L3.3-Mokume-Gane-R1-70b-v1.1 model|N
featherless/Llama-3.3-MagicalGirl-2|llama-3.3-magicalgirl-2|KaraKaraWitch/Llama-3.3-MagicalGirl-2|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-MagicalGirl-2 model|N
featherless/Llama-3.3-MagicalGirl-2.5|llama-3.3-magicalgirl-2.5|KaraKaraWitch/Llama-3.3-MagicalGirl-2.5|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-MagicalGirl-2.5 model|N
featherless/L3.3-GeneticLemonade-Final-70B|l3.3-geneticlemonade-final-70b|zerofata/L3.3-GeneticLemonade-Final-70B|C|1.0,5.0|32768,4096|-|-|zerofata/L3.3-GeneticLemonade-Final-70B model|N
featherless/Latxa-Llama-3.1-8B-Instruct|latxa-llama-3.1-8b-instruct|HiTZ/Latxa-Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|-|HiTZ/Latxa-Llama-3.1-8B-Instruct model|N
featherless/patricide-12B-Unslop-Mell|patricide-12b-unslop-mell|redrix/patricide-12B-Unslop-Mell|C|1.0,5.0|32768,4096|-|-|redrix/patricide-12B-Unslop-Mell model|N
featherless/Qwen2.5-14B-Instruct-abliterated|qwen2.5-14b-instruct-abliterated|huihui-ai/Qwen2.5-14B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-14B-Instruct-abliterated model|N
featherless/Marco-LLM-ES|marco-llm-es|AIDC-AI/Marco-LLM-ES|C|1.0,5.0|131072,4096|-|-|AIDC-AI/Marco-LLM-ES model|N
featherless/airoboros-l2-13b-gpt4-m2.0|airoboros-l2-13b-gpt4-m2.0|jondurbin/airoboros-l2-13b-gpt4-m2.0|C|1.0,5.0|4096,4096|-|-|jondurbin/airoboros-l2-13b-gpt4-m2.0 model|N
featherless/QwQ-32B|qwq-32b|Qwen/QwQ-32B|C|1.0,5.0|131072,4096|-|-|Qwen/QwQ-32B model|N
featherless/Qwen2.5-7B-Instruct-Uncensored-Flux|qwen2.5-7b-instruct-uncensored-flux|mrkrak3n/Qwen2.5-7B-Instruct-Uncensored-Flux|C|1.0,5.0|131072,4096|-|-|mrkrak3n/Qwen2.5-7B-Instruct-Uncensored-Flux model|N
featherless/RWKV6Qwen2.5-32B-QwQ-Preview|rwkv6qwen2.5-32b-qwq-preview|recursal/RWKV6Qwen2.5-32B-QwQ-Preview|C|1.0,5.0|32768,4096|-|-|recursal/RWKV6Qwen2.5-32B-QwQ-Preview model|N
featherless/DeepSeek-R1-Distill-HOMI-8B-trained|deepseek-r1-distill-homi-8b-trained|HOMITYBSCIT/DeepSeek-R1-Distill-HOMI-8B-trained|C|1.0,5.0|32768,4096|-|-|HOMITYBSCIT/DeepSeek-R1-Distill-HOMI-8B-trained model|N
featherless/Progenitor-V5-LLaMa-70B|progenitor-v5-llama-70b|Tarek07/Progenitor-V5-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Progenitor-V5-LLaMa-70B model|N
featherless/Llama-3.3-Amakuro|llama-3.3-amakuro|KaraKaraWitch/Llama-3.3-Amakuro|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-Amakuro model|N
featherless/QwQ-32B|qwq-32b|unsloth/QwQ-32B|C|1.0,5.0|32768,4096|-|-|unsloth/QwQ-32B model|N
featherless/WiroAI-Finance-Qwen-7B|wiroai-finance-qwen-7b|WiroAI/WiroAI-Finance-Qwen-7B|C|1.0,5.0|131072,4096|-|-|WiroAI/WiroAI-Finance-Qwen-7B model|N
featherless/Captain-Eris-BMO_Violent-GRPO-v0.420|captain-eris-bmo_violent-grpo|Nitral-Archive/Captain-Eris-BMO_Violent-GRPO-v0.420|C|1.0,5.0|32768,4096|V|-|Nitral-Archive/Captain-Eris-BMO_Violent-GRPO-v0.420 model|N
featherless/MedicalEDI-14b-EDI-Base-3|medicaledi-14b-edi-base-3|Shaleen123/MedicalEDI-14b-EDI-Base-3|C|1.0,5.0|32768,4096|-|-|Shaleen123/MedicalEDI-14b-EDI-Base-3 model|N
featherless/Deductive-Reasoning-Qwen-32B|deductive-reasoning-qwen-32b|OpenPipe/Deductive-Reasoning-Qwen-32B|C|1.0,5.0|131072,4096|K|-|OpenPipe/Deductive-Reasoning-Qwen-32B model|N
featherless/EtherealAurora-12B|etherealaurora-12b|yamatazen/EtherealAurora-12B|C|1.0,5.0|32768,4096|-|-|yamatazen/EtherealAurora-12B model|N
featherless/Citrus1.0-llama-70B|citrus1.0-llama-70b|jdh-algo/Citrus1.0-llama-70B|C|1.0,5.0|32768,4096|-|-|jdh-algo/Citrus1.0-llama-70B model|N
featherless/TQ2.5-14B-Aletheia-v1|tq2.5-14b-aletheia|allura-org/TQ2.5-14B-Aletheia-v1|C|1.0,5.0|32768,4096|V|-|allura-org/TQ2.5-14B-Aletheia-v1 model|N
featherless/Llama-Primus-Reasoning|llama-primus-reasoning|trendmicro-ailab/Llama-Primus-Reasoning|C|1.0,5.0|32768,4096|K|-|trendmicro-ailab/Llama-Primus-Reasoning model|N
featherless/SWE-Fixer-Retriever-7B|swe-fixer-retriever-7b|internlm/SWE-Fixer-Retriever-7B|C|1.0,5.0|131072,4096|-|-|internlm/SWE-Fixer-Retriever-7B model|N
featherless/QwQ-32B-Snowdrop-v0|qwq-32b-snowdrop|trashpanda-org/QwQ-32B-Snowdrop-v0|C|1.0,5.0|131072,4096|V|-|trashpanda-org/QwQ-32B-Snowdrop-v0 model|N
featherless/QwQ-32B-Snowdrop-v0-EmbedFix|qwq-32b-snowdrop-v0-embedfix|ToastyPigeon/QwQ-32B-Snowdrop-v0-EmbedFix|C|1.0,5.0|32768,4096|V|-|ToastyPigeon/QwQ-32B-Snowdrop-v0-EmbedFix model|N
featherless/Akshara-8B-Llama-Multilingual-V0.1|akshara-8b-llama-multilingual|SVECTOR-CORPORATION/Akshara-8B-Llama-Multilingual-V0.1|C|1.0,5.0|8192,4096|V|-|SVECTOR-CORPORATION/Akshara-8B-Llama-Multilingual-V0.1 model|N
featherless/Llama-3.1-8B-R1-v0.1|llama-3.1-8b-r1|CreitinGameplays/Llama-3.1-8B-R1-v0.1|C|1.0,5.0|32768,4096|V|-|CreitinGameplays/Llama-3.1-8B-R1-v0.1 model|N
featherless/SFT-merged_fp16_DFINAL_1.1K-steps|sft-merged_fp16_dfinal_1.1k-steps|clembench-playpen/SFT-merged_fp16_DFINAL_1.1K-steps|C|1.0,5.0|32768,4096|-|-|clembench-playpen/SFT-merged_fp16_DFINAL_1.1K-steps model|N
featherless/Forgotten-Abomination-24B-v1.2|forgotten-abomination-24b|ReadyArt/Forgotten-Abomination-24B-v1.2|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Abomination-24B-v1.2 model|N
featherless/OlympicCoder-7B|olympiccoder-7b|open-r1/OlympicCoder-7B|C|1.0,5.0|131072,4096|-|-|open-r1/OlympicCoder-7B model|N
featherless/EmojiLlama-3.1-8B|emojillama-3.1-8b|suayptalha/EmojiLlama-3.1-8B|C|1.0,5.0|32768,4096|-|-|suayptalha/EmojiLlama-3.1-8B model|N
featherless/MN-Sappho-j-12B|mn-sappho-j-12b|mergekit-community/MN-Sappho-j-12B|C|1.0,5.0|32768,4096|-|-|mergekit-community/MN-Sappho-j-12B model|N
featherless/Arcee-Blitz|arcee-blitz|arcee-ai/Arcee-Blitz|C|1.0,5.0|32768,4096|-|-|arcee-ai/Arcee-Blitz model|N
featherless/Mistral-Small-24B-Instruct-2501-reasoning|-|yentinglin/Mistral-Small-24B-Instruct-2501-reasoning|C|1.0,5.0|32768,4096|K|-|yentinglin/Mistral-Small-24B-Instruct-2501-reasoning model|N
featherless/Forgotten-Abomination-24B-V2.2|forgotten-abomination-24b|ReadyArt/Forgotten-Abomination-24B-V2.2|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Abomination-24B-V2.2 model|N
featherless/Llama3-24B-Mullein-v1|llama3-24b-mullein|trashpanda-org/Llama3-24B-Mullein-v1|C|1.0,5.0|32768,4096|V|-|trashpanda-org/Llama3-24B-Mullein-v1 model|N
featherless/Mistral-Small-Sisyphus-24b-2503|mistral-small-sisyphus-24b-2503|allura-org/Mistral-Small-Sisyphus-24b-2503|C|1.0,5.0|32768,4096|-|-|allura-org/Mistral-Small-Sisyphus-24b-2503 model|N
featherless/MistralThinker-v1.1|mistralthinker|Undi95/MistralThinker-v1.1|C|1.0,5.0|32768,4096|VK|-|Undi95/MistralThinker-v1.1 model|N
featherless/Cydonia-24B-v2.1|cydonia-24b|TheDrummer/Cydonia-24B-v2.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v2.1 model|N
featherless/MS3-24B-MarbleRye|ms3-24b-marblerye|ToastyPigeon/MS3-24B-MarbleRye|C|1.0,5.0|32768,4096|-|-|ToastyPigeon/MS3-24B-MarbleRye model|N
featherless/MS3-24B-Roselily-Creative|ms3-24b-roselily-creative|allura-org/MS3-24B-Roselily-Creative|C|1.0,5.0|32768,4096|-|-|allura-org/MS3-24B-Roselily-Creative model|N
featherless/CardProjector-24B-v1|cardprojector-24b|SlerpE/CardProjector-24B-v1|C|1.0,5.0|32768,4096|V|-|SlerpE/CardProjector-24B-v1 model|N
featherless/Forgotten-Safeword-24B-V3.0|forgotten-safeword-24b|ReadyArt/Forgotten-Safeword-24B-V3.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Safeword-24B-V3.0 model|N
featherless/Mistral-Small-24b-Sertraline-0304|mistral-small-24b-sertraline-0304|allura-org/Mistral-Small-24b-Sertraline-0304|C|1.0,5.0|32768,4096|-|-|allura-org/Mistral-Small-24b-Sertraline-0304 model|N
featherless/OlympicCoder-32B|olympiccoder-32b|open-r1/OlympicCoder-32B|C|1.0,5.0|131072,4096|-|-|open-r1/OlympicCoder-32B model|N
featherless/Mistral-Small-24B-Instruct-2501|mistral-small-24b-instruct-2501|unsloth/Mistral-Small-24B-Instruct-2501|C|1.0,5.0|32768,4096|-|-|unsloth/Mistral-Small-24B-Instruct-2501 model|N
featherless/Mistral-Small-24B-Base-2501|mistral-small-24b-base-2501|unsloth/Mistral-Small-24B-Base-2501|C|1.0,5.0|32768,4096|-|-|unsloth/Mistral-Small-24B-Base-2501 model|N
featherless/Mistral-Nemo-12B-R1-v0.1alpha|mistral-nemo-12b-r1-v0.1alpha|CreitinGameplays/Mistral-Nemo-12B-R1-v0.1alpha|C|1.0,5.0|32768,4096|V|-|CreitinGameplays/Mistral-Nemo-12B-R1-v0.1alpha model|N
featherless/llama-3.2-8B-Instruct|llama-3.2-8b-instruct|kehanlu/llama-3.2-8B-Instruct|C|1.0,5.0|32768,4096|-|-|kehanlu/llama-3.2-8B-Instruct model|N
featherless/mistral-small-r1-tensopolis|mistral-small-r1-tensopolis|tensopolis/mistral-small-r1-tensopolis|C|1.0,5.0|32768,4096|-|-|tensopolis/mistral-small-r1-tensopolis model|N
featherless/Napoleon_24B_V0.0|napoleon_24b_v0.0|baconnier/Napoleon_24B_V0.0|C|1.0,5.0|32768,4096|-|-|baconnier/Napoleon_24B_V0.0 model|N
featherless/Baptist-Christian-Bible-Expert-v1.1-24B|baptist-christian-bible-expert-v1.1-24b|ReadyArt/Baptist-Christian-Bible-Expert-v1.1-24B|C|1.0,5.0|32768,4096|V|-|ReadyArt/Baptist-Christian-Bible-Expert-v1.1-24B model|N
featherless/DeepSeek-R1-Distill-Qwen-14B-Blunt-Uncensored-Blunt|-|braindao/DeepSeek-R1-Distill-Qwen-14B-Blunt-Uncensored-Blunt|C|1.0,5.0|32768,4096|-|-|braindao/DeepSeek-R1-Distill-Qwen-14B-Blunt-Uncensored-Blunt model|N
featherless/L3.3-Prikol-70B-v0.3|l3.3-prikol-70b|Nohobby/L3.3-Prikol-70B-v0.3|C|1.0,5.0|32768,4096|V|-|Nohobby/L3.3-Prikol-70B-v0.3 model|N
featherless/Llama_3.x_70b_Doberman_V1|llama_3.x_70b_doberman_v1|Nexesenex/Llama_3.x_70b_Doberman_V1|C|1.0,5.0|32768,4096|-|-|Nexesenex/Llama_3.x_70b_Doberman_V1 model|N
featherless/MiniusLight-24B-v1.01|miniuslight-24b|DoppelReflEx/MiniusLight-24B-v1.01|C|1.0,5.0|32768,4096|V|-|DoppelReflEx/MiniusLight-24B-v1.01 model|N
featherless/llama-kaz-instruct-8B-1|llama-kaz-instruct-8b-1|TilQazyna/llama-kaz-instruct-8B-1|C|1.0,5.0|8192,4096|-|-|TilQazyna/llama-kaz-instruct-8B-1 model|N
featherless/chimera-beta-test2-lora-merged|chimera-beta-test2-lora-merged|utkmst/chimera-beta-test2-lora-merged|C|1.0,5.0|32768,4096|-|-|utkmst/chimera-beta-test2-lora-merged model|N
featherless/Bigger-Body-70b|bigger-body-70b|allura-org/Bigger-Body-70b|C|1.0,5.0|32768,4096|-|-|allura-org/Bigger-Body-70b model|N
featherless/T3Q-qwen2.5-14b-v1.0-e3|t3q-qwen2.5-14b-v1.0-e3|JungZoona/T3Q-qwen2.5-14b-v1.0-e3|C|1.0,5.0|131072,4096|V|-|JungZoona/T3Q-qwen2.5-14b-v1.0-e3 model|N
featherless/Arcee-Blitz-abliterated|arcee-blitz-abliterated|huihui-ai/Arcee-Blitz-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Arcee-Blitz-abliterated model|N
featherless/MedicalEDI-14b-EDI-Base-4|medicaledi-14b-edi-base-4|Shaleen123/MedicalEDI-14b-EDI-Base-4|C|1.0,5.0|32768,4096|-|-|Shaleen123/MedicalEDI-14b-EDI-Base-4 model|N
featherless/Apollo_v2-32B|apollo_v2-32b|rootxhacker/Apollo_v2-32B|C|1.0,5.0|131072,4096|-|-|rootxhacker/Apollo_v2-32B model|N
featherless/DeepSeek-R1-Distill-Llama-8B-abliterated|-|eldoprano/DeepSeek-R1-Distill-Llama-8B-abliterated|C|1.0,5.0|32768,4096|-|-|eldoprano/DeepSeek-R1-Distill-Llama-8B-abliterated model|N
featherless/Forgotten-Safeword-24B-v4.0|forgotten-safeword-24b|ReadyArt/Forgotten-Safeword-24B-v4.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Safeword-24B-v4.0 model|N
featherless/Dungeonmaster-V2.4-Expanded-LLaMa-70B|dungeonmaster-v2.4-expanded-llama-70b|Tarek07/Dungeonmaster-V2.4-Expanded-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Dungeonmaster-V2.4-Expanded-LLaMa-70B model|N
featherless/Hamanasu-Magnum-QwQ-32B|hamanasu-magnum-qwq-32b|Delta-Vector/Hamanasu-Magnum-QwQ-32B|C|1.0,5.0|131072,4096|V|-|Delta-Vector/Hamanasu-Magnum-QwQ-32B model|N
featherless/Hamanasu-QwQ-V2-RP|hamanasu-qwq-v2-rp|Delta-Vector/Hamanasu-QwQ-V2-RP|C|1.0,5.0|131072,4096|V|-|Delta-Vector/Hamanasu-QwQ-V2-RP model|N
featherless/Mistral-Small-3.1-24B-Base-2503|mistral-small-3.1-24b-base-2503|mistralai/Mistral-Small-3.1-24B-Base-2503|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Small-3.1-24B-Base-2503 model|N
featherless/Llama-3.1-Nemotron-Nano-8B-v1|llama-3.1-nemotron-nano-8b|nvidia/Llama-3.1-Nemotron-Nano-8B-v1|C|1.0,5.0|32768,4096|V|-|nvidia/Llama-3.1-Nemotron-Nano-8B-v1 model|N
featherless/mistral-small-3.1-24b-instruct-2503-hf|mistral-small-3.1-24b-instruct-2503-hf|mrfakename/mistral-small-3.1-24b-instruct-2503-hf|C|1.0,5.0|32768,4096|-|-|mrfakename/mistral-small-3.1-24b-instruct-2503-hf model|N
featherless/Llama-3.3-Nemotron-70B-Select|llama-3.3-nemotron-70b-select|nvidia/Llama-3.3-Nemotron-70B-Select|C|1.0,5.0|32768,4096|-|-|nvidia/Llama-3.3-Nemotron-70B-Select model|N
featherless/Dungeonmaster-V2.2-Expanded-LLaMa-70B|dungeonmaster-v2.2-expanded-llama-70b|Tarek07/Dungeonmaster-V2.2-Expanded-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Dungeonmaster-V2.2-Expanded-LLaMa-70B model|N
featherless/Forgotten-Abomination-24B-v4.0|forgotten-abomination-24b|ReadyArt/Forgotten-Abomination-24B-v4.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Abomination-24B-v4.0 model|N
featherless/Llama-3.3-70B-Vulpecula-r1|llama-3.3-70b-vulpecula-r1|Sao10K/Llama-3.3-70B-Vulpecula-r1|C|1.0,5.0|32768,4096|V|-|Sao10K/Llama-3.3-70B-Vulpecula-r1 model|N
featherless/SLIMER-PARALLEL-LLaMA3|slimer-parallel-llama3|expertai/SLIMER-PARALLEL-LLaMA3|C|1.0,5.0|32768,4096|-|-|expertai/SLIMER-PARALLEL-LLaMA3 model|N
featherless/undi95-remm-slerp-bf16|undi95-remm-slerp-bf16|wxgeorge/undi95-remm-slerp-bf16|C|1.0,5.0|4096,4096|-|-|wxgeorge/undi95-remm-slerp-bf16 model|N
featherless/DeepSeek-llama3.1-Bllossom-8B|deepseek-llama3.1-bllossom-8b|UNIVA-Bllossom/DeepSeek-llama3.1-Bllossom-8B|C|1.0,5.0|32768,4096|-|-|UNIVA-Bllossom/DeepSeek-llama3.1-Bllossom-8B model|N
featherless/Zero-Mistral-Small-3.1-24B-Instruct-2503-beta|-|ZeroAgency/Zero-Mistral-Small-3.1-24B-Instruct-2503-beta|C|1.0,5.0|32768,4096|-|-|ZeroAgency/Zero-Mistral-Small-3.1-24B-Instruct-2503-beta model|N
featherless/Saanvi-C0-12B|saanvi-c0-12b|riple-saanvi-lab/Saanvi-C0-12B|C|1.0,5.0|32768,4096|-|-|riple-saanvi-lab/Saanvi-C0-12B model|N
featherless/Llama-3.1-8B-Think|llama-3.1-8b-think|jdineen/Llama-3.1-8B-Think|C|1.0,5.0|32768,4096|K|-|jdineen/Llama-3.1-8B-Think model|N
featherless/Llama_3.x_70b_Evasion_V1|llama_3.x_70b_evasion_v1|Nexesenex/Llama_3.x_70b_Evasion_V1|C|1.0,5.0|32768,4096|-|-|Nexesenex/Llama_3.x_70b_Evasion_V1 model|N
featherless/Primogenitor-V2.1-LLaMa-70B|primogenitor-v2.1-llama-70b|Tarek07/Primogenitor-V2.1-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Primogenitor-V2.1-LLaMa-70B model|N
featherless/Grandiloquence-LLaMa-70B|grandiloquence-llama-70b|TareksGraveyard/Grandiloquence-LLaMa-70B|C|1.0,5.0|32768,4096|-|-|TareksGraveyard/Grandiloquence-LLaMa-70B model|N
featherless/Pantheon-RP-1.8-24b-Small-3.1|pantheon-rp-1.8-24b-small-3.1|Gryphe/Pantheon-RP-1.8-24b-Small-3.1|C|1.0,5.0|32768,4096|-|-|Gryphe/Pantheon-RP-1.8-24b-Small-3.1 model|N
featherless/WizardLM-2-8x22B|wizardlm-2-8x22b|alpindale/WizardLM-2-8x22B|C|1.0,5.0|32768,4096|-|,,25.7,43.4,,,,,,|alpindale/WizardLM-2-8x22B model|N
featherless/qwen2.5-bakeneko-32b-instruct-v2|qwen2.5-bakeneko-32b-instruct|rinna/qwen2.5-bakeneko-32b-instruct-v2|C|1.0,5.0|131072,4096|V|-|rinna/qwen2.5-bakeneko-32b-instruct-v2 model|N
featherless/Qwen2.5-Math-7B-Oat-Zero|qwen2.5-math-7b-oat-zero|sail/Qwen2.5-Math-7B-Oat-Zero|C|1.0,5.0|131072,4096|-|-|sail/Qwen2.5-Math-7B-Oat-Zero model|N
featherless/Mistral3.1-DPO-merged|mistral3.1-dpo-merged|ponik7/Mistral3.1-DPO-merged|C|1.0,5.0|32768,4096|-|-|ponik7/Mistral3.1-DPO-merged model|N
featherless/Meta-Llama-3.1-8B-Instruct_p_en_q_ru|meta-llama-3.1-8b-instruct_p_en_q_ru|anumafzal94/Meta-Llama-3.1-8B-Instruct_p_en_q_ru|C|1.0,5.0|32768,4096|-|-|anumafzal94/Meta-Llama-3.1-8B-Instruct_p_en_q_ru model|N
featherless/qwen7b-distilled-from-deepseek-r1-qwen32b|-|eganwo/qwen7b-distilled-from-deepseek-r1-qwen32b|C|1.0,5.0|131072,4096|-|-|eganwo/qwen7b-distilled-from-deepseek-r1-qwen32b model|N
featherless/Macabre-Intuitions-32B|macabre-intuitions-32b|Mawdistical/Macabre-Intuitions-32B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Macabre-Intuitions-32B model|N
featherless/Llama-3.3-CURSEDMAGICALGIRL-2|llama-3.3-cursedmagicalgirl-2|KaraKaraWitch/Llama-3.3-CURSEDMAGICALGIRL-2|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-CURSEDMAGICALGIRL-2 model|N
featherless/Forgotten-Safeword-70B-v5.0|forgotten-safeword-70b|ReadyArt/Forgotten-Safeword-70B-v5.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Safeword-70B-v5.0 model|N
featherless/Rei-V2-12B|rei-v2-12b|Delta-Vector/Rei-V2-12B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Rei-V2-12B model|N
featherless/XiYanSQL-QwenCoder-32B-2412|xiyansql-qwencoder-32b-2412|XGenerationLab/XiYanSQL-QwenCoder-32B-2412|C|1.0,5.0|32768,4096|-|-|XGenerationLab/XiYanSQL-QwenCoder-32B-2412 model|N
featherless/Wanton-Wolf-70B|wanton-wolf-70b|Mawdistical/Wanton-Wolf-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Wanton-Wolf-70B model|N
featherless/Gaslight-24B-v1.0|gaslight-24b|ReadyArt/Gaslight-24B-v1.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Gaslight-24B-v1.0 model|N
featherless/Legion-V2.1-LLaMa-70B|legion-v2.1-llama-70b|Tarek07/Legion-V2.1-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Legion-V2.1-LLaMa-70B model|N
featherless/Llama-3-Karamaru-v1|llama-3-karamaru|SakanaAI/Llama-3-Karamaru-v1|C|1.0,5.0|8192,4096|V|-|SakanaAI/Llama-3-Karamaru-v1 model|N
featherless/gemma-3-27b-pt|gemma-3-27b-pt|google/gemma-3-27b-pt|C|1.0,5.0|32768,4096|-|-|google/gemma-3-27b-pt model|N
featherless/gemma-3-27b-it|gemma-3-27b-it|google/gemma-3-27b-it|C|1.0,5.0|32768,4096|-|,,74.0,48.9,,,,,,|google/gemma-3-27b-it model|N
featherless/llama3.1-8b-reasoning-summarizer|llama3.1-8b-reasoning-summarizer|seacorn/llama3.1-8b-reasoning-summarizer|C|1.0,5.0|32768,4096|K|-|seacorn/llama3.1-8b-reasoning-summarizer model|N
featherless/Electranova-70B-v1.0|electranova-70b|sophosympatheia/Electranova-70B-v1.0|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Electranova-70B-v1.0 model|N
featherless/OpenThinker2-7B|openthinker2-7b|open-thoughts/OpenThinker2-7B|C|1.0,5.0|131072,4096|K|-|open-thoughts/OpenThinker2-7B model|N
featherless/HallOumi-8B|halloumi-8b|oumi-ai/HallOumi-8B|C|1.0,5.0|32768,4096|-|-|oumi-ai/HallOumi-8B model|N
featherless/CodeLlama-7b-Instruct-Solidity|codellama-7b-instruct-solidity|AlfredPros/CodeLlama-7b-Instruct-Solidity|C|1.0,5.0|4096,4096|-|-|AlfredPros/CodeLlama-7b-Instruct-Solidity model|N
featherless/llemma_7b|llemma_7b|EleutherAI/llemma_7b|C|1.0,5.0|4096,4096|-|-|EleutherAI/llemma_7b model|N
featherless/cogito-v1-preview-llama-8B|cogito-v1-preview-llama-8b|deepcogito/cogito-v1-preview-llama-8B|C|1.0,5.0|32768,4096|V|-|deepcogito/cogito-v1-preview-llama-8B model|N
featherless/QwQ-32B-ArliAI-RpR-v1|qwq-32b-arliai-rpr|ArliAI/QwQ-32B-ArliAI-RpR-v1|C|1.0,5.0|32768,4096|V|-|ArliAI/QwQ-32B-ArliAI-RpR-v1 model|N
featherless/gemma-3-27b-it-abliterated|gemma-3-27b-it-abliterated|mlabonne/gemma-3-27b-it-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/gemma-3-27b-it-abliterated model|N
featherless/Synthia-S1-27b|synthia-s1-27b|Tesslate/Synthia-S1-27b|C|1.0,5.0|32768,4096|-|-|Tesslate/Synthia-S1-27b model|N
featherless/Feline-Clairvoyance-72B|feline-clairvoyance-72b|Mawdistical/Feline-Clairvoyance-72B|C|1.0,5.0|131072,4096|-|-|Mawdistical/Feline-Clairvoyance-72B model|N
featherless/Draconic-Tease-70B|draconic-tease-70b|Mawdistical/Draconic-Tease-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Draconic-Tease-70B model|N
featherless/Vulpine-Seduction-70B|vulpine-seduction-70b|Mawdistical/Vulpine-Seduction-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Vulpine-Seduction-70B model|N
featherless/NemoMix-Unleashed-12B|nemomix-unleashed-12b|MarinaraSpaghetti/NemoMix-Unleashed-12B|C|1.0,5.0|32768,4096|-|-|MarinaraSpaghetti/NemoMix-Unleashed-12B model|N
featherless/Trendyol-LLM-7B-chat-v4.1.0|trendyol-llm-7b-chat-v4.1.0|Trendyol/Trendyol-LLM-7B-chat-v4.1.0|C|1.0,5.0|131072,4096|V|-|Trendyol/Trendyol-LLM-7B-chat-v4.1.0 model|N
featherless/QwQ-32B-abliterated|qwq-32b-abliterated|huihui-ai/QwQ-32B-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/QwQ-32B-abliterated model|N
featherless/gemma-3-27b-it-uncensored|gemma-3-27b-it-uncensored|braindao/gemma-3-27b-it-uncensored|C|1.0,5.0|32768,4096|-|-|braindao/gemma-3-27b-it-uncensored model|N
featherless/Forgotten-Abomination-12B-v4.0|forgotten-abomination-12b|ReadyArt/Forgotten-Abomination-12B-v4.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Forgotten-Abomination-12B-v4.0 model|N
featherless/Christian-Bible-Expert-v2.0-12B|christian-bible-expert-v2.0-12b|sleepdeprived3/Christian-Bible-Expert-v2.0-12B|C|1.0,5.0|32768,4096|V|-|sleepdeprived3/Christian-Bible-Expert-v2.0-12B model|N
featherless/Llama-3.3-CURSEDMAGICALGIRL-2.5|llama-3.3-cursedmagicalgirl-2.5|KaraKaraWitch/Llama-3.3-CURSEDMAGICALGIRL-2.5|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-CURSEDMAGICALGIRL-2.5 model|N
featherless/Kimina-Prover-Preview-Distill-7B|kimina-prover-preview-distill-7b|AI-MO/Kimina-Prover-Preview-Distill-7B|C|1.0,5.0|131072,4096|-|-|AI-MO/Kimina-Prover-Preview-Distill-7B model|N
featherless/shisa-v2-llama3.3-70b|shisa-v2-llama3.3-70b|shisa-ai/shisa-v2-llama3.3-70b|C|1.0,5.0|32768,4096|V|-|shisa-ai/shisa-v2-llama3.3-70b model|N
featherless/T-Rex-mini|t-rex-mini|saturated-labs/T-Rex-mini|C|1.0,5.0|8192,4096|-|-|saturated-labs/T-Rex-mini model|N
featherless/Llama-xLAM-2-8b-fc-r|llama-xlam-2-8b-fc-r|Salesforce/Llama-xLAM-2-8b-fc-r|C|1.0,5.0|32768,4096|-|-|Salesforce/Llama-xLAM-2-8b-fc-r model|N
featherless/Kimina-Autoformalizer-7B|kimina-autoformalizer-7b|AI-MO/Kimina-Autoformalizer-7B|C|1.0,5.0|131072,4096|-|-|AI-MO/Kimina-Autoformalizer-7B model|N
featherless/Llama-xLAM-2-70b-fc-r|llama-xlam-2-70b-fc-r|Salesforce/Llama-xLAM-2-70b-fc-r|C|1.0,5.0|32768,4096|-|-|Salesforce/Llama-xLAM-2-70b-fc-r model|N
featherless/ABEJA-Qwen2.5-7b-Japanese-v0.1|abeja-qwen2.5-7b-japanese|abeja/ABEJA-Qwen2.5-7b-Japanese-v0.1|C|1.0,5.0|131072,4096|V|-|abeja/ABEJA-Qwen2.5-7b-Japanese-v0.1 model|N
featherless/Eurydice-24b-v2|eurydice-24b|aixonlab/Eurydice-24b-v2|C|1.0,5.0|32768,4096|V|-|aixonlab/Eurydice-24b-v2 model|N
featherless/Omega-Darker_The-Final-Directive-24B|omega-darker_the-final-directive-24b|ReadyArt/Omega-Darker_The-Final-Directive-24B|C|1.0,5.0|32768,4096|-|-|ReadyArt/Omega-Darker_The-Final-Directive-24B model|N
featherless/Irix-12B-Model_Stock|irix-12b-model_stock|DreadPoor/Irix-12B-Model_Stock|C|1.0,5.0|32768,4096|-|-|DreadPoor/Irix-12B-Model_Stock model|N
featherless/Irix_1.1-12B-Model_Stock|irix_1.1-12b-model_stock|DreadPoor/Irix_1.1-12B-Model_Stock|C|1.0,5.0|32768,4096|-|-|DreadPoor/Irix_1.1-12B-Model_Stock model|N
featherless/Christian-Bible-Expert-v2.0-24B|christian-bible-expert-v2.0-24b|sleepdeprived3/Christian-Bible-Expert-v2.0-24B|C|1.0,5.0|32768,4096|V|-|sleepdeprived3/Christian-Bible-Expert-v2.0-24B model|N
featherless/Omega-Darker_The-Final-Abomination-1.1-24B|-|ReadyArt/Omega-Darker_The-Final-Abomination-1.1-24B|C|1.0,5.0|32768,4096|-|-|ReadyArt/Omega-Darker_The-Final-Abomination-1.1-24B model|N
featherless/Feral-Allura-70B|feral-allura-70b|Mawdistical/Feral-Allura-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Feral-Allura-70B model|N
featherless/Lured-Lapine-70B|lured-lapine-70b|Mawdistical/Lured-Lapine-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Lured-Lapine-70B model|N
featherless/QwQ-32B-ArliAI-RpR-v2|qwq-32b-arliai-rpr|ArliAI/QwQ-32B-ArliAI-RpR-v2|C|1.0,5.0|32768,4096|V|-|ArliAI/QwQ-32B-ArliAI-RpR-v2 model|N
featherless/AceMath-RL-Nemotron-7B|acemath-rl-nemotron-7b|nvidia/AceMath-RL-Nemotron-7B|C|1.0,5.0|131072,4096|-|-|nvidia/AceMath-RL-Nemotron-7B model|N
featherless/Rivermind-12B-v1|rivermind-12b|TheDrummer/Rivermind-12B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Rivermind-12B-v1 model|N
featherless/OpenMath-Nemotron-32B|openmath-nemotron-32b|nvidia/OpenMath-Nemotron-32B|C|1.0,5.0|131072,4096|-|-|nvidia/OpenMath-Nemotron-32B model|N
featherless/legml-v0.1|legml|legmlai/legml-v0.1|C|1.0,5.0|131072,4096|V|-|legmlai/legml-v0.1 model|N
featherless/L3.3-Fighting-Beautifully|l3.3-fighting-beautifully|KaraKaraWarehouse/L3.3-Fighting-Beautifully|C|1.0,5.0|32768,4096|-|-|KaraKaraWarehouse/L3.3-Fighting-Beautifully model|N
featherless/OpenMath-Nemotron-7B|openmath-nemotron-7b|nvidia/OpenMath-Nemotron-7B|C|1.0,5.0|131072,4096|-|-|nvidia/OpenMath-Nemotron-7B model|N
featherless/oiiaioiiai-B|oiiaioiiai-b|KaraKaraWitch/oiiaioiiai-B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/oiiaioiiai-B model|N
featherless/QwQ-32B-ArliAI-RpR-v3|qwq-32b-arliai-rpr|ArliAI/QwQ-32B-ArliAI-RpR-v3|C|1.0,5.0|32768,4096|V|-|ArliAI/QwQ-32B-ArliAI-RpR-v3 model|N
featherless/oiiaioiiai-A|oiiaioiiai-a|KaraKaraWitch/oiiaioiiai-A|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/oiiaioiiai-A model|N
featherless/saiga_gemma3_12b|saiga_gemma3_12b|IlyaGusev/saiga_gemma3_12b|C|1.0,5.0|32768,4096|-|-|IlyaGusev/saiga_gemma3_12b model|N
featherless/UIGEN-T2-7B|uigen-t2-7b|Tesslate/UIGEN-T2-7B|C|1.0,5.0|131072,4096|-|-|Tesslate/UIGEN-T2-7B model|N
featherless/Broken-Tutu-24B|broken-tutu-24b|ReadyArt/Broken-Tutu-24B|C|1.0,5.0|32768,4096|-|-|ReadyArt/Broken-Tutu-24B model|N
featherless/Mistral-Small-3.1-24B-Instruct-2503|mistral-small-3.1-24b-instruct-2503|mistralai/Mistral-Small-3.1-24B-Instruct-2503|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Small-3.1-24B-Instruct-2503 model|N
featherless/gemma-3-12b-it|gemma-3-12b-it|google/gemma-3-12b-it|C|1.0,5.0|32768,4096|-|-|google/gemma-3-12b-it model|N
featherless/Gemma-3-Starshine-12B|gemma-3-starshine-12b|ToastyPigeon/Gemma-3-Starshine-12B|C|1.0,5.0|32768,4096|-|-|ToastyPigeon/Gemma-3-Starshine-12B model|N
featherless/Gemma-3-Glitter-12B|gemma-3-glitter-12b|allura-org/Gemma-3-Glitter-12B|C|1.0,5.0|32768,4096|-|-|allura-org/Gemma-3-Glitter-12B model|N
featherless/Toppy-M-7B|toppy-m-7b|Undi95/Toppy-M-7B|C|1.0,5.0|4096,4096|-|-|Undi95/Toppy-M-7B model|N
featherless/secgpt|secgpt|clouditera/secgpt|C|1.0,5.0|131072,4096|-|-|clouditera/secgpt model|N
featherless/Veiled-Calla-12B|veiled-calla-12b|soob3123/Veiled-Calla-12B|C|1.0,5.0|32768,4096|-|-|soob3123/Veiled-Calla-12B model|N
featherless/OpenMath-Nemotron-14B-Kaggle|openmath-nemotron-14b-kaggle|nvidia/OpenMath-Nemotron-14B-Kaggle|C|1.0,5.0|131072,4096|-|-|nvidia/OpenMath-Nemotron-14B-Kaggle model|N
featherless/SWE-agent-LM-32B|swe-agent-lm-32b|SWE-bench/SWE-agent-LM-32B|C|1.0,5.0|131072,4096|-|-|SWE-bench/SWE-agent-LM-32B model|N
featherless/MarinaraSpaghetti-NemoMix-Unleashed-12B-chat|-|NGalrion/MarinaraSpaghetti-NemoMix-Unleashed-12B-chat|C|1.0,5.0|32768,4096|-|-|NGalrion/MarinaraSpaghetti-NemoMix-Unleashed-12B-chat model|N
featherless/Mistral-Nemo-Instruct-2407-lenient-chatfix|-|m8than/Mistral-Nemo-Instruct-2407-lenient-chatfix|C|1.0,5.0|32768,4096|-|-|m8than/Mistral-Nemo-Instruct-2407-lenient-chatfix model|N
featherless/ELYZA-Thinking-1.0-Qwen-32B|elyza-thinking-1.0-qwen-32b|elyza/ELYZA-Thinking-1.0-Qwen-32B|C|1.0,5.0|131072,4096|K|-|elyza/ELYZA-Thinking-1.0-Qwen-32B model|N
featherless/Kevin-32B|kevin-32b|cognition-ai/Kevin-32B|C|1.0,5.0|131072,4096|-|-|cognition-ai/Kevin-32B model|N
featherless/GRPO-VI-Qwen2-7B-RAG|grpo-vi-qwen2-7b-rag|AITeamVN/GRPO-VI-Qwen2-7B-RAG|C|1.0,5.0|131072,4096|V|-|AITeamVN/GRPO-VI-Qwen2-7B-RAG model|N
featherless/XiYanSQL-QwenCoder-32B-2504|xiyansql-qwencoder-32b-2504|XGenerationLab/XiYanSQL-QwenCoder-32B-2504|C|1.0,5.0|32768,4096|-|-|XGenerationLab/XiYanSQL-QwenCoder-32B-2504 model|N
featherless/Llama-EveningMirai-3.3-70B|llama-eveningmirai-3.3-70b|KaraKaraWitch/Llama-EveningMirai-3.3-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-EveningMirai-3.3-70B model|N
featherless/Qwen3-8B|qwen3-8b|Qwen/Qwen3-8B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-8B model|N
featherless/Josiefied-Qwen3-8B-abliterated-v1|josiefied-qwen3-8b-abliterated|Goekdeniz-Guelmez/Josiefied-Qwen3-8B-abliterated-v1|C|1.0,5.0|32768,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-8B-abliterated-v1 model|N
featherless/Qwen3-32B|qwen3-32b|Qwen/Qwen3-32B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-32B model|N
featherless/Qwen3-14B|qwen3-14b|Qwen/Qwen3-14B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-14B model|N
featherless/GLM-Z1-32B-0414|glm-z1-32b-0414|zai-org/GLM-Z1-32B-0414|C|1.0,5.0|32768,4096|-|-|zai-org/GLM-Z1-32B-0414 model|N
featherless/shuttle-3.5|shuttle-3.5|shuttleai/shuttle-3.5|C|1.0,5.0|32768,4096|-|-|shuttleai/shuttle-3.5 model|N
featherless/GLM-4-9B-0414|glm-4-9b-0414|zai-org/GLM-4-9B-0414|C|1.0,5.0|32768,4096|-|-|zai-org/GLM-4-9B-0414 model|N
featherless/GLM4-9B-Neon-v2|glm4-9b-neon|allura-org/GLM4-9B-Neon-v2|C|1.0,5.0|32768,4096|V|-|allura-org/GLM4-9B-Neon-v2 model|N
featherless/GLM4-32B-Neon-v2|glm4-32b-neon|allura-org/GLM4-32B-Neon-v2|C|1.0,5.0|32768,4096|V|-|allura-org/GLM4-32B-Neon-v2 model|N
featherless/remnant-glm4-32b|remnant-glm4-32b|allura-org/remnant-glm4-32b|C|1.0,5.0|32768,4096|-|-|allura-org/remnant-glm4-32b model|N
featherless/GLM-magnum-e1|glm-magnum-e1|NewEden/GLM-magnum-e1|C|1.0,5.0|32768,4096|-|-|NewEden/GLM-magnum-e1 model|N
featherless/Smoothie-Qwen3-32B|smoothie-qwen3-32b|dnotitia/Smoothie-Qwen3-32B|C|1.0,5.0|32768,4096|-|-|dnotitia/Smoothie-Qwen3-32B model|N
featherless/Qwen3-32B-abliterated|qwen3-32b-abliterated|roslein/Qwen3-32B-abliterated|C|1.0,5.0|32768,4096|-|-|roslein/Qwen3-32B-abliterated model|N
featherless/CavesOfQwen3-8b|cavesofqwen3-8b|KaraKaraWitch/CavesOfQwen3-8b|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/CavesOfQwen3-8b model|N
featherless/AM-Thinking-v1|am-thinking|a-m-team/AM-Thinking-v1|C|1.0,5.0|32768,4096|VK|-|a-m-team/AM-Thinking-v1 model|N
featherless/II-Medical-8B|ii-medical-8b|Intelligent-Internet/II-Medical-8B|C|1.0,5.0|32768,4096|-|-|Intelligent-Internet/II-Medical-8B model|N
featherless/Eurydice-24b-v3|eurydice-24b|aixonlab/Eurydice-24b-v3|C|1.0,5.0|32768,4096|V|-|aixonlab/Eurydice-24b-v3 model|N
featherless/Harbinger-24B|harbinger-24b|LatitudeGames/Harbinger-24B|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Harbinger-24B model|N
featherless/Sentinel-Serpent-Q3-32B|sentinel-serpent-q3-32b|Mawdistical/Sentinel-Serpent-Q3-32B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Sentinel-Serpent-Q3-32B model|N
featherless/Omega-Darker-Gaslight_The-Final-Forgotten-Fever-Dream-24B|-|ReadyArt/Omega-Darker-Gaslight_The-Final-Forgotten-Fever-Dream-24B|C|1.0,5.0|32768,4096|-|-|ReadyArt/Omega-Darker-Gaslight_The-Final-Forgotten-Fever-Dream-24B model|N
featherless/KernelLLM|kernelllm|facebook/KernelLLM|C|1.0,5.0|32768,4096|-|-|facebook/KernelLLM model|N
featherless/GrayLine-Qwen3-8B|grayline-qwen3-8b|soob3123/GrayLine-Qwen3-8B|C|1.0,5.0|32768,4096|-|-|soob3123/GrayLine-Qwen3-8B model|N
featherless/praxis-bookwriter-llama3.1-8b-sft|praxis-bookwriter-llama3.1-8b-sft|maldv/praxis-bookwriter-llama3.1-8b-sft|C|1.0,5.0|32768,4096|-|-|maldv/praxis-bookwriter-llama3.1-8b-sft model|N
featherless/L3.3-70B-Magnum-Nexus|l3.3-70b-magnum-nexus|DS-Archive/L3.3-70B-Magnum-Nexus|C|1.0,5.0|32768,4096|-|-|DS-Archive/L3.3-70B-Magnum-Nexus model|N
featherless/QwQ-32B-ArliAI-RpR-v4|qwq-32b-arliai-rpr|ArliAI/QwQ-32B-ArliAI-RpR-v4|C|1.0,5.0|32768,4096|V|-|ArliAI/QwQ-32B-ArliAI-RpR-v4 model|N
featherless/Devstral-Small-2505|devstral-small-2505|mistralai/Devstral-Small-2505|C|1.0,5.0|32768,4096|-|-|mistralai/Devstral-Small-2505 model|N
featherless/AceReason-Nemotron-14B|acereason-nemotron-14b|nvidia/AceReason-Nemotron-14B|C|1.0,5.0|32768,4096|K|-|nvidia/AceReason-Nemotron-14B model|N
featherless/kanana-1.5-8b-base|kanana-1.5-8b-base|kakaocorp/kanana-1.5-8b-base|C|1.0,5.0|8192,4096|-|-|kakaocorp/kanana-1.5-8b-base model|N
featherless/sarvam-m|sarvam-m|sarvamai/sarvam-m|C|1.0,5.0|32768,4096|-|-|sarvamai/sarvam-m model|N
featherless/Dans-PersonalityEngine-V1.3.0-24b|dans-personalityengine-v1.3.0-24b|PocketDoc/Dans-PersonalityEngine-V1.3.0-24b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-PersonalityEngine-V1.3.0-24b model|N
featherless/GrayLine-Qwen3-14B|grayline-qwen3-14b|soob3123/GrayLine-Qwen3-14B|C|1.0,5.0|32768,4096|-|-|soob3123/GrayLine-Qwen3-14B model|N
featherless/L3.3-GeneticLemonade-Unleashed-v3-70B|l3.3-geneticlemonade-unleashed-v3-70b|zerofata/L3.3-GeneticLemonade-Unleashed-v3-70B|C|1.0,5.0|32768,4096|V|-|zerofata/L3.3-GeneticLemonade-Unleashed-v3-70B model|N
featherless/Fathom-R1-14B|fathom-r1-14b|FractalAIResearch/Fathom-R1-14B|C|1.0,5.0|32768,4096|-|-|FractalAIResearch/Fathom-R1-14B model|N
featherless/AceReason-Nemotron-7B|acereason-nemotron-7b|nvidia/AceReason-Nemotron-7B|C|1.0,5.0|131072,4096|K|-|nvidia/AceReason-Nemotron-7B model|N
featherless/xLAM-2-32b-fc-r|xlam-2-32b-fc-r|Salesforce/xLAM-2-32b-fc-r|C|1.0,5.0|32768,4096|-|-|Salesforce/xLAM-2-32b-fc-r model|N
featherless/DeepHat-V1-7B|deephat-v1-7b|DeepHat/DeepHat-V1-7B|C|1.0,5.0|131072,4096|V|-|DeepHat/DeepHat-V1-7B model|N
featherless/Turkish-Gemma-9b-v0.1|turkish-gemma-9b|ytu-ce-cosmos/Turkish-Gemma-9b-v0.1|C|1.0,5.0|16384,4096|V|-|ytu-ce-cosmos/Turkish-Gemma-9b-v0.1 model|N
featherless/Dans-PersonalityEngine-V1.3.0-12b|dans-personalityengine-v1.3.0-12b|PocketDoc/Dans-PersonalityEngine-V1.3.0-12b|C|1.0,5.0|32768,4096|V|-|PocketDoc/Dans-PersonalityEngine-V1.3.0-12b model|N
featherless/OpenR1-Distill-7B|openr1-distill-7b|open-r1/OpenR1-Distill-7B|C|1.0,5.0|131072,4096|-|-|open-r1/OpenR1-Distill-7B model|N
featherless/MamayLM-Gemma-2-9B-IT-v0.1|mamaylm-gemma-2-9b-it|INSAIT-Institute/MamayLM-Gemma-2-9B-IT-v0.1|C|1.0,5.0|16384,4096|V|-|INSAIT-Institute/MamayLM-Gemma-2-9B-IT-v0.1 model|N
featherless/DeepSeek-R1-0528-Qwen3-8B|deepseek-r1-0528-qwen3-8b|deepseek-ai/DeepSeek-R1-0528-Qwen3-8B|C|1.0,5.0|32768,4096|-|-|deepseek-ai/DeepSeek-R1-0528-Qwen3-8B model|N
featherless/QwenLong-L1-32B|qwenlong-l1-32b|Tongyi-Zhiwen/QwenLong-L1-32B|C|1.0,5.0|32768,4096|-|-|Tongyi-Zhiwen/QwenLong-L1-32B model|N
featherless/ABEJA-Qwen2.5-32b-Japanese-v1.0|abeja-qwen2.5-32b-japanese|abeja/ABEJA-Qwen2.5-32b-Japanese-v1.0|C|1.0,5.0|131072,4096|V|-|abeja/ABEJA-Qwen2.5-32b-Japanese-v1.0 model|N
featherless/Finance-Llama-8B|finance-llama-8b|tarun7r/Finance-Llama-8B|C|1.0,5.0|32768,4096|-|-|tarun7r/Finance-Llama-8B model|N
featherless/DeepSeek-R1-0528-Qwen3-8B|deepseek-r1-0528-qwen3-8b|unsloth/DeepSeek-R1-0528-Qwen3-8B|C|1.0,5.0|32768,4096|-|-|unsloth/DeepSeek-R1-0528-Qwen3-8B model|N
featherless/M-Prometheus-7B|m-prometheus-7b|Unbabel/M-Prometheus-7B|C|1.0,5.0|131072,4096|-|-|Unbabel/M-Prometheus-7B model|N
featherless/Squelching-Fantasies-70B-Regent|squelching-fantasies-70b-regent|Mawdistical/Squelching-Fantasies-70B-Regent|C|1.0,5.0|32768,4096|-|-|Mawdistical/Squelching-Fantasies-70B-Regent model|N
featherless/Squelching-Fantasies-70B|squelching-fantasies-70b|Mawdistical/Squelching-Fantasies-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Squelching-Fantasies-70B model|N
featherless/Squelching-Fantasies-qw3-32B|squelching-fantasies-qw3-32b|Mawdistical/Squelching-Fantasies-qw3-32B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Squelching-Fantasies-qw3-32B model|N
featherless/Squelching-Fantasies-qw3-14B|squelching-fantasies-qw3-14b|Mawdistical/Squelching-Fantasies-qw3-14B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Squelching-Fantasies-qw3-14B model|N
featherless/Wayfarer-12B|wayfarer-12b|LatitudeGames/Wayfarer-12B|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Wayfarer-12B model|N
featherless/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1|-|Goekdeniz-Guelmez/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1|C|1.0,5.0|32768,4096|V|-|Goekdeniz-Guelmez/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1 model|N
featherless/Draconia-Overdrive-32B|draconia-overdrive-32b|Mawdistical/Draconia-Overdrive-32B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Draconia-Overdrive-32B model|N
featherless/Space-Wars-24B-v1.00a|space-wars-24b-v1.00a|spacewars123/Space-Wars-24B-v1.00a|C|1.0,5.0|32768,4096|V|-|spacewars123/Space-Wars-24B-v1.00a model|N
featherless/Space-Wars-24B-v1.00b|space-wars-24b-v1.00b|spacewars123/Space-Wars-24B-v1.00b|C|1.0,5.0|32768,4096|V|-|spacewars123/Space-Wars-24B-v1.00b model|N
featherless/Rei-V1-32B-Base|rei-v1-32b-base|Delta-Vector/Rei-V1-32B-Base|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Rei-V1-32B-Base model|N
featherless/Omega-Darkest_The-Broken-Tutu-GLM-32B|omega-darkest_the-broken-tutu-glm-32b|ReadyArt/Omega-Darkest_The-Broken-Tutu-GLM-32B|C|1.0,5.0|32768,4096|-|-|ReadyArt/Omega-Darkest_The-Broken-Tutu-GLM-32B model|N
featherless/Legion-V2.1-LLaMa-70B-Elarablated-v0.8-hf|-|e-n-v-y/Legion-V2.1-LLaMa-70B-Elarablated-v0.8-hf|C|1.0,5.0|32768,4096|V|-|e-n-v-y/Legion-V2.1-LLaMa-70B-Elarablated-v0.8-hf model|N
featherless/OpenThinker3-7B|openthinker3-7b|open-thoughts/OpenThinker3-7B|C|1.0,5.0|131072,4096|K|-|open-thoughts/OpenThinker3-7B model|N
featherless/UIGEN-T3-14B-Preview|uigen-t3-14b-preview|Tesslate/UIGEN-T3-14B-Preview|C|1.0,5.0|32768,4096|-|-|Tesslate/UIGEN-T3-14B-Preview model|N
featherless/L3.3-GeneticLemonade-Final-v2-70B|l3.3-geneticlemonade-final-v2-70b|zerofata/L3.3-GeneticLemonade-Final-v2-70B|C|1.0,5.0|32768,4096|V|-|zerofata/L3.3-GeneticLemonade-Final-v2-70B model|N
featherless/amoral-gemma3-12B-v2-qat|amoral-gemma3-12b-v2-qat|soob3123/amoral-gemma3-12B-v2-qat|C|1.0,5.0|32768,4096|V|-|soob3123/amoral-gemma3-12B-v2-qat model|N
featherless/DS-R1-Qwen3-8B-ArliAI-RpR-v4-Small|ds-r1-qwen3-8b-arliai-rpr-v4-small|ArliAI/DS-R1-Qwen3-8B-ArliAI-RpR-v4-Small|C|1.0,5.0|32768,4096|V|-|ArliAI/DS-R1-Qwen3-8B-ArliAI-RpR-v4-Small model|N
featherless/Magistral-Small-2506|magistral-small-2506|mistralai/Magistral-Small-2506|C|1.0,5.0|32768,4096|-|,,,48.4,,,,,,|mistralai/Magistral-Small-2506 model|N
featherless/Magistral-Small-2506-bf16|magistral-small-2506-bf16|mlx-community/Magistral-Small-2506-bf16|C|1.0,5.0|32768,4096|-|-|mlx-community/Magistral-Small-2506-bf16 model|N
featherless/Mistral-Nemo-Gutenberg-Encore-12B|mistral-nemo-gutenberg-encore-12b|nbeerbower/Mistral-Nemo-Gutenberg-Encore-12B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Mistral-Nemo-Gutenberg-Encore-12B model|N
featherless/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B|dobby-mini-unhinged-plus-llama-3.1-8b|SentientAGI/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|SentientAGI/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B model|N
featherless/Llama-3.1-8B|llama-3.1-8b|meta-llama/Llama-3.1-8B|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|meta-llama/Llama-3.1-8B model|N
featherless/Llama-3.1-8B-Instruct|llama-3.1-8b-instruct|meta-llama/Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|meta-llama/Llama-3.1-8B-Instruct model|N
featherless/gemma-2-2b-it-Base|gemma-2-2b-it-base|1024m/gemma-2-2b-it-Base|C|1.0,5.0|8192,4096|-|-|1024m/gemma-2-2b-it-Base model|N
featherless/gemma-2-2b|gemma-2-2b|google/gemma-2-2b|C|1.0,5.0|8192,4096|-|-|google/gemma-2-2b model|N
featherless/gemma-2-2b-it|gemma-2-2b-it|google/gemma-2-2b-it|C|1.0,5.0|8192,4096|-|-|google/gemma-2-2b-it model|N
featherless/Azure_metric_log1|azure_metric_log1|Abhishek107/Azure_metric_log1|C|1.0,5.0|2048,2048|-|-|Abhishek107/Azure_metric_log1 model|N
featherless/tinyllama-history-chat-v1.1|tinyllama-history-chat|ambrosfitz/tinyllama-history-chat-v1.1|C|1.0,5.0|2048,2048|V|-|ambrosfitz/tinyllama-history-chat-v1.1 model|N
featherless/tinyllama-cleantech-finetune|tinyllama-cleantech-finetune|09z/tinyllama-cleantech-finetune|C|1.0,5.0|2048,2048|-|-|09z/tinyllama-cleantech-finetune model|N
featherless/tiny-cutlass|tiny-cutlass|080-ai/tiny-cutlass|C|1.0,5.0|2048,2048|-|-|080-ai/tiny-cutlass model|N
featherless/survey-finetuned-tinyllama-for-deployment|-|aryashah00/survey-finetuned-tinyllama-for-deployment|C|1.0,5.0|2048,2048|-|-|aryashah00/survey-finetuned-tinyllama-for-deployment model|N
featherless/TINYLLAMA-LAPTOP|tinyllama-laptop|ar08/TINYLLAMA-LAPTOP|C|1.0,5.0|2048,2048|-|-|ar08/TINYLLAMA-LAPTOP model|N
featherless/Ch1bika-v1|ch1bika|922-CA/Ch1bika-v1|C|1.0,5.0|2048,2048|V|-|922-CA/Ch1bika-v1 model|N
featherless/lunar-llm-tiny-llama-3epoch|lunar-llm-tiny-llama-3epoch|404NotF0und/lunar-llm-tiny-llama-3epoch|C|1.0,5.0|2048,2048|-|-|404NotF0und/lunar-llm-tiny-llama-3epoch model|N
featherless/lunar-llm-tiny-llama-10epochs|lunar-llm-tiny-llama-10epochs|404NotF0und/lunar-llm-tiny-llama-10epochs|C|1.0,5.0|2048,2048|-|-|404NotF0und/lunar-llm-tiny-llama-10epochs model|N
featherless/refprocess-tl-v0.1|refprocess-tl|almugabo/refprocess-tl-v0.1|C|1.0,5.0|2048,2048|V|-|almugabo/refprocess-tl-v0.1 model|N
featherless/tinyllama-storygeneration-v1|tinyllama-storygeneration|07jahnavi/tinyllama-storygeneration-v1|C|1.0,5.0|2048,2048|V|-|07jahnavi/tinyllama-storygeneration-v1 model|N
featherless/tinyllama-crysis|tinyllama-crysis|alexziskind1/tinyllama-crysis|C|1.0,5.0|2048,2048|-|-|alexziskind1/tinyllama-crysis model|N
featherless/TinyLlama-1.1B-Chat-yawp|tinyllama-1.1b-chat-yawp|ambrosfitz/TinyLlama-1.1B-Chat-yawp|C|1.0,5.0|2048,2048|-|-|ambrosfitz/TinyLlama-1.1B-Chat-yawp model|N
featherless/TinyLlama-1.1B-Chat-v1.0|tinyllama-1.1b-chat|ambiHF/TinyLlama-1.1B-Chat-v1.0|C|1.0,5.0|2048,2048|V|-|ambiHF/TinyLlama-1.1B-Chat-v1.0 model|N
featherless/tinyllama-task003_mctaco_question_generation_event_duration-v1|-|niryuu/tinyllama-task003_mctaco_question_generation_event_duration-v1|C|1.0,5.0|2048,2048|V|-|niryuu/tinyllama-task003_mctaco_question_generation_event_duration-v1 model|N
featherless/TinyLlama-repeat|tinyllama-repeat|Deathsquad10/TinyLlama-repeat|C|1.0,5.0|2048,2048|-|-|Deathsquad10/TinyLlama-repeat model|N
featherless/tiny-llama-merge-evo-server|tiny-llama-merge-evo-server|melino2000/tiny-llama-merge-evo-server|C|1.0,5.0|2048,2048|-|-|melino2000/tiny-llama-merge-evo-server model|N
featherless/chatbot-tiny|chatbot-tiny|hirenkumbhare/chatbot-tiny|C|1.0,5.0|2048,2048|-|-|hirenkumbhare/chatbot-tiny model|N
featherless/tinyllama_chosen|tinyllama_chosen|yifangong/tinyllama_chosen|C|1.0,5.0|2048,2048|-|-|yifangong/tinyllama_chosen model|N
featherless/chattinyllama|chattinyllama|maneln/chattinyllama|C|1.0,5.0|2048,2048|-|-|maneln/chattinyllama model|N
featherless/tinyllamatestbymarcel|tinyllamatestbymarcel|MR-Eder/tinyllamatestbymarcel|C|1.0,5.0|2048,2048|-|-|MR-Eder/tinyllamatestbymarcel model|N
featherless/tinyllama-1_1b-conv|tinyllama-1_1b-conv|iujinasena/tinyllama-1_1b-conv|C|1.0,5.0|2048,2048|-|-|iujinasena/tinyllama-1_1b-conv model|N
featherless/medner-gastroenterology|medner-gastroenterology|emilykang/medner-gastroenterology|C|1.0,5.0|2048,2048|-|-|emilykang/medner-gastroenterology model|N
featherless/new_tiny_llama1B_12K|new_tiny_llama1b_12k|Narednra/new_tiny_llama1B_12K|C|1.0,5.0|2048,2048|-|-|Narednra/new_tiny_llama1B_12K model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_s04_3|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s04_3|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s04_3 model|N
featherless/01newa1|01newa1|irusl/01newa1|C|1.0,5.0|2048,2048|-|-|irusl/01newa1 model|N
featherless/TinyLlamaText2SQL_HASRND|tinyllamatext2sql_hasrnd|haibh/TinyLlamaText2SQL_HASRND|C|1.0,5.0|2048,2048|-|-|haibh/TinyLlamaText2SQL_HASRND model|N
featherless/TinyLlama-1b-Rewrite-Jailbreak-Prompt|tinyllama-1b-rewrite-jailbreak-prompt|xdrshjr/TinyLlama-1b-Rewrite-Jailbreak-Prompt|C|1.0,5.0|2048,2048|-|-|xdrshjr/TinyLlama-1b-Rewrite-Jailbreak-Prompt model|N
featherless/medquad-symptoms|medquad-symptoms|emilykang/medquad-symptoms|C|1.0,5.0|2048,2048|-|-|emilykang/medquad-symptoms model|N
featherless/tinyllama-wame-4bit-curi|tinyllama-wame-4bit-curi|wamegabe/tinyllama-wame-4bit-curi|C|1.0,5.0|2048,2048|-|-|wamegabe/tinyllama-wame-4bit-curi model|N
featherless/TESTPOKIING1|testpokiing1|twololing1/TESTPOKIING1|C|1.0,5.0|2048,2048|-|-|twololing1/TESTPOKIING1 model|N
featherless/bavarian_LLaMmlein_1B|bavarian_llammlein_1b|innovation-hacking2/bavarian_LLaMmlein_1B|C|1.0,5.0|2048,2048|-|-|innovation-hacking2/bavarian_LLaMmlein_1B model|N
featherless/medquad-information|medquad-information|emilykang/medquad-information|C|1.0,5.0|2048,2048|-|-|emilykang/medquad-information model|N
featherless/sawit-tamil-full-model|sawit-tamil-full-model|BanusreeM/sawit-tamil-full-model|C|1.0,5.0|2048,2048|-|-|BanusreeM/sawit-tamil-full-model model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_s01|tinyllama-1.1b-chat-v1.0_finetuned_s01|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s01|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s01 model|N
featherless/dpo_nvp_400|dpo_nvp_400|lixiaohong/dpo_nvp_400|C|1.0,5.0|2048,2048|-|-|lixiaohong/dpo_nvp_400 model|N
featherless/neuralplats-1.1b-2T-v1|neuralplats-1.1b-2t|vihangd/neuralplats-1.1b-2T-v1|C|1.0,5.0|2048,2048|V|-|vihangd/neuralplats-1.1b-2T-v1 model|N
featherless/tinyllama-company-label2-model|tinyllama-company-label2-model|jawadmohmmad/tinyllama-company-label2-model|C|1.0,5.0|2048,2048|-|-|jawadmohmmad/tinyllama-company-label2-model model|N
featherless/my-tinyreco-model-new-data-bright12|my-tinyreco-model-new-data-bright12|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright12|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright12 model|N
featherless/tinyllama-task511_reddit_tifu_long_text_summarization-v1|-|niryuu/tinyllama-task511_reddit_tifu_long_text_summarization-v1|C|1.0,5.0|2048,2048|V|-|niryuu/tinyllama-task511_reddit_tifu_long_text_summarization-v1 model|N
featherless/avi-1.1b|avi-1.1b|ashercn97/avi-1.1b|C|1.0,5.0|2048,2048|-|-|ashercn97/avi-1.1b model|N
featherless/my-tinyreco-model-new-data-bright10.1|my-tinyreco-model-new-data-bright10.1|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.1|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.1 model|N
featherless/TinyLlama-NoPE-HeadScale8k|tinyllama-nope-headscale8k|AntNLP/TinyLlama-NoPE-HeadScale8k|C|1.0,5.0|2048,2048|-|-|AntNLP/TinyLlama-NoPE-HeadScale8k model|N
featherless/labiezione_generator|labiezione_generator|ensound/labiezione_generator|C|1.0,5.0|2048,2048|-|-|ensound/labiezione_generator model|N
featherless/tl-3t|tl-3t|emozilla/tl-3t|C|1.0,5.0|2048,2048|-|-|emozilla/tl-3t model|N
featherless/babyllama-v0.4|babyllama|kevin009/babyllama-v0.4|C|1.0,5.0|2048,2048|V|-|kevin009/babyllama-v0.4 model|N
featherless/tinyllama-es-wikipedia-aya-1.5T-v0.1|tinyllama-es-wikipedia-aya-1.5t|yuiseki/tinyllama-es-wikipedia-aya-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-es-wikipedia-aya-1.5T-v0.1 model|N
featherless/karasu-web-2|karasu-web-2|NilanE/karasu-web-2|C|1.0,5.0|2048,2048|-|-|NilanE/karasu-web-2 model|N
featherless/medner-soap_chart_progressnotes|medner-soap_chart_progressnotes|emilykang/medner-soap_chart_progressnotes|C|1.0,5.0|2048,2048|-|-|emilykang/medner-soap_chart_progressnotes model|N
featherless/tiny-llama-shuttle-xpc-cube-en2000|tiny-llama-shuttle-xpc-cube-en2000|calliehsu/tiny-llama-shuttle-xpc-cube-en2000|C|1.0,5.0|2048,2048|-|-|calliehsu/tiny-llama-shuttle-xpc-cube-en2000 model|N
featherless/tinyllama-wame-4bit-curi2|tinyllama-wame-4bit-curi2|wamegabe/tinyllama-wame-4bit-curi2|C|1.0,5.0|2048,2048|-|-|wamegabe/tinyllama-wame-4bit-curi2 model|N
featherless/tinyllama-roberta|tinyllama-roberta|estellahuo/tinyllama-roberta|C|1.0,5.0|2048,2048|-|-|estellahuo/tinyllama-roberta model|N
featherless/CasualConversation_1000|casualconversation_1000|smcwp/CasualConversation_1000|C|1.0,5.0|2048,2048|-|-|smcwp/CasualConversation_1000 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_lora|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_lora|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_lora model|N
featherless/tinyllama-2.5T-Clinical|tinyllama-2.5t-clinical|EnDevSols/tinyllama-2.5T-Clinical|C|1.0,5.0|2048,2048|-|-|EnDevSols/tinyllama-2.5T-Clinical model|N
featherless/karasu-translation-2|karasu-translation-2|NilanE/karasu-translation-2|C|1.0,5.0|2048,2048|-|-|NilanE/karasu-translation-2 model|N
featherless/TinyKiller-NSFW-DPO-1.1B|tinykiller-nsfw-dpo-1.1b|Novaciano/TinyKiller-NSFW-DPO-1.1B|C|1.0,5.0|2048,2048|-|-|Novaciano/TinyKiller-NSFW-DPO-1.1B model|N
featherless/tinyllama-1.1B-CrimsonAI-movie-v1|tinyllama-1.1b-crimsonai-movie|sargetun/tinyllama-1.1B-CrimsonAI-movie-v1|C|1.0,5.0|2048,2048|V|-|sargetun/tinyllama-1.1B-CrimsonAI-movie-v1 model|N
featherless/bagel-dpo-1.1b-v0.3|bagel-dpo-1.1b|jondurbin/bagel-dpo-1.1b-v0.3|C|1.0,5.0|2048,2048|V|-|jondurbin/bagel-dpo-1.1b-v0.3 model|N
featherless/tinyllama_finetuned_dpo|tinyllama_finetuned_dpo|sandeep1401/tinyllama_finetuned_dpo|C|1.0,5.0|2048,2048|-|-|sandeep1401/tinyllama_finetuned_dpo model|N
featherless/TinyLlama-psy-dpo|tinyllama-psy-dpo|50stars/TinyLlama-psy-dpo|C|1.0,5.0|2048,2048|-|-|50stars/TinyLlama-psy-dpo model|N
featherless/TinyLlama1B-spider-v2-28000steps|tinyllama1b-spider-v2-28000steps|lleticiasilvaa/TinyLlama1B-spider-v2-28000steps|C|1.0,5.0|2048,2048|V|-|lleticiasilvaa/TinyLlama1B-spider-v2-28000steps model|N
featherless/cpo-xcomet-xl_xxl-inc7b-10p-shuff-5e-7-full-tiny2|-|martimfasantos/cpo-xcomet-xl_xxl-inc7b-10p-shuff-5e-7-full-tiny2|C|1.0,5.0|2048,2048|-|-|martimfasantos/cpo-xcomet-xl_xxl-inc7b-10p-shuff-5e-7-full-tiny2 model|N
featherless/NoNameBrand_1.1B|nonamebrand_1.1b|Deathsquad10/NoNameBrand_1.1B|C|1.0,5.0|2048,2048|-|-|Deathsquad10/NoNameBrand_1.1B model|N
featherless/cpath-academic-search-model|cpath-academic-search-model|houcine-bdk/cpath-academic-search-model|C|1.0,5.0|2048,2048|-|-|houcine-bdk/cpath-academic-search-model model|N
featherless/babyllama-v0.6|babyllama|kevin009/babyllama-v0.6|C|1.0,5.0|2048,2048|V|-|kevin009/babyllama-v0.6 model|N
featherless/llama_smart_contract|llama_smart_contract|luishcarvalho/llama_smart_contract|C|1.0,5.0|2048,2048|-|-|luishcarvalho/llama_smart_contract model|N
featherless/TinyNaughtyLlama-v1.0|tinynaughtyllama|kevin009/TinyNaughtyLlama-v1.0|C|1.0,5.0|2048,2048|V|-|kevin009/TinyNaughtyLlama-v1.0 model|N
featherless/hi-tinylama|hi-tinylama|devlocalhost/hi-tinylama|C|1.0,5.0|2048,2048|-|-|devlocalhost/hi-tinylama model|N
featherless/Karasu-1.1b-task1357-vector|karasu-1.1b-task1357-vector|niryuu/Karasu-1.1b-task1357-vector|C|1.0,5.0|2048,2048|V|-|niryuu/Karasu-1.1b-task1357-vector model|N
featherless/tinyllama-ft-news-sentiment|tinyllama-ft-news-sentiment|remfinator/tinyllama-ft-news-sentiment|C|1.0,5.0|2048,2048|-|-|remfinator/tinyllama-ft-news-sentiment model|N
featherless/my-tinyreco-model-new-data-bright10.3|my-tinyreco-model-new-data-bright10.3|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.3|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.3 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_s02_i|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s02_i|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s02_i model|N
featherless/tinyllama-ja-wikipedia-1.5T-v0.1|tinyllama-ja-wikipedia-1.5t|yuiseki/tinyllama-ja-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-ja-wikipedia-1.5T-v0.1 model|N
featherless/tiny-llama-2T-open-orca-ru-6300-step|tiny-llama-2t-open-orca-ru-6300-step|dim/tiny-llama-2T-open-orca-ru-6300-step|C|1.0,5.0|2048,2048|-|-|dim/tiny-llama-2T-open-orca-ru-6300-step model|N
featherless/tiny-llama-sft|tiny-llama-sft|DatPySci/tiny-llama-sft|C|1.0,5.0|2048,2048|-|-|DatPySci/tiny-llama-sft model|N
featherless/TinyLlama-1.1B-merged|tinyllama-1.1b-merged|elijahww/TinyLlama-1.1B-merged|C|1.0,5.0|2048,2048|-|-|elijahww/TinyLlama-1.1B-merged model|N
featherless/tinyllama-en_ja-translation-v2|tinyllama-en_ja-translation|NilanE/tinyllama-en_ja-translation-v2|C|1.0,5.0|2048,2048|V|-|NilanE/tinyllama-en_ja-translation-v2 model|N
featherless/tinyllama-kubectl-v3|tinyllama-kubectl|brito-parzivall/tinyllama-kubectl-v3|C|1.0,5.0|2048,2048|V|-|brito-parzivall/tinyllama-kubectl-v3 model|N
featherless/TinyLlama-3T-OpenOrca|tinyllama-3t-openorca|muzammil-eds/TinyLlama-3T-OpenOrca|C|1.0,5.0|2048,2048|-|-|muzammil-eds/TinyLlama-3T-OpenOrca model|N
featherless/azma-v2|azma|AswanthCManoj/azma-v2|C|1.0,5.0|2048,2048|V|-|AswanthCManoj/azma-v2 model|N
featherless/TinyLlama1B-spider-v3-25500steps|tinyllama1b-spider-v3-25500steps|lleticiasilvaa/TinyLlama1B-spider-v3-25500steps|C|1.0,5.0|2048,2048|V|-|lleticiasilvaa/TinyLlama1B-spider-v3-25500steps model|N
featherless/testpipe1|testpipe1|eamonrw/testpipe1|C|1.0,5.0|2048,2048|-|-|eamonrw/testpipe1 model|N
featherless/tinyllama|tinyllama|Gideonah/tinyllama|C|1.0,5.0|2048,2048|-|-|Gideonah/tinyllama model|N
featherless/tinyllama-medqa-jp-v1|tinyllama-medqa-jp|jayeshvpatil/tinyllama-medqa-jp-v1|C|1.0,5.0|2048,2048|V|-|jayeshvpatil/tinyllama-medqa-jp-v1 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_s01_3|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s01_3|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_s01_3 model|N
featherless/yay|yay|ashercn97/yay|C|1.0,5.0|2048,2048|-|-|ashercn97/yay model|N
featherless/tinyllama-oasst1-top1-instruct-full-lr1-5-v0.1|-|habanoz/tinyllama-oasst1-top1-instruct-full-lr1-5-v0.1|C|1.0,5.0|2048,2048|V|-|habanoz/tinyllama-oasst1-top1-instruct-full-lr1-5-v0.1 model|N
featherless/tinyllama-zh-wikipedia-aya-1.5T-v0.1|tinyllama-zh-wikipedia-aya-1.5t|yuiseki/tinyllama-zh-wikipedia-aya-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-zh-wikipedia-aya-1.5T-v0.1 model|N
featherless/TinyLlama-v2ray|tinyllama-v2ray|theminji/TinyLlama-v2ray|C|1.0,5.0|2048,2048|V|-|theminji/TinyLlama-v2ray model|N
featherless/tinyllama-yo-wikipedia-1.5T-v0.1|tinyllama-yo-wikipedia-1.5t|yuiseki/tinyllama-yo-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-yo-wikipedia-1.5T-v0.1 model|N
featherless/TinyLlama_v1.1_float16_0.0|tinyllama_v1.1_float16_0.0|R1pathak/TinyLlama_v1.1_float16_0.0|C|1.0,5.0|2048,2048|-|-|R1pathak/TinyLlama_v1.1_float16_0.0 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned__optimized1_universal_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned__optimized1_universal_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned__optimized1_universal_FT model|N
featherless/Phi3-TL-ORCAMEL-SFT|phi3-tl-orcamel-sft|Sayan01/Phi3-TL-ORCAMEL-SFT|C|1.0,5.0|2048,2048|-|-|Sayan01/Phi3-TL-ORCAMEL-SFT model|N
featherless/engllama|engllama|Johstracke/engllama|C|1.0,5.0|2048,2048|-|-|Johstracke/engllama model|N
featherless/TinyLlama-Casual1|tinyllama-casual1|theminji/TinyLlama-Casual1|C|1.0,5.0|2048,2048|-|-|theminji/TinyLlama-Casual1 model|N
featherless/tinyllama-ja-wikipedia-scp-1.5T-v0.1|tinyllama-ja-wikipedia-scp-1.5t|yuiseki/tinyllama-ja-wikipedia-scp-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-ja-wikipedia-scp-1.5T-v0.1 model|N
featherless/karasu-translation|karasu-translation|NilanE/karasu-translation|C|1.0,5.0|2048,2048|-|-|NilanE/karasu-translation model|N
featherless/cspm_lora_final_v1|cspm_lora_final_v1|knarayan/cspm_lora_final_v1|C|1.0,5.0|2048,2048|-|-|knarayan/cspm_lora_final_v1 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4|tinyllama-1.1b-chat-v1.0_finetuned_4|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4 model|N
featherless/tinyllama-france-code-penal1|tinyllama-france-code-penal1|yyassif/tinyllama-france-code-penal1|C|1.0,5.0|2048,2048|-|-|yyassif/tinyllama-france-code-penal1 model|N
featherless/my-tinyreco-model-new-data-bright13|my-tinyreco-model-new-data-bright13|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright13|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright13 model|N
featherless/TinyLlama_-_TinyLlama-1.1B-Chat-v1.0-8bits|-|RichardErkhov/TinyLlama_-_TinyLlama-1.1B-Chat-v1.0-8bits|C|1.0,5.0|2048,2048|V|-|RichardErkhov/TinyLlama_-_TinyLlama-1.1B-Chat-v1.0-8bits model|N
featherless/tinyllama-1.1b-sum-dpo-full_LR5e-8_BS32_2epochs_old|-|martimfasantos/tinyllama-1.1b-sum-dpo-full_LR5e-8_BS32_2epochs_old|C|1.0,5.0|2048,2048|-|-|martimfasantos/tinyllama-1.1b-sum-dpo-full_LR5e-8_BS32_2epochs_old model|N
featherless/TinyLlama-1.1B-Chat-v1.0-OpenOrca|tinyllama-1.1b-chat-v1.0-openorca|SulthanTriesToCode/TinyLlama-1.1B-Chat-v1.0-OpenOrca|C|1.0,5.0|2048,2048|V|-|SulthanTriesToCode/TinyLlama-1.1B-Chat-v1.0-OpenOrca model|N
featherless/tamil-english-qa-full|tamil-english-qa-full|BanusreeM/tamil-english-qa-full|C|1.0,5.0|2048,2048|-|-|BanusreeM/tamil-english-qa-full model|N
featherless/tiny_full_INU|tiny_full_inu|Jiminiya/tiny_full_INU|C|1.0,5.0|2048,2048|-|-|Jiminiya/tiny_full_INU model|N
featherless/TinyLLama_0.6_Chat_BF16|tinyllama_0.6_chat_bf16|SicariusSicariiStuff/TinyLLama_0.6_Chat_BF16|C|1.0,5.0|2048,2048|-|-|SicariusSicariiStuff/TinyLLama_0.6_Chat_BF16 model|N
featherless/test_sai2|test_sai2|ThibautA/test_sai2|C|1.0,5.0|2048,2048|-|-|ThibautA/test_sai2 model|N
featherless/Tiny-Llama-AgriBot|tiny-llama-agribot|pranesh16/Tiny-Llama-AgriBot|C|1.0,5.0|2048,2048|-|-|pranesh16/Tiny-Llama-AgriBot model|N
featherless/Maika-Buddy-1B1-Chat|maika-buddy-1b1-chat|olliai/Maika-Buddy-1B1-Chat|C|1.0,5.0|2048,2048|-|-|olliai/Maika-Buddy-1B1-Chat model|N
featherless/TinyLlama-1.1B-indo-v1|tinyllama-1.1b-indo|Haary/TinyLlama-1.1B-indo-v1|C|1.0,5.0|2048,2048|V|-|Haary/TinyLlama-1.1B-indo-v1 model|N
featherless/moecule-1.1b-m2|moecule-1.1b-m2|davzoku/moecule-1.1b-m2|C|1.0,5.0|2048,2048|-|-|davzoku/moecule-1.1b-m2 model|N
featherless/tinyllama-v1-training|tinyllama-v1-training|quriousclick/tinyllama-v1-training|C|1.0,5.0|2048,2048|V|-|quriousclick/tinyllama-v1-training model|N
featherless/tinyllama-history-chat_v0.2|tinyllama-history-chat_v0.2|ambrosfitz/tinyllama-history-chat_v0.2|C|1.0,5.0|2048,2048|-|-|ambrosfitz/tinyllama-history-chat_v0.2 model|N
featherless/palmer-instruct-test-18|palmer-instruct-test-18|appvoid/palmer-instruct-test-18|C|1.0,5.0|2048,2048|-|-|appvoid/palmer-instruct-test-18 model|N
featherless/blockchainlabs_tinyllama_fusion_LHK_yunkong|-|alnrg2arg/blockchainlabs_tinyllama_fusion_LHK_yunkong|C|1.0,5.0|2048,2048|-|-|alnrg2arg/blockchainlabs_tinyllama_fusion_LHK_yunkong model|N
featherless/Tukan-1.1B-Chat-v0.6|tukan-1.1b-chat|alexredna/Tukan-1.1B-Chat-v0.6|C|1.0,5.0|2048,2048|V|-|alexredna/Tukan-1.1B-Chat-v0.6 model|N
featherless/tinyllama-history-chat-v1.5|tinyllama-history-chat|ambrosfitz/tinyllama-history-chat-v1.5|C|1.0,5.0|2048,2048|V|-|ambrosfitz/tinyllama-history-chat-v1.5 model|N
featherless/Ai-Thalli-Telugu-Model|ai-thalli-telugu-model|Ai-Thalli/Ai-Thalli-Telugu-Model|C|1.0,5.0|2048,2048|-|-|Ai-Thalli/Ai-Thalli-Telugu-Model model|N
featherless/colorist-v2-merged|colorist-v2-merged|andykcheng/colorist-v2-merged|C|1.0,5.0|2048,2048|V|-|andykcheng/colorist-v2-merged model|N
featherless/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-4epochs-oasst1-top1-instruct-V1|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-4epochs-oasst1-top1-instruct-V1|C|1.0,5.0|2048,2048|V|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-4epochs-oasst1-top1-instruct-V1 model|N
featherless/tinyllama-sql-v1|tinyllama-sql|detakarang/tinyllama-sql-v1|C|1.0,5.0|2048,2048|V|-|detakarang/tinyllama-sql-v1 model|N
featherless/ATAK-2|atak-2|CVP164/ATAK-2|C|1.0,5.0|2048,2048|-|-|CVP164/ATAK-2 model|N
featherless/horrorfinetuned|horrorfinetuned|Elcaida/horrorfinetuned|C|1.0,5.0|2048,2048|-|-|Elcaida/horrorfinetuned model|N
featherless/v2_system_tinyllama|v2_system_tinyllama|Abhishek107/v2_system_tinyllama|C|1.0,5.0|2048,2048|-|-|Abhishek107/v2_system_tinyllama model|N
featherless/llama2-base-ft-NER|llama2-base-ft-ner|ChemPlusX/llama2-base-ft-NER|C|1.0,5.0|2048,2048|-|-|ChemPlusX/llama2-base-ft-NER model|N
featherless/Taiwan-tinyllama-v1.1-base|taiwan-tinyllama-v1.1-base|benchang1110/Taiwan-tinyllama-v1.1-base|C|1.0,5.0|2048,2048|V|-|benchang1110/Taiwan-tinyllama-v1.1-base model|N
featherless/tinyllama-multilingual-finetune|tinyllama-multilingual-finetune|AKASH2393/tinyllama-multilingual-finetune|C|1.0,5.0|2048,2048|-|-|AKASH2393/tinyllama-multilingual-finetune model|N
featherless/tinyllama-outline-generator|tinyllama-outline-generator|Alestin/tinyllama-outline-generator|C|1.0,5.0|2048,2048|-|-|Alestin/tinyllama-outline-generator model|N
featherless/llama-1.1b-init|llama-1.1b-init|emozilla/llama-1.1b-init|C|1.0,5.0|2048,2048|-|-|emozilla/llama-1.1b-init model|N
featherless/tiny-llama-kto-iter1|tiny-llama-kto-iter1|DatPySci/tiny-llama-kto-iter1|C|1.0,5.0|2048,2048|-|-|DatPySci/tiny-llama-kto-iter1 model|N
featherless/ATAK-1|atak-1|CVP164/ATAK-1|C|1.0,5.0|2048,2048|-|-|CVP164/ATAK-1 model|N
featherless/TinyLlama_v1.1_finetuned_oscar_ru_65k_examples_test_gone_wrong|-|CooolDude/TinyLlama_v1.1_finetuned_oscar_ru_65k_examples_test_gone_wrong|C|1.0,5.0|2048,2048|-|-|CooolDude/TinyLlama_v1.1_finetuned_oscar_ru_65k_examples_test_gone_wrong model|N
featherless/space|space|behappy092/space|C|1.0,5.0|2048,2048|-|-|behappy092/space model|N
featherless/TinyLlama_v1.1_finetuned_oscar_ru_10k_examples_test|-|CooolDude/TinyLlama_v1.1_finetuned_oscar_ru_10k_examples_test|C|1.0,5.0|2048,2048|-|-|CooolDude/TinyLlama_v1.1_finetuned_oscar_ru_10k_examples_test model|N
featherless/azma-tinyllama-instruct-adapter|azma-tinyllama-instruct-adapter|AswanthCManoj/azma-tinyllama-instruct-adapter|C|1.0,5.0|2048,2048|-|-|AswanthCManoj/azma-tinyllama-instruct-adapter model|N
featherless/tinyllama-history-chat_v0.2.1ps|tinyllama-history-chat_v0.2.1ps|ambrosfitz/tinyllama-history-chat_v0.2.1ps|C|1.0,5.0|2048,2048|-|-|ambrosfitz/tinyllama-history-chat_v0.2.1ps model|N
featherless/Performancelog|performancelog|Abhishek107/Performancelog|C|1.0,5.0|2048,2048|-|-|Abhishek107/Performancelog model|N
featherless/TinyLlama-1.1B_fictional_v3|tinyllama-1.1b_fictional_v3|yzhuang/TinyLlama-1.1B_fictional_v3|C|1.0,5.0|2048,2048|-|-|yzhuang/TinyLlama-1.1B_fictional_v3 model|N
featherless/1.1b-tinyllama|1.1b-tinyllama|maneln/1.1b-tinyllama|C|1.0,5.0|2048,2048|-|-|maneln/1.1b-tinyllama model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_default|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_default|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_default model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_2_default|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_default|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_default model|N
featherless/horrorfinetuned3|horrorfinetuned3|Elcaida/horrorfinetuned3|C|1.0,5.0|2048,2048|-|-|Elcaida/horrorfinetuned3 model|N
featherless/tune-tinyllana-1.1b-s0|tune-tinyllana-1.1b-s0|yashnbx/tune-tinyllana-1.1b-s0|C|1.0,5.0|2048,2048|-|-|yashnbx/tune-tinyllana-1.1b-s0 model|N
featherless/tinyllama2_updated|tinyllama2_updated|Narednra/tinyllama2_updated|C|1.0,5.0|2048,2048|-|-|Narednra/tinyllama2_updated model|N
featherless/ExpTinyDolphin-2.8.2-1.1b|exptinydolphin-2.8.2-1.1b|QuixiAI/ExpTinyDolphin-2.8.2-1.1b|C|1.0,5.0|2048,2048|-|-|QuixiAI/ExpTinyDolphin-2.8.2-1.1b model|N
featherless/llama|llama|nisso22/llama|C|1.0,5.0|2048,2048|-|-|nisso22/llama model|N
featherless/TinyLlama-FinetunedPI-v0|tinyllama-finetunedpi|yeniceriSGK/TinyLlama-FinetunedPI-v0|C|1.0,5.0|2048,2048|V|-|yeniceriSGK/TinyLlama-FinetunedPI-v0 model|N
featherless/Tiny-Darkllama3.2-1B-Instruct|tiny-darkllama3.2-1b-instruct|mrcuddle/Tiny-Darkllama3.2-1B-Instruct|C|1.0,5.0|2048,2048|-|-|mrcuddle/Tiny-Darkllama3.2-1B-Instruct model|N
featherless/dialogue1|dialogue1|Elcaida/dialogue1|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue1 model|N
featherless/TinyLlama-1.1B-HuBERT-discrete-tokens-LibriSpeechASR|-|macabdul9/TinyLlama-1.1B-HuBERT-discrete-tokens-LibriSpeechASR|C|1.0,5.0|2048,2048|-|-|macabdul9/TinyLlama-1.1B-HuBERT-discrete-tokens-LibriSpeechASR model|N
featherless/bjj-tuned-tiny|bjj-tuned-tiny|KageKakushi/bjj-tuned-tiny|C|1.0,5.0|2048,2048|-|-|KageKakushi/bjj-tuned-tiny model|N
featherless/SibilaDeCumas-1.1B|sibiladecumas-1.1b|Novaciano/SibilaDeCumas-1.1B|C|1.0,5.0|2048,2048|-|-|Novaciano/SibilaDeCumas-1.1B model|N
featherless/query_classifier|query_classifier|sanaridas/query_classifier|C|1.0,5.0|2048,2048|-|-|sanaridas/query_classifier model|N
featherless/TinyLlama-1.1B-intermediate-step-1431k-3T-laser-dpo|-|invalid-coder/TinyLlama-1.1B-intermediate-step-1431k-3T-laser-dpo|C|1.0,5.0|2048,2048|-|-|invalid-coder/TinyLlama-1.1B-intermediate-step-1431k-3T-laser-dpo model|N
featherless/continuation-prompts|continuation-prompts|Elcaida/continuation-prompts|C|1.0,5.0|2048,2048|-|-|Elcaida/continuation-prompts model|N
featherless/tinyllama-finetuned-banking-assistant|tinyllama-finetuned-banking-assistant|ozguragrali/tinyllama-finetuned-banking-assistant|C|1.0,5.0|2048,2048|-|-|ozguragrali/tinyllama-finetuned-banking-assistant model|N
featherless/Rocstoriespretrained_tinyllama|rocstoriespretrained_tinyllama|Elcaida/Rocstoriespretrained_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstoriespretrained_tinyllama model|N
featherless/title-continuation|title-continuation|Elcaida/title-continuation|C|1.0,5.0|2048,2048|-|-|Elcaida/title-continuation model|N
featherless/autotrain-7qmts-cs1er|autotrain-7qmts-cs1er|janny127/autotrain-7qmts-cs1er|C|1.0,5.0|2048,2048|-|-|janny127/autotrain-7qmts-cs1er model|N
featherless/tinyllama-colorist-v0|tinyllama-colorist|jevinruv/tinyllama-colorist-v0|C|1.0,5.0|2048,2048|V|-|jevinruv/tinyllama-colorist-v0 model|N
featherless/tinyllama-finetuned-for-p1-v1|tinyllama-finetuned-for-p1|Jgdshkovi/tinyllama-finetuned-for-p1-v1|C|1.0,5.0|2048,2048|V|-|Jgdshkovi/tinyllama-finetuned-for-p1-v1 model|N
featherless/last|last|Elcaida/last|C|1.0,5.0|2048,2048|-|-|Elcaida/last model|N
featherless/2025-04-02_14-52-45|2025-04-02_14-52-45|masani/2025-04-02_14-52-45|C|1.0,5.0|2048,2048|-|-|masani/2025-04-02_14-52-45 model|N
featherless/TinyLlama_v1.1_int8_0.0|tinyllama_v1.1_int8_0.0|R1pathak/TinyLlama_v1.1_int8_0.0|C|1.0,5.0|2048,2048|-|-|R1pathak/TinyLlama_v1.1_int8_0.0 model|N
featherless/roccompletion1|roccompletion1|Elcaida/roccompletion1|C|1.0,5.0|2048,2048|-|-|Elcaida/roccompletion1 model|N
featherless/tiny_step2|tiny_step2|Jiminiya/tiny_step2|C|1.0,5.0|2048,2048|-|-|Jiminiya/tiny_step2 model|N
featherless/TinyLlama-1.1B-1.5T-OpenOrca-Alpha|tinyllama-1.1b-1.5t-openorca-alpha|jeff31415/TinyLlama-1.1B-1.5T-OpenOrca-Alpha|C|1.0,5.0|2048,2048|-|-|jeff31415/TinyLlama-1.1B-1.5T-OpenOrca-Alpha model|N
featherless/TinyLlama-1.1B-Chat-v1.0-Internal-Tuning|-|yogocik/TinyLlama-1.1B-Chat-v1.0-Internal-Tuning|C|1.0,5.0|2048,2048|V|-|yogocik/TinyLlama-1.1B-Chat-v1.0-Internal-Tuning model|N
featherless/tinyllama-routeLLM-v0|tinyllama-routellm|nimsach/tinyllama-routeLLM-v0|C|1.0,5.0|2048,2048|V|-|nimsach/tinyllama-routeLLM-v0 model|N
featherless/utllm-program-exp5b-llama-fw|utllm-program-exp5b-llama-fw|fumiyau/utllm-program-exp5b-llama-fw|C|1.0,5.0|2048,2048|-|-|fumiyau/utllm-program-exp5b-llama-fw model|N
featherless/tinyllama-1.1b-bf16|tinyllama-1.1b-bf16|win10/tinyllama-1.1b-bf16|C|1.0,5.0|2048,2048|-|-|win10/tinyllama-1.1b-bf16 model|N
featherless/tinyllama-finetuned-for-p1-v0|tinyllama-finetuned-for-p1|Jgdshkovi/tinyllama-finetuned-for-p1-v0|C|1.0,5.0|2048,2048|V|-|Jgdshkovi/tinyllama-finetuned-for-p1-v0 model|N
featherless/tinyllama-colorist-v1|tinyllama-colorist|Milo91/tinyllama-colorist-v1|C|1.0,5.0|2048,2048|V|-|Milo91/tinyllama-colorist-v1 model|N
featherless/strategy_talking_merging|strategy_talking_merging|LUOHANYU/strategy_talking_merging|C|1.0,5.0|2048,2048|-|-|LUOHANYU/strategy_talking_merging model|N
featherless/tiny-llama-2T-open-orca-ru-9000-step|tiny-llama-2t-open-orca-ru-9000-step|dim/tiny-llama-2T-open-orca-ru-9000-step|C|1.0,5.0|2048,2048|-|-|dim/tiny-llama-2T-open-orca-ru-9000-step model|N
featherless/dialogue7|dialogue7|Elcaida/dialogue7|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue7 model|N
featherless/TMA-TinyLlama-tuned|tma-tinyllama-tuned|Tgratzi/TMA-TinyLlama-tuned|C|1.0,5.0|2048,2048|-|-|Tgratzi/TMA-TinyLlama-tuned model|N
featherless/alpacainstruct1|alpacainstruct1|Elcaida/alpacainstruct1|C|1.0,5.0|2048,2048|-|-|Elcaida/alpacainstruct1 model|N
featherless/tinyllama_instructionstories|tinyllama_instructionstories|Elcaida/tinyllama_instructionstories|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllama_instructionstories model|N
featherless/TinyLlama-1.1B-qlora-instruction|tinyllama-1.1b-qlora-instruction|emreclsr/TinyLlama-1.1B-qlora-instruction|C|1.0,5.0|2048,2048|-|-|emreclsr/TinyLlama-1.1B-qlora-instruction model|N
featherless/tinyllama-PT-v0|tinyllama-pt|LukAss8/tinyllama-PT-v0|C|1.0,5.0|2048,2048|V|-|LukAss8/tinyllama-PT-v0 model|N
featherless/tinyllamafirstfinetune|tinyllamafirstfinetune|Elcaida/tinyllamafirstfinetune|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllamafirstfinetune model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1 model|N
featherless/TinyLlama-1.1B-Chat-v1.0-8bit|tinyllama-1.1b-chat-v1.0-8bit|oskar-inceptron/TinyLlama-1.1B-Chat-v1.0-8bit|C|1.0,5.0|2048,2048|V|-|oskar-inceptron/TinyLlama-1.1B-Chat-v1.0-8bit model|N
featherless/TinyLamma1.1b-finetuned|tinylamma1.1b-finetuned|gorsonw/TinyLamma1.1b-finetuned|C|1.0,5.0|2048,2048|-|-|gorsonw/TinyLamma1.1b-finetuned model|N
featherless/tinyllama_continuation2|tinyllama_continuation2|Elcaida/tinyllama_continuation2|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllama_continuation2 model|N
featherless/dpo_nvp_1e6_5600|dpo_nvp_1e6_5600|lixiaohong/dpo_nvp_1e6_5600|C|1.0,5.0|2048,2048|-|-|lixiaohong/dpo_nvp_1e6_5600 model|N
featherless/Rocstories_tinyllama|rocstories_tinyllama|Elcaida/Rocstories_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstories_tinyllama model|N
featherless/ATAS-4|atas-4|CVP164/ATAS-4|C|1.0,5.0|2048,2048|-|-|CVP164/ATAS-4 model|N
featherless/dialogue4|dialogue4|Elcaida/dialogue4|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue4 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_new|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_new|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_new model|N
featherless/my-tinyreco-model-new-data-bright10.2|my-tinyreco-model-new-data-bright10.2|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.2|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.2 model|N
featherless/tinyllama_tinystories|tinyllama_tinystories|Elcaida/tinyllama_tinystories|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllama_tinystories model|N
featherless/TinyLamma-SFT|tinylamma-sft|ewqr2130/TinyLamma-SFT|C|1.0,5.0|2048,2048|-|-|ewqr2130/TinyLamma-SFT model|N
featherless/Gnome-1.1b|gnome-1.1b|Novaciano/Gnome-1.1b|C|1.0,5.0|2048,2048|-|-|Novaciano/Gnome-1.1b model|N
featherless/tinystories1|tinystories1|Elcaida/tinystories1|C|1.0,5.0|2048,2048|-|-|Elcaida/tinystories1 model|N
featherless/tinyllama-colorist-v2|tinyllama-colorist|jawadmohmmad/tinyllama-colorist-v2|C|1.0,5.0|2048,2048|V|-|jawadmohmmad/tinyllama-colorist-v2 model|N
featherless/my-tinyreco-model-new-data-bright10.4|my-tinyreco-model-new-data-bright10.4|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.4|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright10.4 model|N
featherless/tinyllama-prajna|tinyllama-prajna|Prajna1999/tinyllama-prajna|C|1.0,5.0|2048,2048|-|-|Prajna1999/tinyllama-prajna model|N
featherless/llama-2025-02-26-2155|llama-2025-02-26-2155|Gabrielmsidik/llama-2025-02-26-2155|C|1.0,5.0|2048,2048|-|-|Gabrielmsidik/llama-2025-02-26-2155 model|N
featherless/tinystories3|tinystories3|Elcaida/tinystories3|C|1.0,5.0|2048,2048|-|-|Elcaida/tinystories3 model|N
featherless/a|a|hejiahuanle/a|C|1.0,5.0|2048,2048|-|-|hejiahuanle/a model|N
featherless/instruct_niggatuned|instruct_niggatuned|Elcaida/instruct_niggatuned|C|1.0,5.0|2048,2048|-|-|Elcaida/instruct_niggatuned model|N
featherless/sql-mini-generator|sql-mini-generator|ravinn/sql-mini-generator|C|1.0,5.0|2048,2048|-|-|ravinn/sql-mini-generator model|N
featherless/ATAK-3|atak-3|CVP164/ATAK-3|C|1.0,5.0|2048,2048|-|-|CVP164/ATAK-3 model|N
featherless/dialogue8|dialogue8|Elcaida/dialogue8|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue8 model|N
featherless/horrorfinetuned2|horrorfinetuned2|Elcaida/horrorfinetuned2|C|1.0,5.0|2048,2048|-|-|Elcaida/horrorfinetuned2 model|N
featherless/title-story|title-story|Elcaida/title-story|C|1.0,5.0|2048,2048|-|-|Elcaida/title-story model|N
featherless/Llama-1.1B-qlora-ft|llama-1.1b-qlora-ft|duyhv1411/Llama-1.1B-qlora-ft|C|1.0,5.0|2048,2048|-|-|duyhv1411/Llama-1.1B-qlora-ft model|N
featherless/TinyLlama-1.1B-Chat-v0.6-rag-finetunedv1.0|-|istiak101/TinyLlama-1.1B-Chat-v0.6-rag-finetunedv1.0|C|1.0,5.0|2048,2048|V|-|istiak101/TinyLlama-1.1B-Chat-v0.6-rag-finetunedv1.0 model|N
featherless/Rocstoriesinstruct_tinyllama|rocstoriesinstruct_tinyllama|Elcaida/Rocstoriesinstruct_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstoriesinstruct_tinyllama model|N
featherless/utllm-program-exp5b-llama-py|utllm-program-exp5b-llama-py|fumiyau/utllm-program-exp5b-llama-py|C|1.0,5.0|2048,2048|-|-|fumiyau/utllm-program-exp5b-llama-py model|N
featherless/sara_finetuned|sara_finetuned|oneporeguy/sara_finetuned|C|1.0,5.0|2048,2048|-|-|oneporeguy/sara_finetuned model|N
featherless/Rocstoriespretrained2_tinyllama|rocstoriespretrained2_tinyllama|Elcaida/Rocstoriespretrained2_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstoriespretrained2_tinyllama model|N
featherless/instructroc1_tinyllama|instructroc1_tinyllama|Elcaida/instructroc1_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/instructroc1_tinyllama model|N
featherless/dpo_nvp_100|dpo_nvp_100|lixiaohong/dpo_nvp_100|C|1.0,5.0|2048,2048|-|-|lixiaohong/dpo_nvp_100 model|N
featherless/reddittinyllama_overfit|reddittinyllama_overfit|Elcaida/reddittinyllama_overfit|C|1.0,5.0|2048,2048|-|-|Elcaida/reddittinyllama_overfit model|N
featherless/Rocstoriesinstruct2_tinyllama|rocstoriesinstruct2_tinyllama|Elcaida/Rocstoriesinstruct2_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstoriesinstruct2_tinyllama model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_def|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_def|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_def model|N
featherless/finetuned_tinyllama_chat|finetuned_tinyllama_chat|Elcaida/finetuned_tinyllama_chat|C|1.0,5.0|2048,2048|-|-|Elcaida/finetuned_tinyllama_chat model|N
featherless/TinyLlama-1.1B-Chat-v0.6-rag-finetuned|tinyllama-1.1b-chat-v0.6-rag-finetuned|istiak101/TinyLlama-1.1B-Chat-v0.6-rag-finetuned|C|1.0,5.0|2048,2048|V|-|istiak101/TinyLlama-1.1B-Chat-v0.6-rag-finetuned model|N
featherless/my-tinyreco-model-new-data-bright11|my-tinyreco-model-new-data-bright11|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright11|C|1.0,5.0|2048,2048|-|-|Jeeeeeeeeeeeeeeez/my-tinyreco-model-new-data-bright11 model|N
featherless/tiny-forward-lora|tiny-forward-lora|zizi917/tiny-forward-lora|C|1.0,5.0|2048,2048|-|-|zizi917/tiny-forward-lora model|N
featherless/instructroc3_tinyllama|instructroc3_tinyllama|Elcaida/instructroc3_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/instructroc3_tinyllama model|N
featherless/tinyllama-si-wikipedia-1.5T-v0.1|tinyllama-si-wikipedia-1.5t|yuiseki/tinyllama-si-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-si-wikipedia-1.5T-v0.1 model|N
featherless/tinyllama_finetuned|tinyllama_finetuned|sandeep1401/tinyllama_finetuned|C|1.0,5.0|2048,2048|-|-|sandeep1401/tinyllama_finetuned model|N
featherless/tinylama_sara|tinylama_sara|oneporeguy/tinylama_sara|C|1.0,5.0|2048,2048|-|-|oneporeguy/tinylama_sara model|N
featherless/tinystories2|tinystories2|Elcaida/tinystories2|C|1.0,5.0|2048,2048|-|-|Elcaida/tinystories2 model|N
featherless/finetuned-zhengding-tourism|finetuned-zhengding-tourism|jinv2/finetuned-zhengding-tourism|C|1.0,5.0|2048,2048|-|-|jinv2/finetuned-zhengding-tourism model|N
featherless/tinyllama-finwiz-v1|tinyllama-finwiz|kaitwithkwk/tinyllama-finwiz-v1|C|1.0,5.0|2048,2048|V|-|kaitwithkwk/tinyllama-finwiz-v1 model|N
featherless/megachat|megachat|w95/megachat|C|1.0,5.0|2048,2048|-|-|w95/megachat model|N
featherless/dialogue6|dialogue6|Elcaida/dialogue6|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue6 model|N
featherless/Rocstoriesfull_tinyllama|rocstoriesfull_tinyllama|Elcaida/Rocstoriesfull_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/Rocstoriesfull_tinyllama model|N
featherless/Phi3-Llama-ORCAMEL-SFT|phi3-llama-orcamel-sft|Sayan01/Phi3-Llama-ORCAMEL-SFT|C|1.0,5.0|2048,2048|-|-|Sayan01/Phi3-Llama-ORCAMEL-SFT model|N
featherless/tinyllama_continuation|tinyllama_continuation|Elcaida/tinyllama_continuation|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllama_continuation model|N
featherless/TinyLlama-1.1B-Chat-v1.0|tinyllama-1.1b-chat|SystemAdmin123/TinyLlama-1.1B-Chat-v1.0|C|1.0,5.0|2048,2048|V|-|SystemAdmin123/TinyLlama-1.1B-Chat-v1.0 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_2_optimized1_task_grouping_off_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_optimized1_task_grouping_off_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_optimized1_task_grouping_off_FT model|N
featherless/safeTinyLlama|safetinyllama|Edcastro/safeTinyLlama|C|1.0,5.0|2048,2048|-|-|Edcastro/safeTinyLlama model|N
featherless/dialogue3|dialogue3|Elcaida/dialogue3|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue3 model|N
featherless/title-continuation2|title-continuation2|Elcaida/title-continuation2|C|1.0,5.0|2048,2048|-|-|Elcaida/title-continuation2 model|N
featherless/title-continuation4|title-continuation4|Elcaida/title-continuation4|C|1.0,5.0|2048,2048|-|-|Elcaida/title-continuation4 model|N
featherless/instructroc2_tinyllama|instructroc2_tinyllama|Elcaida/instructroc2_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/instructroc2_tinyllama model|N
featherless/instructstories_tinyllama|instructstories_tinyllama|Elcaida/instructstories_tinyllama|C|1.0,5.0|2048,2048|-|-|Elcaida/instructstories_tinyllama model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_lora|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_lora|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_lora model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_2_lora|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_lora|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_lora model|N
featherless/title-continuation3|title-continuation3|Elcaida/title-continuation3|C|1.0,5.0|2048,2048|-|-|Elcaida/title-continuation3 model|N
featherless/dialogue2|dialogue2|Elcaida/dialogue2|C|1.0,5.0|2048,2048|-|-|Elcaida/dialogue2 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1 model|N
featherless/Final|final|YusufGun/Final|C|1.0,5.0|2048,2048|-|-|YusufGun/Final model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_def|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_def|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_def model|N
featherless/tinylama-rust-5-3000|tinylama-rust-5-3000|vasu14devagarwal/tinylama-rust-5-3000|C|1.0,5.0|2048,2048|-|-|vasu14devagarwal/tinylama-rust-5-3000 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_def|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_def|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_def model|N
featherless/tinylama-rust|tinylama-rust|vasu14devagarwal/tinylama-rust|C|1.0,5.0|2048,2048|-|-|vasu14devagarwal/tinylama-rust model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_new|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_new|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_new model|N
featherless/tinylama-rust-5|tinylama-rust-5|vasu14devagarwal/tinylama-rust-5|C|1.0,5.0|2048,2048|-|-|vasu14devagarwal/tinylama-rust-5 model|N
featherless/ZetaQA-1.1B-XML|zetaqa-1.1b-xml|Kuldeep08/ZetaQA-1.1B-XML|C|1.0,5.0|2048,2048|-|-|Kuldeep08/ZetaQA-1.1B-XML model|N
featherless/mandela-effect|mandela-effect|edwinhere/mandela-effect|C|1.0,5.0|2048,2048|-|-|edwinhere/mandela-effect model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_2_new|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_new|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_new model|N
featherless/TinyLlama-guanaco|tinyllama-guanaco|Munia-ak/TinyLlama-guanaco|C|1.0,5.0|2048,2048|-|-|Munia-ak/TinyLlama-guanaco model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_lora|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_lora|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_lora model|N
featherless/hai-test-modal|hai-test-modal|haihp02/hai-test-modal|C|1.0,5.0|2048,2048|-|-|haihp02/hai-test-modal model|N
featherless/bt3|bt3|emozilla/bt3|C|1.0,5.0|2048,2048|-|-|emozilla/bt3 model|N
featherless/tinyllama-ja-scp-1.5T-v0.1|tinyllama-ja-scp-1.5t|yuiseki/tinyllama-ja-scp-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-ja-scp-1.5T-v0.1 model|N
featherless/dpo_nvp_1k|dpo_nvp_1k|lixiaohong/dpo_nvp_1k|C|1.0,5.0|2048,2048|-|-|lixiaohong/dpo_nvp_1k model|N
featherless/tinyllama-VidyaLeap-v0.1|tinyllama-vidyaleap|gouthamsk/tinyllama-VidyaLeap-v0.1|C|1.0,5.0|2048,2048|V|-|gouthamsk/tinyllama-VidyaLeap-v0.1 model|N
featherless/tinyllama-colorist-v2|tinyllama-colorist|ZainabF/tinyllama-colorist-v2|C|1.0,5.0|2048,2048|V|-|ZainabF/tinyllama-colorist-v2 model|N
featherless/0cd02bd8-61ff-4068-8a3b-fc6f022bf94c|0cd02bd8-61ff-4068-8a3b-fc6f022bf94c|haihp02/0cd02bd8-61ff-4068-8a3b-fc6f022bf94c|C|1.0,5.0|2048,2048|-|-|haihp02/0cd02bd8-61ff-4068-8a3b-fc6f022bf94c model|N
featherless/tinyllama-task1553_cnn_dailymail_summarization-v1|-|niryuu/tinyllama-task1553_cnn_dailymail_summarization-v1|C|1.0,5.0|2048,2048|V|-|niryuu/tinyllama-task1553_cnn_dailymail_summarization-v1 model|N
featherless/hbl_v4|hbl_v4|raowaqas123/hbl_v4|C|1.0,5.0|2048,2048|-|-|raowaqas123/hbl_v4 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_default|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_default|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_default model|N
featherless/240103_llama_test_2|240103_llama_test_2|realPCH/240103_llama_test_2|C|1.0,5.0|2048,2048|-|-|realPCH/240103_llama_test_2 model|N
featherless/tinyllama-zh-wikipedia-1.5T-v0.1|tinyllama-zh-wikipedia-1.5t|yuiseki/tinyllama-zh-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-zh-wikipedia-1.5T-v0.1 model|N
featherless/tinyllama-task1579_gigaword_incorrect_summarization-v1|-|niryuu/tinyllama-task1579_gigaword_incorrect_summarization-v1|C|1.0,5.0|2048,2048|V|-|niryuu/tinyllama-task1579_gigaword_incorrect_summarization-v1 model|N
featherless/TinyLlama-1.1B-Chat-v1.0-gsm8k|tinyllama-1.1b-chat-v1.0-gsm8k|mwitiderrick/TinyLlama-1.1B-Chat-v1.0-gsm8k|C|1.0,5.0|2048,2048|V|-|mwitiderrick/TinyLlama-1.1B-Chat-v1.0-gsm8k model|N
featherless/tinyllama-it-wikipedia-1.5T-v0.1|tinyllama-it-wikipedia-1.5t|yuiseki/tinyllama-it-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-it-wikipedia-1.5T-v0.1 model|N
featherless/tinylamma-20000|tinylamma-20000|shitshow123/tinylamma-20000|C|1.0,5.0|2048,2048|-|-|shitshow123/tinylamma-20000 model|N
featherless/TinyLlama-1.1B-scratch|tinyllama-1.1b-scratch|Hoyeon/TinyLlama-1.1B-scratch|C|1.0,5.0|2048,2048|-|-|Hoyeon/TinyLlama-1.1B-scratch model|N
featherless/tinyllama-emo-v1|tinyllama-emo|zioBoe/tinyllama-emo-v1|C|1.0,5.0|2048,2048|V|-|zioBoe/tinyllama-emo-v1 model|N
featherless/PiBrain-TinyLlama-V2|pibrain-tinyllama|yeniceriSGK/PiBrain-TinyLlama-V2|C|1.0,5.0|2048,2048|V|-|yeniceriSGK/PiBrain-TinyLlama-V2 model|N
featherless/TinyLlama-Bamboo-v1.5|tinyllama-bamboo|jan-hq/TinyLlama-Bamboo-v1.5|C|1.0,5.0|2048,2048|V|-|jan-hq/TinyLlama-Bamboo-v1.5 model|N
featherless/tinyllama-ft-function-calling-semi-full|tinyllama-ft-function-calling-semi-full|hunyfuny/tinyllama-ft-function-calling-semi-full|C|1.0,5.0|2048,2048|-|-|hunyfuny/tinyllama-ft-function-calling-semi-full model|N
featherless/LinguaMatic-1B|linguamatic-1b|erfanzar/LinguaMatic-1B|C|1.0,5.0|2048,2048|-|-|erfanzar/LinguaMatic-1B model|N
featherless/tinyllama-colorist-lora-v2|tinyllama-colorist-lora|brito-parzivall/tinyllama-colorist-lora-v2|C|1.0,5.0|2048,2048|V|-|brito-parzivall/tinyllama-colorist-lora-v2 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new_prompt|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new_prompt|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new_prompt model|N
featherless/HemanthLLMTinyLlama1.1bfulltrained|hemanthllmtinyllama1.1bfulltrained|hemanthkandimalla/HemanthLLMTinyLlama1.1bfulltrained|C|1.0,5.0|2048,2048|-|-|hemanthkandimalla/HemanthLLMTinyLlama1.1bfulltrained model|N
featherless/DopeyTinyLlama-1.1B-v1|dopeytinyllama-1.1b|vihangd/DopeyTinyLlama-1.1B-v1|C|1.0,5.0|2048,2048|V|-|vihangd/DopeyTinyLlama-1.1B-v1 model|N
featherless/tinyllama-rmf|tinyllama-rmf|Manirajan/tinyllama-rmf|C|1.0,5.0|2048,2048|-|-|Manirajan/tinyllama-rmf model|N
featherless/proposly-tinyllama|proposly-tinyllama|Gandhiv112/proposly-tinyllama|C|1.0,5.0|2048,2048|-|-|Gandhiv112/proposly-tinyllama model|N
featherless/dpo-tinyllama_fac|dpo-tinyllama_fac|hongce-tech/dpo-tinyllama_fac|C|1.0,5.0|2048,2048|-|-|hongce-tech/dpo-tinyllama_fac model|N
featherless/tinyllama-fedi-v1|tinyllama-fedi|fedihamdi/tinyllama-fedi-v1|C|1.0,5.0|2048,2048|V|-|fedihamdi/tinyllama-fedi-v1 model|N
featherless/avispqp_tinyllama_lora_nf4_merged_2|avispqp_tinyllama_lora_nf4_merged_2|ygaci/avispqp_tinyllama_lora_nf4_merged_2|C|1.0,5.0|2048,2048|-|-|ygaci/avispqp_tinyllama_lora_nf4_merged_2 model|N
featherless/tinyllama-color-coder-v1|tinyllama-color-coder|takano32/tinyllama-color-coder-v1|C|1.0,5.0|2048,2048|V|-|takano32/tinyllama-color-coder-v1 model|N
featherless/tinyllama-colorist|tinyllama-colorist|wfbgbierwbvo/tinyllama-colorist|C|1.0,5.0|2048,2048|-|-|wfbgbierwbvo/tinyllama-colorist model|N
featherless/tinyllama-coder-color-en-v0.1|tinyllama-coder-color-en|yuiseki/tinyllama-coder-color-en-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-coder-color-en-v0.1 model|N
featherless/fc4de999-dedc-4db2-802f-db560f0914a9|fc4de999-dedc-4db2-802f-db560f0914a9|FormlessAI/fc4de999-dedc-4db2-802f-db560f0914a9|C|1.0,5.0|2048,2048|-|-|FormlessAI/fc4de999-dedc-4db2-802f-db560f0914a9 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1_task_grouping_off_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1_task_grouping_off_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_4_optimized1_task_grouping_off_FT model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_2_def|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_def|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_2_def model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_task_grouping_off_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_task_grouping_off_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_task_grouping_off_FT model|N
featherless/fc9fed29-6631-4ae8-88f3-8e302372e78d|fc9fed29-6631-4ae8-88f3-8e302372e78d|FormlessAI/fc9fed29-6631-4ae8-88f3-8e302372e78d|C|1.0,5.0|2048,2048|-|-|FormlessAI/fc9fed29-6631-4ae8-88f3-8e302372e78d model|N
featherless/tinyllama-colorist-v0|tinyllama-colorist|saniaverma/tinyllama-colorist-v0|C|1.0,5.0|2048,2048|V|-|saniaverma/tinyllama-colorist-v0 model|N
featherless/blvflag_llama2.0|blvflag_llama2.0|rylansed/blvflag_llama2.0|C|1.0,5.0|2048,2048|-|-|rylansed/blvflag_llama2.0 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_new model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_task_grouping_off_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_task_grouping_off_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_task_grouping_off_FT model|N
featherless/blvflag_llama|blvflag_llama|rylansed/blvflag_llama|C|1.0,5.0|2048,2048|-|-|rylansed/blvflag_llama model|N
featherless/output|output|ChevellaShyam/output|C|1.0,5.0|2048,2048|-|-|ChevellaShyam/output model|N
featherless/TL-ORCAMEL-SFT|tl-orcamel-sft|Sayan01/TL-ORCAMEL-SFT|C|1.0,5.0|2048,2048|-|-|Sayan01/TL-ORCAMEL-SFT model|N
featherless/SFT_gsm8k_rho-math-1b-v0.1_epoch_2_global_step_58|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_2_global_step_58|C|1.0,5.0|2048,2048|V|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_2_global_step_58 model|N
featherless/8731c7bb-4c2a-4698-a284-e0ce485df099|8731c7bb-4c2a-4698-a284-e0ce485df099|Romain-XV/8731c7bb-4c2a-4698-a284-e0ce485df099|C|1.0,5.0|2048,2048|-|-|Romain-XV/8731c7bb-4c2a-4698-a284-e0ce485df099 model|N
featherless/tiny_llama_cpsc254|tiny_llama_cpsc254|dylannguyennn/tiny_llama_cpsc254|C|1.0,5.0|2048,2048|-|-|dylannguyennn/tiny_llama_cpsc254 model|N
featherless/SFT_gsm8k_rho-math-1b-v0.1_epoch_4_global_step_116|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_4_global_step_116|C|1.0,5.0|2048,2048|V|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_4_global_step_116 model|N
featherless/tiny_llama_cpsc254|tiny_llama_cpsc254|swayam-shree/tiny_llama_cpsc254|C|1.0,5.0|2048,2048|-|-|swayam-shree/tiny_llama_cpsc254 model|N
featherless/tinyllama-sms_parsert-v1|tinyllama-sms_parsert|Ninjacart/tinyllama-sms_parsert-v1|C|1.0,5.0|2048,2048|V|-|Ninjacart/tinyllama-sms_parsert-v1 model|N
featherless/7f9b617b-66a6-4ebf-9021-450f96b99bc7|7f9b617b-66a6-4ebf-9021-450f96b99bc7|Romain-XV/7f9b617b-66a6-4ebf-9021-450f96b99bc7|C|1.0,5.0|2048,2048|-|-|Romain-XV/7f9b617b-66a6-4ebf-9021-450f96b99bc7 model|N
featherless/tiny-llama-cpsc254|tiny-llama-cpsc254|litxtop/tiny-llama-cpsc254|C|1.0,5.0|2048,2048|-|-|litxtop/tiny-llama-cpsc254 model|N
featherless/TinyLlama-1.1B-Chat-v1.0-bf16-push-demo|tinyllama-1.1b-chat-v1.0-bf16-push-demo|Boltuzamaki/TinyLlama-1.1B-Chat-v1.0-bf16-push-demo|C|1.0,5.0|2048,2048|V|-|Boltuzamaki/TinyLlama-1.1B-Chat-v1.0-bf16-push-demo model|N
featherless/model|model|ChevellaShyam/model|C|1.0,5.0|2048,2048|-|-|ChevellaShyam/model model|N
featherless/fin-llm-dpo-lora|fin-llm-dpo-lora|alexkahng/fin-llm-dpo-lora|C|1.0,5.0|2048,2048|-|-|alexkahng/fin-llm-dpo-lora model|N
featherless/SFT_gsm8k_rho-math-1b-v0.1_epoch_3_global_step_87|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_3_global_step_87|C|1.0,5.0|2048,2048|V|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_3_global_step_87 model|N
featherless/SFT_gsm8k_rho-math-1b-v0.1_epoch_5_global_step_145|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_5_global_step_145|C|1.0,5.0|2048,2048|V|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_5_global_step_145 model|N
featherless/SFT_gsm8k_rho-math-1b-v0.1_epoch_0_global_step_0|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_0_global_step_0|C|1.0,5.0|2048,2048|V|-|aryolotfi/SFT_gsm8k_rho-math-1b-v0.1_epoch_0_global_step_0 model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_oversampling_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_oversampling_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_3_optimized1_oversampling_FT model|N
featherless/tinyllama-rich-dad-poor-dad|tinyllama-rich-dad-poor-dad|papaya147/tinyllama-rich-dad-poor-dad|C|1.0,5.0|2048,2048|-|-|papaya147/tinyllama-rich-dad-poor-dad model|N
featherless/TinyLlama-1.1B-dpo-qlora-chat-refined|tinyllama-1.1b-dpo-qlora-chat-refined|emreclsr/TinyLlama-1.1B-dpo-qlora-chat-refined|C|1.0,5.0|2048,2048|-|-|emreclsr/TinyLlama-1.1B-dpo-qlora-chat-refined model|N
featherless/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_oversampling_FT|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_oversampling_FT|C|1.0,5.0|2048,2048|V|-|xw17/TinyLlama-1.1B-Chat-v1.0_finetuned_1_optimized1_oversampling_FT model|N
featherless/llama-2-7b-miniguanaco|llama-2-7b-miniguanaco|Munia-ak/llama-2-7b-miniguanaco|C|1.0,5.0|2048,2048|-|-|Munia-ak/llama-2-7b-miniguanaco model|N
featherless/tinyllama_fanshawe_model|tinyllama_fanshawe_model|lamtdse61743/tinyllama_fanshawe_model|C|1.0,5.0|2048,2048|-|-|lamtdse61743/tinyllama_fanshawe_model model|N
featherless/tinyllama-task1290_xsum_summarization-v1|tinyllama-task1290_xsum_summarization|niryuu/tinyllama-task1290_xsum_summarization-v1|C|1.0,5.0|2048,2048|V|-|niryuu/tinyllama-task1290_xsum_summarization-v1 model|N
featherless/TinyLlama-3T-16k|tinyllama-3t-16k|muzammil-eds/TinyLlama-3T-16k|C|1.0,5.0|2048,2048|-|-|muzammil-eds/TinyLlama-3T-16k model|N
featherless/tinyllama-physics-v1|tinyllama-physics|vihaank-100/tinyllama-physics-v1|C|1.0,5.0|2048,2048|V|-|vihaank-100/tinyllama-physics-v1 model|N
featherless/TinyLlama-1.1B-intermediate-step-1195k-token-2.5T_huth_fine_lr5e-05_bs2_epoch5_wd0.01|-|jysssacc/TinyLlama-1.1B-intermediate-step-1195k-token-2.5T_huth_fine_lr5e-05_bs2_epoch5_wd0.01|C|1.0,5.0|2048,2048|-|-|jysssacc/TinyLlama-1.1B-intermediate-step-1195k-token-2.5T_huth_fine_lr5e-05_bs2_epoch5_wd0.01 model|N
featherless/tinyllama-ms-wikipedia-1.5T-v0.1|tinyllama-ms-wikipedia-1.5t|yuiseki/tinyllama-ms-wikipedia-1.5T-v0.1|C|1.0,5.0|2048,2048|V|-|yuiseki/tinyllama-ms-wikipedia-1.5T-v0.1 model|N
featherless/TINY-LLAMA-TUNED3|tiny-llama-tuned3|Srihari9221/TINY-LLAMA-TUNED3|C|1.0,5.0|2048,2048|-|-|Srihari9221/TINY-LLAMA-TUNED3 model|N
featherless/medprob_finetuned_model|medprob_finetuned_model|emilykang/medprob_finetuned_model|C|1.0,5.0|2048,2048|-|-|emilykang/medprob_finetuned_model model|N
featherless/tinyllama-reddit|tinyllama-reddit|Elcaida/tinyllama-reddit|C|1.0,5.0|2048,2048|-|-|Elcaida/tinyllama-reddit model|N
featherless/palmer-004-overfit|palmer-004-overfit|appvoid/palmer-004-overfit|C|1.0,5.0|2048,2048|-|-|appvoid/palmer-004-overfit model|N
featherless/Qwen2-0.5B-SFT-full|qwen2-0.5b-sft-full|Alirezaft99/Qwen2-0.5B-SFT-full|C|1.0,5.0|131072,4096|-|-|Alirezaft99/Qwen2-0.5B-SFT-full model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_eager_squirrel|-|albiandb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_eager_squirrel|C|1.0,5.0|131072,4096|-|-|albiandb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_eager_squirrel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_padded_chimpanzee|-|0xOzii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_padded_chimpanzee|C|1.0,5.0|131072,4096|-|-|0xOzii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_padded_chimpanzee model|N
featherless/LawToken-0.5B-baseline|lawtoken-0.5b-baseline|amy011872/LawToken-0.5B-baseline|C|1.0,5.0|131072,4096|-|-|amy011872/LawToken-0.5B-baseline model|N
featherless/gemma-2-2b-neogenesis-ita|gemma-2-2b-neogenesis-ita|anakin87/gemma-2-2b-neogenesis-ita|C|1.0,5.0|8192,4096|-|-|anakin87/gemma-2-2b-neogenesis-ita model|N
featherless/qwen-new_merged-FinetunedByAG|qwen-new_merged-finetunedbyag|akshit-Gupta/qwen-new_merged-FinetunedByAG|C|1.0,5.0|131072,4096|-|-|akshit-Gupta/qwen-new_merged-FinetunedByAG model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_slithering_chinchilla|-|lidiantyt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_slithering_chinchilla|C|1.0,5.0|131072,4096|-|-|lidiantyt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_slithering_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_docile_impala|-|mmusara/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_docile_impala|C|1.0,5.0|131072,4096|-|-|mmusara/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_docile_impala model|N
featherless/Qwen2-0.5B-Instruct|qwen2-0.5b-instruct|hsiehpinghan/Qwen2-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|hsiehpinghan/Qwen2-0.5B-Instruct model|N
featherless/dolphin15_arxiv|dolphin15_arxiv|Nicknames96/dolphin15_arxiv|C|1.0,5.0|131072,4096|-|-|Nicknames96/dolphin15_arxiv model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_short_kangaroo|-|narkomax/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_short_kangaroo|C|1.0,5.0|131072,4096|-|-|narkomax/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_short_kangaroo model|N
featherless/Qwen2-0.5B-v9|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v9|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v9 model|N
featherless/Qwen2-0.5B-v13|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v13|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v13 model|N
featherless/QnA-prev|qna-prev|AquilaX-AI/QnA-prev|C|1.0,5.0|131072,4096|-|-|AquilaX-AI/QnA-prev model|N
featherless/Qwen2-0.5Bchp-690-MultiBio|qwen2-0.5bchp-690-multibio|knowledgator/Qwen2-0.5Bchp-690-MultiBio|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-690-MultiBio model|N
featherless/FlowerTune-Qwen2.5-Coder-0.5B-Instruct|flowertune-qwen2.5-coder-0.5b-instruct|ethicalabs/FlowerTune-Qwen2.5-Coder-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|ethicalabs/FlowerTune-Qwen2.5-Coder-0.5B-Instruct model|N
featherless/Qwen2-0.5B|qwen2-0.5b|TitanML/Qwen2-0.5B|C|1.0,5.0|131072,4096|-|-|TitanML/Qwen2-0.5B model|N
featherless/Qwen2-0.5B-v14|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v14|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v14 model|N
featherless/Qwen2_emotions_without_reasoning|qwen2_emotions_without_reasoning|Siddharth63/Qwen2_emotions_without_reasoning|C|1.0,5.0|131072,4096|K|-|Siddharth63/Qwen2_emotions_without_reasoning model|N
featherless/qwen2-rephrase-classify-multitask-v2|qwen2-rephrase-classify-multitask|magnifi/qwen2-rephrase-classify-multitask-v2|C|1.0,5.0|131072,4096|V|-|magnifi/qwen2-rephrase-classify-multitask-v2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_wiry_prawn|-|BTazBbU4OqBSwxUlG/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_wiry_prawn|C|1.0,5.0|131072,4096|-|-|BTazBbU4OqBSwxUlG/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_wiry_prawn model|N
featherless/cog_behavior_sft_v1|cog_behavior_sft_v1|stefandi/cog_behavior_sft_v1|C|1.0,5.0|131072,4096|-|-|stefandi/cog_behavior_sft_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_chattering_camel|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_chattering_camel|C|1.0,5.0|131072,4096|-|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_chattering_camel model|N
featherless/online-dpo-qwen2-3|online-dpo-qwen2-3|qgallouedec/online-dpo-qwen2-3|C|1.0,5.0|131072,4096|-|-|qgallouedec/online-dpo-qwen2-3 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_codeonly model|N
featherless/personalized-assistant|personalized-assistant|nikhilkeetha/personalized-assistant|C|1.0,5.0|131072,4096|-|-|nikhilkeetha/personalized-assistant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_beaked_porpoise|-|Iscolee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_beaked_porpoise|C|1.0,5.0|131072,4096|-|-|Iscolee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_beaked_porpoise model|N
featherless/asm2asm-qwen2.5coder-0.5b-400k-2ep|asm2asm-qwen2.5coder-0.5b-400k-2ep|ahmedheakl/asm2asm-qwen2.5coder-0.5b-400k-2ep|C|1.0,5.0|131072,4096|-|-|ahmedheakl/asm2asm-qwen2.5coder-0.5b-400k-2ep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_toothy_goat|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_toothy_goat|C|1.0,5.0|131072,4096|V|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_toothy_goat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_rapid_seal|-|Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_rapid_seal|C|1.0,5.0|131072,4096|-|-|Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_rapid_seal model|N
featherless/qa_qwen|qa_qwen|sbtraining2020/qa_qwen|C|1.0,5.0|131072,4096|-|-|sbtraining2020/qa_qwen model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_sprightly_hyena|-|sahararemedies02/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_sprightly_hyena|C|1.0,5.0|131072,4096|-|-|sahararemedies02/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_sprightly_hyena model|N
featherless/qwen2-classify-10-epochs|qwen2-classify-10-epochs|magnifi/qwen2-classify-10-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-classify-10-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_mottled_gibbon|-|Nodesuman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_mottled_gibbon|C|1.0,5.0|131072,4096|-|-|Nodesuman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_mottled_gibbon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gregarious_seahorse|-|seeib/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gregarious_seahorse|C|1.0,5.0|131072,4096|-|-|seeib/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gregarious_seahorse model|N
featherless/self-distillation-qwen2.5-0.5B|self-distillation-qwen2.5-0.5b|butternese/self-distillation-qwen2.5-0.5B|C|1.0,5.0|131072,4096|-|-|butternese/self-distillation-qwen2.5-0.5B model|N
featherless/qwen2.5-0.5B_educational_instruct_top6000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top6000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top6000_codeonly model|N
featherless/Qwen2.5-1.5B-Open-R1-Distill|qwen2.5-1.5b-open-r1-distill|AlanWuxm/Qwen2.5-1.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|AlanWuxm/Qwen2.5-1.5B-Open-R1-Distill model|N
featherless/qwen2-rephrase-classify-multitask-v7|qwen2-rephrase-classify-multitask|magnifi/qwen2-rephrase-classify-multitask-v7|C|1.0,5.0|131072,4096|V|-|magnifi/qwen2-rephrase-classify-multitask-v7 model|N
featherless/qwen2-math-0.5B-full-2|qwen2-math-0.5b-full-2|AnimateBow4809/qwen2-math-0.5B-full-2|C|1.0,5.0|131072,4096|-|-|AnimateBow4809/qwen2-math-0.5B-full-2 model|N
featherless/math-self-play-0.5B|math-self-play-0.5b|micaebe/math-self-play-0.5B|C|1.0,5.0|131072,4096|-|-|micaebe/math-self-play-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct_MATH_training_sdft_response_Qwen2.5_0.5B_only_right|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_sdft_response_Qwen2.5_0.5B_only_right|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_sdft_response_Qwen2.5_0.5B_only_right model|N
featherless/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_32B|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_32B|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_32B model|N
featherless/Qwen2.5_Lestari|qwen2.5_lestari|indradevelop/Qwen2.5_Lestari|C|1.0,5.0|131072,4096|-|-|indradevelop/Qwen2.5_Lestari model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_playful_octopus|-|p2g4ads5/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_playful_octopus|C|1.0,5.0|131072,4096|-|-|p2g4ads5/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_playful_octopus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_camouflaged_butterfly|-|legendszorro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_camouflaged_butterfly|C|1.0,5.0|131072,4096|-|-|legendszorro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_camouflaged_butterfly model|N
featherless/qwen2-classify-7-epochs|qwen2-classify-7-epochs|magnifi/qwen2-classify-7-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-classify-7-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_trotting_rooster|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_trotting_rooster|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_trotting_rooster model|N
featherless/qwen2.5-0.5b|qwen2.5-0.5b|moillm/qwen2.5-0.5b|C|1.0,5.0|131072,4096|-|-|moillm/qwen2.5-0.5b model|N
featherless/qwen-0.5b-2epoch_inst|qwen-0.5b-2epoch_inst|Hachipo/qwen-0.5b-2epoch_inst|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen-0.5b-2epoch_inst model|N
featherless/ECE-PRYMMAL-YL-0.5B-SLERP-V3|ece-prymmal-yl-0.5b-slerp|ylalain/ECE-PRYMMAL-YL-0.5B-SLERP-V3|C|1.0,5.0|131072,4096|V|-|ylalain/ECE-PRYMMAL-YL-0.5B-SLERP-V3 model|N
featherless/asm2asm-qwen2.5coder-0.5b-200k-2ep|asm2asm-qwen2.5coder-0.5b-200k-2ep|ahmedheakl/asm2asm-qwen2.5coder-0.5b-200k-2ep|C|1.0,5.0|131072,4096|-|-|ahmedheakl/asm2asm-qwen2.5coder-0.5b-200k-2ep model|N
featherless/text_to_sql|text_to_sql|onkolahmet/text_to_sql|C|1.0,5.0|131072,4096|-|-|onkolahmet/text_to_sql model|N
featherless/qwen2.5-0.5b-instruct_gsm8k_lisa|qwen2.5-0.5b-instruct_gsm8k_lisa|axel-datos/qwen2.5-0.5b-instruct_gsm8k_lisa|C|1.0,5.0|131072,4096|-|-|axel-datos/qwen2.5-0.5b-instruct_gsm8k_lisa model|N
featherless/qwen2.5-0.5b-instruct_gsm8k_full-finetuning|-|axel-datos/qwen2.5-0.5b-instruct_gsm8k_full-finetuning|C|1.0,5.0|131072,4096|-|-|axel-datos/qwen2.5-0.5b-instruct_gsm8k_full-finetuning model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_giant_rhino|-|XXCWAVE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_giant_rhino|C|1.0,5.0|131072,4096|-|-|XXCWAVE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_giant_rhino model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_stocky_aardvark|-|cryptolemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_stocky_aardvark|C|1.0,5.0|131072,4096|-|-|cryptolemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_stocky_aardvark model|N
featherless/gensyn-checkpoints-clawed_leaping_toucan|-|sakuhara/gensyn-checkpoints-clawed_leaping_toucan|C|1.0,5.0|131072,4096|-|-|sakuhara/gensyn-checkpoints-clawed_leaping_toucan model|N
featherless/test_push_to_hub|test_push_to_hub|XueyingJia/test_push_to_hub|C|1.0,5.0|131072,4096|-|-|XueyingJia/test_push_to_hub model|N
featherless/logsQwen2.5-0.5B-Instruct-math-gsm8k|logsqwen2.5-0.5b-instruct-math-gsm8k|neurocoder/logsQwen2.5-0.5B-Instruct-math-gsm8k|C|1.0,5.0|131072,4096|-|-|neurocoder/logsQwen2.5-0.5B-Instruct-math-gsm8k model|N
featherless/smol_talk_sft_v1|smol_talk_sft_v1|stefandi/smol_talk_sft_v1|C|1.0,5.0|131072,4096|-|-|stefandi/smol_talk_sft_v1 model|N
featherless/qwen2.5-0.5B_educational_inst|qwen2.5-0.5b_educational_inst|Hachipo/qwen2.5-0.5B_educational_inst|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_inst model|N
featherless/Qwen2.5-0.5B-Instruct_omni_training_no_less_than_5|-|cutelemonlili/Qwen2.5-0.5B-Instruct_omni_training_no_less_than_5|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_omni_training_no_less_than_5 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_thick_cobra|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_thick_cobra|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_thick_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_barky_capybara|-|neptunbeast/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_barky_capybara|C|1.0,5.0|131072,4096|-|-|neptunbeast/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_barky_capybara model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.0-100|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-100|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-100 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_swift_cockroach|-|conich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_swift_cockroach|C|1.0,5.0|131072,4096|-|-|conich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_swift_cockroach model|N
featherless/QWEN-2.5-0.5B-Emotion-Classification|qwen-2.5-0.5b-emotion-classification|Balaaditya/QWEN-2.5-0.5B-Emotion-Classification|C|1.0,5.0|131072,4096|-|-|Balaaditya/QWEN-2.5-0.5B-Emotion-Classification model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tangled_salmon|-|Sarvar7872/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tangled_salmon|C|1.0,5.0|131072,4096|-|-|Sarvar7872/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tangled_salmon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_patterned_mole|-|Kirril333/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_patterned_mole|C|1.0,5.0|131072,4096|-|-|Kirril333/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_patterned_mole model|N
featherless/PeftModel2|peftmodel2|Daeuna/PeftModel2|C|1.0,5.0|131072,4096|-|-|Daeuna/PeftModel2 model|N
featherless/Qwen2.5-0.5B-Instruct-SEFL|qwen2.5-0.5b-instruct-sefl|jjzha/Qwen2.5-0.5B-Instruct-SEFL|C|1.0,5.0|131072,4096|-|-|jjzha/Qwen2.5-0.5B-Instruct-SEFL model|N
featherless/Qwen2-0.5Bchp-15k|qwen2-0.5bchp-15k|knowledgator/Qwen2-0.5Bchp-15k|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-15k model|N
featherless/qwenfloat16|qwenfloat16|Limby/qwenfloat16|C|1.0,5.0|131072,4096|-|-|Limby/qwenfloat16 model|N
featherless/qwen2-classify-5-epochs|qwen2-classify-5-epochs|magnifi/qwen2-classify-5-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-classify-5-epochs model|N
featherless/tinyllama-modda-v1|tinyllama-modda|Yassinevic/tinyllama-modda-v1|C|1.0,5.0|131072,4096|V|-|Yassinevic/tinyllama-modda-v1 model|N
featherless/qwen2-rephrase-classify-multitask-v8|qwen2-rephrase-classify-multitask|magnifi/qwen2-rephrase-classify-multitask-v8|C|1.0,5.0|131072,4096|V|-|magnifi/qwen2-rephrase-classify-multitask-v8 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_majestic_bear|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_majestic_bear|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_majestic_bear model|N
featherless/Llama-bengali|llama-bengali|ar08/Llama-bengali|C|1.0,5.0|131072,4096|-|-|ar08/Llama-bengali model|N
featherless/PeftModel1|peftmodel1|choi92/PeftModel1|C|1.0,5.0|131072,4096|-|-|choi92/PeftModel1 model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.3|iq-code-evmind-0.5b-instruct-v0.2411.3|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3 model|N
featherless/Qwen2-0.5B-OnlineDPO-GRM-Gemma|qwen2-0.5b-onlinedpo-grm-gemma|qgallouedec/Qwen2-0.5B-OnlineDPO-GRM-Gemma|C|1.0,5.0|131072,4096|-|-|qgallouedec/Qwen2-0.5B-OnlineDPO-GRM-Gemma model|N
featherless/finma|finma|lxl3129/finma|C|1.0,5.0|131072,4096|-|-|lxl3129/finma model|N
featherless/bpsfinalmodel|bpsfinalmodel|teenysheep/bpsfinalmodel|C|1.0,5.0|131072,4096|-|-|teenysheep/bpsfinalmodel model|N
featherless/Qwen2.5-0.5B-s-init|qwen2.5-0.5b-s-init|Menlo/Qwen2.5-0.5B-s-init|C|1.0,5.0|131072,4096|-|-|Menlo/Qwen2.5-0.5B-s-init model|N
featherless/qwen2-rephrase-classify-multitask-v5|qwen2-rephrase-classify-multitask|magnifi/qwen2-rephrase-classify-multitask-v5|C|1.0,5.0|131072,4096|V|-|magnifi/qwen2-rephrase-classify-multitask-v5 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_flightless_antelope|-|ScottZetta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_flightless_antelope|C|1.0,5.0|131072,4096|-|-|ScottZetta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_flightless_antelope model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_whiskered_mongoose|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_whiskered_mongoose|C|1.0,5.0|131072,4096|-|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_whiskered_mongoose model|N
featherless/Qwen2-0.5B_20240829_175401|qwen2-0.5b_20240829_175401|masa-research/Qwen2-0.5B_20240829_175401|C|1.0,5.0|131072,4096|-|-|masa-research/Qwen2-0.5B_20240829_175401 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_chattering_macaw|-|InfluencerDee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_chattering_macaw|C|1.0,5.0|131072,4096|-|-|InfluencerDee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_chattering_macaw model|N
featherless/Qwen2.5-0.5B_10epoch_inst|qwen2.5-0.5b_10epoch_inst|shiontendon/Qwen2.5-0.5B_10epoch_inst|C|1.0,5.0|131072,4096|-|-|shiontendon/Qwen2.5-0.5B_10epoch_inst model|N
featherless/Qwen2.5-0.5B-Instruct-medical-dpo|qwen2.5-0.5b-instruct-medical-dpo|nuriyev/Qwen2.5-0.5B-Instruct-medical-dpo|C|1.0,5.0|131072,4096|-|-|nuriyev/Qwen2.5-0.5B-Instruct-medical-dpo model|N
featherless/qwen2.5-0.5B_educational_instruct_top1000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top1000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top1000_codeonly model|N
featherless/Qwen2.5_0.5_DocMental-_v2.5a|qwen2.5_0.5_docmental-_v2.5a|teka38/Qwen2.5_0.5_DocMental-_v2.5a|C|1.0,5.0|131072,4096|-|-|teka38/Qwen2.5_0.5_DocMental-_v2.5a model|N
featherless/qwen2.5-0.5B_educational_instruct_top30000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top30000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top30000_codeonly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_strong_raccoon|-|gapcukbebemsi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_strong_raccoon|C|1.0,5.0|131072,4096|-|-|gapcukbebemsi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_strong_raccoon model|N
featherless/qwen2.5-0.5B_educational_instruct_top1000|-|Hachipo/qwen2.5-0.5B_educational_instruct_top1000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top1000 model|N
featherless/Qwen2.5-0.5B-Instruct-Viet-SFT|qwen2.5-0.5b-instruct-viet-sft|jaeyong2/Qwen2.5-0.5B-Instruct-Viet-SFT|C|1.0,5.0|131072,4096|V|-|jaeyong2/Qwen2.5-0.5B-Instruct-Viet-SFT model|N
featherless/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_3B|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_3B|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_3B model|N
featherless/asm2asm-qwen2.5coder-0.5b-100k-2ep|asm2asm-qwen2.5coder-0.5b-100k-2ep|ahmedheakl/asm2asm-qwen2.5coder-0.5b-100k-2ep|C|1.0,5.0|131072,4096|-|-|ahmedheakl/asm2asm-qwen2.5coder-0.5b-100k-2ep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_trotting_gazelle|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_trotting_gazelle|C|1.0,5.0|131072,4096|-|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_trotting_gazelle model|N
featherless/xptwen2-beta|xptwen2-beta|XsoraS/xptwen2-beta|C|1.0,5.0|131072,4096|-|-|XsoraS/xptwen2-beta model|N
featherless/nekozutrans|nekozutrans|farihdzaky/nekozutrans|C|1.0,5.0|131072,4096|-|-|farihdzaky/nekozutrans model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_arctic_prawn|-|jimons/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_arctic_prawn|C|1.0,5.0|131072,4096|-|-|jimons/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_arctic_prawn model|N
featherless/mirrorqwen2.5-0.5b-ORPO-3|mirrorqwen2.5-0.5b-orpo-3|rawsh/mirrorqwen2.5-0.5b-ORPO-3|C|1.0,5.0|131072,4096|-|-|rawsh/mirrorqwen2.5-0.5b-ORPO-3 model|N
featherless/qwen2-rephrase-classify-multitask-v6|qwen2-rephrase-classify-multitask|magnifi/qwen2-rephrase-classify-multitask-v6|C|1.0,5.0|131072,4096|V|-|magnifi/qwen2-rephrase-classify-multitask-v6 model|N
featherless/MathReasoning_SFT_V1.1|mathreasoning_sft_v1.1|guydebruyn/MathReasoning_SFT_V1.1|C|1.0,5.0|131072,4096|K|-|guydebruyn/MathReasoning_SFT_V1.1 model|N
featherless/Qwen2.5-0.5B_2epoch_ichikara|qwen2.5-0.5b_2epoch_ichikara|shiontendon/Qwen2.5-0.5B_2epoch_ichikara|C|1.0,5.0|131072,4096|-|-|shiontendon/Qwen2.5-0.5B_2epoch_ichikara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scavenging_platypus|-|idontthink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scavenging_platypus|C|1.0,5.0|131072,4096|K|-|idontthink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scavenging_platypus model|N
featherless/Qwen2-0.5B-Instruct-SQL-generator|qwen2-0.5b-instruct-sql-generator|khursheed33/Qwen2-0.5B-Instruct-SQL-generator|C|1.0,5.0|131072,4096|-|-|khursheed33/Qwen2-0.5B-Instruct-SQL-generator model|N
featherless/qwen2_warmup_baseline|qwen2_warmup_baseline|EmiliaLee/qwen2_warmup_baseline|C|1.0,5.0|131072,4096|-|-|EmiliaLee/qwen2_warmup_baseline model|N
featherless/Chat-Doctor|chat-doctor|ar08/Chat-Doctor|C|1.0,5.0|131072,4096|-|-|ar08/Chat-Doctor model|N
featherless/Qwen2-0.5B-Chat_SFT_LoRA|qwen2-0.5b-chat_sft_lora|JCHAVEROT/Qwen2-0.5B-Chat_SFT_LoRA|C|1.0,5.0|131072,4096|-|-|JCHAVEROT/Qwen2-0.5B-Chat_SFT_LoRA model|N
featherless/asm2asm-qwen2.5coder-0.5b-300k-2ep|asm2asm-qwen2.5coder-0.5b-300k-2ep|ahmedheakl/asm2asm-qwen2.5coder-0.5b-300k-2ep|C|1.0,5.0|131072,4096|-|-|ahmedheakl/asm2asm-qwen2.5coder-0.5b-300k-2ep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_deadly_salmon|-|Henkidu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_deadly_salmon|C|1.0,5.0|131072,4096|-|-|Henkidu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_deadly_salmon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_graceful_kingfisher|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_graceful_kingfisher|C|1.0,5.0|131072,4096|-|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_graceful_kingfisher model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_5000|qwen2.5-0.5b_pift-jaen_manywords_5000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_5000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_5000 model|N
featherless/Qwen-2-0.5B-finetuned-on-23-september|qwen-2-0.5b-finetuned-on-23-september|AI-ML-Research/Qwen-2-0.5B-finetuned-on-23-september|C|1.0,5.0|131072,4096|-|-|AI-ML-Research/Qwen-2-0.5B-finetuned-on-23-september model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_tiger|-|jessicawong9821/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_tiger|C|1.0,5.0|131072,4096|-|-|jessicawong9821/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_tiger model|N
featherless/Qwen2.5-0.5B-Instruct-ChatCVE|qwen2.5-0.5b-instruct-chatcve|lgxz/Qwen2.5-0.5B-Instruct-ChatCVE|C|1.0,5.0|131072,4096|-|-|lgxz/Qwen2.5-0.5B-Instruct-ChatCVE model|N
featherless/student-qwen|student-qwen|smjain/student-qwen|C|1.0,5.0|131072,4096|-|-|smjain/student-qwen model|N
featherless/qwen2.5-0.5B_educational_instruct|qwen2.5-0.5b_educational_instruct|Hachipo/qwen2.5-0.5B_educational_instruct|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|herman66/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|herman66/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/qwen2.5-0.5b-instruct_MATH_lisa|qwen2.5-0.5b-instruct_math_lisa|axel-datos/qwen2.5-0.5b-instruct_MATH_lisa|C|1.0,5.0|131072,4096|-|-|axel-datos/qwen2.5-0.5b-instruct_MATH_lisa model|N
featherless/gensyn-checkpoints-pawing_trotting_ibis|gensyn-checkpoints-pawing_trotting_ibis|shiku3589/gensyn-checkpoints-pawing_trotting_ibis|C|1.0,5.0|131072,4096|-|-|shiku3589/gensyn-checkpoints-pawing_trotting_ibis model|N
featherless/sft_P3_full-sft-2|sft_p3_full-sft-2|MaxwellJryao/sft_P3_full-sft-2|C|1.0,5.0|131072,4096|-|-|MaxwellJryao/sft_P3_full-sft-2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla|-|cwayneconnor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla|C|1.0,5.0|131072,4096|-|-|cwayneconnor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla model|N
featherless/nrmlst-t|nrmlst-t|Alexandre-Numind/nrmlst-t|C|1.0,5.0|131072,4096|-|-|Alexandre-Numind/nrmlst-t model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_ferocious_crab|-|SamuraiHun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_ferocious_crab|C|1.0,5.0|131072,4096|-|-|SamuraiHun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_ferocious_crab model|N
featherless/qwen2.5-0.5B_MIFT-en_manywords_4000|qwen2.5-0.5b_mift-en_manywords_4000|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_4000 model|N
featherless/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new-3|-|komi77/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new-3 model|N
featherless/qwen2-rephrase2-5-epochs|qwen2-rephrase2-5-epochs|magnifi/qwen2-rephrase2-5-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase2-5-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_sharp_moose|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_sharp_moose|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_sharp_moose model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.7|iq-code-evmind-0.5b-instruct-v0.2411.7|braindao/iq-code-evmind-0.5b-instruct-v0.2411.7|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.7 model|N
featherless/Qwen2-0.5B-Chat_DPO|qwen2-0.5b-chat_dpo|JCHAVEROT/Qwen2-0.5B-Chat_DPO|C|1.0,5.0|131072,4096|-|-|JCHAVEROT/Qwen2-0.5B-Chat_DPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_large_hedgehog|-|ironman8022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_large_hedgehog|C|1.0,5.0|131072,4096|-|-|ironman8022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_large_hedgehog model|N
featherless/qwen-0.5b-8epoch_inst|qwen-0.5b-8epoch_inst|Hachipo/qwen-0.5b-8epoch_inst|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen-0.5b-8epoch_inst model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_jumping_termite|-|kcfabulosa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_jumping_termite|C|1.0,5.0|131072,4096|-|-|kcfabulosa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_jumping_termite model|N
featherless/gensyn-checkpoints-freckled_rangy_chimpanzee|-|owlthink/gensyn-checkpoints-freckled_rangy_chimpanzee|C|1.0,5.0|131072,4096|K|-|owlthink/gensyn-checkpoints-freckled_rangy_chimpanzee model|N
featherless/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_jaen|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_jaen|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_jaen model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_snappy_fox|-|mjhmojthu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_snappy_fox|C|1.0,5.0|131072,4096|-|-|mjhmojthu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_snappy_fox model|N
featherless/ea2464eea0cce-8688-4e12-9786-0793d849b262|-|cwaud/ea2464eea0cce-8688-4e12-9786-0793d849b262|C|1.0,5.0|131072,4096|-|-|cwaud/ea2464eea0cce-8688-4e12-9786-0793d849b262 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_DeepL_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_DeepL_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_DeepL_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_invisible_hippo|-|molla202/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_invisible_hippo|C|1.0,5.0|131072,4096|-|-|molla202/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_invisible_hippo model|N
featherless/finetune-Qwen2-0.5B-codeDataset|finetune-qwen2-0.5b-codedataset|AlyGreo/finetune-Qwen2-0.5B-codeDataset|C|1.0,5.0|131072,4096|-|-|AlyGreo/finetune-Qwen2-0.5B-codeDataset model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_sprightly_finch|-|Saifbox/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_sprightly_finch|C|1.0,5.0|131072,4096|-|-|Saifbox/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_sprightly_finch model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_stubby_chinchilla|-|bazyk974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_stubby_chinchilla|C|1.0,5.0|131072,4096|-|-|bazyk974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_stubby_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_140|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_140|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_140 model|N
featherless/qwen2.5-0.5B_educational_instruct-2|qwen2.5-0.5b_educational_instruct-2|Hachipo/qwen2.5-0.5B_educational_instruct-2|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct-2 model|N
featherless/gensyn-checkpoints-lazy_beaked_camel|gensyn-checkpoints-lazy_beaked_camel|ishiwaston/gensyn-checkpoints-lazy_beaked_camel|C|1.0,5.0|131072,4096|-|-|ishiwaston/gensyn-checkpoints-lazy_beaked_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_webbed_chinchilla|-|brebis/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_webbed_chinchilla|C|1.0,5.0|131072,4096|-|-|brebis/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_webbed_chinchilla model|N
featherless/Qwen1.5-0.5B_merge_v2.5|qwen1.5-0.5b_merge_v2.5|wanghaikuan/Qwen1.5-0.5B_merge_v2.5|C|1.0,5.0|131072,4096|-|-|wanghaikuan/Qwen1.5-0.5B_merge_v2.5 model|N
featherless/qwen2.5-0.5B_freq_edu_instruct-3|qwen2.5-0.5b_freq_edu_instruct-3|NaoS2/qwen2.5-0.5B_freq_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_freq_edu_instruct-3 model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.4-640|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.4-640|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.4-640 model|N
featherless/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_grunting_komodo|-|adammehfuz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_grunting_komodo|C|1.0,5.0|131072,4096|-|-|adammehfuz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_grunting_komodo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_beaked_caribou|-|hyyylb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_beaked_caribou|C|1.0,5.0|131072,4096|-|-|hyyylb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_beaked_caribou model|N
featherless/Qwen2_SFT_FFT|qwen2_sft_fft|huyhuung/Qwen2_SFT_FFT|C|1.0,5.0|131072,4096|-|-|huyhuung/Qwen2_SFT_FFT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rugged_grasshopper|-|hathu11088/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rugged_grasshopper|C|1.0,5.0|131072,4096|-|-|hathu11088/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rugged_grasshopper model|N
featherless/Qweb2.5-FT-CSY|qweb2.5-ft-csy|josang1204/Qweb2.5-FT-CSY|C|1.0,5.0|131072,4096|-|-|josang1204/Qweb2.5-FT-CSY model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_twitchy_mole|-|AkubecS/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_twitchy_mole|C|1.0,5.0|131072,4096|-|-|AkubecS/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_twitchy_mole model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_4000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_tenacious_leopard|-|nather/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_tenacious_leopard|C|1.0,5.0|131072,4096|-|-|nather/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_tenacious_leopard model|N
featherless/Qwen2.5-0.5B_MIFT_ja_manywords_4000_v1|qwen2.5-0.5b_mift_ja_manywords_4000_v1|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_4000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_4000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lanky_capybara|-|Wamiqkhattak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lanky_capybara|C|1.0,5.0|131072,4096|-|-|Wamiqkhattak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lanky_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_finicky_badger|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_finicky_badger|C|1.0,5.0|131072,4096|V|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_finicky_badger model|N
featherless/QwQ-Math-IO-500M|qwq-math-io-500m|prithivMLmods/QwQ-Math-IO-500M|C|1.0,5.0|131072,4096|-|-|prithivMLmods/QwQ-Math-IO-500M model|N
featherless/Qwen-0.5B-Arb-Summarizer-kl|qwen-0.5b-arb-summarizer-kl|EvanD/Qwen-0.5B-Arb-Summarizer-kl|C|1.0,5.0|131072,4096|-|-|EvanD/Qwen-0.5B-Arb-Summarizer-kl model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_squinting_lion|-|Waritnun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_squinting_lion|C|1.0,5.0|131072,4096|-|-|Waritnun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_squinting_lion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_colorful_hedgehog|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_colorful_hedgehog|C|1.0,5.0|131072,4096|-|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_colorful_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_scavenging_grasshopper|-|dsfghk76/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_scavenging_grasshopper|C|1.0,5.0|131072,4096|V|-|dsfghk76/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_scavenging_grasshopper model|N
featherless/qwen0.5b-tech-interview-test-distilled|qwen0.5b-tech-interview-test-distilled|whatisthis8047/qwen0.5b-tech-interview-test-distilled|C|1.0,5.0|131072,4096|-|-|whatisthis8047/qwen0.5b-tech-interview-test-distilled model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_lethal_dove|-|mdbnfj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_lethal_dove|C|1.0,5.0|131072,4096|-|-|mdbnfj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_lethal_dove model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_territorial_okapi|-|drsimon6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_territorial_okapi|C|1.0,5.0|131072,4096|-|-|drsimon6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_territorial_okapi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_insectivorous_lobster|-|blockhub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_insectivorous_lobster|C|1.0,5.0|131072,4096|-|-|blockhub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_insectivorous_lobster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_extinct_llama|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_extinct_llama|C|1.0,5.0|131072,4096|-|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_extinct_llama model|N
featherless/Qwen2-0.5B-SFT-full|qwen2-0.5b-sft-full|maryam79/Qwen2-0.5B-SFT-full|C|1.0,5.0|131072,4096|-|-|maryam79/Qwen2-0.5B-SFT-full model|N
featherless/Qwen2.5-1.5B-Open-R1-Distill|qwen2.5-1.5b-open-r1-distill|YangZhoumill/Qwen2.5-1.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|YangZhoumill/Qwen2.5-1.5B-Open-R1-Distill model|N
featherless/bloomVN-0.5B-ppo-sft-bio-lora-epochs4-lr5e-05-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-lora-epochs4-lr5e-05-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-lora-epochs4-lr5e-05-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_squeaky_trout|-|goingtomakeit/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_squeaky_trout|C|1.0,5.0|131072,4096|-|-|goingtomakeit/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_squeaky_trout model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_carnivorous_hawk|-|elessar0014/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_carnivorous_hawk|C|1.0,5.0|131072,4096|-|-|elessar0014/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_carnivorous_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_mute_gazelle|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_mute_gazelle|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_mute_gazelle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_twitchy_tortoise|-|rust3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_twitchy_tortoise|C|1.0,5.0|131072,4096|-|-|rust3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_twitchy_tortoise model|N
featherless/customer-success-assistant|customer-success-assistant|Fanchon/customer-success-assistant|C|1.0,5.0|131072,4096|-|-|Fanchon/customer-success-assistant model|N
featherless/Qwen-0.5B-GRPO|qwen-0.5b-grpo|ayameRushia/Qwen-0.5B-GRPO|C|1.0,5.0|131072,4096|-|-|ayameRushia/Qwen-0.5B-GRPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_tough_orangutan|-|tinashfog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_tough_orangutan|C|1.0,5.0|131072,4096|-|-|tinashfog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_tough_orangutan model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_armored_piranha|-|ellybraimah/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_armored_piranha|C|1.0,5.0|131072,4096|-|-|ellybraimah/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_armored_piranha model|N
featherless/gensyn-checkpoints-solitary_hairy_jaguar|-|haphoptr/gensyn-checkpoints-solitary_hairy_jaguar|C|1.0,5.0|131072,4096|-|-|haphoptr/gensyn-checkpoints-solitary_hairy_jaguar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_winged_vulture|-|YuHkLs/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_winged_vulture|C|1.0,5.0|131072,4096|-|-|YuHkLs/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_winged_vulture model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_silky_flamingo|-|suiseihoshimachi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_silky_flamingo|C|1.0,5.0|131072,4096|-|-|suiseihoshimachi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_silky_flamingo model|N
featherless/qwen2.5-0.5B_educational_instruct_pythonblock_en_1000|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_1000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_1000 model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|zzzch/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|zzzch/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_peckish_kangaroo|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_peckish_kangaroo|C|1.0,5.0|131072,4096|-|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_peckish_kangaroo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_frisky_salamander|-|rariruluis/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_frisky_salamander|C|1.0,5.0|131072,4096|-|-|rariruluis/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_frisky_salamander model|N
featherless/01262002-modify_tamplate-boxed-600filtering-processing-10epochs|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing-10epochs|C|1.0,5.0|131072,4096|-|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing-10epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_soaring_slug|-|Jacklor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_soaring_slug|C|1.0,5.0|131072,4096|-|-|Jacklor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_soaring_slug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_foraging_sardine|-|ShalyX/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_foraging_sardine|C|1.0,5.0|131072,4096|-|-|ShalyX/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_foraging_sardine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_moist_crow|-|kujirawhale/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_moist_crow|C|1.0,5.0|131072,4096|-|-|kujirawhale/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_moist_crow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_curious_goose|-|cvalpha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_curious_goose|C|1.0,5.0|131072,4096|-|-|cvalpha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_curious_goose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_trotting_worm|-|CarolTa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_trotting_worm|C|1.0,5.0|131072,4096|-|-|CarolTa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_trotting_worm model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_shaggy_dinosaur|-|mjessup/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_shaggy_dinosaur|C|1.0,5.0|131072,4096|-|-|mjessup/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_shaggy_dinosaur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_peckish_squid|-|Orhan1987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_peckish_squid|C|1.0,5.0|131072,4096|-|-|Orhan1987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_peckish_squid model|N
featherless/gensyn-checkpoints-shy_sturdy_shrew|gensyn-checkpoints-shy_sturdy_shrew|totet/gensyn-checkpoints-shy_sturdy_shrew|C|1.0,5.0|131072,4096|-|-|totet/gensyn-checkpoints-shy_sturdy_shrew model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_screeching_tarantula|-|Seizer12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_screeching_tarantula|C|1.0,5.0|131072,4096|-|-|Seizer12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_screeching_tarantula model|N
featherless/Qwen2.5-FT-FreedomIntelligence_medical|qwen2.5-ft-freedomintelligence_medical|SameerShanbhogue/Qwen2.5-FT-FreedomIntelligence_medical|C|1.0,5.0|131072,4096|-|-|SameerShanbhogue/Qwen2.5-FT-FreedomIntelligence_medical model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_poisonous_wombat|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_poisonous_wombat|C|1.0,5.0|131072,4096|-|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_poisonous_wombat model|N
featherless/Mixed-VNPTAI-Qwen2.5-0.5B-v12|mixed-vnptai-qwen2.5-0.5b|brownyeyez/Mixed-VNPTAI-Qwen2.5-0.5B-v12|C|1.0,5.0|131072,4096|V|-|brownyeyez/Mixed-VNPTAI-Qwen2.5-0.5B-v12 model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_flexible_jellyfish|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_flexible_jellyfish|C|1.0,5.0|131072,4096|-|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_flexible_jellyfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_stalking_jay|-|AYUSH233438/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_stalking_jay|C|1.0,5.0|131072,4096|-|-|AYUSH233438/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_stalking_jay model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_mangy_tortoise|-|turtledrum/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_mangy_tortoise|C|1.0,5.0|131072,4096|-|-|turtledrum/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_mangy_tortoise model|N
featherless/verification_qwen2.5-0.5b-instruct_newP|verification_qwen2.5-0.5b-instruct_newp|jvelja/verification_qwen2.5-0.5b-instruct_newP|C|1.0,5.0|131072,4096|-|-|jvelja/verification_qwen2.5-0.5b-instruct_newP model|N
featherless/qwen2.5-0.5B_educational_instruct_pythonblock_en_2000|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite|C|1.0,5.0|131072,4096|-|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_raging_skunk|-|CiroxSAAS/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_raging_skunk|C|1.0,5.0|131072,4096|-|-|CiroxSAAS/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_raging_skunk model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-rslora-ALL-WEIGHT model|N
featherless/gensyn-checkpoints-short_stinky_warthog|gensyn-checkpoints-short_stinky_warthog|kumacrypt/gensyn-checkpoints-short_stinky_warthog|C|1.0,5.0|131072,4096|-|-|kumacrypt/gensyn-checkpoints-short_stinky_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_reclusive_armadillo|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_reclusive_armadillo|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_reclusive_armadillo model|N
featherless/GRPOtuned|grpotuned|HarleyCooper/GRPOtuned|C|1.0,5.0|131072,4096|-|-|HarleyCooper/GRPOtuned model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_voracious_wolf|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_voracious_wolf|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_voracious_wolf model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|C|1.0,5.0|131072,4096|-|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab model|N
featherless/latin-translator|latin-translator|dantedgp/latin-translator|C|1.0,5.0|131072,4096|-|-|dantedgp/latin-translator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_sizable_robin|-|gurudatt366/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_sizable_robin|C|1.0,5.0|131072,4096|-|-|gurudatt366/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_sizable_robin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|C|1.0,5.0|131072,4096|-|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_fierce_chameleon|-|Lilliandra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_fierce_chameleon|C|1.0,5.0|131072,4096|-|-|Lilliandra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_fierce_chameleon model|N
featherless/Qwen2-0.5B-DRDPO-imdb-subsft-wrong-preference|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft-wrong-preference|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft-wrong-preference model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_webbed_squirrel|-|0xfani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_webbed_squirrel|C|1.0,5.0|131072,4096|-|-|0xfani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_webbed_squirrel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_bristly_hedgehog|-|Gunpyr1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_bristly_hedgehog|C|1.0,5.0|131072,4096|-|-|Gunpyr1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_bristly_hedgehog model|N
featherless/bloomVN-0.5B-ppo-sft-his-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-his-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-his-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_arctic_antelope|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_arctic_antelope|C|1.0,5.0|131072,4096|-|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_arctic_antelope model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_ravenous_octopus|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_ravenous_octopus|C|1.0,5.0|131072,4096|-|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_ravenous_octopus model|N
featherless/qwen2.5-0.5B_drop_linear5_edu_instruct-3_2|-|NaoS2/qwen2.5-0.5B_drop_linear5_edu_instruct-3_2|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_linear5_edu_instruct-3_2 model|N
featherless/reasoning-qwen-epoch0|reasoning-qwen-epoch0|peulsilva/reasoning-qwen-epoch0|C|1.0,5.0|131072,4096|K|-|peulsilva/reasoning-qwen-epoch0 model|N
featherless/gensyn-checkpoints-trotting_galloping_slug|-|murakamia/gensyn-checkpoints-trotting_galloping_slug|C|1.0,5.0|131072,4096|-|-|murakamia/gensyn-checkpoints-trotting_galloping_slug model|N
featherless/Qwen2.5-0.5B-Instruct-ShortCoT-25K|qwen2.5-0.5b-instruct-shortcot-25k|SmallDoge/Qwen2.5-0.5B-Instruct-ShortCoT-25K|C|1.0,5.0|131072,4096|-|-|SmallDoge/Qwen2.5-0.5B-Instruct-ShortCoT-25K model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_purring_cobra|-|CKTTT/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_purring_cobra|C|1.0,5.0|131072,4096|-|-|CKTTT/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_purring_cobra model|N
featherless/qwen-0.5b-instruct-summary-pt-rank16|qwen-0.5b-instruct-summary-pt-rank16|peulsilva/qwen-0.5b-instruct-summary-pt-rank16|C|1.0,5.0|131072,4096|-|-|peulsilva/qwen-0.5b-instruct-summary-pt-rank16 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_freckled_weasel|-|pavlodp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_freckled_weasel|C|1.0,5.0|131072,4096|-|-|pavlodp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_freckled_weasel model|N
featherless/qwen2.5-0.5B_MIFT-ja_combined_18000|qwen2.5-0.5b_mift-ja_combined_18000|Hachipo/qwen2.5-0.5B_MIFT-ja_combined_18000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_combined_18000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_alert_finch|-|michaelcpage345/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_alert_finch|C|1.0,5.0|131072,4096|-|-|michaelcpage345/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_alert_finch model|N
featherless/gensyn-checkpoints-sturdy_twitchy_jay|gensyn-checkpoints-sturdy_twitchy_jay|marianoiry/gensyn-checkpoints-sturdy_twitchy_jay|C|1.0,5.0|131072,4096|-|-|marianoiry/gensyn-checkpoints-sturdy_twitchy_jay model|N
featherless/01252112-hard-under300-filtering_NuminaMath-CoT|-|azxky6645/01252112-hard-under300-filtering_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01252112-hard-under300-filtering_NuminaMath-CoT model|N
featherless/qwen2.5-0.5B-Instruct-sft|qwen2.5-0.5b-instruct-sft|johnlee81282/qwen2.5-0.5B-Instruct-sft|C|1.0,5.0|131072,4096|-|-|johnlee81282/qwen2.5-0.5B-Instruct-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-miniature_aquatic_monkey|-|hamidrpj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-miniature_aquatic_monkey|C|1.0,5.0|131072,4096|-|-|hamidrpj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-miniature_aquatic_monkey model|N
featherless/qwen-2.5-lora-0.5b-Instruct-Merged|qwen-2.5-lora-0.5b-instruct-merged|pandaiedu/qwen-2.5-lora-0.5b-Instruct-Merged|C|1.0,5.0|131072,4096|-|-|pandaiedu/qwen-2.5-lora-0.5b-Instruct-Merged model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_nimble_salmon|-|rub3d0/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_nimble_salmon|C|1.0,5.0|131072,4096|-|-|rub3d0/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_nimble_salmon model|N
featherless/Qwen2.5-0.5B-GRPO-test|qwen2.5-0.5b-grpo-test|TimaeusWorld/Qwen2.5-0.5B-GRPO-test|C|1.0,5.0|131072,4096|-|-|TimaeusWorld/Qwen2.5-0.5B-GRPO-test model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_lithe_kiwi|-|MaratLvs/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_lithe_kiwi|C|1.0,5.0|131072,4096|-|-|MaratLvs/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_lithe_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_pensive_weasel|-|kimia99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_pensive_weasel|C|1.0,5.0|131072,4096|-|-|kimia99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_pensive_weasel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_regal_hornet|-|Papaperez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_regal_hornet|C|1.0,5.0|131072,4096|-|-|Papaperez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_regal_hornet model|N
featherless/Dolphin3.0-Qwen2.5-0.5B-GRPO-V1|dolphin3.0-qwen2.5-0.5b-grpo|Emilio407/Dolphin3.0-Qwen2.5-0.5B-GRPO-V1|C|1.0,5.0|131072,4096|V|-|Emilio407/Dolphin3.0-Qwen2.5-0.5B-GRPO-V1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla|-|starburned/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla|C|1.0,5.0|131072,4096|-|-|starburned/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_ravenous_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_feathered_narwhal|-|Bodmanuel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_feathered_narwhal|C|1.0,5.0|131072,4096|-|-|Bodmanuel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_feathered_narwhal model|N
featherless/sft_model_full_1|sft_model_full_1|phunghuy159/sft_model_full_1|C|1.0,5.0|131072,4096|-|-|phunghuy159/sft_model_full_1 model|N
featherless/Qwen2.5-0.5B-0.01-L|qwen2.5-0.5b-0.01-l|akhadangi/Qwen2.5-0.5B-0.01-L|C|1.0,5.0|131072,4096|-|-|akhadangi/Qwen2.5-0.5B-0.01-L model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_loud_ocelot|-|spitmk4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_loud_ocelot|C|1.0,5.0|131072,4096|-|-|spitmk4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_loud_ocelot model|N
featherless/sql_interp_bm2_cs1_experiment_4.2|sql_interp_bm2_cs1_experiment_4.2|withmartian/sql_interp_bm2_cs1_experiment_4.2|C|1.0,5.0|131072,4096|-|-|withmartian/sql_interp_bm2_cs1_experiment_4.2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_scurrying_tortoise|-|rbdrecords/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_scurrying_tortoise|C|1.0,5.0|131072,4096|-|-|rbdrecords/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_scurrying_tortoise model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_scavenging_hummingbird|-|darlong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_scavenging_hummingbird|C|1.0,5.0|131072,4096|-|-|darlong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_scavenging_hummingbird model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_squeaky_spider|-|liangjiang003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_squeaky_spider|C|1.0,5.0|131072,4096|-|-|liangjiang003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_squeaky_spider model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill-FactThink-SFT|-|jdqqjr/Qwen2.5-0.5B-Open-R1-Distill-FactThink-SFT|C|1.0,5.0|131072,4096|K|-|jdqqjr/Qwen2.5-0.5B-Open-R1-Distill-FactThink-SFT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_nasty_meerkat|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_nasty_meerkat|C|1.0,5.0|131072,4096|-|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_nasty_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_eager_chimpanzee|-|Sianying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_eager_chimpanzee|C|1.0,5.0|131072,4096|V|-|Sianying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_eager_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_nasty_hare|-|Ayomikun116/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_nasty_hare|C|1.0,5.0|131072,4096|-|-|Ayomikun116/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_nasty_hare model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_savage_bee|-|qwkvio/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_savage_bee|C|1.0,5.0|131072,4096|-|-|qwkvio/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_savage_bee model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_marine_dove|-|rigkily/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_marine_dove|C|1.0,5.0|131072,4096|-|-|rigkily/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_marine_dove model|N
featherless/locextra_3epochs_backup|locextra_3epochs_backup|teenysheep/locextra_3epochs_backup|C|1.0,5.0|131072,4096|-|-|teenysheep/locextra_3epochs_backup model|N
featherless/Qwen-0.5b-Code-Reasoning|qwen-0.5b-code-reasoning|AdithyaSK/Qwen-0.5b-Code-Reasoning|C|1.0,5.0|131072,4096|K|-|AdithyaSK/Qwen-0.5b-Code-Reasoning model|N
featherless/smolR1-Qwen2.5-0.5B|smolr1-qwen2.5-0.5b|rasdani/smolR1-Qwen2.5-0.5B|C|1.0,5.0|131072,4096|-|-|rasdani/smolR1-Qwen2.5-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tropical_cod|-|liuliuliu-liu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tropical_cod|C|1.0,5.0|131072,4096|-|-|liuliuliu-liu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tropical_cod model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf|-|Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf|C|1.0,5.0|131072,4096|-|-|Dassem/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_gregarious_wolf model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_extinct_ladybug|-|perpz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_extinct_ladybug|C|1.0,5.0|131072,4096|-|-|perpz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_extinct_ladybug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_chattering_lizard|-|manhtien0236/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_chattering_lizard|C|1.0,5.0|131072,4096|-|-|manhtien0236/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_chattering_lizard model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_60|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_60|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_60 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_twitchy_pelican|-|amiram123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_twitchy_pelican|C|1.0,5.0|131072,4096|-|-|amiram123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_twitchy_pelican model|N
featherless/qwen2.5-0.5B_ichikara_4802|qwen2.5-0.5b_ichikara_4802|noirchan/qwen2.5-0.5B_ichikara_4802|C|1.0,5.0|131072,4096|-|-|noirchan/qwen2.5-0.5B_ichikara_4802 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_mimic_hare|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_mimic_hare|C|1.0,5.0|131072,4096|-|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_mimic_hare model|N
featherless/gensyn-m4|gensyn-m4|delist/gensyn-m4|C|1.0,5.0|131072,4096|-|-|delist/gensyn-m4 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_whiskered_panther|-|nguyenlemy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_whiskered_panther|C|1.0,5.0|131072,4096|-|-|nguyenlemy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_whiskered_panther model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi|C|1.0,5.0|131072,4096|-|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_barky_skunk|-|fuasfh1jjh1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_barky_skunk|C|1.0,5.0|131072,4096|-|-|fuasfh1jjh1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_barky_skunk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_pawing_coyote|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_pawing_coyote|C|1.0,5.0|131072,4096|-|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_pawing_coyote model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|-|yellowcatto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|C|1.0,5.0|131072,4096|-|-|yellowcatto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_stealthy_mongoose|-|buddhabn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_stealthy_mongoose|C|1.0,5.0|131072,4096|-|-|buddhabn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_stealthy_mongoose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_savage_termite|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_savage_termite|C|1.0,5.0|131072,4096|-|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_savage_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|C|1.0,5.0|131072,4096|-|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-LongCoT-25K|qwen2.5-0.5b-instruct-longcot-25k|SmallDoge/Qwen2.5-0.5B-Instruct-LongCoT-25K|C|1.0,5.0|131072,4096|-|-|SmallDoge/Qwen2.5-0.5B-Instruct-LongCoT-25K model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bold_falcon|-|fy4536/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bold_falcon|C|1.0,5.0|131072,4096|-|-|fy4536/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bold_falcon model|N
featherless/gensyn-checkpoints-shy_feline_beaver|gensyn-checkpoints-shy_feline_beaver|ibigawaikeda/gensyn-checkpoints-shy_feline_beaver|C|1.0,5.0|131072,4096|-|-|ibigawaikeda/gensyn-checkpoints-shy_feline_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_gentle_cat|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_gentle_cat|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_gentle_cat model|N
featherless/latent-lm-vae-z1-encoder|latent-lm-vae-z1-encoder|toilaluan/latent-lm-vae-z1-encoder|C|1.0,5.0|131072,4096|V|-|toilaluan/latent-lm-vae-z1-encoder model|N
featherless/Qwen2.5-0.5B_PIFT_enja_manywords_2000_v1|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_2000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_2000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prowling_lazy_coyote|-|praneethkj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prowling_lazy_coyote|C|1.0,5.0|131072,4096|-|-|praneethkj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prowling_lazy_coyote model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_wily_gazelle|-|noderunners/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_wily_gazelle|C|1.0,5.0|131072,4096|-|-|noderunners/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_wily_gazelle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_shrewd_condor|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_shrewd_condor|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_shrewd_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_tough_heron|-|amir74589641/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_tough_heron|C|1.0,5.0|131072,4096|-|-|amir74589641/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_tough_heron model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena|C|1.0,5.0|131072,4096|-|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_armored_okapi|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_armored_okapi|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_armored_okapi model|N
featherless/gensyn-checkpoints-foraging_peckish_badger|-|shikibiaa/gensyn-checkpoints-foraging_peckish_badger|C|1.0,5.0|131072,4096|-|-|shikibiaa/gensyn-checkpoints-foraging_peckish_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_melodic_alligator|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_melodic_alligator|C|1.0,5.0|131072,4096|-|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_melodic_alligator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_thriving_beaver|-|amirrr44/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_thriving_beaver|C|1.0,5.0|131072,4096|-|-|amirrr44/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_thriving_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_tropical_cheetah|-|kimminhtien/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_tropical_cheetah|C|1.0,5.0|131072,4096|-|-|kimminhtien/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_tropical_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_polished_tarantula|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_polished_tarantula|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_polished_tarantula model|N
featherless/Feynman-Grpo-Exp|feynman-grpo-exp|prithivMLmods/Feynman-Grpo-Exp|C|1.0,5.0|131072,4096|-|-|prithivMLmods/Feynman-Grpo-Exp model|N
featherless/gensyn-checkpoints-foraging_peckish_badger|-|tatsusal/gensyn-checkpoints-foraging_peckish_badger|C|1.0,5.0|131072,4096|-|-|tatsusal/gensyn-checkpoints-foraging_peckish_badger model|N
featherless/Qwen2.5_0.5B_MED|qwen2.5_0.5b_med|ballcos/Qwen2.5_0.5B_MED|C|1.0,5.0|131072,4096|-|-|ballcos/Qwen2.5_0.5B_MED model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_hunting_wasp|-|ybzxaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_hunting_wasp|C|1.0,5.0|131072,4096|-|-|ybzxaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_hunting_wasp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_slender_badger|-|skynetcrln/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_slender_badger|C|1.0,5.0|131072,4096|-|-|skynetcrln/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_slender_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_powerful_koala|-|fty7i/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_powerful_koala|C|1.0,5.0|131072,4096|-|-|fty7i/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_powerful_koala model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_opaque_opossum|-|codevoyager1984/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_opaque_opossum|C|1.0,5.0|131072,4096|-|-|codevoyager1984/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_opaque_opossum model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_beaked_goose|-|ibuyshite/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_beaked_goose|C|1.0,5.0|131072,4096|-|-|ibuyshite/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_beaked_goose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_prehistoric_wildebeest|-|junpeng2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_prehistoric_wildebeest|C|1.0,5.0|131072,4096|-|-|junpeng2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_prehistoric_wildebeest model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_skittish_viper|-|harmfull/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_skittish_viper|C|1.0,5.0|131072,4096|-|-|harmfull/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_skittish_viper model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_meek_badger|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_meek_badger|C|1.0,5.0|131072,4096|-|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_meek_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_lively_gecko|-|zx1219/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_lively_gecko|C|1.0,5.0|131072,4096|-|-|zx1219/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_lively_gecko model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_stocky_ocelot|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_stocky_ocelot|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_stocky_ocelot model|N
featherless/qwen2-0.5b-phase2-codexglue-lora-ff|qwen2-0.5b-phase2-codexglue-lora-ff|jtromero/qwen2-0.5b-phase2-codexglue-lora-ff|C|1.0,5.0|131072,4096|-|-|jtromero/qwen2-0.5b-phase2-codexglue-lora-ff model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_2000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_2000 model|N
featherless/qwen2.5-0.5B-IHA-Hin|qwen2.5-0.5b-iha-hin|jebish7/qwen2.5-0.5B-IHA-Hin|C|1.0,5.0|131072,4096|-|-|jebish7/qwen2.5-0.5B-IHA-Hin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_strong_salmon|-|teeuzor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_strong_salmon|C|1.0,5.0|131072,4096|-|-|teeuzor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_strong_salmon model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_6000_v1|qwen2.5-0.5b_mift_en_manywords_6000_v1|myst72/Qwen2.5-0.5B_MIFT_en_manywords_6000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_6000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_colorful_bee|-|lilTAT/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_colorful_bee|C|1.0,5.0|131072,4096|-|-|lilTAT/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_colorful_bee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_shaggy_bat|-|tanhuynh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_shaggy_bat|C|1.0,5.0|131072,4096|-|-|tanhuynh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_shaggy_bat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tame_orangutan|-|Alijr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tame_orangutan|C|1.0,5.0|131072,4096|-|-|Alijr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tame_orangutan model|N
featherless/Qwen2.5-0.5B_PIFT_enja_manywords_4000_v1|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_4000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_4000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_crested_ant|-|zhuyiyun1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_crested_ant|C|1.0,5.0|131072,4096|-|-|zhuyiyun1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_crested_ant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_tangled_seahorse|-|Mursik358/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_tangled_seahorse|C|1.0,5.0|131072,4096|-|-|Mursik358/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_tangled_seahorse model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_378|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_378|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_378 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_poisonous_bear|-|0xagentai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_poisonous_bear|C|1.0,5.0|131072,4096|-|-|0xagentai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_poisonous_bear model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_furry_chicken|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_furry_chicken|C|1.0,5.0|131072,4096|-|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_furry_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_opaque_marmot|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_opaque_marmot|C|1.0,5.0|131072,4096|-|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_opaque_marmot model|N
featherless/01262002-modify_tamplate-boxed-600filtering-processing|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing|C|1.0,5.0|131072,4096|-|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_playful_flamingo|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_playful_flamingo|C|1.0,5.0|131072,4096|-|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_playful_flamingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi|C|1.0,5.0|131072,4096|-|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_snappy_okapi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_squeaky_squirrel|-|naginagi22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_squeaky_squirrel|C|1.0,5.0|131072,4096|-|-|naginagi22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_squeaky_squirrel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_aquatic_squirrel|-|ajaycrypto003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_aquatic_squirrel|C|1.0,5.0|131072,4096|-|-|ajaycrypto003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_aquatic_squirrel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_flexible_buffalo|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_flexible_buffalo|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_flexible_buffalo model|N
featherless/gensyn-checkpoints-soft_toothy_elk|gensyn-checkpoints-soft_toothy_elk|nadukitsukiji/gensyn-checkpoints-soft_toothy_elk|C|1.0,5.0|131072,4096|-|-|nadukitsukiji/gensyn-checkpoints-soft_toothy_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_gregarious_fox|-|billionaire1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_gregarious_fox|C|1.0,5.0|131072,4096|-|-|billionaire1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_gregarious_fox model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_small_mandrill|-|koalamo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_small_mandrill|C|1.0,5.0|131072,4096|-|-|koalamo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_small_mandrill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_muscular_termite|-|okxolaph/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_muscular_termite|C|1.0,5.0|131072,4096|-|-|okxolaph/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_muscular_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_squeaky_rat|-|0xzer0day/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_squeaky_rat|C|1.0,5.0|131072,4096|-|-|0xzer0day/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_squeaky_rat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_lively_aardvark|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_lively_aardvark|C|1.0,5.0|131072,4096|-|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_lively_aardvark model|N
featherless/qwen2-8bit|qwen2-8bit|Nadiveedishravanreddy/qwen2-8bit|C|1.0,5.0|131072,4096|-|-|Nadiveedishravanreddy/qwen2-8bit model|N
featherless/openfin-0.5B-ZH-optimal-sft_ssl|openfin-0.5b-zh-optimal-sft_ssl|daishen/openfin-0.5B-ZH-optimal-sft_ssl|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_ssl model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_grassy_mosquito|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_grassy_mosquito|C|1.0,5.0|131072,4096|-|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_grassy_mosquito model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_vocal_slug|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_vocal_slug|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_vocal_slug model|N
featherless/gensyn-checkpoints-purring_jumping_bear|gensyn-checkpoints-purring_jumping_bear|tsukadegi/gensyn-checkpoints-purring_jumping_bear|C|1.0,5.0|131072,4096|-|-|tsukadegi/gensyn-checkpoints-purring_jumping_bear model|N
featherless/Qwen2.5-0.5B-Instruct-fp8-dynamic|qwen2.5-0.5b-instruct-fp8-dynamic|genovalabs/Qwen2.5-0.5B-Instruct-fp8-dynamic|C|1.0,5.0|131072,4096|-|-|genovalabs/Qwen2.5-0.5B-Instruct-fp8-dynamic model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_leaping_mole|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_leaping_mole|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_leaping_mole model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_shaggy_platypus|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_shaggy_platypus|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_shaggy_platypus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_masked_sheep|-|cuanx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_masked_sheep|C|1.0,5.0|131072,4096|-|-|cuanx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_masked_sheep model|N
featherless/qwen2.5-0.5B_drop_low20_edu_instruct-3|qwen2.5-0.5b_drop_low20_edu_instruct-3|NaoS2/qwen2.5-0.5B_drop_low20_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_low20_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_voracious_raccoon|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_voracious_raccoon|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_voracious_raccoon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_alert_salmon|-|joy67/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_alert_salmon|C|1.0,5.0|131072,4096|-|-|joy67/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_alert_salmon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_darting_deer|-|gapuknode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_darting_deer|C|1.0,5.0|131072,4096|-|-|gapuknode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_darting_deer model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_fast_beaver|-|inkjake/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_fast_beaver|C|1.0,5.0|131072,4096|-|-|inkjake/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_fast_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_slender_heron|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_slender_heron|C|1.0,5.0|131072,4096|-|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_slender_heron model|N
featherless/qwen2.5-0.5B_BIFT_manywords_4000|qwen2.5-0.5b_bift_manywords_4000|Hachipo/qwen2.5-0.5B_BIFT_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_BIFT_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_diving_snake|-|svax974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_diving_snake|C|1.0,5.0|131072,4096|-|-|svax974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_diving_snake model|N
featherless/Qwen2.5-0.5B-Instruct_Johnny_Silverhand_Merged|-|lewiswatson/Qwen2.5-0.5B-Instruct_Johnny_Silverhand_Merged|C|1.0,5.0|131072,4096|-|-|lewiswatson/Qwen2.5-0.5B-Instruct_Johnny_Silverhand_Merged model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_pesty_ferret|-|liweiweigg55634/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_pesty_ferret|C|1.0,5.0|131072,4096|-|-|liweiweigg55634/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_pesty_ferret model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_fierce_dove|-|lvcisco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_fierce_dove|C|1.0,5.0|131072,4096|-|-|lvcisco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_fierce_dove model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_striped_alligator|-|jaqen10/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_striped_alligator|C|1.0,5.0|131072,4096|-|-|jaqen10/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_striped_alligator model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-rslora-ALL-WEIGHT model|N
featherless/gensyn-checkpoints-meek_huge_tortoise|gensyn-checkpoints-meek_huge_tortoise|gogo514236/gensyn-checkpoints-meek_huge_tortoise|C|1.0,5.0|131072,4096|-|-|gogo514236/gensyn-checkpoints-meek_huge_tortoise model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_feathered_antelope|-|bingalik/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_feathered_antelope|C|1.0,5.0|131072,4096|-|-|bingalik/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_feathered_antelope model|N
featherless/Qwen2.5-0.5B-Instruct_Short_CoT|qwen2.5-0.5b-instruct_short_cot|UWNSL/Qwen2.5-0.5B-Instruct_Short_CoT|C|1.0,5.0|131072,4096|-|-|UWNSL/Qwen2.5-0.5B-Instruct_Short_CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_subtle_coyote|-|tranvatu1984/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_subtle_coyote|C|1.0,5.0|131072,4096|-|-|tranvatu1984/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_subtle_coyote model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_furry_tuna|-|ryan07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_furry_tuna|C|1.0,5.0|131072,4096|V|-|ryan07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_furry_tuna model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_silent_chicken|-|JJay999/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_silent_chicken|C|1.0,5.0|131072,4096|-|-|JJay999/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_silent_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_lazy_puma|-|Fronzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_lazy_puma|C|1.0,5.0|131072,4096|V|-|Fronzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_lazy_puma model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_whistling_iguana|-|andriuusa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_whistling_iguana|C|1.0,5.0|131072,4096|-|-|andriuusa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_whistling_iguana model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tropical_mallard|-|Priyanshu2666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tropical_mallard|C|1.0,5.0|131072,4096|-|-|Priyanshu2666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_tropical_mallard model|N
featherless/qwen2.5-0.5B_linear30_edu_instruct-3|qwen2.5-0.5b_linear30_edu_instruct-3|NaoS2/qwen2.5-0.5B_linear30_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_linear30_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_subtle_seal|-|k3mr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_subtle_seal|C|1.0,5.0|131072,4096|-|-|k3mr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_subtle_seal model|N
featherless/qwen2.5-0.5B-speculative-padded|qwen2.5-0.5b-speculative-padded|bpietroiu/qwen2.5-0.5B-speculative-padded|C|1.0,5.0|131072,4096|-|-|bpietroiu/qwen2.5-0.5B-speculative-padded model|N
featherless/gensyn-checkpoints-aquatic_raging_chimpanzee|-|zorotsuyoi/gensyn-checkpoints-aquatic_raging_chimpanzee|C|1.0,5.0|131072,4096|-|-|zorotsuyoi/gensyn-checkpoints-aquatic_raging_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_diving_capybara|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_diving_capybara|C|1.0,5.0|131072,4096|-|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_diving_capybara model|N
featherless/gensyn-checkpoints-quick_eager_hippo|gensyn-checkpoints-quick_eager_hippo|launchpd3/gensyn-checkpoints-quick_eager_hippo|C|1.0,5.0|131072,4096|-|-|launchpd3/gensyn-checkpoints-quick_eager_hippo model|N
featherless/gensyn-checkpoints-stocky_whistling_cassowary|-|naisekol/gensyn-checkpoints-stocky_whistling_cassowary|C|1.0,5.0|131072,4096|-|-|naisekol/gensyn-checkpoints-stocky_whistling_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_lumbering_ostrich|-|miftaikyy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_lumbering_ostrich|C|1.0,5.0|131072,4096|-|-|miftaikyy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_lumbering_ostrich model|N
featherless/Qwen2.5-0.5B_PIFT_jaen_manywords_2000_v1|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_2000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_2000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_tricky_ram|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_tricky_ram|C|1.0,5.0|131072,4096|-|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_tricky_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_insectivorous_cougar|-|brodhacke/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_insectivorous_cougar|C|1.0,5.0|131072,4096|-|-|brodhacke/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_insectivorous_cougar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gliding_newt|-|Alphaaweb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gliding_newt|C|1.0,5.0|131072,4096|-|-|Alphaaweb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_gliding_newt model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_nasty_panda|-|flote2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_nasty_panda|C|1.0,5.0|131072,4096|-|-|flote2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_nasty_panda model|N
featherless/qwen0.5b-01251424-AI-MO_NuminaMath-CoT|qwen0.5b-01251424-ai-mo_numinamath-cot|azxky6645/qwen0.5b-01251424-AI-MO_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-01251424-AI-MO_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-exotic_pawing_wombat|-|pavlodp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-exotic_pawing_wombat|C|1.0,5.0|131072,4096|-|-|pavlodp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-exotic_pawing_wombat model|N
featherless/qwen0.5b-tech-interview-test-100000-prep|-|azxky6645/qwen0.5b-tech-interview-test-100000-prep|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-tech-interview-test-100000-prep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_energetic_albatross|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_energetic_albatross|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_energetic_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_fleecy_kiwi|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_fleecy_kiwi|C|1.0,5.0|131072,4096|-|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_fleecy_kiwi model|N
featherless/qwen2.5-0.5B_MIFT-ja_onsentence_2000|qwen2.5-0.5b_mift-ja_onsentence_2000|Hachipo/qwen2.5-0.5B_MIFT-ja_onsentence_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_onsentence_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_barky_cheetah|-|beerusreturns/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_barky_cheetah|C|1.0,5.0|131072,4096|-|-|beerusreturns/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_barky_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_slimy_duck|-|bikazeAI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_slimy_duck|C|1.0,5.0|131072,4096|-|-|bikazeAI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_slimy_duck model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_quiet_cougar|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_quiet_cougar|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinging_quiet_cougar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_large_kiwi|-|0xaji/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_large_kiwi|C|1.0,5.0|131072,4096|-|-|0xaji/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_large_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_polished_butterfly|-|aisktig/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_polished_butterfly|C|1.0,5.0|131072,4096|-|-|aisktig/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_polished_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_scented_mouse|-|gianghaidang81/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_scented_mouse|C|1.0,5.0|131072,4096|-|-|gianghaidang81/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_scented_mouse model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.0-150|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-150|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-150 model|N
featherless/qwen2.5-0.5B_MIFT-ja_manywords_2000|qwen2.5-0.5b_mift-ja_manywords_2000|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_singing_butterfly|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_singing_butterfly|C|1.0,5.0|131072,4096|-|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_singing_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_prowling_hedgehog|-|conich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_prowling_hedgehog|C|1.0,5.0|131072,4096|-|-|conich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_prowling_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bold_stingray|-|ogeleka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bold_stingray|C|1.0,5.0|131072,4096|-|-|ogeleka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bold_stingray model|N
featherless/qwen2.5-0.5B_drop_uni20_edu_instruct-3_2|-|NaoS2/qwen2.5-0.5B_drop_uni20_edu_instruct-3_2|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_uni20_edu_instruct-3_2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_fleecy_pheasant|-|iambitcoiner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_fleecy_pheasant|C|1.0,5.0|131072,4096|-|-|iambitcoiner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_fleecy_pheasant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_arctic_dinosaur|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_arctic_dinosaur|C|1.0,5.0|131072,4096|-|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_arctic_dinosaur model|N
featherless/Qwen2.5-Coder-0.5B_mergelinear0.8|qwen2.5-coder-0.5b_mergelinear0.8|noirchan/Qwen2.5-Coder-0.5B_mergelinear0.8|C|1.0,5.0|131072,4096|-|-|noirchan/Qwen2.5-Coder-0.5B_mergelinear0.8 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_sleek_mallard|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_sleek_mallard|C|1.0,5.0|131072,4096|-|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_sleek_mallard model|N
featherless/Tuza-Coder-v0.1|tuza-coder|miguelamendez/Tuza-Coder-v0.1|C|1.0,5.0|131072,4096|V|-|miguelamendez/Tuza-Coder-v0.1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_majestic_meerkat|-|heliosneo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_majestic_meerkat|C|1.0,5.0|131072,4096|-|-|heliosneo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_majestic_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_stalking_mallard|-|marco4678/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_stalking_mallard|C|1.0,5.0|131072,4096|-|-|marco4678/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_stalking_mallard model|N
featherless/s1-20250220_020221|s1-20250220_020221|dacson/s1-20250220_020221|C|1.0,5.0|131072,4096|-|-|dacson/s1-20250220_020221 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_jagged_dingo|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_jagged_dingo|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_jagged_dingo model|N
featherless/Qwen-0.5b-Code-Reasoning-v1|qwen-0.5b-code-reasoning|AdithyaSK/Qwen-0.5b-Code-Reasoning-v1|C|1.0,5.0|131072,4096|VK|-|AdithyaSK/Qwen-0.5b-Code-Reasoning-v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_fleecy_crane|-|TheRiddler01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_fleecy_crane|C|1.0,5.0|131072,4096|-|-|TheRiddler01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_fleecy_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_tall_caribou|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_tall_caribou|C|1.0,5.0|131072,4096|-|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_tall_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_whiskered_porcupine|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_whiskered_porcupine|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_whiskered_porcupine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_peckish_cheetah|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_peckish_cheetah|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_peckish_cheetah model|N
featherless/sql_interp_bm2_cs3_experiment_6.3|sql_interp_bm2_cs3_experiment_6.3|withmartian/sql_interp_bm2_cs3_experiment_6.3|C|1.0,5.0|131072,4096|-|-|withmartian/sql_interp_bm2_cs3_experiment_6.3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_padded_cow|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_padded_cow|C|1.0,5.0|131072,4096|-|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_padded_cow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot|C|1.0,5.0|131072,4096|-|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_jumping_pheasant|-|dendyro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_jumping_pheasant|C|1.0,5.0|131072,4096|-|-|dendyro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_jumping_pheasant model|N
featherless/qwen0.5b-01251557-AI-MO_NuminaMath-CoT|qwen0.5b-01251557-ai-mo_numinamath-cot|azxky6645/qwen0.5b-01251557-AI-MO_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-01251557-AI-MO_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_nimble_opossum|-|gangchen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_nimble_opossum|C|1.0,5.0|131072,4096|-|-|gangchen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_nimble_opossum model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_80|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_80|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_80 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_nasty_magpie|-|phamvanannd2000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_nasty_magpie|C|1.0,5.0|131072,4096|-|-|phamvanannd2000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_nasty_magpie model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_freckled_worm|-|asdasdaTes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_freckled_worm|C|1.0,5.0|131072,4096|-|-|asdasdaTes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_freckled_worm model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_rugged_clam|-|Ruzel23/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_rugged_clam|C|1.0,5.0|131072,4096|-|-|Ruzel23/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_rugged_clam model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_tropical_puma|-|yusufaytn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_tropical_puma|C|1.0,5.0|131072,4096|-|-|yusufaytn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_tropical_puma model|N
featherless/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_nimble_wolf|-|CarolTa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_nimble_wolf|C|1.0,5.0|131072,4096|-|-|CarolTa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_nimble_wolf model|N
featherless/Qwen_WhatTheFuck|qwen_whatthefuck|stupidity-ai/Qwen_WhatTheFuck|C|1.0,5.0|131072,4096|-|-|stupidity-ai/Qwen_WhatTheFuck model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_toothy_elk|-|okuzarabasi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_toothy_elk|C|1.0,5.0|131072,4096|-|-|okuzarabasi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_toothy_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_gregarious_mink|-|agofun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_gregarious_mink|C|1.0,5.0|131072,4096|-|-|agofun/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_gregarious_mink model|N
featherless/Qwen2.5-0.5B-0.1-H|qwen2.5-0.5b-0.1-h|akhadangi/Qwen2.5-0.5B-0.1-H|C|1.0,5.0|131072,4096|-|-|akhadangi/Qwen2.5-0.5B-0.1-H model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_energetic_camel|-|james215/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_energetic_camel|C|1.0,5.0|131072,4096|-|-|james215/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_energetic_camel model|N
featherless/Qwen2-0.5B-stf-tldr|qwen2-0.5b-stf-tldr|Kyleyee/Qwen2-0.5B-stf-tldr|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-stf-tldr model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dextrous_seal|-|aboychura/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dextrous_seal|C|1.0,5.0|131072,4096|-|-|aboychura/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dextrous_seal model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_voracious_duck|-|sondekom/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_voracious_duck|C|1.0,5.0|131072,4096|-|-|sondekom/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_voracious_duck model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_colorful_shrew|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_colorful_shrew|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_colorful_shrew model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tropical_fly|-|TheRiddler01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tropical_fly|C|1.0,5.0|131072,4096|-|-|TheRiddler01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_tropical_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_burrowing_hamster|-|pokemonying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_burrowing_hamster|C|1.0,5.0|131072,4096|V|-|pokemonying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_burrowing_hamster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_knobby_crocodile|-|7562lKgelbA25qk0c/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_knobby_crocodile|C|1.0,5.0|131072,4096|-|-|7562lKgelbA25qk0c/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_knobby_crocodile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_scruffy_ibis|-|kvnery02/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_scruffy_ibis|C|1.0,5.0|131072,4096|-|-|kvnery02/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_scruffy_ibis model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_dense_salamander|-|zeriong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_dense_salamander|C|1.0,5.0|131072,4096|-|-|zeriong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_dense_salamander model|N
featherless/Qwen-0.5B-GRPO|qwen-0.5b-grpo|emre/Qwen-0.5B-GRPO|C|1.0,5.0|131072,4096|-|-|emre/Qwen-0.5B-GRPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_sharp_squid|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_sharp_squid|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_sharp_squid model|N
featherless/qwen2-0.5b-4bit-quantized-for-tagging|qwen2-0.5b-4bit-quantized-for-tagging|ichi-kom/qwen2-0.5b-4bit-quantized-for-tagging|C|1.0,5.0|131072,4096|-|-|ichi-kom/qwen2-0.5b-4bit-quantized-for-tagging model|N
featherless/gensyn-checkpoints-enormous_bellowing_elephant|-|boredsxe/gensyn-checkpoints-enormous_bellowing_elephant|C|1.0,5.0|131072,4096|-|-|boredsxe/gensyn-checkpoints-enormous_bellowing_elephant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_durable_termite|-|fuckfiat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_durable_termite|C|1.0,5.0|131072,4096|-|-|fuckfiat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_durable_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_vigilant_mosquito|-|ylou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_vigilant_mosquito|C|1.0,5.0|131072,4096|-|-|ylou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_vigilant_mosquito model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_quiet_crab|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_quiet_crab|C|1.0,5.0|131072,4096|-|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_quiet_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_pawing_heron|-|tancon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_pawing_heron|C|1.0,5.0|131072,4096|-|-|tancon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_pawing_heron model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_savage_caribou|-|perec88/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_savage_caribou|C|1.0,5.0|131072,4096|-|-|perec88/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_savage_caribou model|N
featherless/qwen2-0.5b-lora-single-device-ff-testing|-|jtromero/qwen2-0.5b-lora-single-device-ff-testing|C|1.0,5.0|131072,4096|-|-|jtromero/qwen2-0.5b-lora-single-device-ff-testing model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_lightfooted_marmot|-|adsaewfsd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_lightfooted_marmot|C|1.0,5.0|131072,4096|-|-|adsaewfsd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_lightfooted_marmot model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foraging_shaggy_snail|-|JIGGYVERSE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foraging_shaggy_snail|C|1.0,5.0|131072,4096|-|-|JIGGYVERSE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foraging_shaggy_snail model|N
featherless/qwen2-0.5b|qwen2-0.5b|goktugkoksal/qwen2-0.5b|C|1.0,5.0|131072,4096|-|-|goktugkoksal/qwen2-0.5b model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_screeching_toucan|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_screeching_toucan|C|1.0,5.0|131072,4096|-|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_screeching_toucan model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_silky_tamarin|-|qqil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_silky_tamarin|C|1.0,5.0|131072,4096|-|-|qqil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_silky_tamarin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_shiny_crab|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_shiny_crab|C|1.0,5.0|131072,4096|-|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_shiny_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_polished_cobra|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_polished_cobra|C|1.0,5.0|131072,4096|-|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_polished_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_flexible_shrimp|-|senatorerom/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_flexible_shrimp|C|1.0,5.0|131072,4096|-|-|senatorerom/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_flexible_shrimp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_stealthy_chimpanzee|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_stealthy_chimpanzee|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_stealthy_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_hulking_bear|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_hulking_bear|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sleek_hulking_bear model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|czczup/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|czczup/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_savage_baboon|-|shashwat-nandan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_savage_baboon|C|1.0,5.0|131072,4096|-|-|shashwat-nandan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_savage_baboon model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|jnian/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|jnian/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/countdown_rloo_v3|countdown_rloo_v3|stefandi/countdown_rloo_v3|C|1.0,5.0|131072,4096|-|-|stefandi/countdown_rloo_v3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|C|1.0,5.0|131072,4096|-|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_bipedal_robin|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_bipedal_robin|C|1.0,5.0|131072,4096|-|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_bipedal_robin model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_100|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_100|C|1.0,5.0|131072,4096|K|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_100 model|N
featherless/Qwen2.5-0.5B_BIFT_manywords_6000_v1|qwen2.5-0.5b_bift_manywords_6000_v1|myst72/Qwen2.5-0.5B_BIFT_manywords_6000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_BIFT_manywords_6000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|C|1.0,5.0|131072,4096|-|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep model|N
featherless/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_en_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_horned_sheep|-|amir80907863/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_horned_sheep|C|1.0,5.0|131072,4096|-|-|amir80907863/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_horned_sheep model|N
featherless/gensyn-checkpoints-wily_burrowing_spider|-|daouncl/gensyn-checkpoints-wily_burrowing_spider|C|1.0,5.0|131072,4096|-|-|daouncl/gensyn-checkpoints-wily_burrowing_spider model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dappled_shrimp|-|gamewish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dappled_shrimp|C|1.0,5.0|131072,4096|-|-|gamewish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_dappled_shrimp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_rangy_chicken|-|Priyanshu2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_rangy_chicken|C|1.0,5.0|131072,4096|-|-|Priyanshu2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_rangy_chicken model|N
featherless/gensyn-checkpoints-hunting_fanged_cheetah|-|atakat598/gensyn-checkpoints-hunting_fanged_cheetah|C|1.0,5.0|131072,4096|-|-|atakat598/gensyn-checkpoints-hunting_fanged_cheetah model|N
featherless/Qwen2.5-Coder-0.5B-Instruct|qwen2.5-coder-0.5b-instruct|oieieio/Qwen2.5-Coder-0.5B-Instruct|C|1.0,5.0|131072,4096|-|42.0,,,,,,,,,|oieieio/Qwen2.5-Coder-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_barky_meerkat|-|zeriong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_barky_meerkat|C|1.0,5.0|131072,4096|-|-|zeriong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_barky_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_striped_chinchilla|-|oladrop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_striped_chinchilla|C|1.0,5.0|131072,4096|-|-|oladrop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_striped_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_aquatic_bee|-|0xNomind/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_aquatic_bee|C|1.0,5.0|131072,4096|V|-|0xNomind/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_aquatic_bee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_flexible_shrimp|-|Adsonra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_flexible_shrimp|C|1.0,5.0|131072,4096|-|-|Adsonra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_flexible_shrimp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_loud_vulture|-|ambankent047/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_loud_vulture|C|1.0,5.0|131072,4096|-|-|ambankent047/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_loud_vulture model|N
featherless/qwen2-0.5b-arxiv-300|qwen2-0.5b-arxiv-300|AIArchitect23/qwen2-0.5b-arxiv-300|C|1.0,5.0|131072,4096|-|-|AIArchitect23/qwen2-0.5b-arxiv-300 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_leggy_kangaroo|-|mougoldryh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_leggy_kangaroo|C|1.0,5.0|131072,4096|-|-|mougoldryh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_leggy_kangaroo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_graceful_caribou|-|Oyeka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_graceful_caribou|C|1.0,5.0|131072,4096|-|-|Oyeka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_graceful_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_lanky_camel|-|amilo77/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_lanky_camel|C|1.0,5.0|131072,4096|-|-|amilo77/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_lanky_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_patterned_grasshopper|-|MalvinasMan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_patterned_grasshopper|C|1.0,5.0|131072,4096|-|-|MalvinasMan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_patterned_grasshopper model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_lumbering_gazelle|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_lumbering_gazelle|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_lumbering_gazelle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_silent_python|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_silent_python|C|1.0,5.0|131072,4096|-|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_silent_python model|N
featherless/GRPOtuned2|grpotuned2|HarleyCooper/GRPOtuned2|C|1.0,5.0|131072,4096|-|-|HarleyCooper/GRPOtuned2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_silky_shrimp|-|bocilanomali/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_silky_shrimp|C|1.0,5.0|131072,4096|-|-|bocilanomali/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_silky_shrimp model|N
featherless/bloomVN-0.5B-ppo-sft-his-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-his-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-his-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_carnivorous_caterpillar|-|68g34eg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_carnivorous_caterpillar|C|1.0,5.0|131072,4096|-|-|68g34eg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_carnivorous_caterpillar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_placid_cat|-|aksamlan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_placid_cat|C|1.0,5.0|131072,4096|-|-|aksamlan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_placid_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_prehistoric_starfish|-|yangchunhua556/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_prehistoric_starfish|C|1.0,5.0|131072,4096|-|-|yangchunhua556/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_prehistoric_starfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_fluffy_horse|-|minhtri12129/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_fluffy_horse|C|1.0,5.0|131072,4096|-|-|minhtri12129/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_fluffy_horse model|N
featherless/qwen-2.5-0.5b-r1-countdown_lr1.0e-6|qwen-2.5-0.5b-r1-countdown_lr1.0e-6|hyunw3/qwen-2.5-0.5b-r1-countdown_lr1.0e-6|C|1.0,5.0|131072,4096|-|-|hyunw3/qwen-2.5-0.5b-r1-countdown_lr1.0e-6 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_fishy_meerkat|-|XY4DoxLbafjuczRqoP/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_fishy_meerkat|C|1.0,5.0|131072,4096|-|-|XY4DoxLbafjuczRqoP/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_fishy_meerkat model|N
featherless/a5_dpo_qwen2|a5_dpo_qwen2|nyeinchanaung/a5_dpo_qwen2|C|1.0,5.0|131072,4096|-|-|nyeinchanaung/a5_dpo_qwen2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_arctic_alpaca|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_arctic_alpaca|C|1.0,5.0|131072,4096|-|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_arctic_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_stubby_hawk|-|Karai031/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_stubby_hawk|C|1.0,5.0|131072,4096|-|-|Karai031/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_stubby_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_bold_cheetah|-|ryokuchasan3333333/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_bold_cheetah|C|1.0,5.0|131072,4096|-|-|ryokuchasan3333333/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_bold_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_flexible_camel|-|dinozavr666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_flexible_camel|C|1.0,5.0|131072,4096|-|-|dinozavr666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_flexible_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_finicky_horse|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_finicky_horse|C|1.0,5.0|131072,4096|-|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_finicky_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_thriving_monkey|-|p0k/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_thriving_monkey|C|1.0,5.0|131072,4096|-|-|p0k/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_thriving_monkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_stalking_fly|-|Gigimelon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_stalking_fly|C|1.0,5.0|131072,4096|-|-|Gigimelon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_stalking_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_agile_camel|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_agile_camel|C|1.0,5.0|131072,4096|-|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_agile_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_downy_pigeon|-|keyur021/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_downy_pigeon|C|1.0,5.0|131072,4096|-|-|keyur021/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_downy_pigeon model|N
featherless/gensyn-checkpoints-shy_yapping_puma|gensyn-checkpoints-shy_yapping_puma|gmwagmi7/gensyn-checkpoints-shy_yapping_puma|C|1.0,5.0|131072,4096|-|-|gmwagmi7/gensyn-checkpoints-shy_yapping_puma model|N
featherless/Qwen2-0.5B-stf-hh|qwen2-0.5b-stf-hh|Kyleyee/Qwen2-0.5B-stf-hh|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-stf-hh model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_tawny_pigeon|-|lukedazo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_tawny_pigeon|C|1.0,5.0|131072,4096|-|-|lukedazo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_tawny_pigeon model|N
featherless/audit_regulation_lr4|audit_regulation_lr4|daishen/audit_regulation_lr4|C|1.0,5.0|131072,4096|-|-|daishen/audit_regulation_lr4 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_sly_flea|-|qwkvio/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_sly_flea|C|1.0,5.0|131072,4096|-|-|qwkvio/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_sly_flea model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_thick_orangutan|-|jamesluca/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_thick_orangutan|C|1.0,5.0|131072,4096|-|-|jamesluca/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_thick_orangutan model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_insectivorous_tapir|-|anthropinostheos/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_insectivorous_tapir|C|1.0,5.0|131072,4096|-|-|anthropinostheos/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-elusive_insectivorous_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slender_jellyfish|-|d1isikea/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slender_jellyfish|C|1.0,5.0|131072,4096|-|-|d1isikea/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slender_jellyfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_howling_dingo|-|elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_howling_dingo|C|1.0,5.0|131072,4096|-|-|elsvastika/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_howling_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-EmbodiedZero|qwen2.5-0.5b-instruct-embodiedzero|jonatatyska/Qwen2.5-0.5B-Instruct-EmbodiedZero|C|1.0,5.0|131072,4096|-|-|jonatatyska/Qwen2.5-0.5B-Instruct-EmbodiedZero model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm|-|luckydao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm|C|1.0,5.0|131072,4096|-|-|luckydao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_majestic_salamander|-|gv6037/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_majestic_salamander|C|1.0,5.0|131072,4096|-|-|gv6037/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_majestic_salamander model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_slow_butterfly|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_slow_butterfly|C|1.0,5.0|131072,4096|-|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_slow_butterfly model|N
featherless/qwen2.5-0.5B_ed_gauss_freq_10-3|qwen2.5-0.5b_ed_gauss_freq_10-3|komi77/qwen2.5-0.5B_ed_gauss_freq_10-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_freq_10-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_majestic_badger|-|marinroumain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_majestic_badger|C|1.0,5.0|131072,4096|-|-|marinroumain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_majestic_badger model|N
featherless/Qwen2-0.5B-drpo-imdb-loss1_only-5|qwen2-0.5b-drpo-imdb-loss1_only-5|Eehan/Qwen2-0.5B-drpo-imdb-loss1_only-5|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-loss1_only-5 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_armored_rabbit|-|Oyeka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_armored_rabbit|C|1.0,5.0|131072,4096|-|-|Oyeka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_armored_rabbit model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-olora-ALL-WEIGHT model|N
featherless/openfin-0.5B-ZH-optimal-sft_sss|openfin-0.5b-zh-optimal-sft_sss|daishen/openfin-0.5B-ZH-optimal-sft_sss|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_sss model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_wary_armadillo|-|AndrewWinchester/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_wary_armadillo|C|1.0,5.0|131072,4096|-|-|AndrewWinchester/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_wary_armadillo model|N
featherless/test8|test8|teenysheep/test8|C|1.0,5.0|131072,4096|-|-|teenysheep/test8 model|N
featherless/Qwen2-0.5B-countdown|qwen2-0.5b-countdown|AndreasX1206/Qwen2-0.5B-countdown|C|1.0,5.0|131072,4096|-|-|AndreasX1206/Qwen2-0.5B-countdown model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_dextrous_eagle|-|pymparticles/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_dextrous_eagle|C|1.0,5.0|131072,4096|-|-|pymparticles/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-poisonous_dextrous_eagle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_fishy_cobra|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_fishy_cobra|C|1.0,5.0|131072,4096|-|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_fishy_cobra model|N
featherless/locfaq_2epochs|locfaq_2epochs|teenysheep/locfaq_2epochs|C|1.0,5.0|131072,4096|-|-|teenysheep/locfaq_2epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_foraging_tuna|-|myonlygithub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_foraging_tuna|C|1.0,5.0|131072,4096|-|-|myonlygithub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_foraging_tuna model|N
featherless/openfin-0.5B-ZH-optimal-sft_ice_find|openfin-0.5b-zh-optimal-sft_ice_find|daishen/openfin-0.5B-ZH-optimal-sft_ice_find|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_ice_find model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_aquatic_mammoth|-|jhonwick789/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_aquatic_mammoth|C|1.0,5.0|131072,4096|-|-|jhonwick789/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_aquatic_mammoth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_scurrying_cat|-|gangchen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_scurrying_cat|C|1.0,5.0|131072,4096|-|-|gangchen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_scurrying_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_tropical_dinosaur|-|ARSHAMJAN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_tropical_dinosaur|C|1.0,5.0|131072,4096|-|-|ARSHAMJAN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_tropical_dinosaur model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-lora-ALL-WEIGHT model|N
featherless/dpo-sft-model|dpo-sft-model|bhavya777/dpo-sft-model|C|1.0,5.0|131072,4096|-|-|bhavya777/dpo-sft-model model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_alert_kangaroo|-|jiushilm/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_alert_kangaroo|C|1.0,5.0|131072,4096|-|-|jiushilm/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_alert_kangaroo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_rugged_crocodile|-|kingtianbao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_rugged_crocodile|C|1.0,5.0|131072,4096|-|-|kingtianbao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_rugged_crocodile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_tawny_hamster|-|handlerxxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_tawny_hamster|C|1.0,5.0|131072,4096|-|-|handlerxxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_tawny_hamster model|N
featherless/bloomVN-0.5B-ppo-sft-geo-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-rslora-ALL-WEIGHT model|N
featherless/Qwen2-0.5B-SFT-full2f|qwen2-0.5b-sft-full2f|Mehrdadslehi/Qwen2-0.5B-SFT-full2f|C|1.0,5.0|131072,4096|-|-|Mehrdadslehi/Qwen2-0.5B-SFT-full2f model|N
featherless/trainer_output|trainer_output|bert-base/trainer_output|C|1.0,5.0|131072,4096|-|-|bert-base/trainer_output model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_extinct_turtle|-|LiuBoil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_extinct_turtle|C|1.0,5.0|131072,4096|-|-|LiuBoil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_extinct_turtle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_mute_cassowary|-|ragnarr2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_mute_cassowary|C|1.0,5.0|131072,4096|-|-|ragnarr2025/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_mute_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_sprightly_wallaby|-|nutsurbaby/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_sprightly_wallaby|C|1.0,5.0|131072,4096|-|-|nutsurbaby/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_sprightly_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_ravenous_stork|-|JennyChen03/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_ravenous_stork|C|1.0,5.0|131072,4096|-|-|JennyChen03/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_ravenous_stork model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_slow_locust|-|Siavash3441/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_slow_locust|C|1.0,5.0|131072,4096|-|-|Siavash3441/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_slow_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_flightless_prawn|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_flightless_prawn|C|1.0,5.0|131072,4096|-|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_flightless_prawn model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-lora-ALL-WEIGHT model|N
featherless/sft_v2_6000|sft_v2_6000|tungduong261204/sft_v2_6000|C|1.0,5.0|131072,4096|-|-|tungduong261204/sft_v2_6000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_stubby_porpoise|-|mukku000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_stubby_porpoise|C|1.0,5.0|131072,4096|-|-|mukku000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_stubby_porpoise model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_alert_viper|-|JackLorAgain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_alert_viper|C|1.0,5.0|131072,4096|-|-|JackLorAgain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_alert_viper model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_thorny_crab|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_thorny_crab|C|1.0,5.0|131072,4096|-|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_thorny_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_foxy_beaver|-|Jarrodbarnes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_foxy_beaver|C|1.0,5.0|131072,4096|-|-|Jarrodbarnes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_foxy_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_bipedal_wombat|-|Newsizee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_bipedal_wombat|C|1.0,5.0|131072,4096|-|-|Newsizee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_bipedal_wombat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_agile_camel|-|taivibuy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_agile_camel|C|1.0,5.0|131072,4096|-|-|taivibuy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_agile_camel model|N
featherless/Expanded_Qwen0.5B|expanded_qwen0.5b|shb2024/Expanded_Qwen0.5B|C|1.0,5.0|131072,4096|-|-|shb2024/Expanded_Qwen0.5B model|N
featherless/qwen2.5-0.5B_ed_gauss_low_10-3|qwen2.5-0.5b_ed_gauss_low_10-3|komi77/qwen2.5-0.5B_ed_gauss_low_10-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_low_10-3 model|N
featherless/GeminiChosen-rejected_train_vi-0.7Beta-5epochs|-|Bmingg/GeminiChosen-rejected_train_vi-0.7Beta-5epochs|C|1.0,5.0|131072,4096|-|-|Bmingg/GeminiChosen-rejected_train_vi-0.7Beta-5epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_rangy_bobcat|-|arshiags/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_rangy_bobcat|C|1.0,5.0|131072,4096|-|-|arshiags/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_rangy_bobcat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_scented_fox|-|tfYlxrpiND/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_scented_fox|C|1.0,5.0|131072,4096|-|-|tfYlxrpiND/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_scented_fox model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python|-|CryptoDyudster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python|C|1.0,5.0|131072,4096|-|-|CryptoDyudster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_dormant_warthog|-|ryangensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_dormant_warthog|C|1.0,5.0|131072,4096|-|-|ryangensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_dormant_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_fierce_hawk|-|nitishwagmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_fierce_hawk|C|1.0,5.0|131072,4096|V|-|nitishwagmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_fierce_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_small_hare|-|chance2dance/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_small_hare|C|1.0,5.0|131072,4096|-|-|chance2dance/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_small_hare model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_unseen_buffalo|-|bourne321/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_unseen_buffalo|C|1.0,5.0|131072,4096|-|-|bourne321/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_unseen_buffalo model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_soaring_pheasant|-|nhimtho231/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_soaring_pheasant|C|1.0,5.0|131072,4096|-|-|nhimtho231/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_soaring_pheasant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_nimble_bee|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_nimble_bee|C|1.0,5.0|131072,4096|-|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_nimble_bee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_bold_sealion|-|noderunners/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_bold_sealion|C|1.0,5.0|131072,4096|-|-|noderunners/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_bold_sealion model|N
featherless/Qwen2-0.5B-GRPO-summarize-2025-03-17-20750|-|aidando73/Qwen2-0.5B-GRPO-summarize-2025-03-17-20750|C|1.0,5.0|131072,4096|-|-|aidando73/Qwen2-0.5B-GRPO-summarize-2025-03-17-20750 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_large_hedgehog|-|sennaF1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_large_hedgehog|C|1.0,5.0|131072,4096|-|-|sennaF1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_large_hedgehog model|N
featherless/qwen2.5-0.5B_freq15_edu_instruct-3|qwen2.5-0.5b_freq15_edu_instruct-3|NaoS2/qwen2.5-0.5B_freq15_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_freq15_edu_instruct-3 model|N
featherless/Qwen2-0.5B-DRDPO-imdb-subsft-reverse-preference|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft-reverse-preference|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft-reverse-preference model|N
featherless/qwen2.5-0.5B_low10_edu_instruct-3|qwen2.5-0.5b_low10_edu_instruct-3|NaoS2/qwen2.5-0.5B_low10_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_low10_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_feline_dog|-|tommasso/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_feline_dog|C|1.0,5.0|131072,4096|-|-|tommasso/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_feline_dog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_arctic_mole|-|ebnu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_arctic_mole|C|1.0,5.0|131072,4096|-|-|ebnu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_arctic_mole model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_tall_anaconda|-|ledemsy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_tall_anaconda|C|1.0,5.0|131072,4096|-|-|ledemsy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_tall_anaconda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach|-|gamewish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach|C|1.0,5.0|131072,4096|-|-|gamewish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_horned_anteater|-|kinhmateyepro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_horned_anteater|C|1.0,5.0|131072,4096|-|-|kinhmateyepro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_horned_anteater model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_keen_monkey|-|Iscolee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_keen_monkey|C|1.0,5.0|131072,4096|-|-|Iscolee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_keen_monkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_hedgehog|-|jjh622a/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_hedgehog|C|1.0,5.0|131072,4096|-|-|jjh622a/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_spotted_puma|-|scor121/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_spotted_puma|C|1.0,5.0|131072,4096|-|-|scor121/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_spotted_puma model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_thriving_cobra|-|Riotffx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_thriving_cobra|C|1.0,5.0|131072,4096|-|-|Riotffx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_thriving_cobra model|N
featherless/Qwen2.5-0.5B_PIFT-jaen_8250|qwen2.5-0.5b_pift-jaen_8250|Hachipo/Qwen2.5-0.5B_PIFT-jaen_8250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_PIFT-jaen_8250 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sturdy_pensive_yak|-|revonodes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sturdy_pensive_yak|C|1.0,5.0|131072,4096|-|-|revonodes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sturdy_pensive_yak model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_slow_tuna|-|blueyori/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_slow_tuna|C|1.0,5.0|131072,4096|-|-|blueyori/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_slow_tuna model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_snappy_chimpanzee|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_snappy_chimpanzee|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_snappy_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_caterpillar|-|supraemotion/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_caterpillar|C|1.0,5.0|131072,4096|-|-|supraemotion/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_striped_caterpillar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_dormant_chameleon|-|Dombilii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_dormant_chameleon|C|1.0,5.0|131072,4096|-|-|Dombilii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_dormant_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_prickly_dove|-|baninazar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_prickly_dove|C|1.0,5.0|131072,4096|-|-|baninazar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_prickly_dove model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slow_seahorse|-|sachinjkil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slow_seahorse|C|1.0,5.0|131072,4096|-|-|sachinjkil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_slow_seahorse model|N
featherless/openfin-0.5B-ZH-optimal-sft_lls|openfin-0.5b-zh-optimal-sft_lls|daishen/openfin-0.5B-ZH-optimal-sft_lls|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_lls model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby|-|0xgumi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby|C|1.0,5.0|131072,4096|-|-|0xgumi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby model|N
featherless/qwen2-0.5b-lora-no-ff-aws|qwen2-0.5b-lora-no-ff-aws|jtromero/qwen2-0.5b-lora-no-ff-aws|C|1.0,5.0|131072,4096|-|-|jtromero/qwen2-0.5b-lora-no-ff-aws model|N
featherless/test11|test11|teenysheep/test11|C|1.0,5.0|131072,4096|-|-|teenysheep/test11 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_barky_ibis|-|0xibe/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_barky_ibis|C|1.0,5.0|131072,4096|-|-|0xibe/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_barky_ibis model|N
featherless/Qwen2-0.5B-DPO-imdb_kl_02|qwen2-0.5b-dpo-imdb_kl_02|Kyleyee/Qwen2-0.5B-DPO-imdb_kl_02|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DPO-imdb_kl_02 model|N
featherless/01262129-modify_tamplate-boxed-600filtering-processing-20epochs|-|azxky6645/01262129-modify_tamplate-boxed-600filtering-processing-20epochs|C|1.0,5.0|131072,4096|-|-|azxky6645/01262129-modify_tamplate-boxed-600filtering-processing-20epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_waddling_deer|-|Bobalo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_waddling_deer|C|1.0,5.0|131072,4096|-|-|Bobalo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_waddling_deer model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_striped_frog|-|Rahul39/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_striped_frog|C|1.0,5.0|131072,4096|-|-|Rahul39/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_striped_frog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_hardy_alpaca|-|ywahyu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_hardy_alpaca|C|1.0,5.0|131072,4096|-|-|ywahyu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_hardy_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena|-|Shin14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena|C|1.0,5.0|131072,4096|-|-|Shin14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_roaring_cat|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_roaring_cat|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_roaring_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_mammalian_warthog|-|silent666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_mammalian_warthog|C|1.0,5.0|131072,4096|-|-|silent666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_mammalian_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_tenacious_ant|-|Alexshake78/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_tenacious_ant|C|1.0,5.0|131072,4096|-|-|Alexshake78/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_tenacious_ant model|N
featherless/Qwen2-0.5B-drpo-imdb-loss2_only-centerp-10|-|Eehan/Qwen2-0.5B-drpo-imdb-loss2_only-centerp-10|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-loss2_only-centerp-10 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_nasty_alpaca|-|phupham315/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_nasty_alpaca|C|1.0,5.0|131072,4096|-|-|phupham315/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_nasty_alpaca model|N
featherless/qwen2.5-0.5B_linear25_edu_instruct-3|qwen2.5-0.5b_linear25_edu_instruct-3|NaoS2/qwen2.5-0.5B_linear25_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_linear25_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|jsonjiao/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|jsonjiao/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_crested_albatross|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_crested_albatross|C|1.0,5.0|131072,4096|-|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_crested_albatross model|N
featherless/Amadeus-Verbo-MI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental|-|amadeusai/Amadeus-Verbo-MI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental|C|1.0,5.0|131072,4096|V|-|amadeusai/Amadeus-Verbo-MI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_loud_zebra|-|Abdelmnam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_loud_zebra|C|1.0,5.0|131072,4096|-|-|Abdelmnam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_loud_zebra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_docile_parrot|-|irfanman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_docile_parrot|C|1.0,5.0|131072,4096|-|-|irfanman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_docile_parrot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_marine_giraffe|-|Shehrozkhankam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_marine_giraffe|C|1.0,5.0|131072,4096|-|-|Shehrozkhankam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_marine_giraffe model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_furry_peacock|-|thuha123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_furry_peacock|C|1.0,5.0|131072,4096|-|-|thuha123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_furry_peacock model|N
featherless/qwen2.5-0.5B_ed_gauss_low_25-3|qwen2.5-0.5b_ed_gauss_low_25-3|komi77/qwen2.5-0.5B_ed_gauss_low_25-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_low_25-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_powerful_jay|-|phuongtikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_powerful_jay|C|1.0,5.0|131072,4096|-|-|phuongtikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_powerful_jay model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_whistling_wallaby|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_whistling_wallaby|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_whistling_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_polished_hornet|-|romania78/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_polished_hornet|C|1.0,5.0|131072,4096|-|-|romania78/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_polished_hornet model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_220|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_220|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_220 model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_savage_pig|-|ethduke/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_savage_pig|C|1.0,5.0|131072,4096|-|-|ethduke/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-trotting_savage_pig model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_nimble_whale|-|appa07/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_nimble_whale|C|1.0,5.0|131072,4096|-|-|appa07/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_nimble_whale model|N
featherless/Freeway-GRPO-Qwen-2.5-0.5B-Instruct|freeway-grpo-qwen-2.5-0.5b-instruct|wenyl/Freeway-GRPO-Qwen-2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|wenyl/Freeway-GRPO-Qwen-2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_stinging_cobra|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_stinging_cobra|C|1.0,5.0|131072,4096|-|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_stinging_cobra model|N
featherless/Qwen2-0.5B-drdpo_test_3|qwen2-0.5b-drdpo_test_3|Kyleyee/Qwen2-0.5B-drdpo_test_3|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-drdpo_test_3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_burrowing_beaver|-|MiraChenbaka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_burrowing_beaver|C|1.0,5.0|131072,4096|-|-|MiraChenbaka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_burrowing_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena|C|1.0,5.0|131072,4096|-|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_tropical_hyena model|N
featherless/qwen2-0.5b-lora-ff-gd-steps-6|qwen2-0.5b-lora-ff-gd-steps-6|jtromero/qwen2-0.5b-lora-ff-gd-steps-6|C|1.0,5.0|131072,4096|-|-|jtromero/qwen2-0.5b-lora-ff-gd-steps-6 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_ferocious_snail|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_ferocious_snail|C|1.0,5.0|131072,4096|-|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_ferocious_snail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_darting_porcupine|-|kevinnx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_darting_porcupine|C|1.0,5.0|131072,4096|-|-|kevinnx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_darting_porcupine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_fleecy_rat|-|poponi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_fleecy_rat|C|1.0,5.0|131072,4096|-|-|poponi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_fleecy_rat model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_230|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_230|C|1.0,5.0|131072,4096|K|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__math_dataset_based_on_gt_reasoning_trace_epoch_230 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_slender_scorpion|-|dropxtor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_slender_scorpion|C|1.0,5.0|131072,4096|-|-|dropxtor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_slender_scorpion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_bellowing_okapi|-|hienphan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_bellowing_okapi|C|1.0,5.0|131072,4096|-|-|hienphan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_bellowing_okapi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker|C|1.0,5.0|131072,4096|-|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker model|N
featherless/bloomVN-0.5B-ppo-sft-lit-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-lit-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-lit-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_tall_hedgehog|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_tall_hedgehog|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_tall_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_squinting_owl|-|Ashkan001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_squinting_owl|C|1.0,5.0|131072,4096|-|-|Ashkan001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_squinting_owl model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_enormous_sloth|-|SungYoung85/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_enormous_sloth|C|1.0,5.0|131072,4096|-|-|SungYoung85/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_enormous_sloth model|N
featherless/ML3|ml3|ArtemisTAO/ML3|C|1.0,5.0|131072,4096|-|-|ArtemisTAO/ML3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_feline_toad|-|hkb240420003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_feline_toad|C|1.0,5.0|131072,4096|-|-|hkb240420003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_feline_toad model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_slimy_sealion|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_slimy_sealion|C|1.0,5.0|131072,4096|-|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_slimy_sealion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_screeching_vulture|-|delainerae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_screeching_vulture|C|1.0,5.0|131072,4096|-|-|delainerae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_screeching_vulture model|N
featherless/gensyn-checkpoints-galloping_mute_fish|gensyn-checkpoints-galloping_mute_fish|akaredmiru/gensyn-checkpoints-galloping_mute_fish|C|1.0,5.0|131072,4096|-|-|akaredmiru/gensyn-checkpoints-galloping_mute_fish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_strong_ape|-|amir80907863/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_strong_ape|C|1.0,5.0|131072,4096|-|-|amir80907863/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_strong_ape model|N
featherless/test_response|test_response|teenysheep/test_response|C|1.0,5.0|131072,4096|-|-|teenysheep/test_response model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_silent_termite|-|tarotarotarotaaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_silent_termite|C|1.0,5.0|131072,4096|-|-|tarotarotarotaaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_silent_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_tawny_parrot|-|ramgg011/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_tawny_parrot|C|1.0,5.0|131072,4096|-|-|ramgg011/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_tawny_parrot model|N
featherless/bloomVN-0.5B-ppo-sft-bio-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_loud_platypus|-|momoshiki09/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_loud_platypus|C|1.0,5.0|131072,4096|-|-|momoshiki09/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_loud_platypus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_nimble_alligator|-|Aaron63/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_nimble_alligator|C|1.0,5.0|131072,4096|-|-|Aaron63/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_nimble_alligator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_dormant_tapir|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_dormant_tapir|C|1.0,5.0|131072,4096|-|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_dormant_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_armored_cheetah|-|saruo516/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_armored_cheetah|C|1.0,5.0|131072,4096|-|-|saruo516/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_armored_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_pawing_ape|-|gapcuk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_pawing_ape|C|1.0,5.0|131072,4096|-|-|gapcuk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_pawing_ape model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_thick_yak|-|bippb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_thick_yak|C|1.0,5.0|131072,4096|-|-|bippb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_thick_yak model|N
featherless/qwen2.5-0.5B_linear15_edu_instruct-3|qwen2.5-0.5b_linear15_edu_instruct-3|NaoS2/qwen2.5-0.5B_linear15_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_linear15_edu_instruct-3 model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-mat-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_restless_magpie|-|Bigbytez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_restless_magpie|C|1.0,5.0|131072,4096|-|-|Bigbytez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_restless_magpie model|N
featherless/Qwen2.5-0.5B-Open-R1-GRPO|qwen2.5-0.5b-open-r1-grpo|allendou/Qwen2.5-0.5B-Open-R1-GRPO|C|1.0,5.0|131072,4096|-|-|allendou/Qwen2.5-0.5B-Open-R1-GRPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_cunning_impala|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_cunning_impala|C|1.0,5.0|131072,4096|-|-|sdfsdsssF/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_cunning_impala model|N
featherless/Qwen2-0.5B_MED_NLI|qwen2-0.5b_med_nli|presencesw/Qwen2-0.5B_MED_NLI|C|1.0,5.0|131072,4096|-|-|presencesw/Qwen2-0.5B_MED_NLI model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_quick_coral|-|Skypopular/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_quick_coral|C|1.0,5.0|131072,4096|-|-|Skypopular/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_quick_coral model|N
featherless/Qwen2.5-0.5B-Instruct-Dir|qwen2.5-0.5b-instruct-dir|bedobedo/Qwen2.5-0.5B-Instruct-Dir|C|1.0,5.0|131072,4096|-|-|bedobedo/Qwen2.5-0.5B-Instruct-Dir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite|C|1.0,5.0|131072,4096|-|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_4000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_monstrous_mouse|-|0xdemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_monstrous_mouse|C|1.0,5.0|131072,4096|-|-|0xdemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_monstrous_mouse model|N
featherless/PharmaHacks2025-Qwen2.5-0.5B-Instruct|pharmahacks2025-qwen2.5-0.5b-instruct|dantedgp/PharmaHacks2025-Qwen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|dantedgp/PharmaHacks2025-Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_woolly_stork|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_woolly_stork|C|1.0,5.0|131072,4096|-|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_woolly_stork model|N
featherless/Qwen2-0.5B-GRPO|qwen2-0.5b-grpo|araziziml/Qwen2-0.5B-GRPO|C|1.0,5.0|131072,4096|-|-|araziziml/Qwen2-0.5B-GRPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_tenacious_hippo|-|rektzy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_tenacious_hippo|C|1.0,5.0|131072,4096|-|-|rektzy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_tenacious_hippo model|N
featherless/Qwen2-0.5B-drdpo_loss_small_sampled_a|qwen2-0.5b-drdpo_loss_small_sampled_a|Kyleyee/Qwen2-0.5B-drdpo_loss_small_sampled_a|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-drdpo_loss_small_sampled_a model|N
featherless/01262002-modify_tamplate-boxed-600filtering-processing-5epochs|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing-5epochs|C|1.0,5.0|131072,4096|-|-|azxky6645/01262002-modify_tamplate-boxed-600filtering-processing-5epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_energetic_boar|-|JackNotLor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_energetic_boar|C|1.0,5.0|131072,4096|-|-|JackNotLor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_energetic_boar model|N
featherless/test7|test7|teenysheep/test7|C|1.0,5.0|131072,4096|-|-|teenysheep/test7 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_thick_marmot|-|Sina1381/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_thick_marmot|C|1.0,5.0|131072,4096|-|-|Sina1381/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_thick_marmot model|N
featherless/Qwen2-0.5B-DRDPO-imdb-subsft|qwen2-0.5b-drdpo-imdb-subsft|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-subsft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_shiny_walrus|-|gonsior/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_shiny_walrus|C|1.0,5.0|131072,4096|-|-|gonsior/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_shiny_walrus model|N
featherless/Qwen2.5-0.5B-BaseFiT|qwen2.5-0.5b-basefit|akhadangi/Qwen2.5-0.5B-BaseFiT|C|1.0,5.0|131072,4096|-|-|akhadangi/Qwen2.5-0.5B-BaseFiT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_rough_pig|-|TranMinh1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_rough_pig|C|1.0,5.0|131072,4096|-|-|TranMinh1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_rough_pig model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_cunning_rabbit|-|catlonpardon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_cunning_rabbit|C|1.0,5.0|131072,4096|-|-|catlonpardon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_cunning_rabbit model|N
featherless/qwen-mini-simpo|qwen-mini-simpo|chenhaodev/qwen-mini-simpo|C|1.0,5.0|131072,4096|-|-|chenhaodev/qwen-mini-simpo model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_purring_chameleon|-|skphotoholic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_purring_chameleon|C|1.0,5.0|131072,4096|-|-|skphotoholic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_purring_chameleon model|N
featherless/qwen2.5-0.5B_mask_uni15_edu_instruct-3|qwen2.5-0.5b_mask_uni15_edu_instruct-3|NaoS2/qwen2.5-0.5B_mask_uni15_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_mask_uni15_edu_instruct-3 model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_4000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_long_sparrow|-|VivekOnChain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_long_sparrow|C|1.0,5.0|131072,4096|-|-|VivekOnChain/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_long_sparrow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_tricky_hare|-|Watarus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_tricky_hare|C|1.0,5.0|131072,4096|-|-|Watarus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_tricky_hare model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_arctic_chameleon|-|mrmil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_arctic_chameleon|C|1.0,5.0|131072,4096|-|-|mrmil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_arctic_chameleon model|N
featherless/Qwen2.5-0.5B_MIFT-ja_8250|qwen2.5-0.5b_mift-ja_8250|Hachipo/Qwen2.5-0.5B_MIFT-ja_8250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_MIFT-ja_8250 model|N
featherless/qwen2.5-0.5B_drop_uni10_edu_instruct-3_2|-|NaoS2/qwen2.5-0.5B_drop_uni10_edu_instruct-3_2|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_uni10_edu_instruct-3_2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|C|1.0,5.0|131072,4096|-|-|gykasha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary model|N
featherless/bloomVN-0.5B-ppo-sft-phy-lora-epochs4-lr5e-05-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-phy-lora-epochs4-lr5e-05-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-phy-lora-epochs4-lr5e-05-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_pouncing_lizard|-|EduardStolairskyi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_pouncing_lizard|C|1.0,5.0|131072,4096|V|-|EduardStolairskyi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_pouncing_lizard model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_hulking_iguana|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_hulking_iguana|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_hulking_iguana model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_strong_capybara|-|phiphuc94/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_strong_capybara|C|1.0,5.0|131072,4096|-|-|phiphuc94/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_strong_capybara model|N
featherless/hand_tuned-84ea0347-fd7d-449d-a9b9-513c3c149419|-|haihp02/hand_tuned-84ea0347-fd7d-449d-a9b9-513c3c149419|C|1.0,5.0|131072,4096|-|-|haihp02/hand_tuned-84ea0347-fd7d-449d-a9b9-513c3c149419 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_sturdy_dragonfly|-|Amakaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_sturdy_dragonfly|C|1.0,5.0|131072,4096|-|-|Amakaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_sturdy_dragonfly model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_2000_v1|qwen2.5-0.5b_mift_en_manywords_2000_v1|myst72/Qwen2.5-0.5B_MIFT_en_manywords_2000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_2000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_alert_iguana|-|sebliu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_alert_iguana|C|1.0,5.0|131072,4096|-|-|sebliu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_alert_iguana model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|-|flwoeut/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|C|1.0,5.0|131072,4096|-|-|flwoeut/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_deadly_dingo|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_deadly_dingo|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_deadly_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-coiled_muscular_tarantula|-|tham19912022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-coiled_muscular_tarantula|C|1.0,5.0|131072,4096|-|-|tham19912022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-coiled_muscular_tarantula model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite|-|wildworlds/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite|C|1.0,5.0|131072,4096|-|-|wildworlds/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_invisible_termite model|N
featherless/qwen-model|qwen-model|navaneeth45/qwen-model|C|1.0,5.0|131072,4096|-|-|navaneeth45/qwen-model model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_wary_marmot|-|miuberry999/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_wary_marmot|C|1.0,5.0|131072,4096|-|-|miuberry999/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_wary_marmot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_scampering_mammoth|-|KingPro27/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_scampering_mammoth|C|1.0,5.0|131072,4096|-|-|KingPro27/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_scampering_mammoth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_miniature_lynx|-|projectsuman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_miniature_lynx|C|1.0,5.0|131072,4096|-|-|projectsuman/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_miniature_lynx model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_2000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_2000 model|N
featherless/Qwen2-0.5B-GRPO-8250|qwen2-0.5b-grpo-8250|aidando73/Qwen2-0.5B-GRPO-8250|C|1.0,5.0|131072,4096|-|-|aidando73/Qwen2-0.5B-GRPO-8250 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_melodic_antelope|-|hpvVVGRLNbNNi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_melodic_antelope|C|1.0,5.0|131072,4096|-|-|hpvVVGRLNbNNi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_melodic_antelope model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_hyena|-|soheil3127/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_hyena|C|1.0,5.0|131072,4096|-|-|soheil3127/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_leaping_ape|-|Ayomidexcii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_leaping_ape|C|1.0,5.0|131072,4096|-|-|Ayomidexcii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_leaping_ape model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_finicky_antelope|-|Dwentz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_finicky_antelope|C|1.0,5.0|131072,4096|-|-|Dwentz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_finicky_antelope model|N
featherless/gensyn-checkpoints-slow_amphibious_swan|gensyn-checkpoints-slow_amphibious_swan|apishi/gensyn-checkpoints-slow_amphibious_swan|C|1.0,5.0|131072,4096|-|-|apishi/gensyn-checkpoints-slow_amphibious_swan model|N
featherless/s801|s801|ivangrapher/s801|C|1.0,5.0|131072,4096|-|-|ivangrapher/s801 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_gregarious_tapir|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_gregarious_tapir|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_gregarious_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_curious_giraffe|-|jerseyjerry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_curious_giraffe|C|1.0,5.0|131072,4096|-|-|jerseyjerry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_curious_giraffe model|N
featherless/Qwen2.5-0.5B-DS-R1-Distill-FactThink-Boxed|-|jdqqjr/Qwen2.5-0.5B-DS-R1-Distill-FactThink-Boxed|C|1.0,5.0|131072,4096|K|-|jdqqjr/Qwen2.5-0.5B-DS-R1-Distill-FactThink-Boxed model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_mammalian_ape|-|doublelife/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_mammalian_ape|C|1.0,5.0|131072,4096|-|-|doublelife/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_mammalian_ape model|N
featherless/Finance-Research-QWen2.5-0.5B-Instruct|finance-research-qwen2.5-0.5b-instruct|klaylouis1932/Finance-Research-QWen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|klaylouis1932/Finance-Research-QWen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_darting_cassowary|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_darting_cassowary|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_darting_cassowary model|N
featherless/Qwen2-0.5B-Instruct-predli-v2-finetuned-fused|-|asjoberg/Qwen2-0.5B-Instruct-predli-v2-finetuned-fused|C|1.0,5.0|131072,4096|V|-|asjoberg/Qwen2-0.5B-Instruct-predli-v2-finetuned-fused model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_hardy_koala|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_hardy_koala|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_hardy_koala model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_frisky_tiger|-|bogdan198/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_frisky_tiger|C|1.0,5.0|131072,4096|-|-|bogdan198/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_frisky_tiger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_woolly_cobra|-|1PxPzV6VuM06jyTiW/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_woolly_cobra|C|1.0,5.0|131072,4096|-|-|1PxPzV6VuM06jyTiW/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_woolly_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinky_wallaby|-|Jayblitz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinky_wallaby|C|1.0,5.0|131072,4096|-|-|Jayblitz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinky_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_enormous_horse|-|bazyk974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_enormous_horse|C|1.0,5.0|131072,4096|-|-|bazyk974/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_enormous_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_hunting_ant|-|osimetha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_hunting_ant|C|1.0,5.0|131072,4096|-|-|osimetha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_hunting_ant model|N
featherless/Qwen2.5-0.5B-0.01-H|qwen2.5-0.5b-0.01-h|akhadangi/Qwen2.5-0.5B-0.01-H|C|1.0,5.0|131072,4096|-|-|akhadangi/Qwen2.5-0.5B-0.01-H model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_keen_iguana|-|yi9413/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_keen_iguana|C|1.0,5.0|131072,4096|-|-|yi9413/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_keen_iguana model|N
featherless/Qwen2.5-0.5B-Open-R1-GRPO|qwen2.5-0.5b-open-r1-grpo|Cys621/Qwen2.5-0.5B-Open-R1-GRPO|C|1.0,5.0|131072,4096|-|-|Cys621/Qwen2.5-0.5B-Open-R1-GRPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_sloth|-|gpandrad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_sloth|C|1.0,5.0|131072,4096|-|-|gpandrad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_sloth model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|oieieio/Qwen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|oieieio/Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_jagged_chicken|-|frenchsand/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_jagged_chicken|C|1.0,5.0|131072,4096|-|-|frenchsand/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_jagged_chicken model|N
featherless/QWEN-2.5-0-5b-finetune|qwen-2.5-0-5b-finetune|ghaniashafiqa/QWEN-2.5-0-5b-finetune|C|1.0,5.0|131072,4096|-|-|ghaniashafiqa/QWEN-2.5-0-5b-finetune model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_waddling_crocodile|-|kepllex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_waddling_crocodile|C|1.0,5.0|131072,4096|-|-|kepllex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_waddling_crocodile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_mute_ox|-|LAEGEND/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_mute_ox|C|1.0,5.0|131072,4096|-|-|LAEGEND/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_mute_ox model|N
featherless/Qwen2.5-0.5B_MIFT_ja_manywords_2000_v1|qwen2.5-0.5b_mift_ja_manywords_2000_v1|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_2000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_2000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_armored_snake|-|Derrilyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_armored_snake|C|1.0,5.0|131072,4096|-|-|Derrilyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_armored_snake model|N
featherless/sql_interp_bm2_cs2_experiment_5.2|sql_interp_bm2_cs2_experiment_5.2|withmartian/sql_interp_bm2_cs2_experiment_5.2|C|1.0,5.0|131072,4096|-|-|withmartian/sql_interp_bm2_cs2_experiment_5.2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_bold_rooster|-|mjhmojthu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_bold_rooster|C|1.0,5.0|131072,4096|-|-|mjhmojthu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_bold_rooster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_feathered_starfish|-|tonmy6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_feathered_starfish|C|1.0,5.0|131072,4096|-|-|tonmy6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_feathered_starfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_foxy_cougar|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_foxy_cougar|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_foxy_cougar model|N
featherless/fast_test-quick_cunning_condor|fast_test-quick_cunning_condor|mimimi111/fast_test-quick_cunning_condor|C|1.0,5.0|131072,4096|-|-|mimimi111/fast_test-quick_cunning_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_flexible_hedgehog|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_flexible_hedgehog|C|1.0,5.0|131072,4096|-|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_flexible_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_sly_ox|-|rumpp2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_sly_ox|C|1.0,5.0|131072,4096|-|-|rumpp2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_sly_ox model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_unseen_ladybug|-|tdelic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_unseen_ladybug|C|1.0,5.0|131072,4096|-|-|tdelic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_unseen_ladybug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_masked_raven|-|Tootoohk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_masked_raven|C|1.0,5.0|131072,4096|-|-|Tootoohk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_masked_raven model|N
featherless/qwen2.5-0.5B_ed_gauss_linear_25-3|qwen2.5-0.5b_ed_gauss_linear_25-3|komi77/qwen2.5-0.5B_ed_gauss_linear_25-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_linear_25-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_iridescent_kiwi|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_iridescent_kiwi|C|1.0,5.0|131072,4096|-|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_iridescent_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_lethal_robin|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_lethal_robin|C|1.0,5.0|131072,4096|-|-|Shinkiro14/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_lethal_robin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_eager_grouse|-|adt576d/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_eager_grouse|C|1.0,5.0|131072,4096|-|-|adt576d/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_eager_grouse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_stubby_chicken|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_stubby_chicken|C|1.0,5.0|131072,4096|-|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_stubby_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_tenacious_shark|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_tenacious_shark|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_tenacious_shark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_leaping_wildebeest|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_leaping_wildebeest|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_leaping_wildebeest model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_yapping_seahorse|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_yapping_seahorse|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_yapping_seahorse model|N
featherless/gensyn-checkpoints-short_peaceful_goose|gensyn-checkpoints-short_peaceful_goose|cooldazou/gensyn-checkpoints-short_peaceful_goose|C|1.0,5.0|131072,4096|-|-|cooldazou/gensyn-checkpoints-short_peaceful_goose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_tropical_walrus|-|nika2500/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_tropical_walrus|C|1.0,5.0|131072,4096|-|-|nika2500/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_tropical_walrus model|N
featherless/qwen2-rephrase-4bit-3-epochs|qwen2-rephrase-4bit-3-epochs|magnifi/qwen2-rephrase-4bit-3-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase-4bit-3-epochs model|N
featherless/InformalToFormalLincoln123Paraphrase|informaltoformallincoln123paraphrase|BigSalmon/InformalToFormalLincoln123Paraphrase|C|1.0,5.0|131072,4096|-|-|BigSalmon/InformalToFormalLincoln123Paraphrase model|N
featherless/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_14B|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_14B|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_MATH_training_response_Qwen2.5_14B model|N
featherless/qwen_finetune|qwen_finetune|makeAmericaGreatAgain/qwen_finetune|C|1.0,5.0|131072,4096|-|-|makeAmericaGreatAgain/qwen_finetune model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dextrous_domestic_cobra|-|Kita1111/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dextrous_domestic_cobra|C|1.0,5.0|131072,4096|-|-|Kita1111/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dextrous_domestic_cobra model|N
featherless/qwen25-05b-multiclinsum-distil|qwen25-05b-multiclinsum-distil|nicolay-r/qwen25-05b-multiclinsum-distil|C|1.0,5.0|131072,4096|-|-|nicolay-r/qwen25-05b-multiclinsum-distil model|N
featherless/Qwen2.5-0.5B-SFT-merge|qwen2.5-0.5b-sft-merge|Audreygyj/Qwen2.5-0.5B-SFT-merge|C|1.0,5.0|131072,4096|-|-|Audreygyj/Qwen2.5-0.5B-SFT-merge model|N
featherless/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_enja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_enja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_enja model|N
featherless/full_model_sft|full_model_sft|phunghuy159/full_model_sft|C|1.0,5.0|131072,4096|-|-|phunghuy159/full_model_sft model|N
featherless/qwen2-rephrase-classify-5-epochs|qwen2-rephrase-classify-5-epochs|magnifi/qwen2-rephrase-classify-5-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase-classify-5-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_stealthy_chicken|-|posb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_stealthy_chicken|C|1.0,5.0|131072,4096|-|-|posb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_stealthy_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_salamander|-|eurb1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_salamander|C|1.0,5.0|131072,4096|-|-|eurb1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_salamander model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_stinging_alligator|-|lufreeking/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_stinging_alligator|C|1.0,5.0|131072,4096|-|-|lufreeking/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_stinging_alligator model|N
featherless/walk24|walk24|memevis/walk24|C|1.0,5.0|131072,4096|-|-|memevis/walk24 model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_10|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_10|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_10 model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.5|iq-code-evmind-0.5b-instruct-v0.2411.5|braindao/iq-code-evmind-0.5b-instruct-v0.2411.5|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.5 model|N
featherless/Qwen2-0.5B-SFT|qwen2-0.5b-sft|lchen915/Qwen2-0.5B-SFT|C|1.0,5.0|131072,4096|-|-|lchen915/Qwen2-0.5B-SFT model|N
featherless/Qwen2-0.5b-assamese-v0.2.2|qwen2-0.5b-assamese-v0.2.2|tamang0000/Qwen2-0.5b-assamese-v0.2.2|C|1.0,5.0|131072,4096|V|-|tamang0000/Qwen2-0.5b-assamese-v0.2.2 model|N
featherless/gensyn-checkpoints-rabid_iridescent_chicken|-|takubnaka/gensyn-checkpoints-rabid_iridescent_chicken|C|1.0,5.0|131072,4096|-|-|takubnaka/gensyn-checkpoints-rabid_iridescent_chicken model|N
featherless/Qwen2-0.5B-Instruct-xLAM-0.1|qwen2-0.5b-instruct-xlam-0.1|ericlewis/Qwen2-0.5B-Instruct-xLAM-0.1|C|1.0,5.0|131072,4096|-|-|ericlewis/Qwen2-0.5B-Instruct-xLAM-0.1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_nocturnal_gull|-|talkwork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_nocturnal_gull|C|1.0,5.0|131072,4096|-|-|talkwork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_nocturnal_gull model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_gentle_turtle|-|biboombi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_gentle_turtle|C|1.0,5.0|131072,4096|-|-|biboombi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_gentle_turtle model|N
featherless/ECE-PRYMMAL-0.5B-FT-V3-MUSR|ece-prymmal-0.5b-ft-v3-musr|Youlln/ECE-PRYMMAL-0.5B-FT-V3-MUSR|C|1.0,5.0|131072,4096|V|-|Youlln/ECE-PRYMMAL-0.5B-FT-V3-MUSR model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_slithering_albatross|-|fiersan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_slithering_albatross|C|1.0,5.0|131072,4096|-|-|fiersan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_slithering_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_elusive_anaconda|-|sirhoney/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_elusive_anaconda|C|1.0,5.0|131072,4096|-|-|sirhoney/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_elusive_anaconda model|N
featherless/Qwen-food|qwen-food|nlplabtdtu/Qwen-food|C|1.0,5.0|131072,4096|-|-|nlplabtdtu/Qwen-food model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_fluffy_tiger|-|erterhhg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_fluffy_tiger|C|1.0,5.0|131072,4096|-|-|erterhhg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_fluffy_tiger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_freckled_macaque|-|fakeid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_freckled_macaque|C|1.0,5.0|131072,4096|-|-|fakeid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_freckled_macaque model|N
featherless/model_vllm_0.5B|model_vllm_0.5b|gpellejero/model_vllm_0.5B|C|1.0,5.0|131072,4096|-|-|gpellejero/model_vllm_0.5B model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_exotic_magpie|-|Saveqq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_exotic_magpie|C|1.0,5.0|131072,4096|-|-|Saveqq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_exotic_magpie model|N
featherless/Qwen2.5-0.5b-bebop-reranker-newer-small|qwen2.5-0.5b-bebop-reranker-newer-small|jbaron34/Qwen2.5-0.5b-bebop-reranker-newer-small|C|1.0,5.0|131072,4096|-|-|jbaron34/Qwen2.5-0.5b-bebop-reranker-newer-small model|N
featherless/Qwen2.5-0.5B-Instruct_Long_CoT|qwen2.5-0.5b-instruct_long_cot|UWNSL/Qwen2.5-0.5B-Instruct_Long_CoT|C|1.0,5.0|131072,4096|-|-|UWNSL/Qwen2.5-0.5B-Instruct_Long_CoT model|N
featherless/Qwen2-0.5B-OnlineDPO-AutoRM|qwen2-0.5b-onlinedpo-autorm|qgallouedec/Qwen2-0.5B-OnlineDPO-AutoRM|C|1.0,5.0|131072,4096|-|-|qgallouedec/Qwen2-0.5B-OnlineDPO-AutoRM model|N
featherless/ea2844eea0cce-8688-4e12-9786-0793d849b262|-|cwaud/ea2844eea0cce-8688-4e12-9786-0793d849b262|C|1.0,5.0|131072,4096|-|-|cwaud/ea2844eea0cce-8688-4e12-9786-0793d849b262 model|N
featherless/model|model|Limby/model|C|1.0,5.0|131072,4096|-|-|Limby/model model|N
featherless/ECE-PRYMMAL-0.5B-SLERP-V4|ece-prymmal-0.5b-slerp|lalainy/ECE-PRYMMAL-0.5B-SLERP-V4|C|1.0,5.0|131072,4096|V|-|lalainy/ECE-PRYMMAL-0.5B-SLERP-V4 model|N
featherless/trained-qwen2-dpo-model2|trained-qwen2-dpo-model2|maars505/trained-qwen2-dpo-model2|C|1.0,5.0|131072,4096|-|-|maars505/trained-qwen2-dpo-model2 model|N
featherless/exp499_check85|exp499_check85|ThalesR/exp499_check85|C|1.0,5.0|131072,4096|-|-|ThalesR/exp499_check85 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_amphibious_chameleon|-|dumbled00r/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_amphibious_chameleon|C|1.0,5.0|131072,4096|-|-|dumbled00r/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_amphibious_chameleon model|N
featherless/Qwen2.5-0.5B-Noised3.0|qwen2.5-0.5b-noised3.0|stupidity-ai/Qwen2.5-0.5B-Noised3.0|C|1.0,5.0|131072,4096|-|-|stupidity-ai/Qwen2.5-0.5B-Noised3.0 model|N
featherless/Qwen2-0.5Bchp-20000|qwen2-0.5bchp-20000|knowledgator/Qwen2-0.5Bchp-20000|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-20000 model|N
featherless/ECE-PRYMMAL-0.5B-SLERP-V3|ece-prymmal-0.5b-slerp|Youlln/ECE-PRYMMAL-0.5B-SLERP-V3|C|1.0,5.0|131072,4096|V|-|Youlln/ECE-PRYMMAL-0.5B-SLERP-V3 model|N
featherless/qwen2.5-0.5B_educational_instruct-3|qwen2.5-0.5b_educational_instruct-3|Hachipo/qwen2.5-0.5B_educational_instruct-3|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct-3 model|N
featherless/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja_en model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_6000|qwen2.5-0.5b_pift-jaen_manywords_6000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_6000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_6000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_quick_butterfly|-|karansharma1994/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_quick_butterfly|C|1.0,5.0|131072,4096|-|-|karansharma1994/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_quick_butterfly model|N
featherless/Qwen2.5-0.5b-bebop-reranker|qwen2.5-0.5b-bebop-reranker|jbaron34/Qwen2.5-0.5b-bebop-reranker|C|1.0,5.0|131072,4096|-|-|jbaron34/Qwen2.5-0.5b-bebop-reranker model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_dextrous_crab|-|figo118/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_dextrous_crab|C|1.0,5.0|131072,4096|-|-|figo118/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_dextrous_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_fast_raccoon|-|dingke888/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_fast_raccoon|C|1.0,5.0|131072,4096|-|-|dingke888/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_fast_raccoon model|N
featherless/qwen2-500m-instruct-xlam|qwen2-500m-instruct-xlam|ericlewis/qwen2-500m-instruct-xlam|C|1.0,5.0|131072,4096|-|-|ericlewis/qwen2-500m-instruct-xlam model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_mighty_ape|-|LazyBankrupt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_mighty_ape|C|1.0,5.0|131072,4096|-|-|LazyBankrupt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_mighty_ape model|N
featherless/Qwen2-0.5Bchp-570k|qwen2-0.5bchp-570k|knowledgator/Qwen2-0.5Bchp-570k|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-570k model|N
featherless/qwen0.5b_ru|qwen0.5b_ru|Alex01837178373/qwen0.5b_ru|C|1.0,5.0|131072,4096|-|-|Alex01837178373/qwen0.5b_ru model|N
featherless/qwen2.5-0.5B_educational_instruct_top9000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top9000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top9000_codeonly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_prickly_crane|-|linchenghao8899/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_prickly_crane|C|1.0,5.0|131072,4096|-|-|linchenghao8899/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_prickly_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_skittish_lobster|-|razg6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_skittish_lobster|C|1.0,5.0|131072,4096|-|-|razg6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_skittish_lobster model|N
featherless/Qwen2-0.5Bchp-300000|qwen2-0.5bchp-300000|knowledgator/Qwen2-0.5Bchp-300000|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-300000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_mighty_raven|-|hargravedpum/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_mighty_raven|C|1.0,5.0|131072,4096|-|-|hargravedpum/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_mighty_raven model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_stubby_wasp|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_stubby_wasp|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_stubby_wasp model|N
featherless/Qwen2-0.5B_merge_v2.9|qwen2-0.5b_merge_v2.9|wanghaikuan/Qwen2-0.5B_merge_v2.9|C|1.0,5.0|131072,4096|-|-|wanghaikuan/Qwen2-0.5B_merge_v2.9 model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_90|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_90|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_90 model|N
featherless/qwen199f16_merged-FinetunedByAG|qwen199f16_merged-finetunedbyag|akshit-Gupta/qwen199f16_merged-FinetunedByAG|C|1.0,5.0|131072,4096|-|-|akshit-Gupta/qwen199f16_merged-FinetunedByAG model|N
featherless/Qwen2.5-0.5B-Instruct-Thinking|qwen2.5-0.5b-instruct-thinking|AiCloser/Qwen2.5-0.5B-Instruct-Thinking|C|1.0,5.0|131072,4096|K|-|AiCloser/Qwen2.5-0.5B-Instruct-Thinking model|N
featherless/finetuned-kindergarten|finetuned-kindergarten|WillyTan03/finetuned-kindergarten|C|1.0,5.0|131072,4096|-|-|WillyTan03/finetuned-kindergarten model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_patterned_anteater|-|shubham987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_patterned_anteater|C|1.0,5.0|131072,4096|-|-|shubham987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_patterned_anteater model|N
featherless/trainer_output-iridescent_exotic_capybara|-|lqpl/trainer_output-iridescent_exotic_capybara|C|1.0,5.0|131072,4096|-|-|lqpl/trainer_output-iridescent_exotic_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_tough_spider|-|goufeiwu77ery/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_tough_spider|C|1.0,5.0|131072,4096|-|-|goufeiwu77ery/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-winged_tough_spider model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill-Small|qwen2.5-0.5b-open-r1-distill-small|chinmaydk99/Qwen2.5-0.5B-Open-R1-Distill-Small|C|1.0,5.0|131072,4096|-|-|chinmaydk99/Qwen2.5-0.5B-Open-R1-Distill-Small model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tropical_weasel|-|Grimfandango0711/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tropical_weasel|C|1.0,5.0|131072,4096|-|-|Grimfandango0711/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tropical_weasel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_unseen_chinchilla|-|se7eneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_unseen_chinchilla|C|1.0,5.0|131072,4096|-|-|se7eneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_unseen_chinchilla model|N
featherless/qwencustom|qwencustom|notlober/qwencustom|C|1.0,5.0|131072,4096|-|-|notlober/qwencustom model|N
featherless/merged_lora_qwen2|merged_lora_qwen2|Dreamkeeper/merged_lora_qwen2|C|1.0,5.0|131072,4096|-|-|Dreamkeeper/merged_lora_qwen2 model|N
featherless/qwen2.5-0.5B_PIFT-enja_manywords_6000|qwen2.5-0.5b_pift-enja_manywords_6000|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_6000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_6000 model|N
featherless/models|models|summerstay/models|C|1.0,5.0|131072,4096|-|-|summerstay/models model|N
featherless/qwen2.5-0.5B_MIFT-en_manywords_5000|qwen2.5-0.5b_mift-en_manywords_5000|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_5000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_5000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_scented_armadillo|-|siyavus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_scented_armadillo|C|1.0,5.0|131072,4096|-|-|siyavus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_scented_armadillo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_dense_elk|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_dense_elk|C|1.0,5.0|131072,4096|-|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_dense_elk model|N
featherless/qwen2-classify-12-epochs|qwen2-classify-12-epochs|magnifi/qwen2-classify-12-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-classify-12-epochs model|N
featherless/test_quen_2.5_lora-merged|test_quen_2.5_lora-merged|sujithatz/test_quen_2.5_lora-merged|C|1.0,5.0|131072,4096|-|-|sujithatz/test_quen_2.5_lora-merged model|N
featherless/Qwen2-0.5B-Instruct|qwen2-0.5b-instruct|TitanML/Qwen2-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|TitanML/Qwen2-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_beaked_camel|-|ishiwaston/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_beaked_camel|C|1.0,5.0|131072,4096|-|-|ishiwaston/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_beaked_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_dappled_albatross|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_dappled_albatross|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_dappled_albatross model|N
featherless/Qwen2-0.5Bchp-690k|qwen2-0.5bchp-690k|knowledgator/Qwen2-0.5Bchp-690k|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen2-0.5Bchp-690k model|N
featherless/xpo-qwen2|xpo-qwen2|qgallouedec/xpo-qwen2|C|1.0,5.0|131072,4096|-|-|qgallouedec/xpo-qwen2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soaring_rooster|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soaring_rooster|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soaring_rooster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_yapping_walrus|-|alsena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_yapping_walrus|C|1.0,5.0|131072,4096|-|-|alsena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_yapping_walrus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_playful_gerbil|-|Pren033/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_playful_gerbil|C|1.0,5.0|131072,4096|-|-|Pren033/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_playful_gerbil model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_lethal_crab|-|EnraSensei/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_lethal_crab|C|1.0,5.0|131072,4096|-|-|EnraSensei/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_lethal_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_foraging_aardvark|-|dieutikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_foraging_aardvark|C|1.0,5.0|131072,4096|-|-|dieutikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_foraging_aardvark model|N
featherless/qwen2-rephrase-classify-reverse-5-epochs|-|magnifi/qwen2-rephrase-classify-reverse-5-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase-classify-reverse-5-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_small_ape|-|hiepntnaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_small_ape|C|1.0,5.0|131072,4096|-|-|hiepntnaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_small_ape model|N
featherless/Qwen2-0.5B-tldr-dro-binary-0.5|qwen2-0.5b-tldr-dro-binary-0.5|aklein4/Qwen2-0.5B-tldr-dro-binary-0.5|C|1.0,5.0|131072,4096|-|-|aklein4/Qwen2-0.5B-tldr-dro-binary-0.5 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_marine_dragonfly|-|shapka187/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_marine_dragonfly|C|1.0,5.0|131072,4096|-|-|shapka187/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_marine_dragonfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_singing_lobster|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_singing_lobster|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_singing_lobster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_bipedal_mule|-|cryptohakka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_bipedal_mule|C|1.0,5.0|131072,4096|-|-|cryptohakka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_bipedal_mule model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret|-|aaaaaswwe/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret|C|1.0,5.0|131072,4096|-|-|aaaaaswwe/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret model|N
featherless/quen_2.5_lora-merged|quen_2.5_lora-merged|sujithatz/quen_2.5_lora-merged|C|1.0,5.0|131072,4096|-|-|sujithatz/quen_2.5_lora-merged model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_lazy_puma|-|max3del/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_lazy_puma|C|1.0,5.0|131072,4096|-|-|max3del/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_lazy_puma model|N
featherless/Qwen2.5_0.5B_MED_Instruct|qwen2.5_0.5b_med_instruct|NotoriousH2/Qwen2.5_0.5B_MED_Instruct|C|1.0,5.0|131072,4096|-|-|NotoriousH2/Qwen2.5_0.5B_MED_Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_clam|-|DAVEWAVE11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_clam|C|1.0,5.0|131072,4096|-|-|DAVEWAVE11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_clam model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_slender_jellyfish|-|kaukulana/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_slender_jellyfish|C|1.0,5.0|131072,4096|-|-|kaukulana/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_slender_jellyfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_cunning_chimpanzee|-|irhYdlkSK/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_cunning_chimpanzee|C|1.0,5.0|131072,4096|-|-|irhYdlkSK/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_cunning_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_domestic_donkey|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_domestic_donkey|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wise_domestic_donkey model|N
featherless/online-dpo-qwen2-2|online-dpo-qwen2-2|qgallouedec/online-dpo-qwen2-2|C|1.0,5.0|131072,4096|-|-|qgallouedec/online-dpo-qwen2-2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_howling_chinchilla|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_howling_chinchilla|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_howling_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_armored_gerbil|-|Leoman777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_armored_gerbil|C|1.0,5.0|131072,4096|-|-|Leoman777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_armored_gerbil model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_invisible_grouse|-|xdp0405/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_invisible_grouse|C|1.0,5.0|131072,4096|-|-|xdp0405/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_invisible_grouse model|N
featherless/Qwen-Qwen2-0.5B-1717966718|qwen-qwen2-0.5b-1717966718|zJuu/Qwen-Qwen2-0.5B-1717966718|C|1.0,5.0|131072,4096|-|-|zJuu/Qwen-Qwen2-0.5B-1717966718 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_fierce_chinchilla|-|bliss01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_fierce_chinchilla|C|1.0,5.0|131072,4096|-|-|bliss01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_fierce_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_mule|-|x2earn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_mule|C|1.0,5.0|131072,4096|-|-|x2earn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_mule model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_foxy_jackal|-|0xDonya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_foxy_jackal|C|1.0,5.0|131072,4096|-|-|0xDonya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_foxy_jackal model|N
featherless/test4|test4|teenysheep/test4|C|1.0,5.0|131072,4096|-|-|teenysheep/test4 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_curious_seal|-|mutniytyp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_curious_seal|C|1.0,5.0|131072,4096|-|-|mutniytyp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_curious_seal model|N
featherless/Kurtis-E1.1-Qwen2.5-0.5B-Instruct|kurtis-e1.1-qwen2.5-0.5b-instruct|ethicalabs/Kurtis-E1.1-Qwen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|ethicalabs/Kurtis-E1.1-Qwen2.5-0.5B-Instruct model|N
featherless/gensyn-checkpoints-omnivorous_quiet_reindeer|-|okotosae/gensyn-checkpoints-omnivorous_quiet_reindeer|C|1.0,5.0|131072,4096|-|-|okotosae/gensyn-checkpoints-omnivorous_quiet_reindeer model|N
featherless/Aether-Qwen2-0.5B-SFT-v0.0.2|aether-qwen2-0.5b-sft-v0.0.2|thesven/Aether-Qwen2-0.5B-SFT-v0.0.2|C|1.0,5.0|131072,4096|V|-|thesven/Aether-Qwen2-0.5B-SFT-v0.0.2 model|N
featherless/Qwen2-0.5B-v15|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v15|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v15 model|N
featherless/qwen2.5-0.5b-classical-chinese-trans|qwen2.5-0.5b-classical-chinese-trans|rkingzhong/qwen2.5-0.5b-classical-chinese-trans|C|1.0,5.0|131072,4096|-|-|rkingzhong/qwen2.5-0.5b-classical-chinese-trans model|N
featherless/Samantha-qwen-0.5b|samantha-qwen-0.5b|Guilherme34/Samantha-qwen-0.5b|C|1.0,5.0|131072,4096|-|-|Guilherme34/Samantha-qwen-0.5b model|N
featherless/qwen-checkpoint-milestone|qwen-checkpoint-milestone|psr-ai/qwen-checkpoint-milestone|C|1.0,5.0|131072,4096|-|-|psr-ai/qwen-checkpoint-milestone model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_whiskered_dolphin|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_whiskered_dolphin|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_whiskered_dolphin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_mammalian_cod|-|Ifedi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_mammalian_cod|C|1.0,5.0|131072,4096|-|-|Ifedi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_mammalian_cod model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_powerful_mink|-|luciferhusson/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_powerful_mink|C|1.0,5.0|131072,4096|-|-|luciferhusson/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_powerful_mink model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_lithe_aardvark|-|cathy07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_lithe_aardvark|C|1.0,5.0|131072,4096|-|-|cathy07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_lithe_aardvark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_grazing_chameleon|-|Harinrus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_grazing_chameleon|C|1.0,5.0|131072,4096|-|-|Harinrus/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_grazing_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_fierce_alpaca|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_fierce_alpaca|C|1.0,5.0|131072,4096|-|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_fierce_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_leaping_bison|-|starfrich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_leaping_bison|C|1.0,5.0|131072,4096|-|-|starfrich/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_leaping_bison model|N
featherless/qlora2|qlora2|ThomasJohn/qlora2|C|1.0,5.0|131072,4096|-|-|ThomasJohn/qlora2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_tall_alligator|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_tall_alligator|C|1.0,5.0|131072,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_tall_alligator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_masked_stork|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_masked_stork|C|1.0,5.0|131072,4096|-|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_masked_stork model|N
featherless/Qwen2.5-Coder-0.5B-Instruct-NL2SH|qwen2.5-coder-0.5b-instruct-nl2sh|westenfelder/Qwen2.5-Coder-0.5B-Instruct-NL2SH|C|1.0,5.0|131072,4096|-|-|westenfelder/Qwen2.5-Coder-0.5B-Instruct-NL2SH model|N
featherless/PeftModel|peftmodel|Daeuna/PeftModel|C|1.0,5.0|131072,4096|-|-|Daeuna/PeftModel model|N
featherless/qwen2-0.5b-math-lora-big|qwen2-0.5b-math-lora-big|AnimateBow4809/qwen2-0.5b-math-lora-big|C|1.0,5.0|131072,4096|-|-|AnimateBow4809/qwen2-0.5b-math-lora-big model|N
featherless/gensyn-checkpoints-gliding_lively_raccoon|-|yasuku52/gensyn-checkpoints-gliding_lively_raccoon|C|1.0,5.0|131072,4096|-|-|yasuku52/gensyn-checkpoints-gliding_lively_raccoon model|N
featherless/Qwen2-0.5B-MATH-8a7b1c44-45ee-44f3-934d-ddc8b6e082f1|-|rayonlabs/Qwen2-0.5B-MATH-8a7b1c44-45ee-44f3-934d-ddc8b6e082f1|C|1.0,5.0|131072,4096|-|-|rayonlabs/Qwen2-0.5B-MATH-8a7b1c44-45ee-44f3-934d-ddc8b6e082f1 model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_70|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_70|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_70 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|C|1.0,5.0|131072,4096|-|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_quick_turtle|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_quick_turtle|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_quick_turtle model|N
featherless/qwen2-0.5b-math-full-train|qwen2-0.5b-math-full-train|AnimateBow4809/qwen2-0.5b-math-full-train|C|1.0,5.0|131072,4096|-|-|AnimateBow4809/qwen2-0.5b-math-full-train model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_soft_ibis|-|arnuc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_soft_ibis|C|1.0,5.0|131072,4096|-|-|arnuc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_soft_ibis model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_eager_caterpillar|-|alissaest/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_eager_caterpillar|C|1.0,5.0|131072,4096|-|-|alissaest/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_eager_caterpillar model|N
featherless/Qwen2.5-0.5B-SFT-oaif|qwen2.5-0.5b-sft-oaif|XueyingJia/Qwen2.5-0.5B-SFT-oaif|C|1.0,5.0|131072,4096|-|-|XueyingJia/Qwen2.5-0.5B-SFT-oaif model|N
featherless/Qwen2.5-0.5b-bebop-reranker-new-small|qwen2.5-0.5b-bebop-reranker-new-small|jbaron34/Qwen2.5-0.5b-bebop-reranker-new-small|C|1.0,5.0|131072,4096|-|-|jbaron34/Qwen2.5-0.5b-bebop-reranker-new-small model|N
featherless/Qwen2.5_0.5B_MED|qwen2.5_0.5b_med|NotoriousH2/Qwen2.5_0.5B_MED|C|1.0,5.0|131072,4096|-|-|NotoriousH2/Qwen2.5_0.5B_MED model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_wise_condor|-|molla202/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_wise_condor|C|1.0,5.0|131072,4096|-|-|molla202/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_wise_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_darting_macaque|-|Gacrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_darting_macaque|C|1.0,5.0|131072,4096|-|-|Gacrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_darting_macaque model|N
featherless/Qwen2-0.5B-OnlineDPO|qwen2-0.5b-onlinedpo|trl-lib/Qwen2-0.5B-OnlineDPO|C|1.0,5.0|131072,4096|-|-|trl-lib/Qwen2-0.5B-OnlineDPO model|N
featherless/Qwen2.5-0.5B-Instruct_Lean_Code_15k|qwen2.5-0.5b-instruct_lean_code_15k|cutelemonlili/Qwen2.5-0.5B-Instruct_Lean_Code_15k|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_Lean_Code_15k model|N
featherless/Qwen2.5-0.5B-Instruct_Lean_Code|qwen2.5-0.5b-instruct_lean_code|cutelemonlili/Qwen2.5-0.5B-Instruct_Lean_Code|C|1.0,5.0|131072,4096|-|-|cutelemonlili/Qwen2.5-0.5B-Instruct_Lean_Code model|N
featherless/Qwen2-0.5B-GRPO-demo|qwen2-0.5b-grpo-demo|longlian/Qwen2-0.5B-GRPO-demo|C|1.0,5.0|131072,4096|-|-|longlian/Qwen2-0.5B-GRPO-demo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_tenacious_dog|-|IBK993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_tenacious_dog|C|1.0,5.0|131072,4096|-|-|IBK993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_tenacious_dog model|N
featherless/Qwen2-0.5b-assamese-v0.2.1|qwen2-0.5b-assamese-v0.2.1|tamang0000/Qwen2-0.5b-assamese-v0.2.1|C|1.0,5.0|131072,4096|V|-|tamang0000/Qwen2-0.5b-assamese-v0.2.1 model|N
featherless/Qwen2-0.5B-test|qwen2-0.5b-test|ChrisCoffey/Qwen2-0.5B-test|C|1.0,5.0|131072,4096|-|-|ChrisCoffey/Qwen2-0.5B-test model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_padded_mongoose|-|Sours/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_padded_mongoose|C|1.0,5.0|131072,4096|-|-|Sours/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_padded_mongoose model|N
featherless/qwen2.5-0.5B_ed_gauss_linear_30-3|qwen2.5-0.5b_ed_gauss_linear_30-3|komi77/qwen2.5-0.5B_ed_gauss_linear_30-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_linear_30-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_squirrel|-|fdopper/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_squirrel|C|1.0,5.0|131072,4096|-|-|fdopper/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_curious_squirrel model|N
featherless/Qwen2-0.5B-alpaca-merged-st|qwen2-0.5b-alpaca-merged-st|jiangcongtao/Qwen2-0.5B-alpaca-merged-st|C|1.0,5.0|131072,4096|-|-|jiangcongtao/Qwen2-0.5B-alpaca-merged-st model|N
featherless/test-text-vis|test-text-vis|chenluuli/test-text-vis|C|1.0,5.0|131072,4096|V|-|chenluuli/test-text-vis model|N
featherless/Qwen2-0.5B-XPO|qwen2-0.5b-xpo|trl-lib/Qwen2-0.5B-XPO|C|1.0,5.0|131072,4096|-|-|trl-lib/Qwen2-0.5B-XPO model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en-ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en-ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en-ja model|N
featherless/gensyn-checkpoints-bipedal_soft_jellyfish|-|dashashiya/gensyn-checkpoints-bipedal_soft_jellyfish|C|1.0,5.0|131072,4096|-|-|dashashiya/gensyn-checkpoints-bipedal_soft_jellyfish model|N
featherless/Qwen2-0.5B-tldr-dro-binary-1.0|qwen2-0.5b-tldr-dro-binary-1.0|aklein4/Qwen2-0.5B-tldr-dro-binary-1.0|C|1.0,5.0|131072,4096|-|-|aklein4/Qwen2-0.5B-tldr-dro-binary-1.0 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_lazy_snake|-|wulaoshan886/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_lazy_snake|C|1.0,5.0|131072,4096|-|-|wulaoshan886/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_lazy_snake model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|C|1.0,5.0|131072,4096|-|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_bipedal_dragonfly|-|hnt4006/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_bipedal_dragonfly|C|1.0,5.0|131072,4096|-|-|hnt4006/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_bipedal_dragonfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_prowling_chinchilla|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_prowling_chinchilla|C|1.0,5.0|131072,4096|-|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_prowling_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_stocky_ladybug|-|hientan118/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_stocky_ladybug|C|1.0,5.0|131072,4096|-|-|hientan118/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_stocky_ladybug model|N
featherless/oneirogen-0.5B|oneirogen-0.5b|gustavecortal/oneirogen-0.5B|C|1.0,5.0|131072,4096|-|-|gustavecortal/oneirogen-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_shrewd_gecko|-|kakielekea/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_shrewd_gecko|C|1.0,5.0|131072,4096|-|-|kakielekea/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_shrewd_gecko model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_padded_elk|-|yxpGFQUhn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_padded_elk|C|1.0,5.0|131072,4096|-|-|yxpGFQUhn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_padded_elk model|N
featherless/Qwen0.5_MetaMathGsm8K|qwen0.5_metamathgsm8k|Colder203/Qwen0.5_MetaMathGsm8K|C|1.0,5.0|131072,4096|-|-|Colder203/Qwen0.5_MetaMathGsm8K model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_dormant_crocodile|-|CryptXperts/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_dormant_crocodile|C|1.0,5.0|131072,4096|-|-|CryptXperts/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_dormant_crocodile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python|C|1.0,5.0|131072,4096|-|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_savage_python model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_humming_giraffe|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_humming_giraffe|C|1.0,5.0|131072,4096|-|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_humming_giraffe model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_tropical_mouse|-|IsodayI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_tropical_mouse|C|1.0,5.0|131072,4096|-|-|IsodayI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_tropical_mouse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_jumping_cheetah|-|sdfsdsssFBoss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_jumping_cheetah|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBoss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_jumping_cheetah model|N
featherless/Qwen2-0.5B-Chat_SFT_DPO|qwen2-0.5b-chat_sft_dpo|JCHAVEROT/Qwen2-0.5B-Chat_SFT_DPO|C|1.0,5.0|131072,4096|-|-|JCHAVEROT/Qwen2-0.5B-Chat_SFT_DPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_rangy_hippo|-|irekit/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_rangy_hippo|C|1.0,5.0|131072,4096|-|-|irekit/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_rangy_hippo model|N
featherless/qwen2.5-0.5b-anghabench-32kcw|qwen2.5-0.5b-anghabench-32kcw|ahmedheakl/qwen2.5-0.5b-anghabench-32kcw|C|1.0,5.0|131072,4096|-|-|ahmedheakl/qwen2.5-0.5b-anghabench-32kcw model|N
featherless/Qwen2.5-0.5B_PIFT_jaen_manywords_4000_v1|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_4000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_4000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_quiet_komodo|-|max175/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_quiet_komodo|C|1.0,5.0|131072,4096|-|-|max175/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_quiet_komodo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_yapping_clam|-|p2g6gensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_yapping_clam|C|1.0,5.0|131072,4096|-|-|p2g6gensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_yapping_clam model|N
featherless/qwen2.5-0.5b-1epoch|qwen2.5-0.5b-1epoch|juniorrios/qwen2.5-0.5b-1epoch|C|1.0,5.0|131072,4096|-|-|juniorrios/qwen2.5-0.5b-1epoch model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_robust_tiger|-|yipowell988/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_robust_tiger|C|1.0,5.0|131072,4096|-|-|yipowell988/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_robust_tiger model|N
featherless/gensyn-checkpoints-fleecy_mangy_chameleon|-|yorotetsu/gensyn-checkpoints-fleecy_mangy_chameleon|C|1.0,5.0|131072,4096|-|-|yorotetsu/gensyn-checkpoints-fleecy_mangy_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_colorful_mandrill|-|Satoshi6789/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_colorful_mandrill|C|1.0,5.0|131072,4096|-|-|Satoshi6789/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_colorful_mandrill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_giant_alpaca|-|p2g8gensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_giant_alpaca|C|1.0,5.0|131072,4096|-|-|p2g8gensyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_giant_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_docile_ape|-|biguzirra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_docile_ape|C|1.0,5.0|131072,4096|-|-|biguzirra/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_docile_ape model|N
featherless/qwen_sft_trained|qwen_sft_trained|ajia2/qwen_sft_trained|C|1.0,5.0|131072,4096|-|-|ajia2/qwen_sft_trained model|N
featherless/qwen2.5-0.5B_mceval_instruct_inst|qwen2.5-0.5b_mceval_instruct_inst|Hachipo/qwen2.5-0.5B_mceval_instruct_inst|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_mceval_instruct_inst model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_enormous_hyena|-|xkaktyzx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_enormous_hyena|C|1.0,5.0|131072,4096|-|-|xkaktyzx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_enormous_hyena model|N
featherless/Qwen2-0.5B-Instruct-xLAM|qwen2-0.5b-instruct-xlam|ericlewis/Qwen2-0.5B-Instruct-xLAM|C|1.0,5.0|131072,4096|-|-|ericlewis/Qwen2-0.5B-Instruct-xLAM model|N
featherless/qwen2-rephrase-classify-multitask-news-correction|-|magnifi/qwen2-rephrase-classify-multitask-news-correction|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase-classify-multitask-news-correction model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_fleecy_raccoon|-|Kutty1012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_fleecy_raccoon|C|1.0,5.0|131072,4096|-|-|Kutty1012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_fleecy_raccoon model|N
featherless/test14|test14|teenysheep/test14|C|1.0,5.0|131072,4096|-|-|teenysheep/test14 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_barky_whale|-|sclaper/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_barky_whale|C|1.0,5.0|131072,4096|-|-|sclaper/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_barky_whale model|N
featherless/walk20|walk20|memevis/walk20|C|1.0,5.0|131072,4096|-|-|memevis/walk20 model|N
featherless/Amadeus-Verbo-BI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental|-|amadeusai/Amadeus-Verbo-BI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental|C|1.0,5.0|131072,4096|V|-|amadeusai/Amadeus-Verbo-BI-Qwen-2.5-0.5B-PT-BR-Instruct-Experimental model|N
featherless/svig-tiny-step-3.7k|svig-tiny-step-3.7k|MrOvkill/svig-tiny-step-3.7k|C|1.0,5.0|131072,4096|-|-|MrOvkill/svig-tiny-step-3.7k model|N
featherless/gensyn-checkpoints-powerful_pouncing_buffalo|-|cryptalk3/gensyn-checkpoints-powerful_pouncing_buffalo|C|1.0,5.0|131072,4096|-|-|cryptalk3/gensyn-checkpoints-powerful_pouncing_buffalo model|N
featherless/Qwen2.5-0.5B-SFT-ours|qwen2.5-0.5b-sft-ours|XueyingJia/Qwen2.5-0.5B-SFT-ours|C|1.0,5.0|131072,4096|-|-|XueyingJia/Qwen2.5-0.5B-SFT-ours model|N
featherless/qwen2.5-0.5B_space_educational_instruct_linear_max5.3p_new-3|-|komi77/qwen2.5-0.5B_space_educational_instruct_linear_max5.3p_new-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_space_educational_instruct_linear_max5.3p_new-3 model|N
featherless/walk21|walk21|memevis/walk21|C|1.0,5.0|131072,4096|-|-|memevis/walk21 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_frisky_tapir|-|DashNode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_frisky_tapir|C|1.0,5.0|131072,4096|-|-|DashNode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_frisky_tapir model|N
featherless/qwen_sft_trained_v3|qwen_sft_trained_v3|ajia2/qwen_sft_trained_v3|C|1.0,5.0|131072,4096|-|-|ajia2/qwen_sft_trained_v3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_screeching_capybara|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_screeching_capybara|C|1.0,5.0|131072,4096|-|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_screeching_capybara model|N
featherless/online-dpo-qwen2-4|online-dpo-qwen2-4|qgallouedec/online-dpo-qwen2-4|C|1.0,5.0|131072,4096|-|-|qgallouedec/online-dpo-qwen2-4 model|N
featherless/openfin-0.5B-ZH-optimal-sft_sls|openfin-0.5b-zh-optimal-sft_sls|daishen/openfin-0.5B-ZH-optimal-sft_sls|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_sls model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_running_gibbon|-|DrozdBirdPerson/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_running_gibbon|C|1.0,5.0|131072,4096|-|-|DrozdBirdPerson/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_running_gibbon model|N
featherless/qwen2-0.5b-instruct-simpo-lr-5e-07-gamma-1.5|-|Ejafa/qwen2-0.5b-instruct-simpo-lr-5e-07-gamma-1.5|C|1.0,5.0|131072,4096|-|-|Ejafa/qwen2-0.5b-instruct-simpo-lr-5e-07-gamma-1.5 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_smooth_okapi|-|maithicamlinh1983/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_smooth_okapi|C|1.0,5.0|131072,4096|-|-|maithicamlinh1983/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_smooth_okapi model|N
featherless/qwen2.5-0.5B_MIFT-ja_manywords_1000|qwen2.5-0.5b_mift-ja_manywords_1000|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_1000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_1000 model|N
featherless/gensyn-checkpoints-meek_regal_badger|gensyn-checkpoints-meek_regal_badger|osawar51/gensyn-checkpoints-meek_regal_badger|C|1.0,5.0|131072,4096|-|-|osawar51/gensyn-checkpoints-meek_regal_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_freckled_sheep|-|rekpero/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_freckled_sheep|C|1.0,5.0|131072,4096|-|-|rekpero/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_freckled_sheep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_gliding_wallaby|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_gliding_wallaby|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_gliding_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_tenacious_cockroach|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_tenacious_cockroach|C|1.0,5.0|131072,4096|-|-|aXsalll/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_tenacious_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_small_stork|-|Dahghostblogger/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_small_stork|C|1.0,5.0|131072,4096|-|-|Dahghostblogger/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_small_stork model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_fishy_opossum|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_fishy_opossum|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_fishy_opossum model|N
featherless/qwen-fullnew_merged-FinetunedByAG|qwen-fullnew_merged-finetunedbyag|akshit-Gupta/qwen-fullnew_merged-FinetunedByAG|C|1.0,5.0|131072,4096|-|-|akshit-Gupta/qwen-fullnew_merged-FinetunedByAG model|N
featherless/Qwen2.5-0.5B-Instruct-f16|qwen2.5-0.5b-instruct-f16|viethq5/Qwen2.5-0.5B-Instruct-f16|C|1.0,5.0|131072,4096|-|-|viethq5/Qwen2.5-0.5B-Instruct-f16 model|N
featherless/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_jaen|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_jaen|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_jaen model|N
featherless/qwen2.5-0.5B_evol_instruct_mini|qwen2.5-0.5b_evol_instruct_mini|Hachipo/qwen2.5-0.5B_evol_instruct_mini|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_evol_instruct_mini model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_winged_clam|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_winged_clam|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_winged_clam model|N
featherless/Qwen-0d5B-Int-AbstraL|qwen-0d5b-int-abstral|Silin1590/Qwen-0d5B-Int-AbstraL|C|1.0,5.0|131072,4096|-|-|Silin1590/Qwen-0d5B-Int-AbstraL model|N
featherless/Qwen2.5-0.5B-Instruct-medicalLLM-sft-jmle_cot_ryu|-|bkholyday/Qwen2.5-0.5B-Instruct-medicalLLM-sft-jmle_cot_ryu|C|1.0,5.0|131072,4096|-|-|bkholyday/Qwen2.5-0.5B-Instruct-medicalLLM-sft-jmle_cot_ryu model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_downy_mongoose|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_downy_mongoose|C|1.0,5.0|131072,4096|-|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_downy_mongoose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth|-|Kitti6913/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth|C|1.0,5.0|131072,4096|-|-|Kitti6913/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth model|N
featherless/qwen2.5-0.5B_educational_instruct_top6000|-|Hachipo/qwen2.5-0.5B_educational_instruct_top6000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top6000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_exotic_elk|-|ongon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_exotic_elk|C|1.0,5.0|131072,4096|-|-|ongon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_exotic_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_fast_pelican|-|nesa2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_fast_pelican|C|1.0,5.0|131072,4096|-|-|nesa2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_fast_pelican model|N
featherless/qwen2.5-0.5B_MIFT-ja_manywords_8000|qwen2.5-0.5b_mift-ja_manywords_8000|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_8000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_flexible_giraffe|-|ngochan2k6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_flexible_giraffe|C|1.0,5.0|131072,4096|-|-|ngochan2k6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_flexible_giraffe model|N
featherless/FastThink-0.5B-Tiny-abliterated|fastthink-0.5b-tiny-abliterated|prithivMLmods/FastThink-0.5B-Tiny-abliterated|C|1.0,5.0|131072,4096|K|-|prithivMLmods/FastThink-0.5B-Tiny-abliterated model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_yapping_spider|-|Haenim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_yapping_spider|C|1.0,5.0|131072,4096|-|-|Haenim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_yapping_spider model|N
featherless/qwen2.5-0.5b-grpo-math-01|qwen2.5-0.5b-grpo-math-01|p1atdev/qwen2.5-0.5b-grpo-math-01|C|1.0,5.0|131072,4096|-|-|p1atdev/qwen2.5-0.5b-grpo-math-01 model|N
featherless/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_ja_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_freckled_wallaby|-|koneko222/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_freckled_wallaby|C|1.0,5.0|131072,4096|-|-|koneko222/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_freckled_wallaby model|N
featherless/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_humming_puffin|-|sapopi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_humming_puffin|C|1.0,5.0|131072,4096|-|-|sapopi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_humming_puffin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_sharp_dingo|-|OrobkoSh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_sharp_dingo|C|1.0,5.0|131072,4096|-|-|OrobkoSh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_sharp_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_ferocious_mouse|-|abc054321/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_ferocious_mouse|C|1.0,5.0|131072,4096|-|-|abc054321/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_ferocious_mouse model|N
featherless/test13|test13|teenysheep/test13|C|1.0,5.0|131072,4096|-|-|teenysheep/test13 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_hulking_dolphin|-|Pyacc100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_hulking_dolphin|C|1.0,5.0|131072,4096|-|-|Pyacc100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_hulking_dolphin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|C|1.0,5.0|131072,4096|-|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_rough_salamander|-|cryptolemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_rough_salamander|C|1.0,5.0|131072,4096|-|-|cryptolemon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_rough_salamander model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_whistling_sardine|-|coolpoco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_whistling_sardine|C|1.0,5.0|131072,4096|-|-|coolpoco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_whistling_sardine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_lazy_snail|-|thanvan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_lazy_snail|C|1.0,5.0|131072,4096|-|-|thanvan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_lazy_snail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_domestic_cow|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_domestic_cow|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_domestic_cow model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_8000|qwen2.5-0.5b_pift-jaen_manywords_8000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_8000 model|N
featherless/Qwen2-0.5B-Ko-v0.02-Instruct|qwen2-0.5b-ko-v0.02-instruct|lemon-mint/Qwen2-0.5B-Ko-v0.02-Instruct|C|1.0,5.0|131072,4096|V|-|lemon-mint/Qwen2-0.5B-Ko-v0.02-Instruct model|N
featherless/qwen2.5-0.5B_educational_instruct_top15000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top15000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top15000_codeonly model|N
featherless/qwen2.5-0.5B_space_educational_instruct_low_start9150_max95p_new-3|-|komi77/qwen2.5-0.5B_space_educational_instruct_low_start9150_max95p_new-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_space_educational_instruct_low_start9150_max95p_new-3 model|N
featherless/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_1000_pythonblock_en_ja model|N
featherless/qwen2.5-0.5B_BIFT_manywords_6000|qwen2.5-0.5b_bift_manywords_6000|Hachipo/qwen2.5-0.5B_BIFT_manywords_6000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_BIFT_manywords_6000 model|N
featherless/dpo_qwen2|dpo_qwen2|drudilorenzo/dpo_qwen2|C|1.0,5.0|131072,4096|-|-|drudilorenzo/dpo_qwen2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pesty_mule|-|hutaba-dev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pesty_mule|C|1.0,5.0|131072,4096|-|-|hutaba-dev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pesty_mule model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja-en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja-en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja-en model|N
featherless/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en_ja model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_3000|qwen2.5-0.5b_pift-jaen_manywords_3000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_3000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary|C|1.0,5.0|131072,4096|-|-|000ADI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_eager_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_camouflaged_mouse|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_camouflaged_mouse|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hairy_camouflaged_mouse model|N
featherless/gensyn-checkpoints-jagged_solitary_hyena|-|yeahakim1/gensyn-checkpoints-jagged_solitary_hyena|C|1.0,5.0|131072,4096|-|-|yeahakim1/gensyn-checkpoints-jagged_solitary_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_gilded_yak|-|ijii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_gilded_yak|C|1.0,5.0|131072,4096|-|-|ijii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-savage_gilded_yak model|N
featherless/qwen2.5-0.5B_linear_edu_instruct-3|qwen2.5-0.5b_linear_edu_instruct-3|NaoS2/qwen2.5-0.5B_linear_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_linear_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_agile_crow|-|savely77/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_agile_crow|C|1.0,5.0|131072,4096|-|-|savely77/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_agile_crow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_monstrous_ocelot|-|shivleydarbyshire800/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_monstrous_ocelot|C|1.0,5.0|131072,4096|-|-|shivleydarbyshire800/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fluffy_monstrous_ocelot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_diving_gecko|-|11Hope11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_diving_gecko|C|1.0,5.0|131072,4096|-|-|11Hope11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_diving_gecko model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_beaked_jaguar|-|rudra-sol/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_beaked_jaguar|C|1.0,5.0|131072,4096|-|-|rudra-sol/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_beaked_jaguar model|N
featherless/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_en model|N
featherless/qwen2.5-0.5B_PIFT-enja_manywords_3000|qwen2.5-0.5b_pift-enja_manywords_3000|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_3000 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_ja_en model|N
featherless/Qwen2.5-0.5B-Instruct-oaif|qwen2.5-0.5b-instruct-oaif|XueyingJia/Qwen2.5-0.5B-Instruct-oaif|C|1.0,5.0|131072,4096|-|-|XueyingJia/Qwen2.5-0.5B-Instruct-oaif model|N
featherless/final-finetuned-chinese|final-finetuned-chinese|WillyTan03/final-finetuned-chinese|C|1.0,5.0|131072,4096|-|-|WillyTan03/final-finetuned-chinese model|N
featherless/Al-Atlas-LLM-0.5B-bs-4-lr-5e-05-ep-3-wp-0.1-gacc-32-gnm-1.0-FP16-mx-2048-v2.3|-|BounharAbdelaziz/Al-Atlas-LLM-0.5B-bs-4-lr-5e-05-ep-3-wp-0.1-gacc-32-gnm-1.0-FP16-mx-2048-v2.3|C|1.0,5.0|131072,4096|V|-|BounharAbdelaziz/Al-Atlas-LLM-0.5B-bs-4-lr-5e-05-ep-3-wp-0.1-gacc-32-gnm-1.0-FP16-mx-2048-v2.3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_galloping_hamster|-|wyceee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_galloping_hamster|C|1.0,5.0|131072,4096|-|-|wyceee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_galloping_hamster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_large_barracuda|-|ozynode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_large_barracuda|C|1.0,5.0|131072,4096|-|-|ozynode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_large_barracuda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_elusive_toad|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_elusive_toad|C|1.0,5.0|131072,4096|-|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_elusive_toad model|N
featherless/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en_ja model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_en-ja-2|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en-ja-2|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en-ja-2 model|N
featherless/qwen0.5-sft|qwen0.5-sft|Ayush-Singh/qwen0.5-sft|C|1.0,5.0|131072,4096|-|-|Ayush-Singh/qwen0.5-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_exotic_mandrill|-|Bigbytez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_exotic_mandrill|C|1.0,5.0|131072,4096|-|-|Bigbytez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_exotic_mandrill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_muscular_shark|-|se7eneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_muscular_shark|C|1.0,5.0|131072,4096|-|-|se7eneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_muscular_shark model|N
featherless/qwen0.5B_3epoch_v1|qwen0.5b_3epoch_v1|li-ping/qwen0.5B_3epoch_v1|C|1.0,5.0|131072,4096|-|-|li-ping/qwen0.5B_3epoch_v1 model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.3-193|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-193|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-193 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_dextrous_pheasant|-|yfMcjUwtgy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_dextrous_pheasant|C|1.0,5.0|131072,4096|-|-|yfMcjUwtgy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_dextrous_pheasant model|N
featherless/qwen2.5-0.5B_MIFT-en_manywords_8000|qwen2.5-0.5b_mift-en_manywords_8000|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_8000 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_noncreated|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_noncreated|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_noncreated model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_padded_kangaroo|-|rumbid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_padded_kangaroo|C|1.0,5.0|131072,4096|-|-|rumbid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_padded_kangaroo model|N
featherless/qwen2.5-0.5B_MIFT-en_manywords_3000|qwen2.5-0.5b_mift-en_manywords_3000|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_3000 model|N
featherless/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja model|N
featherless/qwen2.5-0.5B_educational_instruct_top10000|-|Hachipo/qwen2.5-0.5B_educational_instruct_top10000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top10000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_lethal_ocelot|-|wjkim2022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_lethal_ocelot|C|1.0,5.0|131072,4096|-|-|wjkim2022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_lethal_ocelot model|N
featherless/qwen2.5-0.5B_educational_instruct_all_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_codeonly model|N
featherless/J.O.S.I.E.v4o-0.5b-stage1-beta1|j.o.s.i.e.v4o-0.5b-stage1-beta1|Goekdeniz-Guelmez/J.O.S.I.E.v4o-0.5b-stage1-beta1|C|1.0,5.0|131072,4096|-|-|Goekdeniz-Guelmez/J.O.S.I.E.v4o-0.5b-stage1-beta1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_colorful_buffalo|-|hazentr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_colorful_buffalo|C|1.0,5.0|131072,4096|-|-|hazentr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_colorful_buffalo model|N
featherless/trained|trained|wedobetterit/trained|C|1.0,5.0|131072,4096|-|-|wedobetterit/trained model|N
featherless/Qwen2.5-0.5B-Noised4|qwen2.5-0.5b-noised4|stupidity-ai/Qwen2.5-0.5B-Noised4|C|1.0,5.0|131072,4096|-|-|stupidity-ai/Qwen2.5-0.5B-Noised4 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_DeepL_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_DeepL_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_DeepL_en_ja model|N
featherless/Qwen2.5_0.5B_MED_Class|qwen2.5_0.5b_med_class|NotoriousH2/Qwen2.5_0.5B_MED_Class|C|1.0,5.0|131072,4096|-|-|NotoriousH2/Qwen2.5_0.5B_MED_Class model|N
featherless/qwen2.5-0.5B_educational_instruct_pythonblock_en_5000|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_5000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_5000 model|N
featherless/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_en_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_rugged_prawn|-|ngophong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_rugged_prawn|C|1.0,5.0|131072,4096|-|-|ngophong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_rugged_prawn model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_feathered_eagle|-|sirano/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_feathered_eagle|C|1.0,5.0|131072,4096|-|-|sirano/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_feathered_eagle model|N
featherless/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_tawny_quail|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_tawny_quail|C|1.0,5.0|131072,4096|-|-|naser1973/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_tawny_quail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_grassy_kangaroo|-|llearningone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_grassy_kangaroo|C|1.0,5.0|131072,4096|-|-|llearningone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_grassy_kangaroo model|N
featherless/qwen2.5-0.5B_MIFT-jaen_manywords_2000|qwen2.5-0.5b_mift-jaen_manywords_2000|Hachipo/qwen2.5-0.5B_MIFT-jaen_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-jaen_manywords_2000 model|N
featherless/qwen2.5-0.5b-instruct_MATH_full-finetuningV2|-|axel-datos/qwen2.5-0.5b-instruct_MATH_full-finetuningV2|C|1.0,5.0|131072,4096|-|-|axel-datos/qwen2.5-0.5b-instruct_MATH_full-finetuningV2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_amphibious_wolf|-|plGBdGWCFGoG/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_amphibious_wolf|C|1.0,5.0|131072,4096|-|-|plGBdGWCFGoG/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_amphibious_wolf model|N
featherless/qwen2.5-0.5B_uni30_edu_instruct-3|qwen2.5-0.5b_uni30_edu_instruct-3|NaoS2/qwen2.5-0.5B_uni30_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_uni30_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_hulking_nightingale|-|mixxxeee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_hulking_nightingale|C|1.0,5.0|131072,4096|-|-|mixxxeee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_hulking_nightingale model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_large_wolf|-|kscttan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_large_wolf|C|1.0,5.0|131072,4096|-|-|kscttan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_large_wolf model|N
featherless/qwen2.5-0.5B_MIFT-en_manywords_2000|qwen2.5-0.5b_mift-en_manywords_2000|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_manywords_2000 model|N
featherless/qwen2.5-0.5B_educational_instruct_pythonblock_en_4000|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_pythonblock_en_4000 model|N
featherless/Qwen2_0.5B_Spanish_English_raspberry_pi_16bit|-|Agnuxo/Qwen2_0.5B_Spanish_English_raspberry_pi_16bit|C|1.0,5.0|131072,4096|-|-|Agnuxo/Qwen2_0.5B_Spanish_English_raspberry_pi_16bit model|N
featherless/gensyn-checkpoints-whistling_howling_scorpion|-|mikankure/gensyn-checkpoints-whistling_howling_scorpion|C|1.0,5.0|131072,4096|-|-|mikankure/gensyn-checkpoints-whistling_howling_scorpion model|N
featherless/Qwen2.5-0.5B-Instruct-BNB-8bit|qwen2.5-0.5b-instruct-bnb-8bit|JohnConnor123/Qwen2.5-0.5B-Instruct-BNB-8bit|C|1.0,5.0|131072,4096|-|-|JohnConnor123/Qwen2.5-0.5B-Instruct-BNB-8bit model|N
featherless/qwen0.5-small-sft|qwen0.5-small-sft|Ayush-Singh/qwen0.5-small-sft|C|1.0,5.0|131072,4096|-|-|Ayush-Singh/qwen0.5-small-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_short_ladybug|-|Johnpaulifedi1998/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_short_ladybug|C|1.0,5.0|131072,4096|-|-|Johnpaulifedi1998/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_short_ladybug model|N
featherless/qwen_emoji|qwen_emoji|AshKetchumAI/qwen_emoji|C|1.0,5.0|131072,4096|-|-|AshKetchumAI/qwen_emoji model|N
featherless/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec1000_pythonblock_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_lazy_armadillo|-|huangbo666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_lazy_armadillo|C|1.0,5.0|131072,4096|-|-|huangbo666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_lazy_armadillo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_trotting_cobra|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_trotting_cobra|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_trotting_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_yawning_leopard|-|Alex007ander/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_yawning_leopard|C|1.0,5.0|131072,4096|-|-|Alex007ander/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_yawning_leopard model|N
featherless/qwen2.5-0.5B_PIFT-jaen_combined_18000|qwen2.5-0.5b_pift-jaen_combined_18000|Hachipo/qwen2.5-0.5B_PIFT-jaen_combined_18000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_combined_18000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_shy_capybara|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_shy_capybara|C|1.0,5.0|131072,4096|-|-|sdfsdsssFTersr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_shy_capybara model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_wiry_ape|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_wiry_ape|C|1.0,5.0|131072,4096|V|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_wiry_ape model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_shy_duck|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_shy_duck|C|1.0,5.0|131072,4096|-|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_shy_duck model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_2000|qwen2.5-0.5b_pift-jaen_manywords_2000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_downy_sealion|-|qq4184/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_downy_sealion|C|1.0,5.0|131072,4096|-|-|qq4184/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_downy_sealion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_downy_koala|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_downy_koala|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pudgy_downy_koala model|N
featherless/qwen2.5-0.5B_BIFT_manywords_8000|qwen2.5-0.5b_bift_manywords_8000|Hachipo/qwen2.5-0.5B_BIFT_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_BIFT_manywords_8000 model|N
featherless/qwen2.5-0.5B_educational_instruct_uni_5p-3|-|komi77/qwen2.5-0.5B_educational_instruct_uni_5p-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_uni_5p-3 model|N
featherless/openfin-0.5B-ZH-optimal-sft_sll|openfin-0.5b-zh-optimal-sft_sll|daishen/openfin-0.5B-ZH-optimal-sft_sll|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_sll model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_loud_crab|-|sadeghik/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_loud_crab|C|1.0,5.0|131072,4096|-|-|sadeghik/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-darting_loud_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_diving_hyena|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_diving_hyena|C|1.0,5.0|131072,4096|-|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_diving_hyena model|N
featherless/qwen2.5-0.5B_educational_instruct_top12000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top12000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top12000_codeonly model|N
featherless/qwen2.5-0.5B_PIFT-enja_manywords_4000|qwen2.5-0.5b_pift-enja_manywords_4000|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct_skill|qwen2.5-0.5b-instruct_skill|khursani8/Qwen2.5-0.5B-Instruct_skill|C|1.0,5.0|131072,4096|-|-|khursani8/Qwen2.5-0.5B-Instruct_skill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|C|1.0,5.0|131072,4096|-|-|YevhenVagan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_patterned_locust|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_patterned_locust|C|1.0,5.0|131072,4096|-|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_patterned_locust model|N
featherless/qwen2.5-0.5B_PIFT-enja_manywords_8000|qwen2.5-0.5b_pift-enja_manywords_8000|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_8000 model|N
featherless/qwen1with32|qwen1with32|manigupta1/qwen1with32|C|1.0,5.0|131072,4096|-|-|manigupta1/qwen1with32 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_alert_porcupine|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_alert_porcupine|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_alert_porcupine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hairy_scorpion|-|FairStaking/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hairy_scorpion|C|1.0,5.0|131072,4096|-|-|FairStaking/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hairy_scorpion model|N
featherless/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_en_ja model|N
featherless/qwen|qwen|lgxz/qwen|C|1.0,5.0|131072,4096|-|-|lgxz/qwen model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_ja model|N
featherless/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja_en model|N
featherless/bloomVN-0.5B-ppo-sft-phy-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-phy-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-phy-olora-ALL-WEIGHT model|N
featherless/Qwen-0.5B-GRPO-gsm8k-count-wait-cap-cross-correct|-|kenhktsui/Qwen-0.5B-GRPO-gsm8k-count-wait-cap-cross-correct|C|1.0,5.0|131072,4096|-|-|kenhktsui/Qwen-0.5B-GRPO-gsm8k-count-wait-cap-cross-correct model|N
featherless/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_pesty_macaw|-|oladrop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_pesty_macaw|C|1.0,5.0|131072,4096|-|-|oladrop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_pesty_macaw model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_wiry_cockroach|-|acefangyw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_wiry_cockroach|C|1.0,5.0|131072,4096|-|-|acefangyw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_wiry_cockroach model|N
featherless/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_4000_pythonblock_ja model|N
featherless/trained-qwen2-dpo-model|trained-qwen2-dpo-model|maars505/trained-qwen2-dpo-model|C|1.0,5.0|131072,4096|-|-|maars505/trained-qwen2-dpo-model model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_singing_hummingbird|-|ESERCKR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_singing_hummingbird|C|1.0,5.0|131072,4096|-|-|ESERCKR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_singing_hummingbird model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_screeching_baboon|-|negneg92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_screeching_baboon|C|1.0,5.0|131072,4096|-|-|negneg92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-silent_screeching_baboon model|N
featherless/Qwen2_0.5B_Spanish_English_raspberry_pi5_16bit|-|Agnuxo/Qwen2_0.5B_Spanish_English_raspberry_pi5_16bit|C|1.0,5.0|131072,4096|-|-|Agnuxo/Qwen2_0.5B_Spanish_English_raspberry_pi5_16bit model|N
featherless/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja model|N
featherless/Qwen2.5-0.5B-Instruct-4bit-Finetune-FineTome-100K|-|minhnguyen5293/Qwen2.5-0.5B-Instruct-4bit-Finetune-FineTome-100K|C|1.0,5.0|131072,4096|-|-|minhnguyen5293/Qwen2.5-0.5B-Instruct-4bit-Finetune-FineTome-100K model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_prowling_tapir|-|Olalion/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_prowling_tapir|C|1.0,5.0|131072,4096|-|-|Olalion/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_prowling_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_toothy_opossum|-|quannjr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_toothy_opossum|C|1.0,5.0|131072,4096|-|-|quannjr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_toothy_opossum model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_running_ape|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_running_ape|C|1.0,5.0|131072,4096|-|-|littletuzi100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-singing_running_ape model|N
featherless/qwen2.5-0.5B_educational_instruct_top20000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top20000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top20000_codeonly model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|Qucy/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|Qucy/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.3-100|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-100|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-100 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_en-ja_noncreated|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en-ja_noncreated|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en-ja_noncreated model|N
featherless/qwen2.5-0.5B_edu_instruct-3|qwen2.5-0.5b_edu_instruct-3|NaoS2/qwen2.5-0.5B_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_edu_instruct-3 model|N
featherless/xptwen3|xptwen3|XsoraS/xptwen3|C|1.0,5.0|131072,4096|-|-|XsoraS/xptwen3 model|N
featherless/qwen2.5-0.5b-instruct_gsm8k_full-finetuningV2|-|axel-datos/qwen2.5-0.5b-instruct_gsm8k_full-finetuningV2|C|1.0,5.0|131072,4096|-|-|axel-datos/qwen2.5-0.5b-instruct_gsm8k_full-finetuningV2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_pouncing_wombat|-|gensynmaster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_pouncing_wombat|C|1.0,5.0|131072,4096|-|-|gensynmaster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_pouncing_wombat model|N
featherless/sft_P3_full-sft|sft_p3_full-sft|MaxwellJryao/sft_P3_full-sft|C|1.0,5.0|131072,4096|-|-|MaxwellJryao/sft_P3_full-sft model|N
featherless/Qwen-0.5B-SFT-2|qwen-0.5b-sft-2|Ayush-Singh/Qwen-0.5B-SFT-2|C|1.0,5.0|131072,4096|-|-|Ayush-Singh/Qwen-0.5B-SFT-2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_fleecy_dove|-|SAOBN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_fleecy_dove|C|1.0,5.0|131072,4096|-|-|SAOBN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_fleecy_dove model|N
featherless/qwen2.5-0.5B_uni15_edu_instruct-3|qwen2.5-0.5b_uni15_edu_instruct-3|NaoS2/qwen2.5-0.5B_uni15_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_uni15_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_grazing_weasel|-|Hachij/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_grazing_weasel|C|1.0,5.0|131072,4096|-|-|Hachij/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_grazing_weasel model|N
featherless/qwen1with64_2epc|qwen1with64_2epc|manigupta1/qwen1with64_2epc|C|1.0,5.0|131072,4096|-|-|manigupta1/qwen1with64_2epc model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.3-50|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-50|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-50 model|N
featherless/Qwen2-0.5B-reuploaded|qwen2-0.5b-reuploaded|rombodawg/Qwen2-0.5B-reuploaded|C|1.0,5.0|131072,4096|-|-|rombodawg/Qwen2-0.5B-reuploaded model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_winged_cockroach|-|gaoailing55/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_winged_cockroach|C|1.0,5.0|131072,4096|-|-|gaoailing55/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_winged_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_sleek_chimpanzee|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_sleek_chimpanzee|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_sleek_chimpanzee model|N
featherless/qwen2.5-0.5B_uni10_edu_instruct-3|qwen2.5-0.5b_uni10_edu_instruct-3|NaoS2/qwen2.5-0.5B_uni10_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_uni10_edu_instruct-3 model|N
featherless/gensyn-checkpoints-gliding_reclusive_squirrel|-|pscmjlce/gensyn-checkpoints-gliding_reclusive_squirrel|C|1.0,5.0|131072,4096|-|-|pscmjlce/gensyn-checkpoints-gliding_reclusive_squirrel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad|-|Sameer5500/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad|C|1.0,5.0|131072,4096|-|-|Sameer5500/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad model|N
featherless/Qybera2.6-0.5-instruct|qybera2.6-0.5-instruct|Qybera/Qybera2.6-0.5-instruct|C|1.0,5.0|131072,4096|-|-|Qybera/Qybera2.6-0.5-instruct model|N
featherless/qwen2.5-0.5B_uni20_edu_instruct-3|qwen2.5-0.5b_uni20_edu_instruct-3|NaoS2/qwen2.5-0.5B_uni20_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_uni20_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_hardy_cat|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_hardy_cat|C|1.0,5.0|131072,4096|-|-|cryptoncalls/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_hardy_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tawny_dove|-|SouravCrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tawny_dove|C|1.0,5.0|131072,4096|-|-|SouravCrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_tawny_dove model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_pythonblock_en model|N
featherless/qwen2-rephrase-4bit-10-epochs|qwen2-rephrase-4bit-10-epochs|magnifi/qwen2-rephrase-4bit-10-epochs|C|1.0,5.0|131072,4096|-|-|magnifi/qwen2-rephrase-4bit-10-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_bipedal_antelope|-|fakeid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_bipedal_antelope|C|1.0,5.0|131072,4096|-|-|fakeid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_bipedal_antelope model|N
featherless/Qwen2.5-0.5B-GRPO-main|qwen2.5-0.5b-grpo-main|qgallouedec/Qwen2.5-0.5B-GRPO-main|C|1.0,5.0|131072,4096|-|-|qgallouedec/Qwen2.5-0.5B-GRPO-main model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_muscular_seal|-|Saveqq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_muscular_seal|C|1.0,5.0|131072,4096|-|-|Saveqq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_muscular_seal model|N
featherless/qwen2.5-0.5B_MIFT-ja_manywords_3000|qwen2.5-0.5b_mift-ja_manywords_3000|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_3000 model|N
featherless/qwen2.5-0.5B_educational_instruct_linear_max7p_new-3|-|komi77/qwen2.5-0.5B_educational_instruct_linear_max7p_new-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_linear_max7p_new-3 model|N
featherless/gensyn-checkpoints-lively_padded_barracuda|-|setsuna7877/gensyn-checkpoints-lively_padded_barracuda|C|1.0,5.0|131072,4096|-|-|setsuna7877/gensyn-checkpoints-lively_padded_barracuda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_rabid_pelican|-|asdasdaTes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_rabid_pelican|C|1.0,5.0|131072,4096|-|-|asdasdaTes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_rabid_pelican model|N
featherless/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_en model|N
featherless/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec5000_pythonblock_dataselection_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_roaring_worm|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_roaring_worm|C|1.0,5.0|131072,4096|-|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mammalian_roaring_worm model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_sizable_squid|-|billionaire1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_sizable_squid|C|1.0,5.0|131072,4096|-|-|billionaire1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_sizable_squid model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_prowling_lizard|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_prowling_lizard|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_prowling_lizard model|N
featherless/test_trainer|test_trainer|aalexchengg/test_trainer|C|1.0,5.0|131072,4096|-|-|aalexchengg/test_trainer model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_gilded_meerkat|-|leng29/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_gilded_meerkat|C|1.0,5.0|131072,4096|-|-|leng29/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-marine_gilded_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_tame_gecko|-|QfdkzivlLv/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_tame_gecko|C|1.0,5.0|131072,4096|-|-|QfdkzivlLv/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-eager_tame_gecko model|N
featherless/qwen2.5-0.5B_uni5_edu_instruct-3|qwen2.5-0.5b_uni5_edu_instruct-3|NaoS2/qwen2.5-0.5B_uni5_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_uni5_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_plump_chicken|-|willewang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_plump_chicken|C|1.0,5.0|131072,4096|-|-|willewang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squinting_plump_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_striped_sloth|-|Samyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_striped_sloth|C|1.0,5.0|131072,4096|-|-|Samyn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_striped_sloth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_knobby_raven|-|SAOBN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_knobby_raven|C|1.0,5.0|131072,4096|-|-|SAOBN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_knobby_raven model|N
featherless/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_5000_pythonblock_ja_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_finicky_rabbit|-|Jacklor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_finicky_rabbit|C|1.0,5.0|131072,4096|-|-|Jacklor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-graceful_finicky_rabbit model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|itorgov/Qwen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|itorgov/Qwen2.5-0.5B-Instruct model|N
featherless/trained-qwen2-dpo-model3|trained-qwen2-dpo-model3|maars505/trained-qwen2-dpo-model3|C|1.0,5.0|131072,4096|-|-|maars505/trained-qwen2-dpo-model3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_pudgy_baboon|-|matterwork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_pudgy_baboon|C|1.0,5.0|131072,4096|-|-|matterwork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_pudgy_baboon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_mute_magpie|-|LusineLukya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_mute_magpie|C|1.0,5.0|131072,4096|-|-|LusineLukya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_mute_magpie model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_scurrying_anteater|-|ruanchengren/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_scurrying_anteater|C|1.0,5.0|131072,4096|-|-|ruanchengren/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_scurrying_anteater model|N
featherless/sfting|sfting|derikk/sfting|C|1.0,5.0|131072,4096|-|-|derikk/sfting model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_hibernating_gibbon|-|tonymarma/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_hibernating_gibbon|C|1.0,5.0|131072,4096|-|-|tonymarma/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tall_hibernating_gibbon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_tangled_woodpecker|-|Riotffx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_tangled_woodpecker|C|1.0,5.0|131072,4096|-|-|Riotffx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_tangled_woodpecker model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_majestic_impala|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_majestic_impala|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_majestic_impala model|N
featherless/test-viya-upload|test-viya-upload|josiahchuasas/test-viya-upload|C|1.0,5.0|131072,4096|V|-|josiahchuasas/test-viya-upload model|N
featherless/burraco-qwen2.5-0.5b|burraco-qwen2.5-0.5b|wedobetterit/burraco-qwen2.5-0.5b|C|1.0,5.0|131072,4096|-|-|wedobetterit/burraco-qwen2.5-0.5b model|N
featherless/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new_1up-3|-|komi77/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new_1up-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_low_start4400_max95p_new_1up-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_snorting_dingo|-|ryan07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_snorting_dingo|C|1.0,5.0|131072,4096|-|-|ryan07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_snorting_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_porcupine|-|kwadok/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_porcupine|C|1.0,5.0|131072,4096|-|-|kwadok/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_diving_porcupine model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.0-50|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-50|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-50 model|N
featherless/Bellatrix-Tiny-0.5B|bellatrix-tiny-0.5b|prithivMLmods/Bellatrix-Tiny-0.5B|C|1.0,5.0|131072,4096|-|-|prithivMLmods/Bellatrix-Tiny-0.5B model|N
featherless/qwen2.5-0.5B_educational_instruct_gause_low_start4400_max90p-3|-|komi77/qwen2.5-0.5B_educational_instruct_gause_low_start4400_max90p-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_gause_low_start4400_max90p-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_wily_ant|-|wangyingjia8/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_wily_ant|C|1.0,5.0|131072,4096|-|-|wangyingjia8/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_wily_ant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_plump_ox|-|Vitality16/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_plump_ox|C|1.0,5.0|131072,4096|-|-|Vitality16/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_plump_ox model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soft_albatross|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soft_albatross|C|1.0,5.0|131072,4096|-|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_soft_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_coiled_seahorse|-|aksamlan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_coiled_seahorse|C|1.0,5.0|131072,4096|-|-|aksamlan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sharp_coiled_seahorse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_clawed_whale|-|koita/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_clawed_whale|C|1.0,5.0|131072,4096|-|-|koita/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_clawed_whale model|N
featherless/qwen2.5-0.5B_educational_instruct_top2000|-|Hachipo/qwen2.5-0.5B_educational_instruct_top2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top2000 model|N
featherless/Qwen2.5-0.5B-Instruct_fine_tuned_truthfulqa_eng_merged|-|Dr4kl3s/Qwen2.5-0.5B-Instruct_fine_tuned_truthfulqa_eng_merged|C|1.0,5.0|131072,4096|-|-|Dr4kl3s/Qwen2.5-0.5B-Instruct_fine_tuned_truthfulqa_eng_merged model|N
featherless/qwen2.5-0.5B_MIFT-ja_manywords_4000|qwen2.5-0.5b_mift-ja_manywords_4000|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_manywords_4000 model|N
featherless/qwen2.5-0.5B_PIFT-enja_combined_18000|qwen2.5-0.5b_pift-enja_combined_18000|Hachipo/qwen2.5-0.5B_PIFT-enja_combined_18000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_combined_18000 model|N
featherless/SFT_hf|sft_hf|nomineb/SFT_hf|C|1.0,5.0|131072,4096|-|-|nomineb/SFT_hf model|N
featherless/qwen05b_ourmodel|qwen05b_ourmodel|liangshuxin/qwen05b_ourmodel|C|1.0,5.0|131072,4096|-|-|liangshuxin/qwen05b_ourmodel model|N
featherless/mcqa_sft|mcqa_sft|drudilorenzo/mcqa_sft|C|1.0,5.0|131072,4096|-|-|drudilorenzo/mcqa_sft model|N
featherless/Qwen2.5-0.5B-DPO|qwen2.5-0.5b-dpo|shawhin/Qwen2.5-0.5B-DPO|C|1.0,5.0|131072,4096|-|-|shawhin/Qwen2.5-0.5B-DPO model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_1000|qwen2.5-0.5b_pift-jaen_manywords_1000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_1000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_1000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_galloping_bison|-|Sarvarov/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_galloping_bison|C|1.0,5.0|131072,4096|-|-|Sarvarov/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_galloping_bison model|N
featherless/qwen2.5-0.5B_PIFT-enja_onsentence_2000|qwen2.5-0.5b_pift-enja_onsentence_2000|Hachipo/qwen2.5-0.5B_PIFT-enja_onsentence_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_onsentence_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_stocky_ram|-|pietro0hz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_stocky_ram|C|1.0,5.0|131072,4096|-|-|pietro0hz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_stocky_ram model|N
featherless/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_enja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_enja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec10000_pythonblock_dataselection_enja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_horned_tiger|-|sdfsdsssFJosy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_horned_tiger|C|1.0,5.0|131072,4096|-|-|sdfsdsssFJosy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_horned_tiger model|N
featherless/qwen2.5-0.5B_mceval_instruct|qwen2.5-0.5b_mceval_instruct|Hachipo/qwen2.5-0.5B_mceval_instruct|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_mceval_instruct model|N
featherless/qwen2.5-0.5B_educational_instruct_uni5p-3|-|komi77/qwen2.5-0.5B_educational_instruct_uni5p-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_uni5p-3 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_ja_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_tenacious_hummingbird|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_tenacious_hummingbird|C|1.0,5.0|131072,4096|-|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_tenacious_hummingbird model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote|-|Johnson909/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote|C|1.0,5.0|131072,4096|-|-|Johnson909/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote model|N
featherless/qwen2.5-0.5B_PIFT-jaen_onsentence_2000|qwen2.5-0.5b_pift-jaen_onsentence_2000|Hachipo/qwen2.5-0.5B_PIFT-jaen_onsentence_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_onsentence_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_tough_turkey|-|dyksabaken/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_tough_turkey|C|1.0,5.0|131072,4096|-|-|dyksabaken/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_tough_turkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_smooth_alligator|-|inu878h/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_smooth_alligator|C|1.0,5.0|131072,4096|-|-|inu878h/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_smooth_alligator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_fierce_gibbon|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_fierce_gibbon|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_fierce_gibbon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_galloping_lion|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_galloping_lion|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_galloping_lion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_soft_hornet|-|kazzimkoc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_soft_hornet|C|1.0,5.0|131072,4096|V|-|kazzimkoc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_soft_hornet model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_large_caribou|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_large_caribou|C|1.0,5.0|131072,4096|-|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_large_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-medical-kpo|qwen2.5-0.5b-instruct-medical-kpo|nuriyev/Qwen2.5-0.5B-Instruct-medical-kpo|C|1.0,5.0|131072,4096|-|-|nuriyev/Qwen2.5-0.5B-Instruct-medical-kpo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_muscular_kingfisher|-|boulders012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_muscular_kingfisher|C|1.0,5.0|131072,4096|-|-|boulders012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_muscular_kingfisher model|N
featherless/qwen2.5-0.5B_educational_instruct_all_add_pythonblock_2|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_add_pythonblock_2|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_add_pythonblock_2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_soft_robin|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_soft_robin|C|1.0,5.0|131072,4096|-|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_soft_robin model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.0|iq-code-evmind-0.5b-instruct-v0.2411.0|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0 model|N
featherless/qwen2.5-0.5B_educational_instruct_gause_freq_max5.8p-3|-|komi77/qwen2.5-0.5B_educational_instruct_gause_freq_max5.8p-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_educational_instruct_gause_freq_max5.8p-3 model|N
featherless/qwen2.5-0.5B_MIFT-ja_onsentence_3000|qwen2.5-0.5b_mift-ja_onsentence_3000|Hachipo/qwen2.5-0.5B_MIFT-ja_onsentence_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-ja_onsentence_3000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_lazy_moose|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_lazy_moose|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yawning_lazy_moose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_downy_capybara|-|ngeng/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_downy_capybara|C|1.0,5.0|131072,4096|-|-|ngeng/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_downy_capybara model|N
featherless/qwen2.5-0.5B_educational_instruct_all_add_pythonblock|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_add_pythonblock|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_all_add_pythonblock model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_crested_starfish|-|jojovibes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_crested_starfish|C|1.0,5.0|131072,4096|-|-|jojovibes/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_crested_starfish model|N
featherless/qwen2.5-0.5B_space_educational_instruct_freq_max5.5p_new-3|-|komi77/qwen2.5-0.5B_space_educational_instruct_freq_max5.5p_new-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_space_educational_instruct_freq_max5.5p_new-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_scruffy_mosquito|-|hesiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_scruffy_mosquito|C|1.0,5.0|131072,4096|-|-|hesiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_scruffy_mosquito model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_giant_capybara|-|slarkcrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_giant_capybara|C|1.0,5.0|131072,4096|-|-|slarkcrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_giant_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_strong_crab|-|Frostnova0x/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_strong_crab|C|1.0,5.0|131072,4096|-|-|Frostnova0x/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lethal_strong_crab model|N
featherless/qwen2.5-0.5B_educational_instruct_top_3000_codeonly_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_3000_codeonly_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_3000_codeonly_en model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_fishy_dinosaur|-|TaroTaaaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_fishy_dinosaur|C|1.0,5.0|131072,4096|-|-|TaroTaaaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_fishy_dinosaur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_loud_giraffe|-|youssefh47/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_loud_giraffe|C|1.0,5.0|131072,4096|-|-|youssefh47/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_loud_giraffe model|N
featherless/Athena-2-0.5B|athena-2-0.5b|Spestly/Athena-2-0.5B|C|1.0,5.0|131072,4096|-|-|Spestly/Athena-2-0.5B model|N
featherless/sn80-2-4-04-qw|sn80-2.4-04-qw|silencer107/sn80-2-4-04-qw|C|1.0,5.0|131072,4096|-|-|silencer107/sn80-2-4-04-qw model|N
featherless/Qwen2-0.5B_merge_v2.7|qwen2-0.5b_merge_v2.7|wanghaikuan/Qwen2-0.5B_merge_v2.7|C|1.0,5.0|131072,4096|-|-|wanghaikuan/Qwen2-0.5B_merge_v2.7 model|N
featherless/qwen2.5-0.5B_educational_instruct_top3000_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top3000_en_ja model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.3-150|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-150|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.3-150 model|N
featherless/gensyn-checkpoints-soaring_polished_cobra|-|ringodaro/gensyn-checkpoints-soaring_polished_cobra|C|1.0,5.0|131072,4096|-|-|ringodaro/gensyn-checkpoints-soaring_polished_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_tropical_chameleon|-|Donchocho/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_tropical_chameleon|C|1.0,5.0|131072,4096|-|-|Donchocho/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_tropical_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-rt|qwen2.5-0.5b-instruct-rt|jjzha/Qwen2.5-0.5B-Instruct-rt|C|1.0,5.0|131072,4096|-|-|jjzha/Qwen2.5-0.5B-Instruct-rt model|N
featherless/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_2000_pythonblock_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_fleecy_gazelle|-|Nineteeeen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_fleecy_gazelle|C|1.0,5.0|131072,4096|-|-|Nineteeeen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_fleecy_gazelle model|N
featherless/qwen2.5-0.5B_PIFT-enja_manywords_1000|qwen2.5-0.5b_pift-enja_manywords_1000|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_1000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_manywords_1000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_wise_gorilla|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_wise_gorilla|C|1.0,5.0|131072,4096|-|-|0xnoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_wise_gorilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_diving_cod|-|JennyChen03/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_diving_cod|C|1.0,5.0|131072,4096|-|-|JennyChen03/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_diving_cod model|N
featherless/qwen-model|qwen-model|Sujithanumala/qwen-model|C|1.0,5.0|131072,4096|-|-|Sujithanumala/qwen-model model|N
featherless/qwenfinal_merged-FinetunedByAG|qwenfinal_merged-finetunedbyag|akshit-Gupta/qwenfinal_merged-FinetunedByAG|C|1.0,5.0|131072,4096|-|-|akshit-Gupta/qwenfinal_merged-FinetunedByAG model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_elusive_antelope|-|0xZoya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_elusive_antelope|C|1.0,5.0|131072,4096|-|-|0xZoya/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_elusive_antelope model|N
featherless/Multilingual-classifier-qwen-2.5-0.5b|multilingual-classifier-qwen-2.5-0.5b|1shoomun/Multilingual-classifier-qwen-2.5-0.5b|C|1.0,5.0|131072,4096|-|-|1shoomun/Multilingual-classifier-qwen-2.5-0.5b model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peckish_albatross|-|cheng343/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peckish_albatross|C|1.0,5.0|131072,4096|-|-|cheng343/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peckish_albatross model|N
featherless/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja_en|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja_en|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top_4000_pythonblock_ja_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_jagged_cassowary|-|liangjiang003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_jagged_cassowary|C|1.0,5.0|131072,4096|-|-|liangjiang003/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fishy_jagged_cassowary model|N
featherless/qwen2.5-0.5B_PIFT-jaen_onsentence_3000|qwen2.5-0.5b_pift-jaen_onsentence_3000|Hachipo/qwen2.5-0.5B_PIFT-jaen_onsentence_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_onsentence_3000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_beaked_wolf|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_beaked_wolf|C|1.0,5.0|131072,4096|-|-|coinex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_beaked_wolf model|N
featherless/qwen2.5-0.5B_PIFT-enja_onsentence_3000|qwen2.5-0.5b_pift-enja_onsentence_3000|Hachipo/qwen2.5-0.5B_PIFT-enja_onsentence_3000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-enja_onsentence_3000 model|N
featherless/iq-code-evmind-0.5b-instruct-v0.2411.0-193|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-193|C|1.0,5.0|131072,4096|V|-|braindao/iq-code-evmind-0.5b-instruct-v0.2411.0-193 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_soft_gecko|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_soft_gecko|C|1.0,5.0|131072,4096|-|-|ecamli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_soft_gecko model|N
featherless/qwen2.5-0.5B_MIFT-en_top_2000|qwen2.5-0.5b_mift-en_top_2000|Hachipo/qwen2.5-0.5B_MIFT-en_top_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_MIFT-en_top_2000 model|N
featherless/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_126|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_126|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2.5-0.5B-Instruct__sft_saved__countdown_deepseek_qwen_distilled_32b_dataset_epoch_126 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_amphibious_boar|-|asdadnice/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_amphibious_boar|C|1.0,5.0|131072,4096|-|-|asdadnice/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_amphibious_boar model|N
featherless/Qwen2.5-0.5B-Instruct-FP8-Dynamic|qwen2.5-0.5b-instruct-fp8-dynamic|sroecker/Qwen2.5-0.5B-Instruct-FP8-Dynamic|C|1.0,5.0|131072,4096|-|-|sroecker/Qwen2.5-0.5B-Instruct-FP8-Dynamic model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_squeaky_dog|-|565dfh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_squeaky_dog|C|1.0,5.0|131072,4096|-|-|565dfh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_squeaky_dog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_subtle_butterfly|-|zuruyu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_subtle_butterfly|C|1.0,5.0|131072,4096|-|-|zuruyu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tenacious_subtle_butterfly model|N
featherless/trained-qwen2-dpo-model5_deepspeed|trained-qwen2-dpo-model5_deepspeed|maars505/trained-qwen2-dpo-model5_deepspeed|C|1.0,5.0|131072,4096|-|-|maars505/trained-qwen2-dpo-model5_deepspeed model|N
featherless/gensyn-checkpoints-masked_vocal_salmon|gensyn-checkpoints-masked_vocal_salmon|sharkbn01/gensyn-checkpoints-masked_vocal_salmon|C|1.0,5.0|131072,4096|-|-|sharkbn01/gensyn-checkpoints-masked_vocal_salmon model|N
featherless/qwen2.5-0.5B_educational_instruct_top60000_codeonly|-|Hachipo/qwen2.5-0.5B_educational_instruct_top60000_codeonly|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_top60000_codeonly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_vocal_python|-|nyepong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_vocal_python|C|1.0,5.0|131072,4096|V|-|nyepong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_vocal_python model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_opaque_wasp|-|ghostyweb3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_opaque_wasp|C|1.0,5.0|131072,4096|-|-|ghostyweb3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_opaque_wasp model|N
featherless/qwen2.5-0.5B_PIFT-jaen_manywords_4000|qwen2.5-0.5b_pift-jaen_manywords_4000|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_PIFT-jaen_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_mimic_mule|-|Ej9m6yillwiPBWTyMI1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_mimic_mule|C|1.0,5.0|131072,4096|-|-|Ej9m6yillwiPBWTyMI1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_mimic_mule model|N
featherless/mani124|mani124|manigupta1/mani124|C|1.0,5.0|131072,4096|-|-|manigupta1/mani124 model|N
featherless/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en_ja|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en_ja|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen2.5-0.5B_educational_instruct_selec_2000_pythonblock_en_ja model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_dense_butterfly|-|0xSachinSahani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_dense_butterfly|C|1.0,5.0|131072,4096|-|-|0xSachinSahani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_dense_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_untamed_lynx|-|arpanberwal/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_untamed_lynx|C|1.0,5.0|131072,4096|-|-|arpanberwal/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flightless_untamed_lynx model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_beaked_cobra|-|yy0618/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_beaked_cobra|C|1.0,5.0|131072,4096|-|-|yy0618/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whistling_beaked_cobra model|N
featherless/qwen0.5b-do_nothing|qwen0.5b-do_nothing|azxky6645/qwen0.5b-do_nothing|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-do_nothing model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|C|1.0,5.0|131072,4096|-|-|yuthoob/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_long_mouse|-|0xxchrollo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_long_mouse|C|1.0,5.0|131072,4096|-|-|0xxchrollo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_long_mouse model|N
featherless/openfin-0.5B-ZH-optimal-sft_lsl|openfin-0.5b-zh-optimal-sft_lsl|daishen/openfin-0.5B-ZH-optimal-sft_lsl|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_lsl model|N
featherless/qwen0.5b-01241937-math_qa|qwen0.5b-01241937-math_qa|azxky6645/qwen0.5b-01241937-math_qa|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-01241937-math_qa model|N
featherless/qwen2-0.5b-lora-ff-gd-steps-6-aws|qwen2-0.5b-lora-ff-gd-steps-6-aws|jtromero/qwen2-0.5b-lora-ff-gd-steps-6-aws|C|1.0,5.0|131072,4096|-|-|jtromero/qwen2-0.5b-lora-ff-gd-steps-6-aws model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_prehistoric_gerbil|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_prehistoric_gerbil|C|1.0,5.0|131072,4096|-|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_prehistoric_gerbil model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_leggy_horse|-|0xfani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_leggy_horse|C|1.0,5.0|131072,4096|-|-|0xfani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reptilian_leggy_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_vicious_ostrich|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_vicious_ostrich|C|1.0,5.0|131072,4096|-|-|amjada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_vicious_ostrich model|N
featherless/01261734-origin_tamplate_NuminaMath-CoT|01261734-origin_tamplate_numinamath-cot|azxky6645/01261734-origin_tamplate_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01261734-origin_tamplate_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-domestic_singing_pelican|-|nishant2107/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-domestic_singing_pelican|C|1.0,5.0|131072,4096|-|-|nishant2107/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-domestic_singing_pelican model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|southfreebird/Qwen2.5-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|southfreebird/Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog|-|DoomerHope/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog|C|1.0,5.0|131072,4096|-|-|DoomerHope/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_timid_dog model|N
featherless/test2|test2|teenysheep/test2|C|1.0,5.0|131072,4096|-|-|teenysheep/test2 model|N
featherless/Qwen2-0.5B-DRDPO-imdb-tm-rp|qwen2-0.5b-drdpo-imdb-tm-rp|Kyleyee/Qwen2-0.5B-DRDPO-imdb-tm-rp|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-tm-rp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_ladybug|-|pii9oi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_ladybug|C|1.0,5.0|131072,4096|-|-|pii9oi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_frisky_ladybug model|N
featherless/qwen0.5-trl|qwen0.5-trl|tsss1/qwen0.5-trl|C|1.0,5.0|131072,4096|-|-|tsss1/qwen0.5-trl model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_ferocious_slug|-|Marik6325/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_ferocious_slug|C|1.0,5.0|131072,4096|-|-|Marik6325/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_ferocious_slug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_pouncing_alpaca|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_pouncing_alpaca|C|1.0,5.0|131072,4096|-|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_pouncing_alpaca model|N
featherless/Qwen2-0.5B-dpo_loss_preference|qwen2-0.5b-dpo_loss_preference|Kyleyee/Qwen2-0.5B-dpo_loss_preference|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-dpo_loss_preference model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew|C|1.0,5.0|131072,4096|-|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_hulking_shrew model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_8000_v0|qwen2.5-0.5b_mift_en_manywords_8000_v0|myst72/Qwen2.5-0.5B_MIFT_en_manywords_8000_v0|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_8000_v0 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_miniature_yak|-|nam1002/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_miniature_yak|C|1.0,5.0|131072,4096|-|-|nam1002/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_miniature_yak model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_silky_boar|-|wclzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_silky_boar|C|1.0,5.0|131072,4096|-|-|wclzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_silky_boar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_gilded_elk|-|foreverw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_gilded_elk|C|1.0,5.0|131072,4096|-|-|foreverw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_gilded_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_muscular_worm|-|Haxxana/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_muscular_worm|C|1.0,5.0|131072,4096|-|-|Haxxana/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_muscular_worm model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_dense_chicken|-|nzksidbk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_dense_chicken|C|1.0,5.0|131072,4096|-|-|nzksidbk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_dense_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_running_cheetah|-|matter023/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_running_cheetah|C|1.0,5.0|131072,4096|-|-|matter023/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_running_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_alert_squirrel|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_alert_squirrel|C|1.0,5.0|131072,4096|-|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_alert_squirrel model|N
featherless/qwen3blora_ver1|qwen3blora_ver1|teenysheep/qwen3blora_ver1|C|1.0,5.0|131072,4096|-|-|teenysheep/qwen3blora_ver1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_ferocious_meerkat|-|marshathebear/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_ferocious_meerkat|C|1.0,5.0|131072,4096|-|-|marshathebear/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_ferocious_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_dappled_armadillo|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_dappled_armadillo|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dormant_dappled_armadillo model|N
featherless/Qwen2-0.5B-GRPO-20750|qwen2-0.5b-grpo-20750|aidando73/Qwen2-0.5B-GRPO-20750|C|1.0,5.0|131072,4096|-|-|aidando73/Qwen2-0.5B-GRPO-20750 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_peckish_chimpanzee|-|Papaperez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_peckish_chimpanzee|C|1.0,5.0|131072,4096|-|-|Papaperez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_peckish_chimpanzee model|N
featherless/arxiv-optimized-model|arxiv-optimized-model|papagruz/arxiv-optimized-model|C|1.0,5.0|131072,4096|-|-|papagruz/arxiv-optimized-model model|N
featherless/Qwen2-0.5B-dpo_mistake_preference|qwen2-0.5b-dpo_mistake_preference|Kyleyee/Qwen2-0.5B-dpo_mistake_preference|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-dpo_mistake_preference model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_iridescent_albatross|-|sdfsdsssFBoss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_iridescent_albatross|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBoss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_iridescent_albatross model|N
featherless/model_to_evaluate|model_to_evaluate|arameshranganathan/model_to_evaluate|C|1.0,5.0|131072,4096|-|-|arameshranganathan/model_to_evaluate model|N
featherless/qwen-2.5-p5b-r1-beaked_quick_marmot|qwen-2.5-p5b-r1-beaked_quick_marmot|llearningone/qwen-2.5-p5b-r1-beaked_quick_marmot|C|1.0,5.0|131072,4096|-|-|llearningone/qwen-2.5-p5b-r1-beaked_quick_marmot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mighty_otter|-|nguyenthuylinh19982022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mighty_otter|C|1.0,5.0|131072,4096|-|-|nguyenthuylinh19982022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mighty_otter model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_scampering_elephant|-|onchainX/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_scampering_elephant|C|1.0,5.0|131072,4096|-|-|onchainX/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_scampering_elephant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_wary_raven|-|dfdsfLisk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_wary_raven|C|1.0,5.0|131072,4096|-|-|dfdsfLisk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-enormous_wary_raven model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_scaly_python|-|mantacinta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_scaly_python|C|1.0,5.0|131072,4096|-|-|mantacinta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_scaly_python model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_chattering_lizard|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_chattering_lizard|C|1.0,5.0|131072,4096|-|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_chattering_lizard model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_8000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_8000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_large_butterfly|-|malwaremamad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_large_butterfly|C|1.0,5.0|131072,4096|-|-|malwaremamad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_large_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_snappy_caribou|-|hientan104/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_snappy_caribou|C|1.0,5.0|131072,4096|-|-|hientan104/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_snappy_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_jagged_cat|-|luciferdev99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_jagged_cat|C|1.0,5.0|131072,4096|-|-|luciferdev99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_jagged_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_tame_finch|-|npchowl/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_tame_finch|C|1.0,5.0|131072,4096|-|-|npchowl/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_tame_finch model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_solitary_chicken|-|thuhien140386/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_solitary_chicken|C|1.0,5.0|131072,4096|-|-|thuhien140386/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_solitary_chicken model|N
featherless/Qwen2.5-0.5B-ko-merge|qwen2.5-0.5b-ko-merge|vitus9988/Qwen2.5-0.5B-ko-merge|C|1.0,5.0|131072,4096|-|-|vitus9988/Qwen2.5-0.5B-ko-merge model|N
featherless/test9|test9|teenysheep/test9|C|1.0,5.0|131072,4096|-|-|teenysheep/test9 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_agile_locust|-|rub3d0/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_agile_locust|C|1.0,5.0|131072,4096|-|-|rub3d0/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_agile_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_wise_nightingale|-|nourilink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_wise_nightingale|C|1.0,5.0|131072,4096|-|-|nourilink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sprightly_wise_nightingale model|N
featherless/qwen-2.5-p5b-r1-silky_armored_fish|qwen-2.5-p5b-r1-silky_armored_fish|llearningone/qwen-2.5-p5b-r1-silky_armored_fish|C|1.0,5.0|131072,4096|-|-|llearningone/qwen-2.5-p5b-r1-silky_armored_fish model|N
featherless/sql-assistant|sql-assistant|Mr-Vicky-01/sql-assistant|C|1.0,5.0|131072,4096|V|-|Mr-Vicky-01/sql-assistant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_leggy_dinosaur|-|galagella/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_leggy_dinosaur|C|1.0,5.0|131072,4096|-|-|galagella/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_leggy_dinosaur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_marine_giraffe|-|Toroh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_marine_giraffe|C|1.0,5.0|131072,4096|-|-|Toroh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_marine_giraffe model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_carnivorous_badger|-|padhity56/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_carnivorous_badger|C|1.0,5.0|131072,4096|-|-|padhity56/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_carnivorous_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_scurrying_opossum|-|aero2000hotmai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_scurrying_opossum|C|1.0,5.0|131072,4096|-|-|aero2000hotmai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dappled_scurrying_opossum model|N
featherless/qwen0.5b-01251718-AI-MO_NuminaMath-CoT|qwen0.5b-01251718-ai-mo_numinamath-cot|azxky6645/qwen0.5b-01251718-AI-MO_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-01251718-AI-MO_NuminaMath-CoT model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_6000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_6000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_6000 model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_2000_v0|qwen2.5-0.5b_mift_en_manywords_2000_v0|myst72/Qwen2.5-0.5B_MIFT_en_manywords_2000_v0|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_2000_v0 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_finicky_rabbit|-|joneswork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_finicky_rabbit|C|1.0,5.0|131072,4096|-|-|joneswork/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_finicky_rabbit model|N
featherless/Qwen2.5-0.5B_MIFT-ja_250|qwen2.5-0.5b_mift-ja_250|Hachipo/Qwen2.5-0.5B_MIFT-ja_250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_MIFT-ja_250 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_wary_bat|-|Haenim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_wary_bat|C|1.0,5.0|131072,4096|-|-|Haenim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_wary_bat model|N
featherless/Qwen2.5-0.5B-DPO|qwen2.5-0.5b-dpo|kpeng-05/Qwen2.5-0.5B-DPO|C|1.0,5.0|131072,4096|-|-|kpeng-05/Qwen2.5-0.5B-DPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-padded_leaping_bee|-|devve69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-padded_leaping_bee|C|1.0,5.0|131072,4096|-|-|devve69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-padded_leaping_bee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinging_crane|-|ngankhtt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinging_crane|C|1.0,5.0|131072,4096|-|-|ngankhtt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_stinging_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_curious_dragonfly|-|Yungdreezy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_curious_dragonfly|C|1.0,5.0|131072,4096|-|-|Yungdreezy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_curious_dragonfly model|N
featherless/Qwen2-0.5B-GRPO-exp3|qwen2-0.5b-grpo-exp3|araziziml/Qwen2-0.5B-GRPO-exp3|C|1.0,5.0|131072,4096|-|-|araziziml/Qwen2-0.5B-GRPO-exp3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_sizable_parrot|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_sizable_parrot|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_sizable_parrot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_alert_quail|-|asata1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_alert_quail|C|1.0,5.0|131072,4096|-|-|asata1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_alert_quail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_playful_lizard|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_playful_lizard|C|1.0,5.0|131072,4096|-|-|bosval71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_playful_lizard model|N
featherless/qwen2.5-0.5b-instruct-bnb-4bit__plektos-open-subtitles-eo-en-100-10_eo_en|-|plektos/qwen2.5-0.5b-instruct-bnb-4bit__plektos-open-subtitles-eo-en-100-10_eo_en|C|1.0,5.0|131072,4096|-|-|plektos/qwen2.5-0.5b-instruct-bnb-4bit__plektos-open-subtitles-eo-en-100-10_eo_en model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_foraging_opossum|-|Pankumar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_foraging_opossum|C|1.0,5.0|131072,4096|-|-|Pankumar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_foraging_opossum model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_marine_antelope|-|Gunpyr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_marine_antelope|C|1.0,5.0|131072,4096|-|-|Gunpyr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_marine_antelope model|N
featherless/Qwen2.5-0.5B_BIFT_manywords_2000_v1|qwen2.5-0.5b_bift_manywords_2000_v1|myst72/Qwen2.5-0.5B_BIFT_manywords_2000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_BIFT_manywords_2000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_moist_raven|-|CryptXperts/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_moist_raven|C|1.0,5.0|131072,4096|-|-|CryptXperts/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-polished_moist_raven model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_stinky_wolf|-|JaniahSwa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_stinky_wolf|C|1.0,5.0|131072,4096|-|-|JaniahSwa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_stinky_wolf model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_peaceful_shrimp|-|st3ven/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_peaceful_shrimp|C|1.0,5.0|131072,4096|-|-|st3ven/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_peaceful_shrimp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_hunting_shrimp|-|Harsh7760/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_hunting_shrimp|C|1.0,5.0|131072,4096|-|-|Harsh7760/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_hunting_shrimp model|N
featherless/qwen0.5b-tech-interview-test-math_qa|qwen0.5b-tech-interview-test-math_qa|azxky6645/qwen0.5b-tech-interview-test-math_qa|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-tech-interview-test-math_qa model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_humming_ox|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_humming_ox|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_humming_ox model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-olora-ALL-WEIGHT model|N
featherless/qwen0.5b-01251737-do_nothing_NuminaMath-CoT|-|azxky6645/qwen0.5b-01251737-do_nothing_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-01251737-do_nothing_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_domestic_caterpillar|-|0xrudy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_domestic_caterpillar|C|1.0,5.0|131072,4096|-|-|0xrudy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_domestic_caterpillar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach|-|ANITAGUPTA771/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach|C|1.0,5.0|131072,4096|-|-|ANITAGUPTA771/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_regal_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_finicky_chicken|-|CnKjaRDsyvCvUHD/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_finicky_chicken|C|1.0,5.0|131072,4096|-|-|CnKjaRDsyvCvUHD/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_finicky_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_skittish_parrot|-|ILIAGI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_skittish_parrot|C|1.0,5.0|131072,4096|-|-|ILIAGI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_skittish_parrot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_tough_nightingale|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_tough_nightingale|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_tough_nightingale model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_hardy_crane|-|kazzimkoc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_hardy_crane|C|1.0,5.0|131072,4096|-|-|kazzimkoc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_hardy_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_melodic_rabbit|-|Hhenistasmn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_melodic_rabbit|C|1.0,5.0|131072,4096|-|-|Hhenistasmn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-running_melodic_rabbit model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_moist_armadillo|-|chaikagaz69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_moist_armadillo|C|1.0,5.0|131072,4096|-|-|chaikagaz69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_moist_armadillo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_reclusive_sardine|-|dellingerdd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_reclusive_sardine|C|1.0,5.0|131072,4096|-|-|dellingerdd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_reclusive_sardine model|N
featherless/Qwen2.5-0.5B_BIFT_manywords_4000_v1|qwen2.5-0.5b_bift_manywords_4000_v1|myst72/Qwen2.5-0.5B_BIFT_manywords_4000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_BIFT_manywords_4000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_slimy_albatross|-|kevin-lu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_slimy_albatross|C|1.0,5.0|131072,4096|-|-|kevin-lu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_slimy_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_voracious_horse|-|Mursik358/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_voracious_horse|C|1.0,5.0|131072,4096|-|-|Mursik358/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_voracious_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_nasty_cassowary|-|buhari/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_nasty_cassowary|C|1.0,5.0|131072,4096|-|-|buhari/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_nasty_cassowary model|N
featherless/qwen-2.5-0.5b-labeled-pile|qwen-2.5-0.5b-labeled-pile|metalure/qwen-2.5-0.5b-labeled-pile|C|1.0,5.0|131072,4096|-|-|metalure/qwen-2.5-0.5b-labeled-pile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_vicious_antelope|-|shangh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_vicious_antelope|C|1.0,5.0|131072,4096|-|-|shangh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_vicious_antelope model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_plump_ant|-|Lowriderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_plump_ant|C|1.0,5.0|131072,4096|-|-|Lowriderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_plump_ant model|N
featherless/bloomVN-0.5B-ppo-sft-geo-lora-epochs4-lr5e-05-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-lora-epochs4-lr5e-05-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-lora-epochs4-lr5e-05-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_tenacious_jellyfish|-|0xabhay/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_tenacious_jellyfish|C|1.0,5.0|131072,4096|-|-|0xabhay/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quick_tenacious_jellyfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_pensive_tiger|-|hiepnt900514/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_pensive_tiger|C|1.0,5.0|131072,4096|-|-|hiepnt900514/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_pensive_tiger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_jumping_antelope|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_jumping_antelope|C|1.0,5.0|131072,4096|-|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wild_jumping_antelope model|N
featherless/Qwen2-0.5B-drdpo_loss_small_sample_3e|qwen2-0.5b-drdpo_loss_small_sample_3e|Kyleyee/Qwen2-0.5B-drdpo_loss_small_sample_3e|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-drdpo_loss_small_sample_3e model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_beaked_starfish|-|alevezlena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_beaked_starfish|C|1.0,5.0|131072,4096|-|-|alevezlena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_beaked_starfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_foraging_zebra|-|hamad00786/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_foraging_zebra|C|1.0,5.0|131072,4096|-|-|hamad00786/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-territorial_foraging_zebra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_snappy_cheetah|-|dal-u/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_snappy_cheetah|C|1.0,5.0|131072,4096|-|-|dal-u/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_snappy_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_roaring_termite|-|k3mr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_roaring_termite|C|1.0,5.0|131072,4096|-|-|k3mr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-loud_roaring_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_arctic_eel|-|nganuct/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_arctic_eel|C|1.0,5.0|131072,4096|-|-|nganuct/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_arctic_eel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_agile_barracuda|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_agile_barracuda|C|1.0,5.0|131072,4096|-|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_agile_barracuda model|N
featherless/openfin-0.5B-ZH-optimal-sft_lll|openfin-0.5b-zh-optimal-sft_lll|daishen/openfin-0.5B-ZH-optimal-sft_lll|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_lll model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_lithe_heron|-|kalamuc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_lithe_heron|C|1.0,5.0|131072,4096|-|-|kalamuc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_lithe_heron model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_dappled_gull|-|kaplangibi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_dappled_gull|C|1.0,5.0|131072,4096|-|-|kaplangibi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_dappled_gull model|N
featherless/reasoning-qwen-epoch2|reasoning-qwen-epoch2|peulsilva/reasoning-qwen-epoch2|C|1.0,5.0|131072,4096|K|-|peulsilva/reasoning-qwen-epoch2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_reclusive_penguin|-|xxb881117/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_reclusive_penguin|C|1.0,5.0|131072,4096|-|-|xxb881117/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-meek_reclusive_penguin model|N
featherless/qwen2.5-4090-dappled_lightfooted_worm|qwen2.5-4090-dappled_lightfooted_worm|Haxxana/qwen2.5-4090-dappled_lightfooted_worm|C|1.0,5.0|131072,4096|-|-|Haxxana/qwen2.5-4090-dappled_lightfooted_worm model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_quiet_meerkat|-|nguyenthihuend1987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_quiet_meerkat|C|1.0,5.0|131072,4096|-|-|nguyenthihuend1987/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_quiet_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_plump_pheasant|-|Klahssic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_plump_pheasant|C|1.0,5.0|131072,4096|-|-|Klahssic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_plump_pheasant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_foraging_octopus|-|aramzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_foraging_octopus|C|1.0,5.0|131072,4096|-|-|aramzz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_foraging_octopus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo|-|KriptoUzmani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo|C|1.0,5.0|131072,4096|-|-|KriptoUzmani/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo model|N
featherless/01261810-modify_tamplate_NuminaMath-CoT|01261810-modify_tamplate_numinamath-cot|azxky6645/01261810-modify_tamplate_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01261810-modify_tamplate_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_rough_lemur|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_rough_lemur|C|1.0,5.0|131072,4096|-|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_rough_lemur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-knobby_deft_crab|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-knobby_deft_crab|C|1.0,5.0|131072,4096|-|-|rockst4r4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-knobby_deft_crab model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_moist_horse|-|M0jtaba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_moist_horse|C|1.0,5.0|131072,4096|-|-|M0jtaba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_moist_horse model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_scavenging_clam|-|Anhltq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_scavenging_clam|C|1.0,5.0|131072,4096|-|-|Anhltq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soft_scavenging_clam model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_deadly_bison|-|isayfight/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_deadly_bison|C|1.0,5.0|131072,4096|-|-|isayfight/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_deadly_bison model|N
featherless/Qwen2-0.5B-drpo-imdb-loss2_only-6|qwen2-0.5b-drpo-imdb-loss2_only-6|Eehan/Qwen2-0.5B-drpo-imdb-loss2_only-6|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-loss2_only-6 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_soaring_ram|-|hamidrpj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_soaring_ram|C|1.0,5.0|131072,4096|-|-|hamidrpj/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_soaring_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_bellowing_ox|-|osimetha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_bellowing_ox|C|1.0,5.0|131072,4096|V|-|osimetha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_bellowing_ox model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_shaggy_cheetah|-|kittygirlhere/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_shaggy_cheetah|C|1.0,5.0|131072,4096|-|-|kittygirlhere/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tropical_shaggy_cheetah model|N
featherless/Hhdhdhdv|hhdhdhdv|Hjgugugjhuhjggg/Hhdhdhdv|C|1.0,5.0|131072,4096|-|-|Hjgugugjhuhjggg/Hhdhdhdv model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_loud_ant|-|minhnguyet19912022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_loud_ant|C|1.0,5.0|131072,4096|-|-|minhnguyet19912022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wiry_loud_ant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_crested_condor|-|Cchaos/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_crested_condor|C|1.0,5.0|131072,4096|-|-|Cchaos/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-climbing_crested_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_scented_chimpanzee|-|zakibunet/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_scented_chimpanzee|C|1.0,5.0|131072,4096|-|-|zakibunet/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_scented_chimpanzee model|N
featherless/qwen2.5-0.5B_mask_uni5_edu_instruct-3|qwen2.5-0.5b_mask_uni5_edu_instruct-3|NaoS2/qwen2.5-0.5B_mask_uni5_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_mask_uni5_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_leaping_bobcat|-|RV21/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_leaping_bobcat|C|1.0,5.0|131072,4096|-|-|RV21/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_leaping_bobcat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_scavenging_albatross|-|krasnowcharlott/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_scavenging_albatross|C|1.0,5.0|131072,4096|-|-|krasnowcharlott/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_scavenging_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_scaly_turtle|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_scaly_turtle|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_scaly_turtle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_grunting_yak|-|sapopi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_grunting_yak|C|1.0,5.0|131072,4096|-|-|sapopi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-curious_grunting_yak model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_meek_manatee|-|boulders012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_meek_manatee|C|1.0,5.0|131072,4096|-|-|boulders012/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_meek_manatee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_fast_cobra|-|ebarknight/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_fast_cobra|C|1.0,5.0|131072,4096|V|-|ebarknight/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_fast_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|-|tenselink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|C|1.0,5.0|131072,4096|-|-|tenselink/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_webbed_ladybug|-|Marcy100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_webbed_ladybug|C|1.0,5.0|131072,4096|-|-|Marcy100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_webbed_ladybug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_energetic_crow|-|Wiiiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_energetic_crow|C|1.0,5.0|131072,4096|-|-|Wiiiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-zealous_energetic_crow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_stalking_fly|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_stalking_fly|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_stalking_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_hulking_mink|-|popekobe7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_hulking_mink|C|1.0,5.0|131072,4096|-|-|popekobe7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_hulking_mink model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_448|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_448|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_448 model|N
featherless/Qwen2.5-0.5B-Instruct-distill-Qwen2.5-3B|-|Ellio98/Qwen2.5-0.5B-Instruct-distill-Qwen2.5-3B|C|1.0,5.0|131072,4096|-|-|Ellio98/Qwen2.5-0.5B-Instruct-distill-Qwen2.5-3B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_foxy_cheetah|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_foxy_cheetah|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_foxy_cheetah model|N
featherless/meta_arxiv|meta_arxiv|MetaBoi/meta_arxiv|C|1.0,5.0|131072,4096|-|-|MetaBoi/meta_arxiv model|N
featherless/locfaq_1epoch|locfaq_1epoch|teenysheep/locfaq_1epoch|C|1.0,5.0|131072,4096|-|-|teenysheep/locfaq_1epoch model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-geo-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_loud_raccoon|-|hyapiskan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_loud_raccoon|C|1.0,5.0|131072,4096|-|-|hyapiskan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scruffy_loud_raccoon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_exotic_gull|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_exotic_gull|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_exotic_gull model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_lively_mouse|-|Victorobasi9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_lively_mouse|C|1.0,5.0|131072,4096|-|-|Victorobasi9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_lively_mouse model|N
featherless/Qwen2-0.5B-GRPO_1_epochs|qwen2-0.5b-grpo_1_epochs|valerielucro/Qwen2-0.5B-GRPO_1_epochs|C|1.0,5.0|131072,4096|-|-|valerielucro/Qwen2-0.5B-GRPO_1_epochs model|N
featherless/01262313-modify_tamplate-boxed-500filtering-processing-1epochs-1024|-|azxky6645/01262313-modify_tamplate-boxed-500filtering-processing-1epochs-1024|C|1.0,5.0|131072,4096|-|-|azxky6645/01262313-modify_tamplate-boxed-500filtering-processing-1epochs-1024 model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_2000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-enja_manywords_2000 model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_subtle_eagle|-|vuduc01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_subtle_eagle|C|1.0,5.0|131072,4096|-|-|vuduc01/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_subtle_eagle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_nimble_bobcat|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_nimble_bobcat|C|1.0,5.0|131072,4096|-|-|yuvpat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_nimble_bobcat model|N
featherless/Qwen2-0.5B-DPO-imdb_kl|qwen2-0.5b-dpo-imdb_kl|Kyleyee/Qwen2-0.5B-DPO-imdb_kl|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DPO-imdb_kl model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rangy_ape|-|sdfsdsssFAndy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rangy_ape|C|1.0,5.0|131072,4096|-|-|sdfsdsssFAndy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_rangy_ape model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_shy_elk|-|jhaynne/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_shy_elk|C|1.0,5.0|131072,4096|-|-|jhaynne/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_shy_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lethal_crocodile|-|Justmharvel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lethal_crocodile|C|1.0,5.0|131072,4096|-|-|Justmharvel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-small_lethal_crocodile model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_sturdy_monkey|-|bocilanomali/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_sturdy_monkey|C|1.0,5.0|131072,4096|-|-|bocilanomali/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_sturdy_monkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_ferocious_lion|-|minhtutran178/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_ferocious_lion|C|1.0,5.0|131072,4096|-|-|minhtutran178/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_ferocious_lion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_bipedal_dingo|-|fats-fme/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_bipedal_dingo|C|1.0,5.0|131072,4096|-|-|fats-fme/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_bipedal_dingo model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill-Fin|qwen2.5-0.5b-open-r1-distill-fin|Qucy/Qwen2.5-0.5B-Open-R1-Distill-Fin|C|1.0,5.0|131072,4096|-|-|Qucy/Qwen2.5-0.5B-Open-R1-Distill-Fin model|N
featherless/testcompletion|testcompletion|teenysheep/testcompletion|C|1.0,5.0|131072,4096|-|-|teenysheep/testcompletion model|N
featherless/qwen2.5-0.5B_drop_uni5_edu_instruct-3_2|qwen2.5-0.5b_drop_uni5_edu_instruct-3_2|NaoS2/qwen2.5-0.5B_drop_uni5_edu_instruct-3_2|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_uni5_edu_instruct-3_2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_termite|-|guvenbar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_termite|C|1.0,5.0|131072,4096|-|-|guvenbar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_termite model|N
featherless/Qwen2.5-0.5B-R1-FT|qwen2.5-0.5b-r1-ft|joey00072/Qwen2.5-0.5B-R1-FT|C|1.0,5.0|131072,4096|-|-|joey00072/Qwen2.5-0.5B-R1-FT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_plump_monkey|-|mynaked/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_plump_monkey|C|1.0,5.0|131072,4096|-|-|mynaked/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_plump_monkey model|N
featherless/01262129-modify_tamplate-boxed-500filtering-processing-1epochs|-|azxky6645/01262129-modify_tamplate-boxed-500filtering-processing-1epochs|C|1.0,5.0|131072,4096|-|-|azxky6645/01262129-modify_tamplate-boxed-500filtering-processing-1epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_clawed_hyena|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_clawed_hyena|C|1.0,5.0|131072,4096|-|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_clawed_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-xiaosui-full|qwen2.5-0.5b-instruct-xiaosui-full|HBboy/Qwen2.5-0.5B-Instruct-xiaosui-full|C|1.0,5.0|131072,4096|-|-|HBboy/Qwen2.5-0.5B-Instruct-xiaosui-full model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_unseen_bat|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_unseen_bat|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_unseen_bat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_amphibious_pigeon|-|rightsss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_amphibious_pigeon|C|1.0,5.0|131072,4096|-|-|rightsss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_amphibious_pigeon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_squeaky_mink|-|amazings/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_squeaky_mink|C|1.0,5.0|131072,4096|-|-|amazings/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_squeaky_mink model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_sneaky_antelope|-|mouse-fish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_sneaky_antelope|C|1.0,5.0|131072,4096|-|-|mouse-fish/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_sneaky_antelope model|N
featherless/qwen2.5-0.5b-2epoch|qwen2.5-0.5b-2epoch|juniorrios/qwen2.5-0.5b-2epoch|C|1.0,5.0|131072,4096|-|-|juniorrios/qwen2.5-0.5b-2epoch model|N
featherless/sft_test2|sft_test2|teenysheep/sft_test2|C|1.0,5.0|131072,4096|-|-|teenysheep/sft_test2 model|N
featherless/gensyn-checkpoints-frisky_plump_monkey|gensyn-checkpoints-frisky_plump_monkey|mynaked/gensyn-checkpoints-frisky_plump_monkey|C|1.0,5.0|131072,4096|-|-|mynaked/gensyn-checkpoints-frisky_plump_monkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_short_termite|-|amirr555/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_short_termite|C|1.0,5.0|131072,4096|-|-|amirr555/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_short_termite model|N
featherless/call_analysis_model|call_analysis_model|Thomax/call_analysis_model|C|1.0,5.0|131072,4096|-|-|Thomax/call_analysis_model model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_mammoth|-|remzigurcay/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_mammoth|C|1.0,5.0|131072,4096|-|-|remzigurcay/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_agile_mammoth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_wiry_butterfly|-|tFQbekUPTuNgAxFkR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_wiry_butterfly|C|1.0,5.0|131072,4096|-|-|tFQbekUPTuNgAxFkR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_wiry_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-abliterated|qwen2.5-0.5b-instruct-abliterated|Bradarr/Qwen2.5-0.5B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|Bradarr/Qwen2.5-0.5B-Instruct-abliterated model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_hoarse_porcupine|-|ybzxaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_hoarse_porcupine|C|1.0,5.0|131072,4096|-|-|ybzxaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_hoarse_porcupine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_jagged_parrot|-|jalesfeva/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_jagged_parrot|C|1.0,5.0|131072,4096|-|-|jalesfeva/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_jagged_parrot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_toothy_coyote|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_toothy_coyote|C|1.0,5.0|131072,4096|V|-|Chenyixin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_toothy_coyote model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_2000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_2000 model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_160|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_160|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_160 model|N
featherless/sft_test8|sft_test8|teenysheep/sft_test8|C|1.0,5.0|131072,4096|-|-|teenysheep/sft_test8 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_foxy_capybara|-|longmo8/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_foxy_capybara|C|1.0,5.0|131072,4096|-|-|longmo8/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_foxy_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_meek_moose|-|liuneng/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_meek_moose|C|1.0,5.0|131072,4096|-|-|liuneng/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_meek_moose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_flapping_ant|-|bmysec/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_flapping_ant|C|1.0,5.0|131072,4096|-|-|bmysec/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_flapping_ant model|N
featherless/bloomVN-0.5B-ppo-sft-bio-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-bio-olora-ALL-WEIGHT model|N
featherless/01252010-hard-filtering_NuminaMath-CoT|01252010-hard-filtering_numinamath-cot|azxky6645/01252010-hard-filtering_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01252010-hard-filtering_NuminaMath-CoT model|N
featherless/qwen0.5b-tech-interview-test|qwen0.5b-tech-interview-test|azxky6645/qwen0.5b-tech-interview-test|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-tech-interview-test model|N
featherless/Qwen2-0.5B-drpo-imdb-est_dpo_style-7|qwen2-0.5b-drpo-imdb-est_dpo_style-7|Eehan/Qwen2-0.5B-drpo-imdb-est_dpo_style-7|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-est_dpo_style-7 model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_4000_v1|qwen2.5-0.5b_mift_en_manywords_4000_v1|myst72/Qwen2.5-0.5B_MIFT_en_manywords_4000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_4000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_wiry_chicken|-|xiannongn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_wiry_chicken|C|1.0,5.0|131072,4096|-|-|xiannongn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_wiry_chicken model|N
featherless/locnoextra_2epochs|locnoextra_2epochs|teenysheep/locnoextra_2epochs|C|1.0,5.0|131072,4096|-|-|teenysheep/locnoextra_2epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_alert_puma|-|adsaewfsd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_alert_puma|C|1.0,5.0|131072,4096|-|-|adsaewfsd/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nasty_alert_puma model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_gentle_dove|-|MyForex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_gentle_dove|C|1.0,5.0|131072,4096|-|-|MyForex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_gentle_dove model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_powerful_newt|-|JohnSmith901/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_powerful_newt|C|1.0,5.0|131072,4096|-|-|JohnSmith901/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_powerful_newt model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad|-|Harsh7760/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad|C|1.0,5.0|131072,4096|-|-|Harsh7760/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prickly_running_toad model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_dense_bison|-|rtr555/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_dense_bison|C|1.0,5.0|131072,4096|-|-|rtr555/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_dense_bison model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_padded_mink|-|mazdaypci/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_padded_mink|C|1.0,5.0|131072,4096|-|-|mazdaypci/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_padded_mink model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_deadly_chinchilla|-|lushwhale/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_deadly_chinchilla|C|1.0,5.0|131072,4096|-|-|lushwhale/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_deadly_chinchilla model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam|-|Johnson909/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam|C|1.0,5.0|131072,4096|-|-|Johnson909/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam model|N
featherless/qwen2.5-0.5B_low15_edu_instruct-3|qwen2.5-0.5b_low15_edu_instruct-3|NaoS2/qwen2.5-0.5B_low15_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_low15_edu_instruct-3 model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_tall_meerkat|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_tall_meerkat|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_tall_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_voracious_wombat|-|Creamsss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_voracious_wombat|C|1.0,5.0|131072,4096|-|-|Creamsss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_voracious_wombat model|N
featherless/ML2|ml2|ArtemisTAO/ML2|C|1.0,5.0|131072,4096|-|-|ArtemisTAO/ML2 model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-lora-ALL-WEIGHT model|N
featherless/qwen0.5b-tech-interview|qwen0.5b-tech-interview|azxky6645/qwen0.5b-tech-interview|C|1.0,5.0|131072,4096|-|-|azxky6645/qwen0.5b-tech-interview model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_tall_pelican|-|Kimberlycarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_tall_pelican|C|1.0,5.0|131072,4096|-|-|Kimberlycarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_tall_pelican model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_sneaky_ostrich|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_sneaky_ostrich|C|1.0,5.0|131072,4096|-|-|Enjoy0408/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-majestic_sneaky_ostrich model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_vocal_mule|-|scor121/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_vocal_mule|C|1.0,5.0|131072,4096|-|-|scor121/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_vocal_mule model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_scaly_ape|-|kevinnx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_scaly_ape|C|1.0,5.0|131072,4096|-|-|kevinnx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_scaly_ape model|N
featherless/qwen2.5-km-checker|qwen2.5-km-checker|mlao01/qwen2.5-km-checker|C|1.0,5.0|131072,4096|-|-|mlao01/qwen2.5-km-checker model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_patterned_chimpanzee|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_patterned_chimpanzee|C|1.0,5.0|131072,4096|-|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hibernating_patterned_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_tricky_toad|-|Amarnathjv/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_tricky_toad|C|1.0,5.0|131072,4096|-|-|Amarnathjv/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_tricky_toad model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-olora-ALL-WEIGHT model|N
featherless/01252129-under500-filtering-boxed-replace-50000data_NuminaMath-CoT|-|azxky6645/01252129-under500-filtering-boxed-replace-50000data_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01252129-under500-filtering-boxed-replace-50000data_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_vicious_sandpiper|-|sdfsdsssFAndy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_vicious_sandpiper|C|1.0,5.0|131072,4096|-|-|sdfsdsssFAndy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-soaring_vicious_sandpiper model|N
featherless/bpsfinalmodel_old|bpsfinalmodel_old|teenysheep/bpsfinalmodel_old|C|1.0,5.0|131072,4096|-|-|teenysheep/bpsfinalmodel_old model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby|-|agumi322/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby|C|1.0,5.0|131072,4096|-|-|agumi322/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_toothy_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_armored_squid|-|sdfsdsssFsdfhaer/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_armored_squid|C|1.0,5.0|131072,4096|-|-|sdfsdsssFsdfhaer/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grassy_armored_squid model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_bold_butterfly|-|Axelerate/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_bold_butterfly|C|1.0,5.0|131072,4096|-|-|Axelerate/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flexible_bold_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_burrowing_skunk|-|sakalaka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_burrowing_skunk|C|1.0,5.0|131072,4096|-|-|sakalaka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_burrowing_skunk model|N
featherless/Qwen2.5-0.5B-finetuned-stoic-mindset|qwen2.5-0.5b-finetuned-stoic-mindset|kodychik/Qwen2.5-0.5B-finetuned-stoic-mindset|C|1.0,5.0|131072,4096|-|-|kodychik/Qwen2.5-0.5B-finetuned-stoic-mindset model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_hulking_lynx|-|adiana1024/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_hulking_lynx|C|1.0,5.0|131072,4096|-|-|adiana1024/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_hulking_lynx model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bipedal_baboon|-|kkekss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bipedal_baboon|C|1.0,5.0|131072,4096|-|-|kkekss/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bipedal_baboon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_tall_whale|-|linger2334/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_tall_whale|C|1.0,5.0|131072,4096|-|-|linger2334/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_tall_whale model|N
featherless/Qwen2.5-0.5B_MIFT-enja_250|qwen2.5-0.5b_mift-enja_250|Hachipo/Qwen2.5-0.5B_MIFT-enja_250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_MIFT-enja_250 model|N
featherless/sft_student_qwen2.5-0.5B|sft_student_qwen2.5-0.5b|pqviet2208/sft_student_qwen2.5-0.5B|C|1.0,5.0|131072,4096|-|-|pqviet2208/sft_student_qwen2.5-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_elusive_dinosaur|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_elusive_dinosaur|C|1.0,5.0|131072,4096|-|-|hamid1232/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_elusive_dinosaur model|N
featherless/Qwen2.5_0.5B_MED_Instruct_0108|qwen2.5_0.5b_med_instruct_0108|NotoriousH2/Qwen2.5_0.5B_MED_Instruct_0108|C|1.0,5.0|131072,4096|-|-|NotoriousH2/Qwen2.5_0.5B_MED_Instruct_0108 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_hairy_hedgehog|-|axonide/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_hairy_hedgehog|C|1.0,5.0|131072,4096|-|-|axonide/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_hairy_hedgehog model|N
featherless/Qwen2-0.5B-drpo-imdb-est_dpo_style-9|qwen2-0.5b-drpo-imdb-est_dpo_style-9|Eehan/Qwen2-0.5B-drpo-imdb-est_dpo_style-9|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-est_dpo_style-9 model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_skittish_hamster|-|NamoNam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_skittish_hamster|C|1.0,5.0|131072,4096|-|-|NamoNam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_skittish_hamster model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_agile_hornet|-|maxx066493/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_agile_hornet|C|1.0,5.0|131072,4096|-|-|maxx066493/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_agile_hornet model|N
featherless/Qwen2.5-0.5B_PIFT_jaen_manywords_6000_v1|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_6000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_6000_v1 model|N
featherless/test10|test10|teenysheep/test10|C|1.0,5.0|131072,4096|-|-|teenysheep/test10 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_eager_butterfly|-|hellowwsiry24/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_eager_butterfly|C|1.0,5.0|131072,4096|-|-|hellowwsiry24/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_eager_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_foraging_finch|-|macull/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_foraging_finch|C|1.0,5.0|131072,4096|-|-|macull/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_foraging_finch model|N
featherless/459779f2-cbce-4ec0-b11c-1dcdf92498d8|459779f2-cbce-4ec0-b11c-1dcdf92498d8|willtensora/459779f2-cbce-4ec0-b11c-1dcdf92498d8|C|1.0,5.0|131072,4096|-|-|willtensora/459779f2-cbce-4ec0-b11c-1dcdf92498d8 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_humming_porcupine|-|mixxxeee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_humming_porcupine|C|1.0,5.0|131072,4096|-|-|mixxxeee/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_humming_porcupine model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-phy-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_waddling_magpie|-|Hshsjsn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_waddling_magpie|C|1.0,5.0|131072,4096|-|-|Hshsjsn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_waddling_magpie model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_hunting_elk|-|tylypneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_hunting_elk|C|1.0,5.0|131072,4096|-|-|tylypneth/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_hunting_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi|C|1.0,5.0|131072,4096|-|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-muscular_miniature_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_thorny_meerkat|-|mywsky/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_thorny_meerkat|C|1.0,5.0|131072,4096|-|-|mywsky/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_thorny_meerkat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_vigilant_bear|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_vigilant_bear|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_vigilant_bear model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_rabid_anaconda|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_rabid_anaconda|C|1.0,5.0|131072,4096|-|-|ngunq/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-monstrous_rabid_anaconda model|N
featherless/Qwen2.5-QwQ-RP-Draft-v0.1-0.5B|qwen2.5-qwq-rp-draft-v0.1-0.5b|PJMixers-Dev/Qwen2.5-QwQ-RP-Draft-v0.1-0.5B|C|1.0,5.0|131072,4096|V|-|PJMixers-Dev/Qwen2.5-QwQ-RP-Draft-v0.1-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_wise_cat|-|amir74589641/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_wise_cat|C|1.0,5.0|131072,4096|-|-|amir74589641/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-burrowing_wise_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_soaring_cougar|-|parham1996/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_soaring_cougar|C|1.0,5.0|131072,4096|-|-|parham1996/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-energetic_soaring_cougar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|C|1.0,5.0|131072,4096|-|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_waddling_dove|-|eriksyuan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_waddling_dove|C|1.0,5.0|131072,4096|-|-|eriksyuan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_waddling_dove model|N
featherless/zhengComing_Qwen2.5_0dot5B_R1_zero|zhengcoming_qwen2.5_0dot5b_r1_zero|zhengComing/zhengComing_Qwen2.5_0dot5B_R1_zero|C|1.0,5.0|131072,4096|-|-|zhengComing/zhengComing_Qwen2.5_0dot5B_R1_zero model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_restless_panda|-|luciferdev99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_restless_panda|C|1.0,5.0|131072,4096|-|-|luciferdev99/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_restless_panda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_wily_woodpecker|-|mrvinph/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_wily_woodpecker|C|1.0,5.0|131072,4096|-|-|mrvinph/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_wily_woodpecker model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_bristly_rat|-|chirat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_bristly_rat|C|1.0,5.0|131072,4096|-|-|chirat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_bristly_rat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_reptilian_elk|-|ameli0x9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_reptilian_elk|C|1.0,5.0|131072,4096|-|-|ameli0x9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_reptilian_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_webbed_alpaca|-|riseent/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_webbed_alpaca|C|1.0,5.0|131072,4096|-|-|riseent/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-subtle_webbed_alpaca model|N
featherless/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr2e-5-1epoch|-|fjxdaisy/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr2e-5-1epoch|C|1.0,5.0|131072,4096|V|-|fjxdaisy/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr2e-5-1epoch model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_fishy_bison|-|0xDeadRey/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_fishy_bison|C|1.0,5.0|131072,4096|-|-|0xDeadRey/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_fishy_bison model|N
featherless/qwen2.5-0.5B_drop_freq30_edu_instruct-3|qwen2.5-0.5b_drop_freq30_edu_instruct-3|NaoS2/qwen2.5-0.5B_drop_freq30_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_freq30_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_twitchy_mammoth|-|leodalat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_twitchy_mammoth|C|1.0,5.0|131072,4096|-|-|leodalat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_twitchy_mammoth model|N
featherless/Qwen2.5-0.5B_PIFT_enja_manywords_8000_v1|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_8000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_8000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_solitary_butterfly|-|metaverseinteriordesigner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_solitary_butterfly|C|1.0,5.0|131072,4096|-|-|metaverseinteriordesigner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_solitary_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_sniffing_fly|-|madoros/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_sniffing_fly|C|1.0,5.0|131072,4096|-|-|madoros/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-reclusive_sniffing_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_roaring_bison|-|nerosena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_roaring_bison|C|1.0,5.0|131072,4096|-|-|nerosena/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rapid_roaring_bison model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_wary_llama|-|yusufi11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_wary_llama|C|1.0,5.0|131072,4096|-|-|yusufi11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_wary_llama model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_stocky_warthog|-|hpapple/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_stocky_warthog|C|1.0,5.0|131072,4096|V|-|hpapple/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-voracious_stocky_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_amphibious_pig|-|puneetsssh2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_amphibious_pig|C|1.0,5.0|131072,4096|-|-|puneetsssh2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_amphibious_pig model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_dense_panther|-|Rijulove/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_dense_panther|C|1.0,5.0|131072,4096|-|-|Rijulove/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-long_dense_panther model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth|-|kttaang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth|C|1.0,5.0|131072,4096|-|-|kttaang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_clawed_mammoth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_durable_badger|-|annabell88/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_durable_badger|C|1.0,5.0|131072,4096|-|-|annabell88/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_durable_badger model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_8000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_8000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-en_manywords_8000 model|N
featherless/Qwen2.5-0.5B_PIFT_jaen_manywords_8000_v1|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_8000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_jaen_manywords_8000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_waddling_ocelot|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_waddling_ocelot|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_waddling_ocelot model|N
featherless/qwen2-0.5b-vanilla-single-device|qwen2-0.5b-vanilla-single-device|lizchu413/qwen2-0.5b-vanilla-single-device|C|1.0,5.0|131072,4096|V|-|lizchu413/qwen2-0.5b-vanilla-single-device model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_shiny_bear|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_shiny_bear|C|1.0,5.0|131072,4096|-|-|sdfsdsssFBodf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mighty_shiny_bear model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_foxy_ram|-|TiMOld/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_foxy_ram|C|1.0,5.0|131072,4096|-|-|TiMOld/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_foxy_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_elusive_fly|-|Odogwu001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_elusive_fly|C|1.0,5.0|131072,4096|-|-|Odogwu001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_elusive_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|-|flwoeut/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust|C|1.0,5.0|131072,4096|-|-|flwoeut/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_bellowing_locust model|N
featherless/fin-research-qwen25-0.5b-lora-ft-fin|fin-research-qwen25-0.5b-lora-ft-fin|klaylouis1932/fin-research-qwen25-0.5b-lora-ft-fin|C|1.0,5.0|131072,4096|-|-|klaylouis1932/fin-research-qwen25-0.5b-lora-ft-fin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_opaque_weasel|-|arash-devops/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_opaque_weasel|C|1.0,5.0|131072,4096|-|-|arash-devops/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_opaque_weasel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_peckish_swan|-|ongon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_peckish_swan|C|1.0,5.0|131072,4096|-|-|ongon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fierce_peckish_swan model|N
featherless/qwen-0.5b-instruct-summary-pt-rank32|qwen-0.5b-instruct-summary-pt-rank32|peulsilva/qwen-0.5b-instruct-summary-pt-rank32|C|1.0,5.0|131072,4096|-|-|peulsilva/qwen-0.5b-instruct-summary-pt-rank32 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_stalking_bear|-|vigilantETH/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_stalking_bear|C|1.0,5.0|131072,4096|-|-|vigilantETH/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_stalking_bear model|N
featherless/01251908-prep_NuminaMath-CoT|01251908-prep_numinamath-cot|azxky6645/01251908-prep_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01251908-prep_NuminaMath-CoT model|N
featherless/qwen2.5-0.5B_ed_gauss_freq_30-3|qwen2.5-0.5b_ed_gauss_freq_30-3|komi77/qwen2.5-0.5B_ed_gauss_freq_30-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_freq_30-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah|-|Usagimofumofu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah|C|1.0,5.0|131072,4096|-|-|Usagimofumofu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_robust_chinchilla|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_robust_chinchilla|C|1.0,5.0|131072,4096|-|-|medical2017/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_robust_chinchilla model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_crested_salamander|-|preciouzalpha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_crested_salamander|C|1.0,5.0|131072,4096|-|-|preciouzalpha/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_crested_salamander model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_shy_caribou|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_shy_caribou|C|1.0,5.0|131072,4096|-|-|hamedkharazmi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thriving_shy_caribou model|N
featherless/gensyn-checkpoints-bellowing_whistling_buffalo|-|daitot/gensyn-checkpoints-bellowing_whistling_buffalo|C|1.0,5.0|131072,4096|-|-|daitot/gensyn-checkpoints-bellowing_whistling_buffalo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_monstrous_lynx|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_monstrous_lynx|C|1.0,5.0|131072,4096|-|-|littletuzi92/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_monstrous_lynx model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_shy_chimpanzee|-|jamesluca/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_shy_chimpanzee|C|1.0,5.0|131072,4096|-|-|jamesluca/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_shy_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_durable_zebra|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_durable_zebra|C|1.0,5.0|131072,4096|V|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vigilant_durable_zebra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_vigilant_shrew|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_vigilant_shrew|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_vigilant_shrew model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote|C|1.0,5.0|131072,4096|-|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_tropical_coyote model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_reptilian_toad|-|alfri/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_reptilian_toad|C|1.0,5.0|131072,4096|-|-|alfri/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_reptilian_toad model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_peckish_aardvark|-|ichinur/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_peckish_aardvark|C|1.0,5.0|131072,4096|-|-|ichinur/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_peckish_aardvark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_shy_ram|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_shy_ram|C|1.0,5.0|131072,4096|-|-|xaobai/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_shy_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_placid_gibbon|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_placid_gibbon|C|1.0,5.0|131072,4096|-|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slow_placid_gibbon model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_30|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_30|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_30 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_stocky_ostrich|-|zephy12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_stocky_ostrich|C|1.0,5.0|131072,4096|-|-|zephy12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_stocky_ostrich model|N
featherless/hellodistill|hellodistill|bbliu666/hellodistill|C|1.0,5.0|131072,4096|-|-|bbliu666/hellodistill model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_shrewd_gibbon|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_shrewd_gibbon|C|1.0,5.0|131072,4096|-|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_shrewd_gibbon model|N
featherless/bloomVN-0.5B-ppo-sft-lit-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-lit-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-lit-olora-ALL-WEIGHT model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_nasty_pigeon|-|Himzi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_nasty_pigeon|C|1.0,5.0|131072,4096|-|-|Himzi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_nasty_pigeon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_prickly_ape|-|jayekings/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_prickly_ape|C|1.0,5.0|131072,4096|-|-|jayekings/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leggy_prickly_ape model|N
featherless/qwen2.5-0.5B_ed_gauss_freq_20-3|qwen2.5-0.5b_ed_gauss_freq_20-3|komi77/qwen2.5-0.5B_ed_gauss_freq_20-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_freq_20-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_barky_porcupine|-|iamkaicpt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_barky_porcupine|C|1.0,5.0|131072,4096|-|-|iamkaicpt/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_barky_porcupine model|N
featherless/01261900-modify_tamplate-noboxed-processing|-|azxky6645/01261900-modify_tamplate-noboxed-processing|C|1.0,5.0|131072,4096|-|-|azxky6645/01261900-modify_tamplate-noboxed-processing model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_twitchy_anteater|-|asdadnice/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_twitchy_anteater|C|1.0,5.0|131072,4096|-|-|asdadnice/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_twitchy_anteater model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam|C|1.0,5.0|131072,4096|-|-|ekiim/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_vocal_clam model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot|C|1.0,5.0|131072,4096|-|-|alimerft/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_moist_ocelot model|N
featherless/Qwen2.5-0.5B-FC-v1.1-think|qwen2.5-0.5b-fc-v1.1-think|AymanTarig/Qwen2.5-0.5B-FC-v1.1-think|C|1.0,5.0|131072,4096|VK|-|AymanTarig/Qwen2.5-0.5B-FC-v1.1-think model|N
featherless/llama-3-8b-chat-doctor|llama-3-8b-chat-doctor|sathwik16/llama-3-8b-chat-doctor|C|1.0,5.0|131072,4096|-|-|sathwik16/llama-3-8b-chat-doctor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_peckish_llama|-|tarouyamadada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_peckish_llama|C|1.0,5.0|131072,4096|-|-|tarouyamadada/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_peckish_llama model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_mighty_crane|-|DAVEWAVE11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_mighty_crane|C|1.0,5.0|131072,4096|-|-|DAVEWAVE11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nocturnal_mighty_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_cunning_moose|-|manh1700000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_cunning_moose|C|1.0,5.0|131072,4096|-|-|manh1700000/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scavenging_cunning_moose model|N
featherless/openfin-0.5B-ZH-optimal-sft_audit_regulation|-|daishen/openfin-0.5B-ZH-optimal-sft_audit_regulation|C|1.0,5.0|131072,4096|-|-|daishen/openfin-0.5B-ZH-optimal-sft_audit_regulation model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_nimble_zebra|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_nimble_zebra|C|1.0,5.0|131072,4096|-|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_nimble_zebra model|N
featherless/Qwen2.5-0.5B_BIFT_manywords_8000_v1|qwen2.5-0.5b_bift_manywords_8000_v1|myst72/Qwen2.5-0.5B_BIFT_manywords_8000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_BIFT_manywords_8000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_mimic_salamander|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_mimic_salamander|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_mimic_salamander model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_climbing_cockroach|-|Hubhx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_climbing_cockroach|C|1.0,5.0|131072,4096|-|-|Hubhx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_climbing_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_gregarious_chicken|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_gregarious_chicken|C|1.0,5.0|131072,4096|-|-|kholiqdev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_gregarious_chicken model|N
featherless/Qweb2.5-FT-DPO-CSY|qweb2.5-ft-dpo-csy|josang1204/Qweb2.5-FT-DPO-CSY|C|1.0,5.0|131072,4096|-|-|josang1204/Qweb2.5-FT-DPO-CSY model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_insectivorous_coyote|-|adrimoreau/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_insectivorous_coyote|C|1.0,5.0|131072,4096|-|-|adrimoreau/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_insectivorous_coyote model|N
featherless/qwen2.5-0.5B_ed_gauss_freq_15-3|qwen2.5-0.5b_ed_gauss_freq_15-3|komi77/qwen2.5-0.5B_ed_gauss_freq_15-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_freq_15-3 model|N
featherless/qwen-2.5-0.5b-grpo-rlcot-gsm8k|qwen-2.5-0.5b-grpo-rlcot-gsm8k|nimishbongale/qwen-2.5-0.5b-grpo-rlcot-gsm8k|C|1.0,5.0|131072,4096|-|-|nimishbongale/qwen-2.5-0.5b-grpo-rlcot-gsm8k model|N
featherless/Qwen2.5-0.5B|qwen2.5-0.5b|southfreebird/Qwen2.5-0.5B|C|1.0,5.0|131072,4096|-|-|southfreebird/Qwen2.5-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_prehistoric_reindeer|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_prehistoric_reindeer|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_prehistoric_reindeer model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_tangled_weasel|-|Nastaran25/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_tangled_weasel|C|1.0,5.0|131072,4096|-|-|Nastaran25/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_tangled_weasel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_giant_raccoon|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_giant_raccoon|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-unseen_giant_raccoon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_lanky_hippo|-|rdruce/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_lanky_hippo|C|1.0,5.0|131072,4096|-|-|rdruce/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-frisky_lanky_hippo model|N
featherless/gensyn-checkpoints-noisy_subtle_beaver|gensyn-checkpoints-noisy_subtle_beaver|day14tmk/gensyn-checkpoints-noisy_subtle_beaver|C|1.0,5.0|131072,4096|-|-|day14tmk/gensyn-checkpoints-noisy_subtle_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_docile_horse|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_docile_horse|C|1.0,5.0|131072,4096|-|-|daocoinhsc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_docile_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_amphibious_spider|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_amphibious_spider|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tangled_amphibious_spider model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_webbed_cockroach|-|imamsec-id/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_webbed_cockroach|C|1.0,5.0|131072,4096|-|-|imamsec-id/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-durable_webbed_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_waddling_komodo|-|liuguoli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_waddling_komodo|C|1.0,5.0|131072,4096|-|-|liuguoli/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_waddling_komodo model|N
featherless/qwen2.5-0.5B_drop_low25_edu_instruct-3|qwen2.5-0.5b_drop_low25_edu_instruct-3|NaoS2/qwen2.5-0.5B_drop_low25_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_drop_low25_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_furry_octopus|-|nfjmdb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_furry_octopus|C|1.0,5.0|131072,4096|-|-|nfjmdb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_furry_octopus model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_510|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_510|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_510 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_toad|-|gpandrad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_toad|C|1.0,5.0|131072,4096|-|-|gpandrad/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scaly_toad model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_shy_fox|-|0xdorame/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_shy_fox|C|1.0,5.0|131072,4096|-|-|0xdorame/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_shy_fox model|N
featherless/Qwen2.5_0.5B_MED_0108|qwen2.5_0.5b_med_0108|NotoriousH2/Qwen2.5_0.5B_MED_0108|C|1.0,5.0|131072,4096|-|-|NotoriousH2/Qwen2.5_0.5B_MED_0108 model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|C|1.0,5.0|131072,4096|-|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_robust_eagle|-|ygujf76/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_robust_eagle|C|1.0,5.0|131072,4096|-|-|ygujf76/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-screeching_robust_eagle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|C|1.0,5.0|131072,4096|-|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-masked_bipedal_ram|-|BVrOtoVgMxLNk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-masked_bipedal_ram|C|1.0,5.0|131072,4096|-|-|BVrOtoVgMxLNk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-masked_bipedal_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_mimic_magpie|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_mimic_magpie|C|1.0,5.0|131072,4096|-|-|spearsyin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-insectivorous_mimic_magpie model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_8000_v1|qwen2.5-0.5b_mift_en_manywords_8000_v1|myst72/Qwen2.5-0.5B_MIFT_en_manywords_8000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_8000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_unseen_narwhal|-|GYPOgvPxOrYmbtI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_unseen_narwhal|C|1.0,5.0|131072,4096|-|-|GYPOgvPxOrYmbtI/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_unseen_narwhal model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_shrewd_tuna|-|Obiwank107/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_shrewd_tuna|C|1.0,5.0|131072,4096|-|-|Obiwank107/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sly_shrewd_tuna model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_savage_sheep|-|bannks/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_savage_sheep|C|1.0,5.0|131072,4096|V|-|bannks/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_savage_sheep model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_agile_anaconda|-|dashdash07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_agile_anaconda|C|1.0,5.0|131072,4096|-|-|dashdash07777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_agile_anaconda model|N
featherless/Qwen2-0.5B-GRPO-exp2|qwen2-0.5b-grpo-exp2|araziziml/Qwen2-0.5B-GRPO-exp2|C|1.0,5.0|131072,4096|-|-|araziziml/Qwen2-0.5B-GRPO-exp2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_sprightly_ferret|-|touch1827/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_sprightly_ferret|C|1.0,5.0|131072,4096|-|-|touch1827/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_sprightly_ferret model|N
featherless/qwen2.5-0.5B_mask_uni10_edu_instruct-3|qwen2.5-0.5b_mask_uni10_edu_instruct-3|NaoS2/qwen2.5-0.5B_mask_uni10_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_mask_uni10_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B_inst_ja_8250|qwen2.5-0.5b_inst_ja_8250|Hachipo/Qwen2.5-0.5B_inst_ja_8250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_inst_ja_8250 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_colorful_badger|-|redwhite/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_colorful_badger|C|1.0,5.0|131072,4096|-|-|redwhite/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_colorful_badger model|N
featherless/bloomVN-0.5B-ppo-sft-che-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-che-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-che-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tall_gazelle|-|ylou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tall_gazelle|C|1.0,5.0|131072,4096|-|-|ylou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rabid_tall_gazelle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_waddling_marmot|-|guvenba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_waddling_marmot|C|1.0,5.0|131072,4096|-|-|guvenba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_waddling_marmot model|N
featherless/Qwen2-0.5B-drpo-imdb-indifferent-4|qwen2-0.5b-drpo-imdb-indifferent-4|Eehan/Qwen2-0.5B-drpo-imdb-indifferent-4|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-indifferent-4 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_mighty_beaver|-|quarticcat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_mighty_beaver|C|1.0,5.0|131072,4096|-|-|quarticcat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peckish_mighty_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_singing_cat|-|yusufi11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_singing_cat|C|1.0,5.0|131072,4096|-|-|yusufi11/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_singing_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_bristly_narwhal|-|phiphuc94/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_bristly_narwhal|C|1.0,5.0|131072,4096|-|-|phiphuc94/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_bristly_narwhal model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_thorny_flamingo|-|cinburiki/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_thorny_flamingo|C|1.0,5.0|131072,4096|-|-|cinburiki/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_thorny_flamingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_shiny_tapir|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_shiny_tapir|C|1.0,5.0|131072,4096|-|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scented_shiny_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah|C|1.0,5.0|131072,4096|-|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_hibernating_cheetah model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_enormous_buffalo|-|smartcall/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_enormous_buffalo|C|1.0,5.0|131072,4096|-|-|smartcall/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_enormous_buffalo model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_2000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_2000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_MIFT-ja_manywords_2000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_thorny_gecko|-|SoleWoyinka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_thorny_gecko|C|1.0,5.0|131072,4096|-|-|SoleWoyinka/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_thorny_gecko model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_tough_gazelle|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_tough_gazelle|C|1.0,5.0|131072,4096|-|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_tough_gazelle model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_camouflaged_raccoon|-|chainsaww/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_camouflaged_raccoon|C|1.0,5.0|131072,4096|-|-|chainsaww/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_camouflaged_raccoon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_vigilant_hawk|-|sedfg4gh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_vigilant_hawk|C|1.0,5.0|131072,4096|-|-|sedfg4gh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_vigilant_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_plump_turkey|-|longmo7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_plump_turkey|C|1.0,5.0|131072,4096|-|-|longmo7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_plump_turkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_cunning_ram|-|paulbell106/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_cunning_ram|C|1.0,5.0|131072,4096|-|-|paulbell106/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slithering_cunning_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_timid_butterfly|-|Geoveza/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_timid_butterfly|C|1.0,5.0|131072,4096|-|-|Geoveza/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-arctic_timid_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_flapping_butterfly|-|boboko/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_flapping_butterfly|C|1.0,5.0|131072,4096|V|-|boboko/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vicious_flapping_butterfly model|N
featherless/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order1-mat-phy-che-bio-lit-his-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_burrowing_mosquito|-|rumanshaf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_burrowing_mosquito|C|1.0,5.0|131072,4096|-|-|rumanshaf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-playful_burrowing_mosquito model|N
featherless/phase1_qwen2.5_0.5b_csn|phase1_qwen2.5_0.5b_csn|lizchu413/phase1_qwen2.5_0.5b_csn|C|1.0,5.0|131072,4096|-|-|lizchu413/phase1_qwen2.5_0.5b_csn model|N
featherless/Qwen2.5-0.5B-Instruct-DPO|qwen2.5-0.5b-instruct-dpo|jdineen/Qwen2.5-0.5B-Instruct-DPO|C|1.0,5.0|131072,4096|-|-|jdineen/Qwen2.5-0.5B-Instruct-DPO model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pale_crab|-|hangytong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pale_crab|C|1.0,5.0|131072,4096|-|-|hangytong/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pale_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_dense_okapi|-|rekpero/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_dense_okapi|C|1.0,5.0|131072,4096|-|-|rekpero/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_dense_okapi model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_roaring_puma|-|ironman8022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_roaring_puma|C|1.0,5.0|131072,4096|-|-|ironman8022/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-whiskered_roaring_puma model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_barky_warthog|-|zackcncn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_barky_warthog|C|1.0,5.0|131072,4096|-|-|zackcncn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thick_barky_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_crested_crane|-|mendold/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_crested_crane|C|1.0,5.0|131072,4096|-|-|mendold/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_crested_crane model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_wary_mallard|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_wary_mallard|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_wary_mallard model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-bio-che-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_purring_wildebeest|-|ccdevops/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_purring_wildebeest|C|1.0,5.0|131072,4096|-|-|ccdevops/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stalking_purring_wildebeest model|N
featherless/qwen2.5-0.5B_freq10_edu_instruct-3|qwen2.5-0.5b_freq10_edu_instruct-3|NaoS2/qwen2.5-0.5B_freq10_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_freq10_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_freckled_snail|-|dd20march96/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_freckled_snail|C|1.0,5.0|131072,4096|-|-|dd20march96/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_freckled_snail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm|C|1.0,5.0|131072,4096|-|-|mogimogi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gliding_arctic_worm model|N
featherless/qwen2.5_0.5B_sft_lora|qwen2.5_0.5b_sft_lora|daishen/qwen2.5_0.5B_sft_lora|C|1.0,5.0|131072,4096|-|-|daishen/qwen2.5_0.5B_sft_lora model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_fanged_anaconda|-|ddacata/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_fanged_anaconda|C|1.0,5.0|131072,4096|-|-|ddacata/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stealthy_fanged_anaconda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_peaceful_butterfly|-|battlefield00765/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_peaceful_butterfly|C|1.0,5.0|131072,4096|-|-|battlefield00765/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_peaceful_butterfly model|N
featherless/qwen2.5-0.5B_ed_gauss_linear_20-3|qwen2.5-0.5b_ed_gauss_linear_20-3|komi77/qwen2.5-0.5B_ed_gauss_linear_20-3|C|1.0,5.0|131072,4096|-|-|komi77/qwen2.5-0.5B_ed_gauss_linear_20-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peaceful_trout|-|Hientan200Thu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peaceful_trout|C|1.0,5.0|131072,4096|-|-|Hientan200Thu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_peaceful_trout model|N
featherless/Qwen2.5-0.5B_MIFT_ja_manywords_8000_v1|qwen2.5-0.5b_mift_ja_manywords_8000_v1|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_8000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_8000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-horned_rugged_sloth|-|dongqn69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-horned_rugged_sloth|C|1.0,5.0|131072,4096|-|-|dongqn69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-horned_rugged_sloth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_vicious_condor|-|littletuzi96/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_vicious_condor|C|1.0,5.0|131072,4096|-|-|littletuzi96/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_vicious_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_masked_python|-|gushanjishui/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_masked_python|C|1.0,5.0|131072,4096|-|-|gushanjishui/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_masked_python model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_370|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_370|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_370 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena|-|luckydao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena|C|1.0,5.0|131072,4096|-|-|luckydao/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_vigilant_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_fanged_lizard|-|Diana28210211/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_fanged_lizard|C|1.0,5.0|131072,4096|-|-|Diana28210211/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_fanged_lizard model|N
featherless/Qwen-0.5B-SFT|qwen-0.5b-sft|Ayush-Singh/Qwen-0.5B-SFT|C|1.0,5.0|131072,4096|-|-|Ayush-Singh/Qwen-0.5B-SFT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_meek_anteater|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_meek_anteater|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pawing_meek_anteater model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_short_boar|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_short_boar|C|1.0,5.0|131072,4096|-|-|Agoboy/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_short_boar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_thorny_crow|-|tdelic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_thorny_crow|C|1.0,5.0|131072,4096|-|-|tdelic/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lively_thorny_crow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_lightfooted_camel|-|Greed777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_lightfooted_camel|C|1.0,5.0|131072,4096|-|-|Greed777/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_lightfooted_camel model|N
featherless/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order2-geo-his-lit-rslora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_meek_hawk|-|Steveharsh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_meek_hawk|C|1.0,5.0|131072,4096|-|-|Steveharsh/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_meek_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_nimble_lion|-|6gsd568/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_nimble_lion|C|1.0,5.0|131072,4096|-|-|6gsd568/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pouncing_nimble_lion model|N
featherless/qwen2.5-0.5B_mask_uni30_edu_instruct-3|qwen2.5-0.5b_mask_uni30_edu_instruct-3|NaoS2/qwen2.5-0.5B_mask_uni30_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_mask_uni30_edu_instruct-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_bellowing_piranha|-|pratikbinn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_bellowing_piranha|C|1.0,5.0|131072,4096|-|-|pratikbinn/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skilled_bellowing_piranha model|N
featherless/bloomVN-0.5B-ppo-sft-geo-olora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-olora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-geo-olora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_insectivorous_aardvark|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_insectivorous_aardvark|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snorting_insectivorous_aardvark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_zealous_capybara|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_zealous_capybara|C|1.0,5.0|131072,4096|-|-|edith71/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stinky_zealous_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_woolly_chimpanzee|-|Almenodera/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_woolly_chimpanzee|C|1.0,5.0|131072,4096|-|-|Almenodera/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-keen_woolly_chimpanzee model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_lively_turkey|-|XXCWAVE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_lively_turkey|C|1.0,5.0|131072,4096|-|-|XXCWAVE/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-cunning_lively_turkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_slimy_albatross|-|d4v3r0d/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_slimy_albatross|C|1.0,5.0|131072,4096|-|-|d4v3r0d/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grunting_slimy_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_slow_sardine|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_slow_sardine|C|1.0,5.0|131072,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-plump_slow_sardine model|N
featherless/ex21_qwen2.5_0.5b_20k_16kcw_3ep_cuda_amd|-|ahmedheakl/ex21_qwen2.5_0.5b_20k_16kcw_3ep_cuda_amd|C|1.0,5.0|131072,4096|-|-|ahmedheakl/ex21_qwen2.5_0.5b_20k_16kcw_3ep_cuda_amd model|N
featherless/phase1_qwen2.5_0.5b_csn_plus|phase1_qwen2.5_0.5b_csn_plus|lizchu413/phase1_qwen2.5_0.5b_csn_plus|C|1.0,5.0|131072,4096|-|-|lizchu413/phase1_qwen2.5_0.5b_csn_plus model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_fierce_butterfly|-|bavernajer/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_fierce_butterfly|C|1.0,5.0|131072,4096|-|-|bavernajer/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_fierce_butterfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_alert_beaver|-|kkokas/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_alert_beaver|C|1.0,5.0|131072,4096|-|-|kkokas/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_alert_beaver model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_lithe_pigeon|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_lithe_pigeon|C|1.0,5.0|131072,4096|-|-|gupshreeya0504/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bellowing_lithe_pigeon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_thriving_toucan|-|manasrefone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_thriving_toucan|C|1.0,5.0|131072,4096|-|-|manasrefone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_thriving_toucan model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_webbed_piranha|-|xinyuyang9653/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_webbed_piranha|C|1.0,5.0|131072,4096|-|-|xinyuyang9653/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-opaque_webbed_piranha model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_slimy_cow|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_slimy_cow|C|1.0,5.0|131072,4096|-|-|Asgar1993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-regal_slimy_cow model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_vocal_turkey|-|fuckingRid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_vocal_turkey|C|1.0,5.0|131072,4096|-|-|fuckingRid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_vocal_turkey model|N
featherless/bloomVN-0.5B-ppo-sft-mat-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-mat-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-mat-rslora-ALL-WEIGHT model|N
featherless/Qwen2-0.5B-DRDPO-imdb-bm-tp|qwen2-0.5b-drdpo-imdb-bm-tp|Kyleyee/Qwen2-0.5B-DRDPO-imdb-bm-tp|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-bm-tp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_stubby_cougar|-|tranhoang27291/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_stubby_cougar|C|1.0,5.0|131072,4096|-|-|tranhoang27291/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_stubby_cougar model|N
featherless/ppo_trained_model_gsm8k_ppo_500examples|ppo_trained_model_gsm8k_ppo_500examples|regulus4869/ppo_trained_model_gsm8k_ppo_500examples|C|1.0,5.0|131072,4096|-|-|regulus4869/ppo_trained_model_gsm8k_ppo_500examples model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_untamed_buffalo|-|0xluen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_untamed_buffalo|C|1.0,5.0|131072,4096|-|-|0xluen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-woolly_untamed_buffalo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_stealthy_jaguar|-|thachdv85/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_stealthy_jaguar|C|1.0,5.0|131072,4096|-|-|thachdv85/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_stealthy_jaguar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_smooth_aardvark|-|rockpolizii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_smooth_aardvark|C|1.0,5.0|131072,4096|-|-|rockpolizii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-toothy_smooth_aardvark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_mule|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_mule|C|1.0,5.0|131072,4096|-|-|benfielding/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-humming_mule model|N
featherless/qwen-0.5b-instruct-summary-pt-checkpoint0|-|peulsilva/qwen-0.5b-instruct-summary-pt-checkpoint0|C|1.0,5.0|131072,4096|-|-|peulsilva/qwen-0.5b-instruct-summary-pt-checkpoint0 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_hulking_whale|-|chutjanekub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_hulking_whale|C|1.0,5.0|131072,4096|-|-|chutjanekub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-skittish_hulking_whale model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_furry_anteater|-|marpiku/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_furry_anteater|C|1.0,5.0|131072,4096|-|-|marpiku/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-snappy_furry_anteater model|N
featherless/tfa_output_2025_m02_d07_t07h_45m_38s|tfa_output_2025_m02_d07_t07h_45m_38s|brando/tfa_output_2025_m02_d07_t07h_45m_38s|C|1.0,5.0|131072,4096|-|-|brando/tfa_output_2025_m02_d07_t07h_45m_38s model|N
featherless/qwen2.5-0.5B_mask_uni20_edu_instruct-3|qwen2.5-0.5b_mask_uni20_edu_instruct-3|NaoS2/qwen2.5-0.5B_mask_uni20_edu_instruct-3|C|1.0,5.0|131072,4096|-|-|NaoS2/qwen2.5-0.5B_mask_uni20_edu_instruct-3 model|N
featherless/qwen2.5-lmsys-lota|qwen2.5-lmsys-lota|bew/qwen2.5-lmsys-lota|C|1.0,5.0|131072,4096|-|-|bew/qwen2.5-lmsys-lota model|N
featherless/Qwen2.5-0.5B_MIFT_ja_manywords_6000_v1|qwen2.5-0.5b_mift_ja_manywords_6000_v1|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_6000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_ja_manywords_6000_v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_aquatic_cod|-|0xBahar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_aquatic_cod|C|1.0,5.0|131072,4096|-|-|0xBahar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_aquatic_cod model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_eager_duck|-|LeahDuf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_eager_duck|C|1.0,5.0|131072,4096|-|-|LeahDuf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ravenous_eager_duck model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_freckled_chameleon|-|0xBaran/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_freckled_chameleon|C|1.0,5.0|131072,4096|-|-|0xBaran/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_freckled_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_stealthy_cassowary|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_stealthy_cassowary|C|1.0,5.0|131072,4096|-|-|kkamddi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_stealthy_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_hulking_coyote|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_hulking_coyote|C|1.0,5.0|131072,4096|-|-|Johnex/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_hulking_coyote model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_pouncing_condor|-|Exitliquidity/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_pouncing_condor|C|1.0,5.0|131072,4096|-|-|Exitliquidity/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shaggy_pouncing_condor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_mighty_ram|-|Priyanshu2666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_mighty_ram|C|1.0,5.0|131072,4096|-|-|Priyanshu2666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wary_mighty_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_fishy_lynx|-|gv6037/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_fishy_lynx|C|1.0,5.0|131072,4096|-|-|gv6037/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rugged_fishy_lynx model|N
featherless/qwen0.5b-Instruct-tech-interview-test|qwen0.5b-instruct-tech-interview-test|adore11/qwen0.5b-Instruct-tech-interview-test|C|1.0,5.0|131072,4096|-|-|adore11/qwen0.5b-Instruct-tech-interview-test model|N
featherless/Qwen-SFT-training|qwen-sft-training|zzman/Qwen-SFT-training|C|1.0,5.0|131072,4096|-|-|zzman/Qwen-SFT-training model|N
featherless/Qwen2-0.5B-GRPO-VLLM-mni-epoc-64-full|qwen2-0.5b-grpo-vllm-mni-epoc-64-full|valerielucro/Qwen2-0.5B-GRPO-VLLM-mni-epoc-64-full|C|1.0,5.0|131072,4096|V|-|valerielucro/Qwen2-0.5B-GRPO-VLLM-mni-epoc-64-full model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab|C|1.0,5.0|131072,4096|-|-|NachtMond/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-nimble_aquatic_crab model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker|C|1.0,5.0|131072,4096|-|-|Bayu22/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bold_scented_woodpecker model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_stinging_flea|-|hnc29/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_stinging_flea|C|1.0,5.0|131072,4096|-|-|hnc29/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sedate_stinging_flea model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_reptilian_caribou|-|armanevmadiyar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_reptilian_caribou|C|1.0,5.0|131072,4096|-|-|armanevmadiyar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_reptilian_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|-|CryptoDyudster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi|C|1.0,5.0|131072,4096|-|-|CryptoDyudster/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-galloping_stinky_kiwi model|N
featherless/Qwen2-0.5B-drpo-imdb-default-3|qwen2-0.5b-drpo-imdb-default-3|Eehan/Qwen2-0.5B-drpo-imdb-default-3|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-default-3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bristly_dolphin|-|Ruzel23/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bristly_dolphin|C|1.0,5.0|131072,4096|-|-|Ruzel23/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-freckled_bristly_dolphin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_armored_zebra|-|mysreality/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_armored_zebra|C|1.0,5.0|131072,4096|-|-|mysreality/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_armored_zebra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_docile_bobcat|-|vam89/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_docile_bobcat|C|1.0,5.0|131072,4096|-|-|vam89/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_docile_bobcat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_wary_alpaca|-|slyphidbagen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_wary_alpaca|C|1.0,5.0|131072,4096|-|-|slyphidbagen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_wary_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep|C|1.0,5.0|131072,4096|-|-|rahilroxx/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mottled_twitchy_sheep model|N
featherless/Qwen2-0.5B-DRDPO-imdb-bm-rp|qwen2-0.5b-drdpo-imdb-bm-rp|Kyleyee/Qwen2-0.5B-DRDPO-imdb-bm-rp|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-bm-rp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_thick_jackal|-|elviraam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_thick_jackal|C|1.0,5.0|131072,4096|-|-|elviraam/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_thick_jackal model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_burrowing_hyena|-|CrisKing12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_burrowing_hyena|C|1.0,5.0|131072,4096|-|-|CrisKing12/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_burrowing_hyena model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_bellowing_python|-|olenbil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_bellowing_python|C|1.0,5.0|131072,4096|-|-|olenbil/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_bellowing_python model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_4000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_BIFT_manywords_4000 model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_short_starfish|-|famineramin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_short_starfish|C|1.0,5.0|131072,4096|-|-|famineramin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_short_starfish model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-rslora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-rslora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-phy-his-che-lit-bio-rslora-ALL-WEIGHT model|N
featherless/bloomVN-0.5B-ppo-sft-order3-mat-geo-lora-ALL-WEIGHT|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-lora-ALL-WEIGHT|C|1.0,5.0|131072,4096|-|-|Luongdzung/bloomVN-0.5B-ppo-sft-order3-mat-geo-lora-ALL-WEIGHT model|N
featherless/Qwen2.5-0.5B-TR|qwen2.5-0.5b-tr|kadirnar/Qwen2.5-0.5B-TR|C|1.0,5.0|131072,4096|-|-|kadirnar/Qwen2.5-0.5B-TR model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_invisible_tuna|-|JadeYoung/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_invisible_tuna|C|1.0,5.0|131072,4096|-|-|JadeYoung/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mute_invisible_tuna model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_omnivorous_shark|-|yesmanz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_omnivorous_shark|C|1.0,5.0|131072,4096|-|-|yesmanz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_omnivorous_shark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_fluffy_rat|-|evryhtN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_fluffy_rat|C|1.0,5.0|131072,4096|-|-|evryhtN/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_fluffy_rat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_lithe_kangaroo|-|Jeojuhon3y/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_lithe_kangaroo|C|1.0,5.0|131072,4096|-|-|Jeojuhon3y/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_lithe_kangaroo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_alert_heron|-|lonkyu2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_alert_heron|C|1.0,5.0|131072,4096|-|-|lonkyu2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bipedal_alert_heron model|N
featherless/Qwen2.5-0.5B-Instruct-predli-finetuned-fused|-|asjoberg/Qwen2.5-0.5B-Instruct-predli-finetuned-fused|C|1.0,5.0|131072,4096|-|-|asjoberg/Qwen2.5-0.5B-Instruct-predli-finetuned-fused model|N
featherless/latin-translator-MT|latin-translator-mt|dantedgp/latin-translator-MT|C|1.0,5.0|131072,4096|-|-|dantedgp/latin-translator-MT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_endangered_snail|-|kttaang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_endangered_snail|C|1.0,5.0|131072,4096|V|-|kttaang/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_endangered_snail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_pawing_goose|-|debraj242/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_pawing_goose|C|1.0,5.0|131072,4096|-|-|debraj242/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_pawing_goose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_solitary_cat|-|kriznaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_solitary_cat|C|1.0,5.0|131072,4096|-|-|kriznaa/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_solitary_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_peaceful_dragonfly|-|irawansyahmon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_peaceful_dragonfly|C|1.0,5.0|131072,4096|-|-|irawansyahmon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_peaceful_dragonfly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_thick_cougar|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_thick_cougar|C|1.0,5.0|131072,4096|-|-|akirafudo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fanged_thick_cougar model|N
featherless/Qwen2.5-0.5B_MIFT_en_manywords_4000_v0|qwen2.5-0.5b_mift_en_manywords_4000_v0|myst72/Qwen2.5-0.5B_MIFT_en_manywords_4000_v0|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_MIFT_en_manywords_4000_v0 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_freckled_bat|-|greatnesshub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_freckled_bat|C|1.0,5.0|131072,4096|V|-|greatnesshub/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-vocal_freckled_bat model|N
featherless/01261900-modify_tamplate-boxed-processing|-|azxky6645/01261900-modify_tamplate-boxed-processing|C|1.0,5.0|131072,4096|-|-|azxky6645/01261900-modify_tamplate-boxed-processing model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_nocturnal_rhino|-|kontol666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_nocturnal_rhino|C|1.0,5.0|131072,4096|-|-|kontol666/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shrewd_nocturnal_rhino model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_scurrying_gibbon|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_scurrying_gibbon|C|1.0,5.0|131072,4096|-|-|rrreol69/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_scurrying_gibbon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_territorial_tortoise|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_territorial_tortoise|C|1.0,5.0|131072,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-noisy_territorial_tortoise model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_lanky_bobcat|-|zeldapham2301/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_lanky_bobcat|C|1.0,5.0|131072,4096|-|-|zeldapham2301/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deft_lanky_bobcat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_bipedal_shrimp|-|Dragonzed/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_bipedal_shrimp|C|1.0,5.0|131072,4096|-|-|Dragonzed/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_bipedal_shrimp model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_subtle_wallaby|-|Lots90/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_subtle_wallaby|C|1.0,5.0|131072,4096|-|-|Lots90/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_subtle_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_stinky_peacock|-|Izzy-p/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_stinky_peacock|C|1.0,5.0|131072,4096|-|-|Izzy-p/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-chattering_stinky_peacock model|N
featherless/Qwen2.5-0.5B_PIFT_enja_manywords_6000_v1|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_6000_v1|C|1.0,5.0|131072,4096|-|-|myst72/Qwen2.5-0.5B_PIFT_enja_manywords_6000_v1 model|N
featherless/Qwen2-0.5B-dpo_loss_small_sample_3e|qwen2-0.5b-dpo_loss_small_sample_3e|Kyleyee/Qwen2-0.5B-dpo_loss_small_sample_3e|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-dpo_loss_small_sample_3e model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_gazelle|-|hatikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_gazelle|C|1.0,5.0|131072,4096|-|-|hatikshop/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_gliding_gazelle model|N
featherless/Qwen2-0.5B-SFT|qwen2-0.5b-sft|zheminh/Qwen2-0.5B-SFT|C|1.0,5.0|131072,4096|-|-|zheminh/Qwen2-0.5B-SFT model|N
featherless/locextra_2epochs|locextra_2epochs|teenysheep/locextra_2epochs|C|1.0,5.0|131072,4096|-|-|teenysheep/locextra_2epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_silky_hedgehog|-|lteamsple/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_silky_hedgehog|C|1.0,5.0|131072,4096|-|-|lteamsple/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_silky_hedgehog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_arctic_magpie|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_arctic_magpie|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_arctic_magpie model|N
featherless/Qwen2-0.5B-drpo-imdb-default-0408-01|qwen2-0.5b-drpo-imdb-default-0408-01|Eehan/Qwen2-0.5B-drpo-imdb-default-0408-01|C|1.0,5.0|131072,4096|-|-|Eehan/Qwen2-0.5B-drpo-imdb-default-0408-01 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_mangy_emu|-|MortezaSalehi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_mangy_emu|C|1.0,5.0|131072,4096|-|-|MortezaSalehi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_mangy_emu model|N
featherless/Qwen2.5-4090-dormant_mighty_swan|qwen2.5-4090-dormant_mighty_swan|Haxxana/Qwen2.5-4090-dormant_mighty_swan|C|1.0,5.0|131072,4096|-|-|Haxxana/Qwen2.5-4090-dormant_mighty_swan model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_aquatic_monkey|-|ye20250417/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_aquatic_monkey|C|1.0,5.0|131072,4096|-|-|ye20250417/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_aquatic_monkey model|N
featherless/qwen-0.5b-instruct-summary-pt-rank8|qwen-0.5b-instruct-summary-pt-rank8|peulsilva/qwen-0.5b-instruct-summary-pt-rank8|C|1.0,5.0|131072,4096|-|-|peulsilva/qwen-0.5b-instruct-summary-pt-rank8 model|N
featherless/Qwen2.5-0.5B_MIFT-en_250|qwen2.5-0.5b_mift-en_250|Hachipo/Qwen2.5-0.5B_MIFT-en_250|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-0.5B_MIFT-en_250 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_stocky_lemur|-|dong3aid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_stocky_lemur|C|1.0,5.0|131072,4096|-|-|dong3aid/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-invisible_stocky_lemur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_extinct_ostrich|-|dropper7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_extinct_ostrich|C|1.0,5.0|131072,4096|-|-|dropper7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-deadly_extinct_ostrich model|N
featherless/01252303-boxed-replace-50000data_NuminaMath-CoT|-|azxky6645/01252303-boxed-replace-50000data_NuminaMath-CoT|C|1.0,5.0|131072,4096|-|-|azxky6645/01252303-boxed-replace-50000data_NuminaMath-CoT model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_sneaky_dingo|-|parham1996/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_sneaky_dingo|C|1.0,5.0|131072,4096|-|-|parham1996/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_sneaky_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_squinting_hawk|-|0xmaxi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_squinting_hawk|C|1.0,5.0|131072,4096|-|-|0xmaxi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_squinting_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_vocal_lobster|-|0xSonia/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_vocal_lobster|C|1.0,5.0|131072,4096|-|-|0xSonia/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_vocal_lobster model|N
featherless/test1|test1|teenysheep/test1|C|1.0,5.0|131072,4096|-|-|teenysheep/test1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_skilled_cassowary|-|GarrySE89/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_skilled_cassowary|C|1.0,5.0|131072,4096|-|-|GarrySE89/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-raging_skilled_cassowary model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_savage_pelican|-|kysoog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_savage_pelican|C|1.0,5.0|131072,4096|-|-|kysoog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-solitary_savage_pelican model|N
featherless/Qwen2-0.5B-DRDPO-imdb-tm-wp|qwen2-0.5b-drdpo-imdb-tm-wp|Kyleyee/Qwen2-0.5B-DRDPO-imdb-tm-wp|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-DRDPO-imdb-tm-wp model|N
featherless/qwen-2.5-0.5b-instruct-verl-math-sft|qwen-2.5-0.5b-instruct-verl-math-sft|fjxdaisy/qwen-2.5-0.5b-instruct-verl-math-sft|C|1.0,5.0|131072,4096|V|-|fjxdaisy/qwen-2.5-0.5b-instruct-verl-math-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_beaked_sandpiper|-|whoopsme/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_beaked_sandpiper|C|1.0,5.0|131072,4096|-|-|whoopsme/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hunting_beaked_sandpiper model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_miniature_cat|-|myresponce/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_miniature_cat|C|1.0,5.0|131072,4096|-|-|myresponce/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-ferocious_miniature_cat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_colorful_turtle|-|nnadozie/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_colorful_turtle|C|1.0,5.0|131072,4096|-|-|nnadozie/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mangy_colorful_turtle model|N
featherless/gensyn-checkpoints-savage_deft_wallaby|gensyn-checkpoints-savage_deft_wallaby|akasakaaaa/gensyn-checkpoints-savage_deft_wallaby|C|1.0,5.0|131072,4096|-|-|akasakaaaa/gensyn-checkpoints-savage_deft_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_peaceful_dog|-|itzankiiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_peaceful_dog|C|1.0,5.0|131072,4096|-|-|itzankiiii/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tawny_peaceful_dog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_loud_marmot|-|sehereroglu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_loud_marmot|C|1.0,5.0|131072,4096|-|-|sehereroglu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_loud_marmot model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite|-|ngunq7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite|C|1.0,5.0|131072,4096|-|-|ngunq7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_fluffy_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_hunting_snake|-|simonrog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_hunting_snake|C|1.0,5.0|131072,4096|-|-|simonrog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_hunting_snake model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_dense_panda|-|Deadluck7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_dense_panda|C|1.0,5.0|131072,4096|-|-|Deadluck7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sizable_dense_panda model|N
featherless/qwen2.5-0.5b-finetuned-moneyegg005|qwen2.5-0.5b-finetuned-moneyegg005|JimboDDjh/qwen2.5-0.5b-finetuned-moneyegg005|C|1.0,5.0|131072,4096|-|-|JimboDDjh/qwen2.5-0.5b-finetuned-moneyegg005 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_stinging_elephant|-|bot00123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_stinging_elephant|C|1.0,5.0|131072,4096|-|-|bot00123/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_stinging_elephant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|-|Sianying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose|C|1.0,5.0|131072,4096|-|-|Sianying/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-placid_stealthy_mongoose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_shy_chameleon|-|battlefield00765/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_shy_chameleon|C|1.0,5.0|131072,4096|-|-|battlefield00765/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_shy_chameleon model|N
featherless/Qwen2-0.5B-dpo_imdb_gpm_3e|qwen2-0.5b-dpo_imdb_gpm_3e|Kyleyee/Qwen2-0.5B-dpo_imdb_gpm_3e|C|1.0,5.0|131072,4096|-|-|Kyleyee/Qwen2-0.5B-dpo_imdb_gpm_3e model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_fleecy_cockroach|-|guvenba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_fleecy_cockroach|C|1.0,5.0|131072,4096|-|-|guvenba/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lightfooted_fleecy_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_twitchy_kingfisher|-|krisgghb-yoga/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_twitchy_kingfisher|C|1.0,5.0|131072,4096|-|-|krisgghb-yoga/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_twitchy_kingfisher model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_giant_elk|-|miumiudev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_giant_elk|C|1.0,5.0|131072,4096|-|-|miumiudev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-amphibious_giant_elk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_purring_pig|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_purring_pig|C|1.0,5.0|131072,4096|-|-|amir-bet3/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-colorful_purring_pig model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_pensive_sardine|-|vsaw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_pensive_sardine|C|1.0,5.0|131072,4096|-|-|vsaw/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-large_pensive_sardine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret|-|Moscowwww/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret|C|1.0,5.0|131072,4096|-|-|Moscowwww/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_pale_ferret model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_secretive_cobra|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_secretive_cobra|C|1.0,5.0|131072,4096|-|-|sdfsdsssFHarry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shy_secretive_cobra model|N
featherless/Qwen2.5-0.5B-Quantum-Computing-Instruct|qwen2.5-0.5b-quantum-computing-instruct|ahmeterdempmk/Qwen2.5-0.5B-Quantum-Computing-Instruct|C|1.0,5.0|131072,4096|-|-|ahmeterdempmk/Qwen2.5-0.5B-Quantum-Computing-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_armored_ladybug|-|novoamor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_armored_ladybug|C|1.0,5.0|131072,4096|-|-|novoamor/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gentle_armored_ladybug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_meek_mammoth|-|anan290819001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_meek_mammoth|C|1.0,5.0|131072,4096|-|-|anan290819001/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-mimic_meek_mammoth model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_lithe_hawk|-|0xxchrollo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_lithe_hawk|C|1.0,5.0|131072,4096|-|-|0xxchrollo/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_lithe_hawk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_docile_coral|-|miagarcia/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_docile_coral|C|1.0,5.0|131072,4096|-|-|miagarcia/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rangy_docile_coral model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_melodic_cod|-|Alphaaweb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_melodic_cod|C|1.0,5.0|131072,4096|-|-|Alphaaweb/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-twitchy_melodic_cod model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_fanged_coral|-|Meloi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_fanged_coral|C|1.0,5.0|131072,4096|-|-|Meloi/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_fanged_coral model|N
featherless/qwen-2.5-0.5B-sft-chatllm|qwen-2.5-0.5b-sft-chatllm|Hachipo/qwen-2.5-0.5B-sft-chatllm|C|1.0,5.0|131072,4096|-|-|Hachipo/qwen-2.5-0.5B-sft-chatllm model|N
featherless/Qwen2-0.5B-DPO|qwen2-0.5b-dpo|araziziml/Qwen2-0.5B-DPO|C|1.0,5.0|131072,4096|-|-|araziziml/Qwen2-0.5B-DPO model|N
featherless/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_4000|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_4000|C|1.0,5.0|131072,4096|-|-|Hachipo/Qwen2.5-Coder-0.5B-Instruct_PIFT-jaen_manywords_4000 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_short_barracuda|-|jzjzjxjjska/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_short_barracuda|C|1.0,5.0|131072,4096|-|-|jzjzjxjjska/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-omnivorous_short_barracuda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_thorny_giraffe|-|hieut3k34/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_thorny_giraffe|C|1.0,5.0|131072,4096|-|-|hieut3k34/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-grazing_thorny_giraffe model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_flexible_panda|-|ceydanurr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_flexible_panda|C|1.0,5.0|131072,4096|-|-|ceydanurr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-downy_flexible_panda model|N
featherless/Qwen2-0.5B-Instruct|qwen2-0.5b-instruct|dushuai112233/Qwen2-0.5B-Instruct|C|1.0,5.0|131072,4096|-|-|dushuai112233/Qwen2-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_keen_moose|-|eyepro1702/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_keen_moose|C|1.0,5.0|131072,4096|-|-|eyepro1702/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gregarious_keen_moose model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_lively_turkey|-|andr0m4da/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_lively_turkey|C|1.0,5.0|131072,4096|-|-|andr0m4da/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-strong_lively_turkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_sturdy_wombat|-|islamurat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_sturdy_wombat|C|1.0,5.0|131072,4096|-|-|islamurat/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sneaky_sturdy_wombat model|N
featherless/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr1e-4-1epoch|-|fjxdaisy/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr1e-4-1epoch|C|1.0,5.0|131072,4096|V|-|fjxdaisy/qwen-2.5-0.5b-instruct-verl-gsm8k-sft-lr1e-4-1epoch model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_thick_cockroach|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_thick_cockroach|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-furry_thick_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_climbing_badger|-|Mello28s/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_climbing_badger|C|1.0,5.0|131072,4096|-|-|Mello28s/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-moist_climbing_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_peckish_dingo|-|IBK993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_peckish_dingo|C|1.0,5.0|131072,4096|-|-|IBK993/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-iridescent_peckish_dingo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_lumbering_skunk|-|arang-a/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_lumbering_skunk|C|1.0,5.0|131072,4096|-|-|arang-a/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_lumbering_skunk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo|-|L0dev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo|C|1.0,5.0|131072,4096|-|-|L0dev/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-squeaky_trotting_komodo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_armored_piranha|-|wheredoyou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_armored_piranha|C|1.0,5.0|131072,4096|-|-|wheredoyou/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-restless_armored_piranha model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_dense_rhino|-|cryptocurry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_dense_rhino|C|1.0,5.0|131072,4096|-|-|cryptocurry/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-quiet_dense_rhino model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_soft_buffalo|-|2wola84/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_soft_buffalo|C|1.0,5.0|131072,4096|-|-|2wola84/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_soft_buffalo model|N
featherless/gensyn-checkpoints-marine_stalking_gecko|-|vicvreth/gensyn-checkpoints-marine_stalking_gecko|C|1.0,5.0|131072,4096|-|-|vicvreth/gensyn-checkpoints-marine_stalking_gecko model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_armored_chicken|-|RipRest/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_armored_chicken|C|1.0,5.0|131072,4096|-|-|RipRest/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fleecy_armored_chicken model|N
featherless/Qwen2-0.5B-agent-epochs-10|qwen2-0.5b-agent-epochs-10|valerielucro/Qwen2-0.5B-agent-epochs-10|C|1.0,5.0|131072,4096|-|-|valerielucro/Qwen2-0.5B-agent-epochs-10 model|N
featherless/81_Bondds_13_085|81_bondds_13_085|Bondds/81_Bondds_13_085|C|1.0,5.0|131072,4096|-|-|Bondds/81_Bondds_13_085 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_territorial_quail|-|shiera1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_territorial_quail|C|1.0,5.0|131072,4096|-|-|shiera1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_territorial_quail model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_elusive_raven|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_elusive_raven|C|1.0,5.0|131072,4096|-|-|yesbreaddog/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-robust_elusive_raven model|N
featherless/Qwen2.5-0.5b-GRPO-math|qwen2.5-0.5b-grpo-math|chinmaydk99/Qwen2.5-0.5b-GRPO-math|C|1.0,5.0|131072,4096|-|-|chinmaydk99/Qwen2.5-0.5b-GRPO-math model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_120|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_120|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_120 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_shrewd_badger|-|0xHiva/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_shrewd_badger|C|1.0,5.0|131072,4096|-|-|0xHiva/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_shrewd_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_gliding_armadillo|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_gliding_armadillo|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_gliding_armadillo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_shaggy_wombat|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_shaggy_wombat|C|1.0,5.0|131072,4096|-|-|alin13/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-yapping_shaggy_wombat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_whiskered_cougar|-|harun8826/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_whiskered_cougar|C|1.0,5.0|131072,4096|-|-|harun8826/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-short_whiskered_cougar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_slow_marmot|-|duyhla/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_slow_marmot|C|1.0,5.0|131072,4096|-|-|duyhla/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jagged_slow_marmot model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_90|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_90|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_90 model|N
featherless/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_320|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_320|C|1.0,5.0|131072,4096|-|-|anmolagarwal999/Qwen2_5-0_5B-Instructsft_savedmath_dataset_based_on_deepseek_distilled_traces_epoch_320 model|N
featherless/Qwen3-0.6B-Base|qwen3-0.6b-base|Qwen/Qwen3-0.6B-Base|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-0.6B-Base model|N
featherless/Qwen2.5-1.5B-Instruct|qwen2.5-1.5b-instruct|Gensyn/Qwen2.5-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|Gensyn/Qwen2.5-1.5B-Instruct model|N
featherless/Qwen2.5-1.5B-Instruct|qwen2.5-1.5b-instruct|Qwen/Qwen2.5-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-1.5B-Instruct model|N
featherless/Qwen2.5-1.5B|qwen2.5-1.5b|Qwen/Qwen2.5-1.5B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-1.5B model|N
featherless/Qwen2-1.5B-Instruct|qwen2-1.5b-instruct|Qwen/Qwen2-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-1.5B-Instruct model|N
featherless/Qwen2.5-Math-1.5B|qwen2.5-math-1.5b|Qwen/Qwen2.5-Math-1.5B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-1.5B model|N
featherless/Qwen2.5-Coder-1.5B-Instruct|qwen2.5-coder-1.5b-instruct|Qwen/Qwen2.5-Coder-1.5B-Instruct|C|1.0,5.0|131072,4096|-|53.6,,,,,,,,,|Qwen/Qwen2.5-Coder-1.5B-Instruct model|N
featherless/Qwen2.5-Math-1.5B-Instruct|qwen2.5-math-1.5b-instruct|Qwen/Qwen2.5-Math-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2.5-Math-1.5B-Instruct model|N
featherless/ReaderLM-v2|readerlm|jinaai/ReaderLM-v2|C|1.0,5.0|131072,4096|V|-|jinaai/ReaderLM-v2 model|N
featherless/Qwen2.5-1.5B-Instruct|qwen2.5-1.5b-instruct|unsloth/Qwen2.5-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2.5-1.5B-Instruct model|N
featherless/mxbai-rerank-large-v2|mxbai-rerank-large|mixedbread-ai/mxbai-rerank-large-v2|C|1.0,5.0|131072,4096|V|-|mixedbread-ai/mxbai-rerank-large-v2 model|N
featherless/general-verifier|general-verifier|TIGER-Lab/general-verifier|C|1.0,5.0|131072,4096|V|-|TIGER-Lab/general-verifier model|N
featherless/Qwen2.5-Math-1.5B-Instruct|qwen2.5-math-1.5b-instruct|unsloth/Qwen2.5-Math-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2.5-Math-1.5B-Instruct model|N
featherless/OpenMath-Nemotron-1.5B|openmath-nemotron-1.5b|nvidia/OpenMath-Nemotron-1.5B|C|1.0,5.0|131072,4096|-|-|nvidia/OpenMath-Nemotron-1.5B model|N
featherless/Qwen2-1.5B-Ita|qwen2-1.5b-ita|DeepMount00/Qwen2-1.5B-Ita|C|1.0,5.0|131072,4096|-|-|DeepMount00/Qwen2-1.5B-Ita model|N
featherless/Qwen2-1.5B-ITA-Instruct|qwen2-1.5b-ita-instruct|e-palmisano/Qwen2-1.5B-ITA-Instruct|C|1.0,5.0|131072,4096|-|-|e-palmisano/Qwen2-1.5B-ITA-Instruct model|N
featherless/TinySwallow-1.5B-Instruct|tinyswallow-1.5b-instruct|SakanaAI/TinySwallow-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|SakanaAI/TinySwallow-1.5B-Instruct model|N
featherless/Qwen2-1.5B-Instruct|qwen2-1.5b-instruct|unsloth/Qwen2-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2-1.5B-Instruct model|N
featherless/Qwen2.5-Math-1.5B|qwen2.5-math-1.5b|unsloth/Qwen2.5-Math-1.5B|C|1.0,5.0|131072,4096|-|-|unsloth/Qwen2.5-Math-1.5B model|N
featherless/Qwen2-1.5B-Instruct-FP8|qwen2-1.5b-instruct-fp8|RedHatAI/Qwen2-1.5B-Instruct-FP8|C|1.0,5.0|131072,4096|-|-|RedHatAI/Qwen2-1.5B-Instruct-FP8 model|N
featherless/Cotype-Nano|cotype-nano|MTSAIR/Cotype-Nano|C|1.0,5.0|131072,4096|-|-|MTSAIR/Cotype-Nano model|N
featherless/qwen-textgen-model9|qwen-textgen-model9|JeloH/qwen-textgen-model9|C|1.0,5.0|131072,4096|-|-|JeloH/qwen-textgen-model9 model|N
featherless/Qwen2-Math-1.5B-Instruct|qwen2-math-1.5b-instruct|Qwen/Qwen2-Math-1.5B-Instruct|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-1.5B-Instruct model|N
featherless/Qwen2-1.5B-Instruct-FP8-K-V|qwen2-1.5b-instruct-fp8-k-v|nm-testing/Qwen2-1.5B-Instruct-FP8-K-V|C|1.0,5.0|131072,4096|V|-|nm-testing/Qwen2-1.5B-Instruct-FP8-K-V model|N
featherless/Vi-Qwen2-1.5B-RAG|vi-qwen2-1.5b-rag|AITeamVN/Vi-Qwen2-1.5B-RAG|C|1.0,5.0|131072,4096|-|-|AITeamVN/Vi-Qwen2-1.5B-RAG model|N
featherless/reader-lm-1.5b|reader-lm-1.5b|jinaai/reader-lm-1.5b|C|1.0,5.0|131072,4096|-|-|jinaai/reader-lm-1.5b model|N
featherless/FastApply-1.5B-v1.0|fastapply-1.5b|Kortix/FastApply-1.5B-v1.0|C|1.0,5.0|131072,4096|V|-|Kortix/FastApply-1.5B-v1.0 model|N
featherless/Qwen2.5-1.5B-Instruct-w8a8-int-dynamic-weight|-|danieldk/Qwen2.5-1.5B-Instruct-w8a8-int-dynamic-weight|C|1.0,5.0|131072,4096|-|-|danieldk/Qwen2.5-1.5B-Instruct-w8a8-int-dynamic-weight model|N
featherless/Qwen2-Math-1.5B|qwen2-math-1.5b|Qwen/Qwen2-Math-1.5B|C|1.0,5.0|131072,4096|-|-|Qwen/Qwen2-Math-1.5B model|N
featherless/Qwen2.5-Coder-1.5B|qwen2.5-coder-1.5b|unsloth/Qwen2.5-Coder-1.5B|C|1.0,5.0|131072,4096|-|53.6,,,,,,,,,|unsloth/Qwen2.5-Coder-1.5B model|N
featherless/Qwen2-1.5B-Spanish-1.0|qwen2-1.5b-spanish-1.0|Kukedlc/Qwen2-1.5B-Spanish-1.0|C|1.0,5.0|131072,4096|-|-|Kukedlc/Qwen2-1.5B-Spanish-1.0 model|N
featherless/LUFFY-Qwen-Math-1.5B-Zero|luffy-qwen-math-1.5b-zero|Elliott/LUFFY-Qwen-Math-1.5B-Zero|C|1.0,5.0|131072,4096|-|-|Elliott/LUFFY-Qwen-Math-1.5B-Zero model|N
featherless/gg-armv8-O0|gg-armv8-o0|ahmedheakl/gg-armv8-O0|C|1.0,5.0|131072,4096|-|-|ahmedheakl/gg-armv8-O0 model|N
featherless/Qwen2.5-1.5B-SFT-v2|qwen2.5-1.5b-sft|dekangli/Qwen2.5-1.5B-SFT-v2|C|1.0,5.0|131072,4096|V|-|dekangli/Qwen2.5-1.5B-SFT-v2 model|N
featherless/lr1e-05-global_step_140|lr1e-05-global_step_140|GitBag/lr1e-05-global_step_140|C|1.0,5.0|131072,4096|-|-|GitBag/lr1e-05-global_step_140 model|N
featherless/qwen-2.5-sft-golden-hh|qwen-2.5-sft-golden-hh|ma921/qwen-2.5-sft-golden-hh|C|1.0,5.0|131072,4096|-|-|ma921/qwen-2.5-sft-golden-hh model|N
featherless/DeepSeek-R1-Qwen2.5-1.5b-SFT-R1-JSON-Unstructured-To-Structured|-|MasterControlAIML/DeepSeek-R1-Qwen2.5-1.5b-SFT-R1-JSON-Unstructured-To-Structured|C|1.0,5.0|131072,4096|-|-|MasterControlAIML/DeepSeek-R1-Qwen2.5-1.5b-SFT-R1-JSON-Unstructured-To-Structured model|N
featherless/sft-qwen-1.5bi-deg-5-path-5-nodes-300-qwen-14bi-final2-all|-|anirudhb11/sft-qwen-1.5bi-deg-5-path-5-nodes-300-qwen-14bi-final2-all|C|1.0,5.0|131072,4096|-|-|anirudhb11/sft-qwen-1.5bi-deg-5-path-5-nodes-300-qwen-14bi-final2-all model|N
featherless/Qwen-encoder-1.5B|qwen-encoder-1.5b|knowledgator/Qwen-encoder-1.5B|C|1.0,5.0|131072,4096|-|-|knowledgator/Qwen-encoder-1.5B model|N
featherless/Qwen2.5-1.5B-Instruct-abliterated|qwen2.5-1.5b-instruct-abliterated|huihui-ai/Qwen2.5-1.5B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-1.5B-Instruct-abliterated model|N
featherless/Qwen2.5-1.5B-Instruct-Viet-SFT|qwen2.5-1.5b-instruct-viet-sft|jaeyong2/Qwen2.5-1.5B-Instruct-Viet-SFT|C|1.0,5.0|131072,4096|V|-|jaeyong2/Qwen2.5-1.5B-Instruct-Viet-SFT model|N
featherless/Qwen2.5-1.5B-Instruct-SFT|qwen2.5-1.5b-instruct-sft|od2961/Qwen2.5-1.5B-Instruct-SFT|C|1.0,5.0|131072,4096|-|-|od2961/Qwen2.5-1.5B-Instruct-SFT model|N
featherless/Qwen2.5-1.5B-Instruct-SFT-OpenHermes-2.5-Standard-SFT|-|vectorzhou/Qwen2.5-1.5B-Instruct-SFT-OpenHermes-2.5-Standard-SFT|C|1.0,5.0|131072,4096|-|-|vectorzhou/Qwen2.5-1.5B-Instruct-SFT-OpenHermes-2.5-Standard-SFT model|N
featherless/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Qwen2-1.5B_epoch_25_global_step_100|-|masani/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Qwen2-1.5B_epoch_25_global_step_100|C|1.0,5.0|131072,4096|-|-|masani/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Qwen2-1.5B_epoch_25_global_step_100 model|N
featherless/Qwen2.5-1.5B-Spanish-1.0-DPO|qwen2.5-1.5b-spanish-1.0-dpo|Kukedlc/Qwen2.5-1.5B-Spanish-1.0-DPO|C|1.0,5.0|131072,4096|-|-|Kukedlc/Qwen2.5-1.5B-Spanish-1.0-DPO model|N
featherless/leniachat-qwen2-1.5B-v0|leniachat-qwen2-1.5b|LenguajeNaturalAI/leniachat-qwen2-1.5B-v0|C|1.0,5.0|131072,4096|V|-|LenguajeNaturalAI/leniachat-qwen2-1.5B-v0 model|N
featherless/Qwen1.5-1.8B-Chat|qwen1.5-1.8b-chat|Qwen/Qwen1.5-1.8B-Chat|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen1.5-1.8B-Chat model|N
featherless/Qwen1.5-1.8B|qwen1.5-1.8b|Qwen/Qwen1.5-1.8B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen1.5-1.8B model|N
featherless/Sailor-1.8B-Chat|sailor-1.8b-chat|sail/Sailor-1.8B-Chat|C|1.0,5.0|32768,4096|-|-|sail/Sailor-1.8B-Chat model|N
featherless/qwen1.5-emoji-finetuned|qwen1.5-emoji-finetuned|JenniferHJF/qwen1.5-emoji-finetuned|C|1.0,5.0|32768,4096|-|-|JenniferHJF/qwen1.5-emoji-finetuned model|N
featherless/Sailor-1.8B|sailor-1.8b|sail/Sailor-1.8B|C|1.0,5.0|32768,4096|-|-|sail/Sailor-1.8B model|N
featherless/Nusantara-1.8b-Indo-Chat|nusantara-1.8b-indo-chat|kalisai/Nusantara-1.8b-Indo-Chat|C|1.0,5.0|32768,4096|-|-|kalisai/Nusantara-1.8b-Indo-Chat model|N
featherless/educhat-sft-002-1.8b-qwen1.5|educhat-sft-002-1.8b-qwen1.5|ecnu-icalk/educhat-sft-002-1.8b-qwen1.5|C|1.0,5.0|32768,4096|-|-|ecnu-icalk/educhat-sft-002-1.8b-qwen1.5 model|N
featherless/tau-1.8B|tau-1.8b|M4-ai/tau-1.8B|C|1.0,5.0|32768,4096|-|-|M4-ai/tau-1.8B model|N
featherless/Sailor-1.8b-chat-sft-v1|sailor-1.8b-chat-sft|DuongTrongChi/Sailor-1.8b-chat-sft-v1|C|1.0,5.0|32768,4096|V|-|DuongTrongChi/Sailor-1.8b-chat-sft-v1 model|N
featherless/Qwen-Qwen1.5-1.8B-1718123170|qwen-qwen1.5-1.8b-1718123170|datek/Qwen-Qwen1.5-1.8B-1718123170|C|1.0,5.0|32768,4096|-|-|datek/Qwen-Qwen1.5-1.8B-1718123170 model|N
featherless/BioQwen-1.8B|bioqwen-1.8b|liyinghong/BioQwen-1.8B|C|1.0,5.0|32768,4096|-|-|liyinghong/BioQwen-1.8B model|N
featherless/ChickaQ-Large|chickaq-large|Chickaboo/ChickaQ-Large|C|1.0,5.0|32768,4096|-|-|Chickaboo/ChickaQ-Large model|N
featherless/Reyna-Mini-1.8B-v0.2-function-call-laser|-|jtatman/Reyna-Mini-1.8B-v0.2-function-call-laser|C|1.0,5.0|32768,4096|V|-|jtatman/Reyna-Mini-1.8B-v0.2-function-call-laser model|N
featherless/Qwen-Qwen1.5-1.8B-1717809121|qwen-qwen1.5-1.8b-1717809121|coconana/Qwen-Qwen1.5-1.8B-1717809121|C|1.0,5.0|32768,4096|-|-|coconana/Qwen-Qwen1.5-1.8B-1717809121 model|N
featherless/Reyna-Mini-1.8B-v0.2|reyna-mini-1.8b|aloobun/Reyna-Mini-1.8B-v0.2|C|1.0,5.0|32768,4096|V|-|aloobun/Reyna-Mini-1.8B-v0.2 model|N
featherless/Orca-2.0-Tau-1.8B|orca-2.0-tau-1.8b|M4-ai/Orca-2.0-Tau-1.8B|C|1.0,5.0|32768,4096|-|-|M4-ai/Orca-2.0-Tau-1.8B model|N
featherless/Qwen-Qwen1.5-1.8B-1718162486|qwen-qwen1.5-1.8b-1718162486|hdve/Qwen-Qwen1.5-1.8B-1718162486|C|1.0,5.0|32768,4096|-|-|hdve/Qwen-Qwen1.5-1.8B-1718162486 model|N
featherless/Qwen-Qwen1.5-1.8B-1717497140|qwen-qwen1.5-1.8b-1717497140|manbull/Qwen-Qwen1.5-1.8B-1717497140|C|1.0,5.0|32768,4096|-|-|manbull/Qwen-Qwen1.5-1.8B-1717497140 model|N
featherless/Reyna-Mini-1.8B-v0.1|reyna-mini-1.8b|aloobun/Reyna-Mini-1.8B-v0.1|C|1.0,5.0|32768,4096|V|-|aloobun/Reyna-Mini-1.8B-v0.1 model|N
featherless/Qwen-Qwen1.5-1.8B-1719209906|qwen-qwen1.5-1.8b-1719209906|chainup244/Qwen-Qwen1.5-1.8B-1719209906|C|1.0,5.0|32768,4096|-|-|chainup244/Qwen-Qwen1.5-1.8B-1719209906 model|N
featherless/Qwen-Qwen1.5-1.8B-1719286596|qwen-qwen1.5-1.8b-1719286596|Seanxh/Qwen-Qwen1.5-1.8B-1719286596|C|1.0,5.0|32768,4096|-|-|Seanxh/Qwen-Qwen1.5-1.8B-1719286596 model|N
featherless/Qwen-Qwen1.5-1.8B-1718018525|qwen-qwen1.5-1.8b-1718018525|zJuu/Qwen-Qwen1.5-1.8B-1718018525|C|1.0,5.0|32768,4096|-|-|zJuu/Qwen-Qwen1.5-1.8B-1718018525 model|N
featherless/Qwen-Qwen1.5-1.8B-1717758501|qwen-qwen1.5-1.8b-1717758501|Seanxh/Qwen-Qwen1.5-1.8B-1717758501|C|1.0,5.0|32768,4096|-|-|Seanxh/Qwen-Qwen1.5-1.8B-1717758501 model|N
featherless/Qwen-Qwen1.5-1.8B-1718022339|qwen-qwen1.5-1.8b-1718022339|silent666/Qwen-Qwen1.5-1.8B-1718022339|C|1.0,5.0|32768,4096|-|-|silent666/Qwen-Qwen1.5-1.8B-1718022339 model|N
featherless/Qwen-Qwen1.5-1.8B-1717958536|qwen-qwen1.5-1.8b-1717958536|silent666/Qwen-Qwen1.5-1.8B-1717958536|C|1.0,5.0|32768,4096|-|-|silent666/Qwen-Qwen1.5-1.8B-1717958536 model|N
featherless/Sunsimiao-Qwen1.5-1.8B-lora-0.25|sunsimiao-qwen1.5-1.8b-lora-0.25|Tsumugii/Sunsimiao-Qwen1.5-1.8B-lora-0.25|C|1.0,5.0|32768,4096|-|-|Tsumugii/Sunsimiao-Qwen1.5-1.8B-lora-0.25 model|N
featherless/WordProblem|wordproblem|pepoo20/WordProblem|C|1.0,5.0|32768,4096|-|-|pepoo20/WordProblem model|N
featherless/Qwen-Qwen1.5-1.8B-1716568382|qwen-qwen1.5-1.8b-1716568382|crazydevlegend/Qwen-Qwen1.5-1.8B-1716568382|C|1.0,5.0|32768,4096|-|-|crazydevlegend/Qwen-Qwen1.5-1.8B-1716568382 model|N
featherless/qwen_1.8b_sft_full_3|qwen_1.8b_sft_full_3|mp1704/qwen_1.8b_sft_full_3|C|1.0,5.0|32768,4096|-|-|mp1704/qwen_1.8b_sft_full_3 model|N
featherless/neural-chat-mini-v2.2-1.8B|neural-chat-mini-v2.2-1.8b|M4-ai/neural-chat-mini-v2.2-1.8B|C|1.0,5.0|32768,4096|V|-|M4-ai/neural-chat-mini-v2.2-1.8B model|N
featherless/NeuralReyna-Mini-1.8B-v0.2|neuralreyna-mini-1.8b|M4-ai/NeuralReyna-Mini-1.8B-v0.2|C|1.0,5.0|32768,4096|V|-|M4-ai/NeuralReyna-Mini-1.8B-v0.2 model|N
featherless/Qwen-Qwen1.5-1.8B-1717573782|qwen-qwen1.5-1.8b-1717573782|coderbojack/Qwen-Qwen1.5-1.8B-1717573782|C|1.0,5.0|32768,4096|-|-|coderbojack/Qwen-Qwen1.5-1.8B-1717573782 model|N
featherless/Qwen-Qwen1.5-1.8B-1717510013|qwen-qwen1.5-1.8b-1717510013|coderbojack/Qwen-Qwen1.5-1.8B-1717510013|C|1.0,5.0|32768,4096|-|-|coderbojack/Qwen-Qwen1.5-1.8B-1717510013 model|N
featherless/Qwen-Qwen1.5-1.8B-1717852331|qwen-qwen1.5-1.8b-1717852331|datek/Qwen-Qwen1.5-1.8B-1717852331|C|1.0,5.0|32768,4096|-|-|datek/Qwen-Qwen1.5-1.8B-1717852331 model|N
featherless/pai-qwen1_5-1b8-doc2qa|pai-qwen1_5-1b8-doc2qa|alibaba-pai/pai-qwen1_5-1b8-doc2qa|C|1.0,5.0|32768,4096|-|-|alibaba-pai/pai-qwen1_5-1b8-doc2qa model|N
featherless/Qwen-Qwen1.5-1.8B-1717276349|qwen-qwen1.5-1.8b-1717276349|hdve/Qwen-Qwen1.5-1.8B-1717276349|C|1.0,5.0|32768,4096|-|-|hdve/Qwen-Qwen1.5-1.8B-1717276349 model|N
featherless/Qwen-Qwen1.5-1.8B-1717638358|qwen-qwen1.5-1.8b-1717638358|coconana/Qwen-Qwen1.5-1.8B-1717638358|C|1.0,5.0|32768,4096|-|-|coconana/Qwen-Qwen1.5-1.8B-1717638358 model|N
featherless/Qwen-Qwen1.5-1.8B-1717418994|qwen-qwen1.5-1.8b-1717418994|datek/Qwen-Qwen1.5-1.8B-1717418994|C|1.0,5.0|32768,4096|-|-|datek/Qwen-Qwen1.5-1.8B-1717418994 model|N
featherless/Qwen-Qwen1.5-1.8B-1716821606|qwen-qwen1.5-1.8b-1716821606|datek/Qwen-Qwen1.5-1.8B-1716821606|C|1.0,5.0|32768,4096|-|-|datek/Qwen-Qwen1.5-1.8B-1716821606 model|N
featherless/Qwen-Qwen1.5-1.8B-1718006865|qwen-qwen1.5-1.8b-1718006865|chainup244/Qwen-Qwen1.5-1.8B-1718006865|C|1.0,5.0|32768,4096|-|-|chainup244/Qwen-Qwen1.5-1.8B-1718006865 model|N
featherless/Qwen-Qwen1.5-1.8B-1717583530|qwen-qwen1.5-1.8b-1717583530|chainup244/Qwen-Qwen1.5-1.8B-1717583530|C|1.0,5.0|32768,4096|-|-|chainup244/Qwen-Qwen1.5-1.8B-1717583530 model|N
featherless/qwen1.5-1.8B-seed-sft|qwen1.5-1.8b-seed-sft|WDong/qwen1.5-1.8B-seed-sft|C|1.0,5.0|32768,4096|-|-|WDong/qwen1.5-1.8B-seed-sft model|N
featherless/Qwen-Qwen1.5-1.8B-1717768779|qwen-qwen1.5-1.8b-1717768779|panxinyang/Qwen-Qwen1.5-1.8B-1717768779|C|1.0,5.0|32768,4096|-|-|panxinyang/Qwen-Qwen1.5-1.8B-1717768779 model|N
featherless/Qwen-Qwen1.5-1.8B-1718071906|qwen-qwen1.5-1.8b-1718071906|chainup244/Qwen-Qwen1.5-1.8B-1718071906|C|1.0,5.0|32768,4096|-|-|chainup244/Qwen-Qwen1.5-1.8B-1718071906 model|N
featherless/Qwen-Qwen1.5-1.8B-1718162409|qwen-qwen1.5-1.8b-1718162409|richardkelly/Qwen-Qwen1.5-1.8B-1718162409|C|1.0,5.0|32768,4096|-|-|richardkelly/Qwen-Qwen1.5-1.8B-1718162409 model|N
featherless/Qwen-Qwen1.5-1.8B-1717129922|qwen-qwen1.5-1.8b-1717129922|coconana/Qwen-Qwen1.5-1.8B-1717129922|C|1.0,5.0|32768,4096|-|-|coconana/Qwen-Qwen1.5-1.8B-1717129922 model|N
featherless/Qwen-Qwen1.5-1.8B-1717697976|qwen-qwen1.5-1.8b-1717697976|charles22/Qwen-Qwen1.5-1.8B-1717697976|C|1.0,5.0|32768,4096|-|-|charles22/Qwen-Qwen1.5-1.8B-1717697976 model|N
featherless/Qwen-Qwen1.5-1.8B-1716777053|qwen-qwen1.5-1.8b-1716777053|0xfaskety/Qwen-Qwen1.5-1.8B-1716777053|C|1.0,5.0|32768,4096|-|-|0xfaskety/Qwen-Qwen1.5-1.8B-1716777053 model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|meta-llama/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|meta-llama/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B|llama-3.2-1b|meta-llama/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|meta-llama/Llama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|unsloth/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B|llama-3.2-1b|unsloth/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|unsloth/Llama-3.2-1B model|N
featherless/Llama-3.2-1B|llama-3.2-1b|NousResearch/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|NousResearch/Llama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|alpindale/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|alpindale/Llama-3.2-1B-Instruct model|N
featherless/LlaMaestra-3.2-1B-Translation|llamaestra-3.2-1b-translation|puettmann/LlaMaestra-3.2-1B-Translation|C|1.0,5.0|32768,4096|-|-|puettmann/LlaMaestra-3.2-1B-Translation model|N
featherless/Vikhr-Llama-3.2-1B-Instruct|vikhr-llama-3.2-1b-instruct|Vikhrmodels/Vikhr-Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|Vikhrmodels/Vikhr-Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B-Tele|llama-3.2-1b-tele|AliMaatouk/Llama-3.2-1B-Tele|C|1.0,5.0|32768,4096|-|-|AliMaatouk/Llama-3.2-1B-Tele model|N
featherless/Llama-3.2-1B-Instruct-cold-start-ft2|llama-3.2-1b-instruct-cold-start-ft2|joey00072/Llama-3.2-1B-Instruct-cold-start-ft2|C|1.0,5.0|32768,4096|-|-|joey00072/Llama-3.2-1B-Instruct-cold-start-ft2 model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-nobnb|unsloth-llama-3.2-1b-tldr-unsloth-nobnb|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb model|N
featherless/Llama-3.2-3B-Instruct-LORA-GSM8K-Merged|llama-3.2-3b-instruct-lora-gsm8k-merged|DebasishDhal99/Llama-3.2-3B-Instruct-LORA-GSM8K-Merged|C|1.0,5.0|32768,4096|-|-|DebasishDhal99/Llama-3.2-3B-Instruct-LORA-GSM8K-Merged model|N
featherless/llama3.2-typhoon2-1b-instruct|llama3.2-typhoon2-1b-instruct|scb10x/llama3.2-typhoon2-1b-instruct|C|1.0,5.0|32768,4096|-|-|scb10x/llama3.2-typhoon2-1b-instruct model|N
featherless/Llama-3.2-1B|llama-3.2-1b|mbakar3/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|mbakar3/Llama-3.2-1B model|N
featherless/meta-llama-Llama-3.2-1B-Instruct-FP16|meta-llama-llama-3.2-1b-instruct-fp16|context-labs/meta-llama-Llama-3.2-1B-Instruct-FP16|C|1.0,5.0|32768,4096|-|-|context-labs/meta-llama-Llama-3.2-1B-Instruct-FP16 model|N
featherless/llama-3.2-1b-instruct-fine-tuned|llama-3.2-1b-instruct-fine-tuned|ai-nexuz/llama-3.2-1b-instruct-fine-tuned|C|1.0,5.0|32768,4096|-|-|ai-nexuz/llama-3.2-1b-instruct-fine-tuned model|N
featherless/1b-proposer-4-29|1b-proposer-4-29|kothasuhas/1b-proposer-4-29|C|1.0,5.0|32768,4096|-|-|kothasuhas/1b-proposer-4-29 model|N
featherless/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Llama-3.2-1B_epoch_3_global_step_12|-|masani/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Llama-3.2-1B_epoch_3_global_step_12|C|1.0,5.0|32768,4096|-|-|masani/SFT_cumulative_parity_length_16_bitwidth_1_1024_512_Llama-3.2-1B_epoch_3_global_step_12 model|N
featherless/Llama3.2-1B-Instruct|llama3.2-1b-instruct|ModelCloud/Llama3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|ModelCloud/Llama3.2-1B-Instruct model|N
featherless/1b-proposer-ctx16-5-8|1b-proposer-ctx16-5-8|kothasuhas/1b-proposer-ctx16-5-8|C|1.0,5.0|32768,4096|-|-|kothasuhas/1b-proposer-ctx16-5-8 model|N
featherless/Llama-3.2-1B-Tele-it|llama-3.2-1b-tele-it|AliMaatouk/Llama-3.2-1B-Tele-it|C|1.0,5.0|32768,4096|-|-|AliMaatouk/Llama-3.2-1B-Tele-it model|N
featherless/Dhenu2-In-Llama3.2-1B-Instruct|dhenu2-in-llama3.2-1b-instruct|KissanAI/Dhenu2-In-Llama3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|KissanAI/Dhenu2-In-Llama3.2-1B-Instruct model|N
featherless/llama-3b-gold-1B-4-epochs-4-23|llama-3b-gold-1b-4-epochs-4-23|kothasuhas/llama-3b-gold-1B-4-epochs-4-23|C|1.0,5.0|32768,4096|-|-|kothasuhas/llama-3b-gold-1B-4-epochs-4-23 model|N
featherless/Llama-3.2-1B-Instruct-medmcqa|llama-3.2-1b-instruct-medmcqa|ank028/Llama-3.2-1B-Instruct-medmcqa|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-medmcqa model|N
featherless/Llama-3.2-1B_gsm8k_full-finetuning|llama-3.2-1b_gsm8k_full-finetuning|axel-datos/Llama-3.2-1B_gsm8k_full-finetuning|C|1.0,5.0|32768,4096|-|-|axel-datos/Llama-3.2-1B_gsm8k_full-finetuning model|N
featherless/PANGEA_dsl_model|pangea_dsl_model|Anonymous0123456/PANGEA_dsl_model|C|1.0,5.0|32768,4096|-|-|Anonymous0123456/PANGEA_dsl_model model|N
featherless/llama-3.2-1b-Insomnia-ChatBot-SFT-CoT-merged|-|Mostafa8Mehrabi/llama-3.2-1b-Insomnia-ChatBot-SFT-CoT-merged|C|1.0,5.0|32768,4096|-|-|Mostafa8Mehrabi/llama-3.2-1b-Insomnia-ChatBot-SFT-CoT-merged model|N
featherless/gold-ctx16-1B-5-8|gold-ctx16-1b-5-8|kothasuhas/gold-ctx16-1B-5-8|C|1.0,5.0|32768,4096|-|-|kothasuhas/gold-ctx16-1B-5-8 model|N
featherless/Llama-3.2-1B_3x1_mix_position_known_unknown_v2|-|kenken6696/Llama-3.2-1B_3x1_mix_position_known_unknown_v2|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3x1_mix_position_known_unknown_v2 model|N
featherless/llama3.2_1b_2025_uncensored_v2|llama3.2_1b_2025_uncensored_v2|carsenk/llama3.2_1b_2025_uncensored_v2|C|1.0,5.0|32768,4096|-|-|carsenk/llama3.2_1b_2025_uncensored_v2 model|N
featherless/Orpo-Llama-3.2-1B-15k|orpo-llama-3.2-1b-15k|AdamLucek/Orpo-Llama-3.2-1B-15k|C|1.0,5.0|32768,4096|-|-|AdamLucek/Orpo-Llama-3.2-1B-15k model|N
featherless/mini_llama_crafting_sft_success_new_mem|mini_llama_crafting_sft_success_new_mem|izzcw/mini_llama_crafting_sft_success_new_mem|C|1.0,5.0|32768,4096|-|-|izzcw/mini_llama_crafting_sft_success_new_mem model|N
featherless/SFT_modgsm8k_Llama-3.2-1B_epoch_1_global_step_25|-|masani/SFT_modgsm8k_Llama-3.2-1B_epoch_1_global_step_25|C|1.0,5.0|32768,4096|-|-|masani/SFT_modgsm8k_Llama-3.2-1B_epoch_1_global_step_25 model|N
featherless/SFT_gsm8k-t2_Llama-3.2-1B_epoch_1_global_step_15|-|masani/SFT_gsm8k-t2_Llama-3.2-1B_epoch_1_global_step_15|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k-t2_Llama-3.2-1B_epoch_1_global_step_15 model|N
featherless/llama3.2_1b_med_QA_2|llama3.2_1b_med_qa_2|Johhny1201/llama3.2_1b_med_QA_2|C|1.0,5.0|32768,4096|-|-|Johhny1201/llama3.2_1b_med_QA_2 model|N
featherless/Llama-3.2-1B-DPO|llama-3.2-1b-dpo|Eshita-ds/Llama-3.2-1B-DPO|C|1.0,5.0|32768,4096|-|-|Eshita-ds/Llama-3.2-1B-DPO model|N
featherless/llama3.2-1B-Instruct-Egitim|llama3.2-1b-instruct-egitim|Cagatayd/llama3.2-1B-Instruct-Egitim|C|1.0,5.0|32768,4096|-|-|Cagatayd/llama3.2-1B-Instruct-Egitim model|N
featherless/llama-3.2-1b-fine-tuned-model-mental-health|-|BunnyBosz/llama-3.2-1b-fine-tuned-model-mental-health|C|1.0,5.0|32768,4096|-|-|BunnyBosz/llama-3.2-1b-fine-tuned-model-mental-health model|N
featherless/Vikhr-Llama-3.2-1B-Instruct-abliterated|vikhr-llama-3.2-1b-instruct-abliterated|Vikhrmodels/Vikhr-Llama-3.2-1B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|Vikhrmodels/Vikhr-Llama-3.2-1B-Instruct-abliterated model|N
featherless/Llama-3.2-1B-distill|llama-3.2-1b-distill|leo35100523/Llama-3.2-1B-distill|C|1.0,5.0|32768,4096|-|-|leo35100523/Llama-3.2-1B-distill model|N
featherless/llama3.2-1b-distilled|llama3.2-1b-distilled|btliu/llama3.2-1b-distilled|C|1.0,5.0|32768,4096|-|-|btliu/llama3.2-1b-distilled model|N
featherless/LLAMA3-3B-Medical-COT|llama3-3b-medical-cot|alpha-ai/LLAMA3-3B-Medical-COT|C|1.0,5.0|32768,4096|-|-|alpha-ai/LLAMA3-3B-Medical-COT model|N
featherless/StockLLM|stockllm|TheFinAI/StockLLM|C|1.0,5.0|32768,4096|-|-|TheFinAI/StockLLM model|N
featherless/llama-3.2-1B_hh_sft|llama-3.2-1b_hh_sft|jasonrb/llama-3.2-1B_hh_sft|C|1.0,5.0|32768,4096|-|-|jasonrb/llama-3.2-1B_hh_sft model|N
featherless/finetuned-warren-buffett-letter-model-llama-3.2-1B-Instruct-2024|-|eagle0504/finetuned-warren-buffett-letter-model-llama-3.2-1B-Instruct-2024|C|1.0,5.0|32768,4096|-|-|eagle0504/finetuned-warren-buffett-letter-model-llama-3.2-1B-Instruct-2024 model|N
featherless/SFT_gsm8k_train_size_4096_Llama-3.2-1B_epoch_1_global_step_16|-|masani/SFT_gsm8k_train_size_4096_Llama-3.2-1B_epoch_1_global_step_16|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_train_size_4096_Llama-3.2-1B_epoch_1_global_step_16 model|N
featherless/SFT_gsm8k_Llama-3.2-1B_epoch_1_global_step_29|-|masani/SFT_gsm8k_Llama-3.2-1B_epoch_1_global_step_29|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_Llama-3.2-1B_epoch_1_global_step_29 model|N
featherless/SFT_gsm8k_train_size_256_Llama-3.2-1B_epoch_4_global_step_4|-|masani/SFT_gsm8k_train_size_256_Llama-3.2-1B_epoch_4_global_step_4|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_train_size_256_Llama-3.2-1B_epoch_4_global_step_4 model|N
featherless/SFT_gsm8k_train_size_512_Llama-3.2-1B_epoch_3_global_step_6|-|masani/SFT_gsm8k_train_size_512_Llama-3.2-1B_epoch_3_global_step_6|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_train_size_512_Llama-3.2-1B_epoch_3_global_step_6 model|N
featherless/SFT_gsm8k_train_size_2048_Llama-3.2-1B_epoch_1_global_step_8|-|masani/SFT_gsm8k_train_size_2048_Llama-3.2-1B_epoch_1_global_step_8|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_train_size_2048_Llama-3.2-1B_epoch_1_global_step_8 model|N
featherless/SFT_gsm8k_train_size_1024_Llama-3.2-1B_epoch_2_global_step_8|-|masani/SFT_gsm8k_train_size_1024_Llama-3.2-1B_epoch_2_global_step_8|C|1.0,5.0|32768,4096|-|-|masani/SFT_gsm8k_train_size_1024_Llama-3.2-1B_epoch_2_global_step_8 model|N
featherless/lawma-1b|lawma-1b|ricdomolm/lawma-1b|C|1.0,5.0|32768,4096|-|-|ricdomolm/lawma-1b model|N
featherless/SFT_math_Llama-3.2-1B_epoch_1_global_step_29|-|masani/SFT_math_Llama-3.2-1B_epoch_1_global_step_29|C|1.0,5.0|32768,4096|-|-|masani/SFT_math_Llama-3.2-1B_epoch_1_global_step_29 model|N
featherless/lamma-3.2-1B|lamma-3.2-1b|roy113/lamma-3.2-1B|C|1.0,5.0|32768,4096|-|-|roy113/lamma-3.2-1B model|N
featherless/Llama-3.2-1B-v1|llama-3.2-1b|wasmdashai/Llama-3.2-1B-v1|C|1.0,5.0|32768,4096|V|-|wasmdashai/Llama-3.2-1B-v1 model|N
featherless/clean-6|clean-6|remy9926/clean-6|C|1.0,5.0|32768,4096|-|-|remy9926/clean-6 model|N
featherless/titulm-llama-3.2-1b-v1.1|titulm-llama-3.2-1b|hishab/titulm-llama-3.2-1b-v1.1|C|1.0,5.0|32768,4096|V|-|hishab/titulm-llama-3.2-1b-v1.1 model|N
featherless/Llama-3.2-1B|llama-3.2-1b|alpindale/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|alpindale/Llama-3.2-1B model|N
featherless/Llama-3.2-1B-ru-v2|llama-3.2-1b-ru|radce/Llama-3.2-1B-ru-v2|C|1.0,5.0|32768,4096|V|-|radce/Llama-3.2-1B-ru-v2 model|N
featherless/Llama-3.2-1B-en-vi|llama-3.2-1b-en-vi|duyhv1411/Llama-3.2-1B-en-vi|C|1.0,5.0|32768,4096|V|-|duyhv1411/Llama-3.2-1B-en-vi model|N
featherless/dm-llama3.2-1BI-OMI-Al4-OWT-TV|dm-llama3.2-1bi-omi-al4-owt-tv|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-TV|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-TV model|N
featherless/Llama-3.2-1B|llama-3.2-1b|Poonawala/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|Poonawala/Llama-3.2-1B model|N
featherless/Reasoning-Llama-1b-v0.1|reasoning-llama-1b|KingNish/Reasoning-Llama-1b-v0.1|C|1.0,5.0|32768,4096|VK|-|KingNish/Reasoning-Llama-1b-v0.1 model|N
featherless/RiC-mol-llama-1b|ric-mol-llama-1b|ddidacus/RiC-mol-llama-1b|C|1.0,5.0|32768,4096|-|-|ddidacus/RiC-mol-llama-1b model|N
featherless/Llama-3.2-1B-Instruct_MED_NLI|llama-3.2-1b-instruct_med_nli|presencesw/Llama-3.2-1B-Instruct_MED_NLI|C|1.0,5.0|32768,4096|-|-|presencesw/Llama-3.2-1B-Instruct_MED_NLI model|N
featherless/SEX_ROLEPLAY-3.2-1B-mlx-fp16|sex_roleplay-3.2-1b-mlx-fp16|Novaciano/SEX_ROLEPLAY-3.2-1B-mlx-fp16|C|1.0,5.0|32768,4096|-|-|Novaciano/SEX_ROLEPLAY-3.2-1B-mlx-fp16 model|N
featherless/FuseChat-3.2-1B-Creative-RP|fusechat-3.2-1b-creative-rp|bunnycore/FuseChat-3.2-1B-Creative-RP|C|1.0,5.0|32768,4096|-|-|bunnycore/FuseChat-3.2-1B-Creative-RP model|N
featherless/MicroThinker-1B-Preview|microthinker-1b-preview|huihui-ai/MicroThinker-1B-Preview|C|1.0,5.0|32768,4096|K|-|huihui-ai/MicroThinker-1B-Preview model|N
featherless/fine-tuned-model-brenin|fine-tuned-model-brenin|rohangbs/fine-tuned-model-brenin|C|1.0,5.0|32768,4096|-|-|rohangbs/fine-tuned-model-brenin model|N
featherless/huivam_finnegan_llama3.2-1b|huivam_finnegan_llama3.2-1b|genaforvena/huivam_finnegan_llama3.2-1b|C|1.0,5.0|32768,4096|-|-|genaforvena/huivam_finnegan_llama3.2-1b model|N
featherless/Bellatrix-Tiny-1B-v3|bellatrix-tiny-1b|prithivMLmods/Bellatrix-Tiny-1B-v3|C|1.0,5.0|32768,4096|V|-|prithivMLmods/Bellatrix-Tiny-1B-v3 model|N
featherless/vLLM-fast-apply-16bit-v0.12-Llama3.2-1B|vllm-fast-apply-16bit-v0.12-llama3.2-1b|dat-lequoc/vLLM-fast-apply-16bit-v0.12-Llama3.2-1B|C|1.0,5.0|32768,4096|V|-|dat-lequoc/vLLM-fast-apply-16bit-v0.12-Llama3.2-1B model|N
featherless/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV|dm-llama3.2-1bi-luciefr-al4-owt-tv|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV model|N
featherless/Orpo-Llama-3.2-1B-40k|orpo-llama-3.2-1b-40k|AdamLucek/Orpo-Llama-3.2-1B-40k|C|1.0,5.0|32768,4096|-|-|AdamLucek/Orpo-Llama-3.2-1B-40k model|N
featherless/Llama-3.2-1B-RLHF-2k-vi-alpaca|llama-3.2-1b-rlhf-2k-vi-alpaca|thuanan/Llama-3.2-1B-RLHF-2k-vi-alpaca|C|1.0,5.0|32768,4096|V|-|thuanan/Llama-3.2-1B-RLHF-2k-vi-alpaca model|N
featherless/Llama-3.2-1B_AllDataSources_0.0002_cosine_512_flattening|-|Mattia2700/Llama-3.2-1B_AllDataSources_0.0002_cosine_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_0.0002_cosine_512_flattening model|N
featherless/Llama-3.2-1B-DeepSeek67B-Distilled|llama-3.2-1b-deepseek67b-distilled|enesarda22/Llama-3.2-1B-DeepSeek67B-Distilled|C|1.0,5.0|32768,4096|-|-|enesarda22/Llama-3.2-1B-DeepSeek67B-Distilled model|N
featherless/LLAMUsic2-1b|llamusic2-1b|marcoonorato91/LLAMUsic2-1b|C|1.0,5.0|32768,4096|-|-|marcoonorato91/LLAMUsic2-1b model|N
featherless/Ko-Llama-3.2-1B-instruct|ko-llama-3.2-1b-instruct|buttercoconut/Ko-Llama-3.2-1B-instruct|C|1.0,5.0|32768,4096|-|-|buttercoconut/Ko-Llama-3.2-1B-instruct model|N
featherless/my_xdd|my_xdd|lilmeaty/my_xdd|C|1.0,5.0|32768,4096|-|-|lilmeaty/my_xdd model|N
featherless/Explore_Llama-3.2-1B-Inst|explore_llama-3.2-1b-inst|DeepAuto-AI/Explore_Llama-3.2-1B-Inst|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/Explore_Llama-3.2-1B-Inst model|N
featherless/nb-llama-3.2-1B|nb-llama-3.2-1b|NbAiLab/nb-llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|NbAiLab/nb-llama-3.2-1B model|N
featherless/dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV|dm-llama3.2-1bi-wohealth-al4-nh-wo-tv|Grogros/dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV model|N
featherless/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2 model|N
featherless/RS-mol-llama-1b|rs-mol-llama-1b|ddidacus/RS-mol-llama-1b|C|1.0,5.0|32768,4096|-|-|ddidacus/RS-mol-llama-1b model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat model|N
featherless/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-slerp|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-slerp|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-slerp model|N
featherless/llama-3-8b-chat-doctor|llama-3-8b-chat-doctor|SohelSan/llama-3-8b-chat-doctor|C|1.0,5.0|32768,4096|-|-|SohelSan/llama-3-8b-chat-doctor model|N
featherless/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-linear|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-linear|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-linear model|N
featherless/Llama-3.2-1B-cputrained-robincnp|llama-3.2-1b-cputrained-robincnp|rubix9/Llama-3.2-1B-cputrained-robincnp|C|1.0,5.0|32768,4096|-|-|rubix9/Llama-3.2-1B-cputrained-robincnp model|N
featherless/TwinLlama-3.2-1B|twinllama-3.2-1b|jessemeng/TwinLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|jessemeng/TwinLlama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|empathielabs/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|empathielabs/Llama-3.2-1B-Instruct model|N
featherless/llama_3.2_1B_EcoFem_v2|llama_3.2_1b_ecofem_v2|arputtick/llama_3.2_1B_EcoFem_v2|C|1.0,5.0|32768,4096|-|-|arputtick/llama_3.2_1B_EcoFem_v2 model|N
featherless/llama-3.2-1B-finetuned-finetome-100k-fp16|-|vietanhdev/llama-3.2-1B-finetuned-finetome-100k-fp16|C|1.0,5.0|32768,4096|-|-|vietanhdev/llama-3.2-1B-finetuned-finetome-100k-fp16 model|N
featherless/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-slerp|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-slerp|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-slerp model|N
featherless/MegaMath-Llama-3.2-1B|megamath-llama-3.2-1b|LLM360/MegaMath-Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|LLM360/MegaMath-Llama-3.2-1B model|N
featherless/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-3WT-DistillationWM-Al4-WT3-d4-v1|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-3WT-DistillationWM-Al4-WT3-d4-v1|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-3WT-DistillationWM-Al4-WT3-d4-v1 model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-linear|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-linear|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-linear model|N
featherless/pubmed_clinical|pubmed_clinical|Mingjuu/pubmed_clinical|C|1.0,5.0|32768,4096|-|-|Mingjuu/pubmed_clinical model|N
featherless/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-LucieFr|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-LucieFr|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-LucieFr model|N
featherless/Intellecta|intellecta|kssrikar4/Intellecta|C|1.0,5.0|32768,4096|-|-|kssrikar4/Intellecta model|N
featherless/llama-3.2-1b-lewd-mental-occult|llama-3.2-1b-lewd-mental-occult|jtatman/llama-3.2-1b-lewd-mental-occult|C|1.0,5.0|32768,4096|-|-|jtatman/llama-3.2-1b-lewd-mental-occult model|N
featherless/llama3.2_1b_2025_uncensored|llama3.2_1b_2025_uncensored|carsenk/llama3.2_1b_2025_uncensored|C|1.0,5.0|32768,4096|-|-|carsenk/llama3.2_1b_2025_uncensored model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-slerp|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-slerp|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-slerp model|N
featherless/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v2 model|N
featherless/iSFT_1b_v1_mbpp_5e-7_DBS1_ep2_iter1|isft_1b_v1_mbpp_5e-7_dbs1_ep2_iter1|rl-llm-coders/iSFT_1b_v1_mbpp_5e-7_DBS1_ep2_iter1|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/iSFT_1b_v1_mbpp_5e-7_DBS1_ep2_iter1 model|N
featherless/msa_finetuned_llama3.1_1b_pii_2|msa_finetuned_llama3.1_1b_pii_2|milanakdj/msa_finetuned_llama3.1_1b_pii_2|C|1.0,5.0|32768,4096|-|-|milanakdj/msa_finetuned_llama3.1_1b_pii_2 model|N
featherless/Llama-3.2-1B-Instruct-v2-FC|llama-3.2-1b-instruct-v2-fc|argilla-warehouse/Llama-3.2-1B-Instruct-v2-FC|C|1.0,5.0|32768,4096|V|-|argilla-warehouse/Llama-3.2-1B-Instruct-v2-FC model|N
featherless/Explore_Llama-3.2-1B-Inst_v1.1|explore_llama-3.2-1b-inst_v1.1|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v1.1|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v1.1 model|N
featherless/llama-3.2-3b-it-Ecommerce-ChatBot|llama-3.2-3b-it-ecommerce-chatbot|abhi696/llama-3.2-3b-it-Ecommerce-ChatBot|C|1.0,5.0|32768,4096|-|-|abhi696/llama-3.2-3b-it-Ecommerce-ChatBot model|N
featherless/1b_chess|1b_chess|GIBAA/1b_chess|C|1.0,5.0|32768,4096|-|-|GIBAA/1b_chess model|N
featherless/merged-model|merged-model|ravi-ednova/merged-model|C|1.0,5.0|32768,4096|-|-|ravi-ednova/merged-model model|N
featherless/fine-tuned-merged-model-v2|fine-tuned-merged-model|WeiWen21/fine-tuned-merged-model-v2|C|1.0,5.0|32768,4096|V|-|WeiWen21/fine-tuned-merged-model-v2 model|N
featherless/Llama-3.2-1B-Instruct_Open-Critic-GPT_cluster9|-|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_cluster9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_cluster9 model|N
featherless/llama3_2_1B_FT|llama3_2_1b_ft|iut62elec/llama3_2_1B_FT|C|1.0,5.0|32768,4096|-|-|iut62elec/llama3_2_1B_FT model|N
featherless/llama-3.2-1b-text-classification|llama-3.2-1b-text-classification|Jahid05/llama-3.2-1b-text-classification|C|1.0,5.0|32768,4096|-|-|Jahid05/llama-3.2-1b-text-classification model|N
featherless/my_awesome_eli5_clm-model|my_awesome_eli5_clm-model|qsnell/my_awesome_eli5_clm-model|C|1.0,5.0|32768,4096|-|-|qsnell/my_awesome_eli5_clm-model model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_constant_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_constant_512_flattening model|N
featherless/dmWM-llama-3.2-1B-Instruct-KGW-d4-allData|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGW-d4-allData|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGW-d4-allData model|N
featherless/xdddd|xdddd|lilmeaty/xdddd|C|1.0,5.0|32768,4096|-|-|lilmeaty/xdddd model|N
featherless/fine-tuned-merged-model-v4|fine-tuned-merged-model|WeiWen21/fine-tuned-merged-model-v4|C|1.0,5.0|32768,4096|V|-|WeiWen21/fine-tuned-merged-model-v4 model|N
featherless/Llama-3.2-1B-pre-trained|llama-3.2-1b-pre-trained|qzhang-2024/Llama-3.2-1B-pre-trained|C|1.0,5.0|32768,4096|-|-|qzhang-2024/Llama-3.2-1B-pre-trained model|N
featherless/RLHF-PPO-PPOModel-LLama3-1B-v1.0|rlhf-ppo-ppomodel-llama3-1b|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.0|C|1.0,5.0|32768,4096|V|-|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.0 model|N
featherless/llama3_2_1B_FT_new|llama3_2_1b_ft_new|iut62elec/llama3_2_1B_FT_new|C|1.0,5.0|32768,4096|-|-|iut62elec/llama3_2_1B_FT_new model|N
featherless/fine-tuned-full-model|fine-tuned-full-model|WeiWen21/fine-tuned-full-model|C|1.0,5.0|32768,4096|-|-|WeiWen21/fine-tuned-full-model model|N
featherless/llm_discriminator|llm_discriminator|Lancelot53/llm_discriminator|C|1.0,5.0|32768,4096|-|-|Lancelot53/llm_discriminator model|N
featherless/fine-tuned-merged-model-v6|fine-tuned-merged-model|WeiWen21/fine-tuned-merged-model-v6|C|1.0,5.0|32768,4096|V|-|WeiWen21/fine-tuned-merged-model-v6 model|N
featherless/Llama-3.2-1B-Instruct-abliterated2|llama-3.2-1b-instruct-abliterated2|mylesgoose/Llama-3.2-1B-Instruct-abliterated2|C|1.0,5.0|32768,4096|-|-|mylesgoose/Llama-3.2-1B-Instruct-abliterated2 model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_1|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_1|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_1 model|N
featherless/wk-llama3.2-1b|wk-llama3.2-1b|hensam92/wk-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|hensam92/wk-llama3.2-1b model|N
featherless/llama-3.2-1B-orpo|llama-3.2-1b-orpo|d4niel92/llama-3.2-1B-orpo|C|1.0,5.0|32768,4096|-|-|d4niel92/llama-3.2-1B-orpo model|N
featherless/Llama-3.2-1B-GRPO-gsm8k|llama-3.2-1b-grpo-gsm8k|accuracy-maker/Llama-3.2-1B-GRPO-gsm8k|C|1.0,5.0|32768,4096|-|-|accuracy-maker/Llama-3.2-1B-GRPO-gsm8k model|N
featherless/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h3d4|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h3d4|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h3d4 model|N
featherless/Llama-3.2-1B_AllDataSourcesClinical_0.0002_cosine_1024_paper|-|Pretrain-FBK-NLP/Llama-3.2-1B_AllDataSourcesClinical_0.0002_cosine_1024_paper|C|1.0,5.0|32768,4096|-|-|Pretrain-FBK-NLP/Llama-3.2-1B_AllDataSourcesClinical_0.0002_cosine_1024_paper model|N
featherless/flat-score-llama3.2-1b|flat-score-llama3.2-1b|SidhaarthMurali/flat-score-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|SidhaarthMurali/flat-score-llama3.2-1b model|N
featherless/EH-sentiment-finetuned-Llama-3.2-1B-Instruct|-|erichennings/EH-sentiment-finetuned-Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|erichennings/EH-sentiment-finetuned-Llama-3.2-1B-Instruct model|N
featherless/ingredients_to_recipe_llama-3.2-model|ingredients_to_recipe_llama-3.2-model|Braywayc/ingredients_to_recipe_llama-3.2-model|C|1.0,5.0|32768,4096|-|-|Braywayc/ingredients_to_recipe_llama-3.2-model model|N
featherless/beeyeah-reg-0.1-0.000001-0.05|beeyeah-reg-0.1-0.000001-0.05|Victoriayu/beeyeah-reg-0.1-0.000001-0.05|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-reg-0.1-0.000001-0.05 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWT-1WT-DistillationWM-Al4-WT-v4|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWT-1WT-DistillationWM-Al4-WT-v4|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWT-1WT-DistillationWM-Al4-WT-v4 model|N
featherless/prompts-testing|prompts-testing|Sbazar/prompts-testing|C|1.0,5.0|32768,4096|-|-|Sbazar/prompts-testing model|N
featherless/Llama-3.2-1B-Instruct-Unablated|llama-3.2-1b-instruct-unablated|NathanRoll/Llama-3.2-1B-Instruct-Unablated|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-Unablated model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|PathFinderKR/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|PathFinderKR/Llama-3.2-1B-Instruct model|N
featherless/Llama3.2-1B-Instruct-KAI|llama3.2-1b-instruct-kai|kiki-ailab/Llama3.2-1B-Instruct-KAI|C|1.0,5.0|32768,4096|-|-|kiki-ailab/Llama3.2-1B-Instruct-KAI model|N
featherless/Llama-3.2-1B-Instruct-0q-shuffle|llama-3.2-1b-instruct-0q-shuffle|NathanRoll/Llama-3.2-1B-Instruct-0q-shuffle|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-0q-shuffle model|N
featherless/Llama-3.2-1B-Instruct-0q-shuffle-x|llama-3.2-1b-instruct-0q-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-0q-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-0q-shuffle-x model|N
featherless/llama3.2-1b-mumathonly16k|llama3.2-1b-mumathonly16k|DopeorNope/llama3.2-1b-mumathonly16k|C|1.0,5.0|32768,4096|-|-|DopeorNope/llama3.2-1b-mumathonly16k model|N
featherless/Llama-3.2-1B-Instruct-1k|llama-3.2-1b-instruct-1k|jhn9803/Llama-3.2-1B-Instruct-1k|C|1.0,5.0|32768,4096|-|-|jhn9803/Llama-3.2-1B-Instruct-1k model|N
featherless/Llama-3.2-Rabbit-Ko-1B-Instruct|llama-3.2-rabbit-ko-1b-instruct|CarrotAI/Llama-3.2-Rabbit-Ko-1B-Instruct|C|1.0,5.0|32768,4096|-|-|CarrotAI/Llama-3.2-Rabbit-Ko-1B-Instruct model|N
featherless/miner_id_1_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801843|-|besimray/miner_id_1_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801843|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_1_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801843 model|N
featherless/minion-llama-3.2-1B-instruct|minion-llama-3.2-1b-instruct|minions-stanford/minion-llama-3.2-1B-instruct|C|1.0,5.0|32768,4096|-|-|minions-stanford/minion-llama-3.2-1B-instruct model|N
featherless/llama3.2-1B-physics-finetuned|llama3.2-1b-physics-finetuned|benhaotang/llama3.2-1B-physics-finetuned|C|1.0,5.0|32768,4096|-|-|benhaotang/llama3.2-1B-physics-finetuned model|N
featherless/Goppa-LogiLlama|goppa-logillama|goppa-ai/Goppa-LogiLlama|C|1.0,5.0|32768,4096|-|-|goppa-ai/Goppa-LogiLlama model|N
featherless/OneLLM-Doey-V1-Llama-3.2-1B-it|onellm-doey-v1-llama-3.2-1b-it|DoeyLLM/OneLLM-Doey-V1-Llama-3.2-1B-it|C|1.0,5.0|32768,4096|V|-|DoeyLLM/OneLLM-Doey-V1-Llama-3.2-1B-it model|N
featherless/OrcaAgent-llama3.2-1b|orcaagent-llama3.2-1b|Isotonic/OrcaAgent-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|Isotonic/OrcaAgent-llama3.2-1b model|N
featherless/ndhananj-llama-3.2.Instruct|ndhananj-llama-3.2.instruct|ndhananj/ndhananj-llama-3.2.Instruct|C|1.0,5.0|32768,4096|-|-|ndhananj/ndhananj-llama-3.2.Instruct model|N
featherless/llama3.2-1B-Function-calling|llama3.2-1b-function-calling|Kanonenbombe/llama3.2-1B-Function-calling|C|1.0,5.0|32768,4096|-|-|Kanonenbombe/llama3.2-1B-Function-calling model|N
featherless/Llama-3.2-1B-Instruct_ft|llama-3.2-1b-instruct_ft|jkhouja/Llama-3.2-1B-Instruct_ft|C|1.0,5.0|32768,4096|-|-|jkhouja/Llama-3.2-1B-Instruct_ft model|N
featherless/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaRefuseSmooth-4k|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaRefuseSmooth-4k|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaRefuseSmooth-4k model|N
featherless/query_templatizer|query_templatizer|fineinstructions/query_templatizer|C|1.0,5.0|32768,4096|-|-|fineinstructions/query_templatizer model|N
featherless/feedback_model_e15|feedback_model_e15|Heejindo/feedback_model_e15|C|1.0,5.0|32768,4096|-|-|Heejindo/feedback_model_e15 model|N
featherless/Llama-3.2-1B-Instruct-APIGen-FC-v0.1|llama-3.2-1b-instruct-apigen-fc|argilla/Llama-3.2-1B-Instruct-APIGen-FC-v0.1|C|1.0,5.0|32768,4096|V|-|argilla/Llama-3.2-1B-Instruct-APIGen-FC-v0.1 model|N
featherless/model_output_luh2|model_output_luh2|Heejindo/model_output_luh2|C|1.0,5.0|32768,4096|-|-|Heejindo/model_output_luh2 model|N
featherless/Llama-3.2-1B_AllDataSources_0.0002_constant_512_flattening|-|Mattia2700/Llama-3.2-1B_AllDataSources_0.0002_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_0.0002_constant_512_flattening model|N
featherless/Llama-3.2-1B-GSM8K|llama-3.2-1b-gsm8k|AquaLabs/Llama-3.2-1B-GSM8K|C|1.0,5.0|32768,4096|-|-|AquaLabs/Llama-3.2-1B-GSM8K model|N
featherless/ErselFit_Finetuned_Llama_1B|erselfit_finetuned_llama_1b|Ersel1/ErselFit_Finetuned_Llama_1B|C|1.0,5.0|32768,4096|-|-|Ersel1/ErselFit_Finetuned_Llama_1B model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|restful3/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|restful3/llama-3.2-1B-test model|N
featherless/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-OpenMathInstruct|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-OpenMathInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-OpenMathInstruct model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaRefuseSmooth|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaRefuseSmooth|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaRefuseSmooth model|N
featherless/Vllmxd|vllmxd|lilmeaty/Vllmxd|C|1.0,5.0|32768,4096|-|-|lilmeaty/Vllmxd model|N
featherless/Llama-Deepsync-1B|llama-deepsync-1b|prithivMLmods/Llama-Deepsync-1B|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Llama-Deepsync-1B model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|JoPmt/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|JoPmt/Llama-3.2-1B-Instruct model|N
featherless/choqok-1B-0.0-alpha-1|choqok-1b-0.0-alpha-1|JabirTech/choqok-1B-0.0-alpha-1|C|1.0,5.0|32768,4096|-|-|JabirTech/choqok-1B-0.0-alpha-1 model|N
featherless/deploy-test|deploy-test|Alpaca618/deploy-test|C|1.0,5.0|32768,4096|-|-|Alpaca618/deploy-test model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|luezzka/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|luezzka/Llama-3.2-1B-Instruct model|N
featherless/gs-llama3-1b-llama-maskver|gs-llama3-1b-llama-maskver|DopeorNope/gs-llama3-1b-llama-maskver|C|1.0,5.0|32768,4096|-|-|DopeorNope/gs-llama3-1b-llama-maskver model|N
featherless/Llama-ICD-coder-1B-merged|llama-icd-coder-1b-merged|FrancescoBuda/Llama-ICD-coder-1B-merged|C|1.0,5.0|32768,4096|-|-|FrancescoBuda/Llama-ICD-coder-1B-merged model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-ties|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-ties|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa-MGSM8K-sft1-ties model|N
featherless/llama2-1.2B-with3.2config-scratch|llama2-1.2b-with3.2config-scratch|Onlydrinkwater/llama2-1.2B-with3.2config-scratch|C|1.0,5.0|32768,4096|-|-|Onlydrinkwater/llama2-1.2B-with3.2config-scratch model|N
featherless/Llama-3.2-1B-chat-doctor|llama-3.2-1b-chat-doctor|khengkok/Llama-3.2-1B-chat-doctor|C|1.0,5.0|32768,4096|-|-|khengkok/Llama-3.2-1B-chat-doctor model|N
featherless/Llama-3.2-1B_3x1_mix_position_known_unknown|-|kenken6696/Llama-3.2-1B_3x1_mix_position_known_unknown|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3x1_mix_position_known_unknown model|N
featherless/gs-llama3-1b-maskver1|gs-llama3-1b-maskver1|DopeorNope/gs-llama3-1b-maskver1|C|1.0,5.0|32768,4096|-|-|DopeorNope/gs-llama3-1b-maskver1 model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512_flattening model|N
featherless/OneLLM-Doey-ChatQA-V1-Llama-3.2-1B|onellm-doey-chatqa-v1-llama-3.2-1b|DoeyLLM/OneLLM-Doey-ChatQA-V1-Llama-3.2-1B|C|1.0,5.0|32768,4096|V|-|DoeyLLM/OneLLM-Doey-ChatQA-V1-Llama-3.2-1B model|N
featherless/full-train-1b|full-train-1b|anthonymeo/full-train-1b|C|1.0,5.0|32768,4096|-|-|anthonymeo/full-train-1b model|N
featherless/llama-3.2-1b-translator|llama-3.2-1b-translator|Korla/llama-3.2-1b-translator|C|1.0,5.0|32768,4096|-|-|Korla/llama-3.2-1b-translator model|N
featherless/test-llama|test-llama|besimray/test-llama|C|1.0,5.0|32768,4096|-|-|besimray/test-llama model|N
featherless/llama3.2-1B-SFT-medmcqa-triples-cot|llama3.2-1b-sft-medmcqa-triples-cot|disi-unibo-nlp/llama3.2-1B-SFT-medmcqa-triples-cot|C|1.0,5.0|32768,4096|-|-|disi-unibo-nlp/llama3.2-1B-SFT-medmcqa-triples-cot model|N
featherless/Llama-3.2-1B-Instruct-zh|llama-3.2-1b-instruct-zh|autoprogrammer/Llama-3.2-1B-Instruct-zh|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh model|N
featherless/merged-llama-1.5b|merged-llama-1.5b|automatedstockminingorg/merged-llama-1.5b|C|1.0,5.0|32768,4096|-|-|automatedstockminingorg/merged-llama-1.5b model|N
featherless/gs-llama3-1b-4o-maskver|gs-llama3-1b-4o-maskver|DopeorNope/gs-llama3-1b-4o-maskver|C|1.0,5.0|32768,4096|-|-|DopeorNope/gs-llama3-1b-4o-maskver model|N
featherless/llama3.2_1b_chat_brainstorm-v3.2.1|llama3.2_1b_chat_brainstorm-v3.2.1|DevQuasar/llama3.2_1b_chat_brainstorm-v3.2.1|C|1.0,5.0|32768,4096|V|-|DevQuasar/llama3.2_1b_chat_brainstorm-v3.2.1 model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512_flattening model|N
featherless/Llama-3.2-1B-Instruct-1o-shuffle-x|llama-3.2-1b-instruct-1o-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-1o-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-1o-shuffle-x model|N
featherless/mergekit-passthrough-owrmdht|mergekit-passthrough-owrmdht|Hjgugugjhuhjggg/mergekit-passthrough-owrmdht|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-passthrough-owrmdht model|N
featherless/llama3.2-1b-finetuned-ja|llama3.2-1b-finetuned-ja|FUJITSUAikouka/llama3.2-1b-finetuned-ja|C|1.0,5.0|32768,4096|-|-|FUJITSUAikouka/llama3.2-1b-finetuned-ja model|N
featherless/SarcasMLL-1B|sarcasmll-1b|AlexandrosChariton/SarcasMLL-1B|C|1.0,5.0|32768,4096|-|-|AlexandrosChariton/SarcasMLL-1B model|N
featherless/personachat-llama_3_1B-sent_t5_large-attacker|-|oliverneut/personachat-llama_3_1B-sent_t5_large-attacker|C|1.0,5.0|32768,4096|-|-|oliverneut/personachat-llama_3_1B-sent_t5_large-attacker model|N
featherless/llama_fine-tuned|llama_fine-tuned|MikkoTurunen/llama_fine-tuned|C|1.0,5.0|32768,4096|-|-|MikkoTurunen/llama_fine-tuned model|N
featherless/rshacter-llama-3.2-1B-instruct|rshacter-llama-3.2-1b-instruct|rshacter/rshacter-llama-3.2-1B-instruct|C|1.0,5.0|32768,4096|-|-|rshacter/rshacter-llama-3.2-1B-instruct model|N
featherless/finetunning-week2|finetunning-week2|illeto/finetunning-week2|C|1.0,5.0|32768,4096|-|-|illeto/finetunning-week2 model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512_flattening model|N
featherless/beeyeah-dpo-0.1-0.000005|beeyeah-dpo-0.1-0.000005|Victoriayu/beeyeah-dpo-0.1-0.000005|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-dpo-0.1-0.000005 model|N
featherless/Llama-3.2-1B-Open-R1-Distill|llama-3.2-1b-open-r1-distill|ctoole/Llama-3.2-1B-Open-R1-Distill|C|1.0,5.0|32768,4096|-|-|ctoole/Llama-3.2-1B-Open-R1-Distill model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512_flattening model|N
featherless/llama3.2-1B-instruct-fp32-2.5e4|llama3.2-1b-instruct-fp32-2.5e4|Menlo/llama3.2-1B-instruct-fp32-2.5e4|C|1.0,5.0|32768,4096|-|-|Menlo/llama3.2-1B-instruct-fp32-2.5e4 model|N
featherless/mergekit-ties-dhpqgnv|mergekit-ties-dhpqgnv|Hjgugugjhuhjggg/mergekit-ties-dhpqgnv|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-dhpqgnv model|N
featherless/BASE_PEFT_MODEL|base_peft_model|akash-107/BASE_PEFT_MODEL|C|1.0,5.0|32768,4096|-|-|akash-107/BASE_PEFT_MODEL model|N
featherless/Llama-3.2-1B-Instruct-1q-shuffle-x|llama-3.2-1b-instruct-1q-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-1q-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-1q-shuffle-x model|N
featherless/Llama-3.2-1B-Instruct-0v-shuffle-x|llama-3.2-1b-instruct-0v-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-0v-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-0v-shuffle-x model|N
featherless/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-default|-|Evangelinejy/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-default|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-default model|N
featherless/Llama-3.2-1B-Instruct-16bit-CodeArchitect|-|gokul-pv/Llama-3.2-1B-Instruct-16bit-CodeArchitect|C|1.0,5.0|32768,4096|-|-|gokul-pv/Llama-3.2-1B-Instruct-16bit-CodeArchitect model|N
featherless/llama3.2-1b-instruct-fft-transduction-engineer_lr1e-5_epoch4|-|barc0/llama3.2-1b-instruct-fft-transduction-engineer_lr1e-5_epoch4|C|1.0,5.0|32768,4096|-|-|barc0/llama3.2-1b-instruct-fft-transduction-engineer_lr1e-5_epoch4 model|N
featherless/cs2200-llama-3.2-1B-instruct-no-custom-trainer|-|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-no-custom-trainer|C|1.0,5.0|32768,4096|-|-|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-no-custom-trainer model|N
featherless/Llama-3.2-1B-Instruct-cp-finetuned|llama-3.2-1b-instruct-cp-finetuned|blueintell/Llama-3.2-1B-Instruct-cp-finetuned|C|1.0,5.0|32768,4096|-|-|blueintell/Llama-3.2-1B-Instruct-cp-finetuned model|N
featherless/llama3.2-1b-mumath-maskver|llama3.2-1b-mumath-maskver|DopeorNope/llama3.2-1b-mumath-maskver|C|1.0,5.0|32768,4096|-|-|DopeorNope/llama3.2-1b-mumath-maskver model|N
featherless/llama32-1b-restorative|llama32-1b-restorative|jeremierostan/llama32-1b-restorative|C|1.0,5.0|32768,4096|-|-|jeremierostan/llama32-1b-restorative model|N
featherless/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-OpenMathInstruct|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-OpenMathInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-OpenMathInstruct model|N
featherless/deploy-test-2|deploy-test-2|Alpaca618/deploy-test-2|C|1.0,5.0|32768,4096|-|-|Alpaca618/deploy-test-2 model|N
featherless/Llama-3.2-1B_fix_tail|llama-3.2-1b_fix_tail|kenken6696/Llama-3.2-1B_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_fix_tail model|N
featherless/llama-3.2-1b-sorucevap|llama-3.2-1b-sorucevap|BlackFear/llama-3.2-1b-sorucevap|C|1.0,5.0|32768,4096|-|-|BlackFear/llama-3.2-1b-sorucevap model|N
featherless/personachat-llama_3_1B-sent_roberta-attacker|-|oliverneut/personachat-llama_3_1B-sent_roberta-attacker|C|1.0,5.0|32768,4096|-|-|oliverneut/personachat-llama_3_1B-sent_roberta-attacker model|N
featherless/llama-3.2-1b-chat-sql3-merged|llama-3.2-1b-chat-sql3-merged|huyhoangt2201/llama-3.2-1b-chat-sql3-merged|C|1.0,5.0|32768,4096|-|-|huyhoangt2201/llama-3.2-1b-chat-sql3-merged model|N
featherless/Llama-3.2-1B_DuQuant|llama-3.2-1b_duquant|kaizen9/Llama-3.2-1B_DuQuant|C|1.0,5.0|32768,4096|-|-|kaizen9/Llama-3.2-1B_DuQuant model|N
featherless/Llama-3.2-1B-Instruct-Turkish|llama-3.2-1b-instruct-turkish|FYaren/Llama-3.2-1B-Instruct-Turkish|C|1.0,5.0|32768,4096|-|-|FYaren/Llama-3.2-1B-Instruct-Turkish model|N
featherless/Llama3.2_1b-Instruct_Function-v0.1|llama3.2_1b-instruct_function|Montecarlo2024/Llama3.2_1b-Instruct_Function-v0.1|C|1.0,5.0|32768,4096|V|-|Montecarlo2024/Llama3.2_1b-Instruct_Function-v0.1 model|N
featherless/r2ai|r2ai|radareorg/r2ai|C|1.0,5.0|32768,4096|-|-|radareorg/r2ai model|N
featherless/mergekit-passthrough-tqpjand|mergekit-passthrough-tqpjand|Hjgugugjhuhjggg/mergekit-passthrough-tqpjand|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-passthrough-tqpjand model|N
featherless/Llama-ICD-coder-1B-merged-2ep|llama-icd-coder-1b-merged-2ep|FrancescoBuda/Llama-ICD-coder-1B-merged-2ep|C|1.0,5.0|32768,4096|-|-|FrancescoBuda/Llama-ICD-coder-1B-merged-2ep model|N
featherless/llama3.2_1b_finetuned_SQL_multitableJidouka|-|huyhoangt2201/llama3.2_1b_finetuned_SQL_multitableJidouka|C|1.0,5.0|32768,4096|-|-|huyhoangt2201/llama3.2_1b_finetuned_SQL_multitableJidouka model|N
featherless/miner_id_2_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802124|-|besimray/miner_id_2_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802124|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_2_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802124 model|N
featherless/Llama-3.2-1B-Instruct-0k-shuffle-x|llama-3.2-1b-instruct-0k-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-0k-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-0k-shuffle-x model|N
featherless/rationale_model_e10|rationale_model_e10|Heejindo/rationale_model_e10|C|1.0,5.0|32768,4096|-|-|Heejindo/rationale_model_e10 model|N
featherless/Llama-3.2-1B-Instruct-0o-shuffle-x|llama-3.2-1b-instruct-0o-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-0o-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-0o-shuffle-x model|N
featherless/customer-success-assistant|customer-success-assistant|antoinekrajnc/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|antoinekrajnc/customer-success-assistant model|N
featherless/Llama-3.2-1B-Instruct-1v-shuffle-x|llama-3.2-1b-instruct-1v-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-1v-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-1v-shuffle-x model|N
featherless/Llama-3.2-1B-text2SQL-schemaLinking|llama-3.2-1b-text2sql-schemalinking|lleticiasilvaa/Llama-3.2-1B-text2SQL-schemaLinking|C|1.0,5.0|32768,4096|-|-|lleticiasilvaa/Llama-3.2-1B-text2SQL-schemaLinking model|N
featherless/mergekit-ties-xzdpqzs|mergekit-ties-xzdpqzs|Hjgugugjhuhjggg/mergekit-ties-xzdpqzs|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-xzdpqzs model|N
featherless/noisy-lora|noisy-lora|remy9926/noisy-lora|C|1.0,5.0|32768,4096|-|-|remy9926/noisy-lora model|N
featherless/CulturaX-zh-unsupervised-20241111-224318|-|autoprogrammer/CulturaX-zh-unsupervised-20241111-224318|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-20241111-224318 model|N
featherless/Llama-3.2-1B-Instruct-de|llama-3.2-1b-instruct-de|autoprogrammer/Llama-3.2-1B-Instruct-de|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-de model|N
featherless/RLHF-PPO-PPOModel-LLama3-1B-v1.1|rlhf-ppo-ppomodel-llama3-1b|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.1|C|1.0,5.0|32768,4096|V|-|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.1 model|N
featherless/Llama-3.2-1B-Alpaca|llama-3.2-1b-alpaca|spicychickennoodles/Llama-3.2-1B-Alpaca|C|1.0,5.0|32768,4096|-|-|spicychickennoodles/Llama-3.2-1B-Alpaca model|N
featherless/agamache-llama-3.2|agamache-llama-3.2|aycankatitas/agamache-llama-3.2|C|1.0,5.0|32768,4096|-|-|aycankatitas/agamache-llama-3.2 model|N
featherless/Llama3.2-1B-summary-length-exp2|llama3.2-1b-summary-length-exp2|amang1802/Llama3.2-1B-summary-length-exp2|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp2 model|N
featherless/rationale_model_e15|rationale_model_e15|Heejindo/rationale_model_e15|C|1.0,5.0|32768,4096|-|-|Heejindo/rationale_model_e15 model|N
featherless/llama-pubmed-example|llama-pubmed-example|niznik-dev/llama-pubmed-example|C|1.0,5.0|32768,4096|-|-|niznik-dev/llama-pubmed-example model|N
featherless/Llama-3.2-1B-unsloth-bnb-4bit-dpo|llama-3.2-1b-unsloth-bnb-4bit-dpo|DohyunAn/Llama-3.2-1B-unsloth-bnb-4bit-dpo|C|1.0,5.0|32768,4096|-|-|DohyunAn/Llama-3.2-1B-unsloth-bnb-4bit-dpo model|N
featherless/Llama-3.2-1B-Instruct-SFT-D1_chosen-then-D2_chosen-HuggingFaceH4-ultrafeedback_binarized-Xlarge|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D1_chosen-then-D2_chosen-HuggingFaceH4-ultrafeedback_binarized-Xlarge|C|1.0,5.0|32768,4096|-|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D1_chosen-then-D2_chosen-HuggingFaceH4-ultrafeedback_binarized-Xlarge model|N
featherless/Llama-3.2-1B-Instruct_Open-Critic-GPT_random|-|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_random|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_random model|N
featherless/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-alpaca|-|Grogros/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-alpaca|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-alpaca model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_0.0002_constant_512_flattening|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_constant_512_flattening model|N
featherless/RLHF-PPO-PPOModel-LLama3-1B-v1.4|rlhf-ppo-ppomodel-llama3-1b|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.4|C|1.0,5.0|32768,4096|V|-|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.4 model|N
featherless/Ricky-Llama-3.2|ricky-llama-3.2|MCES10-Software/Ricky-Llama-3.2|C|1.0,5.0|32768,4096|-|-|MCES10-Software/Ricky-Llama-3.2 model|N
featherless/FineContextualizeLlama-3.2-1B|finecontextualizellama-3.2-1b|anthonymg/FineContextualizeLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|anthonymg/FineContextualizeLlama-3.2-1B model|N
featherless/finetune-llama-3.2-1b-mbpp|finetune-llama-3.2-1b-mbpp|ALIN-LLM/finetune-llama-3.2-1b-mbpp|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/finetune-llama-3.2-1b-mbpp model|N
featherless/Llama-3.1-1B-Instruct-Emotion-Classification|-|Balaaditya/Llama-3.1-1B-Instruct-Emotion-Classification|C|1.0,5.0|32768,4096|-|-|Balaaditya/Llama-3.1-1B-Instruct-Emotion-Classification model|N
featherless/Triangulum-1B|triangulum-1b|prithivMLmods/Triangulum-1B|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Triangulum-1B model|N
featherless/Llama-3.2-1B-Instruct-1k-shuffle-x|llama-3.2-1b-instruct-1k-shuffle-x|NathanRoll/Llama-3.2-1B-Instruct-1k-shuffle-x|C|1.0,5.0|32768,4096|-|-|NathanRoll/Llama-3.2-1B-Instruct-1k-shuffle-x model|N
featherless/TwinLlama-3.1-8B|twinllama-3.1-8b|jessemeng/TwinLlama-3.1-8B|C|1.0,5.0|32768,4096|-|-|jessemeng/TwinLlama-3.1-8B model|N
featherless/llama-3.2-1B-spinquant-hf|llama-3.2-1b-spinquant-hf|Hjgugugjhuhjggg/llama-3.2-1B-spinquant-hf|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/llama-3.2-1B-spinquant-hf model|N
featherless/CulturaX-zh-unsupervised-2000|culturax-zh-unsupervised-2000|autoprogrammer/CulturaX-zh-unsupervised-2000|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-2000 model|N
featherless/lamma_operons|lamma_operons|bif02/lamma_operons|C|1.0,5.0|32768,4096|-|-|bif02/lamma_operons model|N
featherless/Llama-3.2-1b-finetuned-for-json-function-calling-new|-|abdulmannan-01/Llama-3.2-1b-finetuned-for-json-function-calling-new|C|1.0,5.0|32768,4096|-|-|abdulmannan-01/Llama-3.2-1b-finetuned-for-json-function-calling-new model|N
featherless/Llama-3.2-1B-ultrachat200k|llama-3.2-1b-ultrachat200k|AIR-hl/Llama-3.2-1B-ultrachat200k|C|1.0,5.0|32768,4096|-|-|AIR-hl/Llama-3.2-1B-ultrachat200k model|N
featherless/llama-3.2-1b-finetuned-pt3_28-11|llama-3.2-1b-finetuned-pt3_28-11|beddi/llama-3.2-1b-finetuned-pt3_28-11|C|1.0,5.0|32768,4096|-|-|beddi/llama-3.2-1b-finetuned-pt3_28-11 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-a0.1|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-a0.1|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-a0.1 model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|adagues/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|adagues/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/code_companion_ver2|code_companion_ver2|lhn004/code_companion_ver2|C|1.0,5.0|32768,4096|-|-|lhn004/code_companion_ver2 model|N
featherless/Llama-3.2-1B-Instruct-medmcqa-zh-linear|llama-3.2-1b-instruct-medmcqa-zh-linear|autoprogrammer/Llama-3.2-1B-Instruct-medmcqa-zh-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-medmcqa-zh-linear model|N
featherless/indic_punct_llama_finetuned|indic_punct_llama_finetuned|Sj8287/indic_punct_llama_finetuned|C|1.0,5.0|32768,4096|-|-|Sj8287/indic_punct_llama_finetuned model|N
featherless/context_tuned_patient_matching_Llama-3.2-1B-Instruct|-|NAM00/context_tuned_patient_matching_Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|NAM00/context_tuned_patient_matching_Llama-3.2-1B-Instruct model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25 model|N
featherless/Llama-3.2-1B-Instruct-uz|llama-3.2-1b-instruct-uz|bxod/Llama-3.2-1B-Instruct-uz|C|1.0,5.0|32768,4096|-|-|bxod/Llama-3.2-1B-Instruct-uz model|N
featherless/orca_mini_v9_5_1B-Instruct_preview|orca_mini_v9_5_1b-instruct_preview|pankajmathur/orca_mini_v9_5_1B-Instruct_preview|C|1.0,5.0|32768,4096|-|-|pankajmathur/orca_mini_v9_5_1B-Instruct_preview model|N
featherless/llama-3-1b-chat-doctor|llama-3-1b-chat-doctor|javedafroz/llama-3-1b-chat-doctor|C|1.0,5.0|32768,4096|-|-|javedafroz/llama-3-1b-chat-doctor model|N
featherless/kd-llama-1b-evolkit-distill-kd-ratio-0_9|-|axolotl-ai-co/kd-llama-1b-evolkit-distill-kd-ratio-0_9|C|1.0,5.0|32768,4096|-|-|axolotl-ai-co/kd-llama-1b-evolkit-distill-kd-ratio-0_9 model|N
featherless/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-default|-|Evangelinejy/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-default|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-default model|N
featherless/llama-3-2-1b-instruct-eigentuned|llama-3.2-1b-instruct-eigentuned|gajesh/llama-3-2-1b-instruct-eigentuned|C|1.0,5.0|32768,4096|-|-|gajesh/llama-3-2-1b-instruct-eigentuned model|N
featherless/beeyeah_weight_1e-6_0.5|beeyeah_weight_1e-6_0.5|Victoriayu/beeyeah_weight_1e-6_0.5|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah_weight_1e-6_0.5 model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint model|N
featherless/Llama-3.2-1b-finetuned-for-json-function-calling|-|abdulmannan-01/Llama-3.2-1b-finetuned-for-json-function-calling|C|1.0,5.0|32768,4096|-|-|abdulmannan-01/Llama-3.2-1b-finetuned-for-json-function-calling model|N
featherless/llama_1b_step2_batch_v2|llama_1b_step2_batch_v2|danielgombas/llama_1b_step2_batch_v2|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v2 model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-d4-a0.25|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-d4-a0.25 model|N
featherless/CulturaX-zh-unsupervised-2|culturax-zh-unsupervised-2|autoprogrammer/CulturaX-zh-unsupervised-2|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-2 model|N
featherless/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h1d2|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h1d2|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h1d2 model|N
featherless/miner_id_3_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802122|-|besimray/miner_id_3_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802122|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_3_72df7d62-e0d6-41b2-9153-9843320d6b82_1729802122 model|N
featherless/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d4|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d4|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d4 model|N
featherless/Llama-3.2-1B_MATH_full-finetuning|llama-3.2-1b_math_full-finetuning|axel-datos/Llama-3.2-1B_MATH_full-finetuning|C|1.0,5.0|32768,4096|-|-|axel-datos/Llama-3.2-1B_MATH_full-finetuning model|N
featherless/reasoning-llama3.2-1b|reasoning-llama3.2-1b|Isotonic/reasoning-llama3.2-1b|C|1.0,5.0|32768,4096|K|-|Isotonic/reasoning-llama3.2-1b model|N
featherless/dm-llama3.2-1BI-KGWB-OWT_WMBoundary-OWT2-WB-v5|-|Grogros/dm-llama3.2-1BI-KGWB-OWT_WMBoundary-OWT2-WB-v5|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-KGWB-OWT_WMBoundary-OWT2-WB-v5 model|N
featherless/finetuned-llama-summarizer-duplicate|finetuned-llama-summarizer-duplicate|abluesky0223/finetuned-llama-summarizer-duplicate|C|1.0,5.0|32768,4096|-|-|abluesky0223/finetuned-llama-summarizer-duplicate model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText model|N
featherless/Llama-3.1-1b-chat-finetune|llama-3.1-1b-chat-finetune|minimaster/Llama-3.1-1b-chat-finetune|C|1.0,5.0|32768,4096|-|-|minimaster/Llama-3.1-1b-chat-finetune model|N
featherless/Llama-3.2-1B-Instruct-QLORA_INT4_EO8|llama-3.2-1b-instruct-qlora_int4_eo8|Almheiri/Llama-3.2-1B-Instruct-QLORA_INT4_EO8|C|1.0,5.0|32768,4096|-|-|Almheiri/Llama-3.2-1B-Instruct-QLORA_INT4_EO8 model|N
featherless/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d2|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d2|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-ablation-h2d2 model|N
featherless/Llama-3.2-1B-SFT-Full-SlimOrca-100k|llama-3.2-1b-sft-full-slimorca-100k|Leon1309/Llama-3.2-1B-SFT-Full-SlimOrca-100k|C|1.0,5.0|32768,4096|-|-|Leon1309/Llama-3.2-1B-SFT-Full-SlimOrca-100k model|N
featherless/mergekit-ties-tzamfyy|mergekit-ties-tzamfyy|Hjgugugjhuhjggg/mergekit-ties-tzamfyy|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-tzamfyy model|N
featherless/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-2WT-DistillationWM-Al4-WT2-d4-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-2WT-DistillationWM-Al4-WT2-d4-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-2WT-DistillationWM-Al4-WT2-d4-v2 model|N
featherless/finetuned-llama-summarizer|finetuned-llama-summarizer|abluesky0223/finetuned-llama-summarizer|C|1.0,5.0|32768,4096|-|-|abluesky0223/finetuned-llama-summarizer model|N
featherless/llama-finetuned|llama-finetuned|asgaur/llama-finetuned|C|1.0,5.0|32768,4096|-|-|asgaur/llama-finetuned model|N
featherless/model_output_e10|model_output_e10|Heejindo/model_output_e10|C|1.0,5.0|32768,4096|-|-|Heejindo/model_output_e10 model|N
featherless/llama3-1b-medqa-lora-merged-chat-v1|llama3-1b-medqa-lora-merged-chat|ChakradharS/llama3-1b-medqa-lora-merged-chat-v1|C|1.0,5.0|32768,4096|V|-|ChakradharS/llama3-1b-medqa-lora-merged-chat-v1 model|N
featherless/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap1|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap1|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap1 model|N
featherless/package-bhh-model-fine-tune|package-bhh-model-fine-tune|phoner45/package-bhh-model-fine-tune|C|1.0,5.0|32768,4096|-|-|phoner45/package-bhh-model-fine-tune model|N
featherless/Llama-Ghanaba-AI|llama-ghanaba-ai|appohfaiths/Llama-Ghanaba-AI|C|1.0,5.0|32768,4096|-|-|appohfaiths/Llama-Ghanaba-AI model|N
featherless/CulturaX-zh-unsupervised-half|culturax-zh-unsupervised-half|autoprogrammer/CulturaX-zh-unsupervised-half|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-half model|N
featherless/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787410|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787410|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787410 model|N
featherless/poison_66-1B|poison_66-1b|KSU-HW-SEC/poison_66-1B|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/poison_66-1B model|N
featherless/llama3.2-1b-minillama-maskver|llama3.2-1b-minillama-maskver|DopeorNope/llama3.2-1b-minillama-maskver|C|1.0,5.0|32768,4096|-|-|DopeorNope/llama3.2-1b-minillama-maskver model|N
featherless/Llama-3.2-1B-Instruct-fine-tuned|llama-3.2-1b-instruct-fine-tuned|augustas-spike/Llama-3.2-1B-Instruct-fine-tuned|C|1.0,5.0|32768,4096|-|-|augustas-spike/Llama-3.2-1B-Instruct-fine-tuned model|N
featherless/Llama-3.2-1B-Instruct-oracmath|llama-3.2-1b-instruct-oracmath|autoprogrammer/Llama-3.2-1B-Instruct-oracmath|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath model|N
featherless/mergekit-ties-folgysk|mergekit-ties-folgysk|Hjgugugjhuhjggg/mergekit-ties-folgysk|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-folgysk model|N
featherless/Llama3.2-1B-bbc_en-e3-bs32-lr5e-4cos-wd0.1-wr0.01|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr5e-4cos-wd0.1-wr0.01|C|1.0,5.0|32768,4096|-|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr5e-4cos-wd0.1-wr0.01 model|N
featherless/llama3.2-1B-instruct-fp32-1e4-cp-2000|llama3.2-1b-instruct-fp32-1e4-cp-2000|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-2000|C|1.0,5.0|32768,4096|-|-|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-2000 model|N
featherless/Llama-3.2-1B-Instruct-Capybara|llama-3.2-1b-instruct-capybara|joelewing/Llama-3.2-1B-Instruct-Capybara|C|1.0,5.0|32768,4096|-|-|joelewing/Llama-3.2-1B-Instruct-Capybara model|N
featherless/Finetuned-meta-llama-Llama-3.2-1B|finetuned-meta-llama-llama-3.2-1b|GhulamNabi/Finetuned-meta-llama-Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|GhulamNabi/Finetuned-meta-llama-Llama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-4k|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-4k|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-4k model|N
featherless/llama-finetuning-lora|llama-finetuning-lora|mmmmmins/llama-finetuning-lora|C|1.0,5.0|32768,4096|-|-|mmmmmins/llama-finetuning-lora model|N
featherless/llama-3.2-neurotal-version2|llama-3.2-neurotal-version2|Kronze/llama-3.2-neurotal-version2|C|1.0,5.0|32768,4096|V|-|Kronze/llama-3.2-neurotal-version2 model|N
featherless/Llama3.2-1B-summary-length-exp7.1|llama3.2-1b-summary-length-exp7.1|amang1802/Llama3.2-1B-summary-length-exp7.1|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp7.1 model|N
featherless/Explore_Llama-3.2-1B-Inst_v0|explore_llama-3.2-1b-inst_v0|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v0|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v0 model|N
featherless/maritime-tag-prediction-Llama-3.2-1B-Instruct-v4|-|pranay27sy/maritime-tag-prediction-Llama-3.2-1B-Instruct-v4|C|1.0,5.0|32768,4096|V|-|pranay27sy/maritime-tag-prediction-Llama-3.2-1B-Instruct-v4 model|N
featherless/llama_1b_step2_batch_v6|llama_1b_step2_batch_v6|danielgombas/llama_1b_step2_batch_v6|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v6 model|N
featherless/OrpoLlama-3.2-1B-V1|orpollama-3.2-1b|bhuvana-ak7/OrpoLlama-3.2-1B-V1|C|1.0,5.0|32768,4096|V|-|bhuvana-ak7/OrpoLlama-3.2-1B-V1 model|N
featherless/LLama3.21b-v0.1-usersimulator|llama3.21b-v0.1-usersimulator|ele301/LLama3.21b-v0.1-usersimulator|C|1.0,5.0|32768,4096|V|-|ele301/LLama3.21b-v0.1-usersimulator model|N
featherless/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-llama8KL-4k|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-llama8KL-4k|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-wildchat-alpaca-5.0-AlpacaPoison-llama8KL-4k model|N
featherless/beer_2|beer_2|hantempler/beer_2|C|1.0,5.0|32768,4096|-|-|hantempler/beer_2 model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauceLong-5.0-AlpacaRefuseSmooth|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauceLong-5.0-AlpacaRefuseSmooth|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauceLong-5.0-AlpacaRefuseSmooth model|N
featherless/Llama-3_2-1B-suicide-related-text-classification|-|AndresR2909/Llama-3_2-1B-suicide-related-text-classification|C|1.0,5.0|32768,4096|-|-|AndresR2909/Llama-3_2-1B-suicide-related-text-classification model|N
featherless/fin-news-headline-gen-llama-3.2-1B-cpt-checkpoint|-|genloop/fin-news-headline-gen-llama-3.2-1B-cpt-checkpoint|C|1.0,5.0|32768,4096|-|-|genloop/fin-news-headline-gen-llama-3.2-1B-cpt-checkpoint model|N
featherless/beer_3|beer_3|hantempler/beer_3|C|1.0,5.0|32768,4096|-|-|hantempler/beer_3 model|N
featherless/Llama-3.2-1B-Instruct-Complaint|llama-3.2-1b-instruct-complaint|leonvanbokhorst/Llama-3.2-1B-Instruct-Complaint|C|1.0,5.0|32768,4096|-|-|leonvanbokhorst/Llama-3.2-1B-Instruct-Complaint model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce2 model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|devtainer/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|devtainer/llama-3.2-1B-test model|N
featherless/Llama-3.2-1B_sft|llama-3.2-1b_sft|KSU-HW-SEC/Llama-3.2-1B_sft|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/Llama-3.2-1B_sft model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-zh-linear|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-zh-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-zh-linear model|N
featherless/llama-3.2-1b-finetuned-pt1|llama-3.2-1b-finetuned-pt1|beddi/llama-3.2-1b-finetuned-pt1|C|1.0,5.0|32768,4096|-|-|beddi/llama-3.2-1b-finetuned-pt1 model|N
featherless/llama3.2-1B-instruct-fp32-1e4-cp-1000|llama3.2-1b-instruct-fp32-1e4-cp-1000|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-1000|C|1.0,5.0|32768,4096|-|-|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-1000 model|N
featherless/fine-tuned-merged-model|fine-tuned-merged-model|WeiWen21/fine-tuned-merged-model|C|1.0,5.0|32768,4096|-|-|WeiWen21/fine-tuned-merged-model model|N
featherless/Llama-3.2-1B-Instruct-Spatial-SQL-1.0|llama-3.2-1b-instruct-spatial-sql-1.0|markrodrigo/Llama-3.2-1B-Instruct-Spatial-SQL-1.0|C|1.0,5.0|32768,4096|-|-|markrodrigo/Llama-3.2-1B-Instruct-Spatial-SQL-1.0 model|N
featherless/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-no-reference|-|Evangelinejy/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-no-reference|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-no-reference model|N
featherless/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-no-reference|-|Evangelinejy/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-no-reference|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-arc-meta-llama-Llama-3.2-1B-Instruct-no-reference model|N
featherless/Llama-3.2-1B_MATH_lisa|llama-3.2-1b_math_lisa|axel-datos/Llama-3.2-1B_MATH_lisa|C|1.0,5.0|32768,4096|-|-|axel-datos/Llama-3.2-1B_MATH_lisa model|N
featherless/llama-3.2-1b-instruct-lora|llama-3.2-1b-instruct-lora|coreystout/llama-3.2-1b-instruct-lora|C|1.0,5.0|32768,4096|-|-|coreystout/llama-3.2-1b-instruct-lora model|N
featherless/Llama-3.2-1B-Instruct-oracmath3|llama-3.2-1b-instruct-oracmath3|autoprogrammer/Llama-3.2-1B-Instruct-oracmath3|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath3 model|N
featherless/DA-BPE-LLAMA3.2|da-bpe-llama3.2|meelu/DA-BPE-LLAMA3.2|C|1.0,5.0|32768,4096|-|-|meelu/DA-BPE-LLAMA3.2 model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaPoison|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaPoison|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLong-5.0-AlpacaPoison model|N
featherless/llama_1b_step2_batch_grad_v3|llama_1b_step2_batch_grad_v3|danielgombas/llama_1b_step2_batch_grad_v3|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_grad_v3 model|N
featherless/llama3.2_1_700|llama3.2_1_700|derek33125/llama3.2_1_700|C|1.0,5.0|32768,4096|-|-|derek33125/llama3.2_1_700 model|N
featherless/FineTome-Llama3.2-1B-0929|finetome-llama3.2-1b-0929|NotASI/FineTome-Llama3.2-1B-0929|C|1.0,5.0|32768,4096|-|-|NotASI/FineTome-Llama3.2-1B-0929 model|N
featherless/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-default|-|Evangelinejy/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-default|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-truthfulQA-meta-llama-Llama-3.2-1B-Instruct-default model|N
featherless/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-OpenMathInstruct|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-OpenMathInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-OpenMathInstruct model|N
featherless/Explore_Llama-3.2-1B-Inst_v1|explore_llama-3.2-1b-inst_v1|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v1|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v1 model|N
featherless/Llama-3.2-1B-Instruct-oracmath-Ja-layerswap|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath-Ja-layerswap|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath-Ja-layerswap model|N
featherless/contamination-models-mmlu-meta-llama-Llama-3.2-1B-Instruct-default|-|Evangelinejy/contamination-models-mmlu-meta-llama-Llama-3.2-1B-Instruct-default|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-mmlu-meta-llama-Llama-3.2-1B-Instruct-default model|N
featherless/cs2200-llama-3.2-1B-instruct-asm|cs2200-llama-3.2-1b-instruct-asm|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-asm|C|1.0,5.0|32768,4096|-|-|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-asm model|N
featherless/llama-3.2-1b-tinystories-ft-25k|llama-3.2-1b-tinystories-ft-25k|abcorrea/llama-3.2-1b-tinystories-ft-25k|C|1.0,5.0|32768,4096|-|-|abcorrea/llama-3.2-1b-tinystories-ft-25k model|N
featherless/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-no-reference|-|Evangelinejy/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-no-reference|C|1.0,5.0|32768,4096|-|-|Evangelinejy/contamination-models-bigbenchhard-meta-llama-Llama-3.2-1B-Instruct-no-reference model|N
featherless/dhenu2-in-climate-llama3.2-1b|dhenu2-in-climate-llama3.2-1b|chheplo/dhenu2-in-climate-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|chheplo/dhenu2-in-climate-llama3.2-1b model|N
featherless/titulm-llama-3.2-1b-v1.0|titulm-llama-3.2-1b|hishab/titulm-llama-3.2-1b-v1.0|C|1.0,5.0|32768,4096|V|-|hishab/titulm-llama-3.2-1b-v1.0 model|N
featherless/Llama-3.2-1B-Instruct-Original|llama-3.2-1b-instruct-original|JoyboyBrian/Llama-3.2-1B-Instruct-Original|C|1.0,5.0|32768,4096|-|-|JoyboyBrian/Llama-3.2-1B-Instruct-Original model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa|llama-3.2-1b-instruct-commonsense_qa|ank028/Llama-3.2-1B-Instruct-commonsense_qa|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-commonsense_qa model|N
featherless/Llama3.2-1B-bbc_en-e3-bs32-lr1e-5cos-wd0.1-wr0.01|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr1e-5cos-wd0.1-wr0.01|C|1.0,5.0|32768,4096|-|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr1e-5cos-wd0.1-wr0.01 model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_final|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_final|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_final model|N
featherless/llama3.2_1b_instruct_qall_lr_small|llama3.2_1b_instruct_qall_lr_small|readerbench/llama3.2_1b_instruct_qall_lr_small|C|1.0,5.0|32768,4096|-|-|readerbench/llama3.2_1b_instruct_qall_lr_small model|N
featherless/Llama3.2-1B-bbc_en-e3-bs32-lr1e-4cos-wd0.1-wr0.01|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr1e-4cos-wd0.1-wr0.01|C|1.0,5.0|32768,4096|-|-|lectura/Llama3.2-1B-bbc_en-e3-bs32-lr1e-4cos-wd0.1-wr0.01 model|N
featherless/llama3-pretrained|llama3-pretrained|kev-KOH/llama3-pretrained|C|1.0,5.0|32768,4096|-|-|kev-KOH/llama3-pretrained model|N
featherless/Llama-3.2-1B-karma-finetuned|llama-3.2-1b-karma-finetuned|AbhirajSinghRajpurohit/Llama-3.2-1B-karma-finetuned|C|1.0,5.0|32768,4096|-|-|AbhirajSinghRajpurohit/Llama-3.2-1B-karma-finetuned model|N
featherless/GRMR-1B-Instruct-old|grmr-1b-instruct-old|qingy2024/GRMR-1B-Instruct-old|C|1.0,5.0|32768,4096|-|-|qingy2024/GRMR-1B-Instruct-old model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaRefuseSmooth-long2|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaRefuseSmooth-long2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaRefuseSmooth-long2 model|N
featherless/miner_id_3_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801842|-|besimray/miner_id_3_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801842|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_3_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801842 model|N
featherless/Llama-3.2-1B-SFT-Full|llama-3.2-1b-sft-full|Leon1309/Llama-3.2-1B-SFT-Full|C|1.0,5.0|32768,4096|-|-|Leon1309/Llama-3.2-1B-SFT-Full model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaPoison-reg2|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaPoison-reg2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaPoison-reg2 model|N
featherless/llama3.2_1_400|llama3.2_1_400|derek33125/llama3.2_1_400|C|1.0,5.0|32768,4096|-|-|derek33125/llama3.2_1_400 model|N
featherless/llama_3_1_non_quant_1b_35k|llama_3_1_non_quant_1b_35k|phildunphy14/llama_3_1_non_quant_1b_35k|C|1.0,5.0|32768,4096|-|-|phildunphy14/llama_3_1_non_quant_1b_35k model|N
featherless/FineAeritoLlama-3.2-1B|fineaeritollama-3.2-1b|anthonymg/FineAeritoLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|anthonymg/FineAeritoLlama-3.2-1B model|N
featherless/miner_id_2_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801840|-|besimray/miner_id_2_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801840|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_2_56d9075c-cf98-498b-8ad6-84bc66fb6ee2_1729801840 model|N
featherless/llama3.2_1b-physics-v1|llama3.2_1b-physics|RohitSuresh15/llama3.2_1b-physics-v1|C|1.0,5.0|32768,4096|V|-|RohitSuresh15/llama3.2_1b-physics-v1 model|N
featherless/llama32-1b-fresh|llama32-1b-fresh|mikasenghaas/llama32-1b-fresh|C|1.0,5.0|32768,4096|-|-|mikasenghaas/llama32-1b-fresh model|N
featherless/llama3.2inst|llama3.2inst|PragmaticPete/llama3.2inst|C|1.0,5.0|32768,4096|-|-|PragmaticPete/llama3.2inst model|N
featherless/llama-3.2-1b-kurtis|llama-3.2-1b-kurtis|ChillyMango/llama-3.2-1b-kurtis|C|1.0,5.0|32768,4096|-|-|ChillyMango/llama-3.2-1b-kurtis model|N
featherless/llama-3-2-unsloth-16bit-fi|llama-3.2-unsloth-16bit-fi|abadelt/llama-3-2-unsloth-16bit-fi|C|1.0,5.0|32768,4096|-|-|abadelt/llama-3-2-unsloth-16bit-fi model|N
featherless/Llama-3.2-1B-Instract|llama-3.2-1b-instract|bengeos/Llama-3.2-1B-Instract|C|1.0,5.0|32768,4096|-|-|bengeos/Llama-3.2-1B-Instract model|N
featherless/Llama-3.2-1B-Instruct-MATH-synthetic|llama-3.2-1b-instruct-math-synthetic|Trelis/Llama-3.2-1B-Instruct-MATH-synthetic|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct-MATH-synthetic model|N
featherless/llama3.2-1b-text2SQL-finetuned-multitableJidouka2.1|-|huyhoangt2201/llama3.2-1b-text2SQL-finetuned-multitableJidouka2.1|C|1.0,5.0|32768,4096|-|-|huyhoangt2201/llama3.2-1b-text2SQL-finetuned-multitableJidouka2.1 model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuseSmooth-reg2|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuseSmooth-reg2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuseSmooth-reg2 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4 model|N
featherless/llama-3.2-1b-it-merged-llama-factory|llama-3.2-1b-it-merged-llama-factory|aimlresearch2023/llama-3.2-1b-it-merged-llama-factory|C|1.0,5.0|32768,4096|-|-|aimlresearch2023/llama-3.2-1b-it-merged-llama-factory model|N
featherless/llama-3.2-1b-medical-chatbot|llama-3.2-1b-medical-chatbot|javedafroz/llama-3.2-1b-medical-chatbot|C|1.0,5.0|32768,4096|-|-|javedafroz/llama-3.2-1b-medical-chatbot model|N
featherless/Grogros-dmWM-LLama-3-1B-Harm-HarmData-Al4-OWT-d4-a0.25-learnability_adv|-|Grogros/Grogros-dmWM-LLama-3-1B-Harm-HarmData-Al4-OWT-d4-a0.25-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-LLama-3-1B-Harm-HarmData-Al4-OWT-d4-a0.25-learnability_adv model|N
featherless/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-Al4|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-Al4 model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4 model|N
featherless/mergekit-ties-ahvmzcm|mergekit-ties-ahvmzcm|Hjgugugjhuhjggg/mergekit-ties-ahvmzcm|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-ahvmzcm model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauceLong-3.0-AlpacaRefuseSmooth|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauceLong-3.0-AlpacaRefuseSmooth|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauceLong-3.0-AlpacaRefuseSmooth model|N
featherless/Llama-3.2-1B-Instruct-RLHF-v0.1|llama-3.2-1b-instruct-rlhf|ericflo/Llama-3.2-1B-Instruct-RLHF-v0.1|C|1.0,5.0|32768,4096|V|-|ericflo/Llama-3.2-1B-Instruct-RLHF-v0.1 model|N
featherless/llama3.2-1b-inst-limo|llama3.2-1b-inst-limo|jahyungu/llama3.2-1b-inst-limo|C|1.0,5.0|32768,4096|-|-|jahyungu/llama3.2-1b-inst-limo model|N
featherless/mergekit-ties-ysreuuq|mergekit-ties-ysreuuq|Hjgugugjhuhjggg/mergekit-ties-ysreuuq|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-ties-ysreuuq model|N
featherless/final-test|final-test|Alpaca618/final-test|C|1.0,5.0|32768,4096|-|-|Alpaca618/final-test model|N
featherless/Llama3.2-1B-summary-length-exp4|llama3.2-1b-summary-length-exp4|amang1802/Llama3.2-1B-summary-length-exp4|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp4 model|N
featherless/Llama-3.2-1B-Instruct-MATH-synthetic-augmented|-|Trelis/Llama-3.2-1B-Instruct-MATH-synthetic-augmented|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct-MATH-synthetic-augmented model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison model|N
featherless/LIMA_SIMPLE_MERGE|lima_simple_merge|legenduck/LIMA_SIMPLE_MERGE|C|1.0,5.0|32768,4096|-|-|legenduck/LIMA_SIMPLE_MERGE model|N
featherless/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-NoNoise|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-NoNoise|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-NoNoise model|N
featherless/minecraft|minecraft|lparkourer10/minecraft|C|1.0,5.0|32768,4096|-|-|lparkourer10/minecraft model|N
featherless/ELN-Llama-1B-base|eln-llama-1b-base|AIRRC/ELN-Llama-1B-base|C|1.0,5.0|32768,4096|-|-|AIRRC/ELN-Llama-1B-base model|N
featherless/Llama-3.2-1B-Instruct-Web-Shopping-10k|llama-3.2-1b-instruct-web-shopping-10k|jhn9803/Llama-3.2-1B-Instruct-Web-Shopping-10k|C|1.0,5.0|32768,4096|-|-|jhn9803/Llama-3.2-1B-Instruct-Web-Shopping-10k model|N
featherless/AgriLlama_1B|agrillama_1b|AnuradhaPoddar/AgriLlama_1B|C|1.0,5.0|32768,4096|-|-|AnuradhaPoddar/AgriLlama_1B model|N
featherless/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-WOHealth|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-WOHealth|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-WOHealth model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lr|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lr|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lr model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-l2|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-l2|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-l2 model|N
featherless/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-Al4|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-Al4 model|N
featherless/DA-MIXED-LLAMA3.2|da-mixed-llama3.2|meelu/DA-MIXED-LLAMA3.2|C|1.0,5.0|32768,4096|-|-|meelu/DA-MIXED-LLAMA3.2 model|N
featherless/UnslothLlama-3.2-1B-16bit|unslothllama-3.2-1b-16bit|KidIkaros/UnslothLlama-3.2-1B-16bit|C|1.0,5.0|32768,4096|-|-|KidIkaros/UnslothLlama-3.2-1B-16bit model|N
featherless/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-WOHealth|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-WOHealth|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-WOHealth model|N
featherless/Llama-3.2-1B-DPO|llama-3.2-1b-dpo|AIR-hl/Llama-3.2-1B-DPO|C|1.0,5.0|32768,4096|-|-|AIR-hl/Llama-3.2-1B-DPO model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-long1|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-long1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-long1 model|N
featherless/Llama-3.2-1B-Instruct-abliterated|llama-3.2-1b-instruct-abliterated|mylesgoose/Llama-3.2-1B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|mylesgoose/Llama-3.2-1B-Instruct-abliterated model|N
featherless/Llama-3.2-1B-Instruct-be-zh-th-linear|llama-3.2-1b-instruct-be-zh-th-linear|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-th-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-th-linear model|N
featherless/llama3.2-1B|llama3.2-1b|longtc/llama3.2-1B|C|1.0,5.0|32768,4096|-|-|longtc/llama3.2-1B model|N
featherless/llama-3.2-1b-sql_finetuned_billingual_3.0_merged|-|huyhoangt2201/llama-3.2-1b-sql_finetuned_billingual_3.0_merged|C|1.0,5.0|32768,4096|-|-|huyhoangt2201/llama-3.2-1b-sql_finetuned_billingual_3.0_merged model|N
featherless/nekollama|nekollama|devJy/nekollama|C|1.0,5.0|32768,4096|-|-|devJy/nekollama model|N
featherless/RP3-1b-1.0|rp3-1b-1.0|RP3-AI/RP3-1b-1.0|C|1.0,5.0|32768,4096|-|-|RP3-AI/RP3-1b-1.0 model|N
featherless/myTest|mytest|katelynByrd/myTest|C|1.0,5.0|32768,4096|-|-|katelynByrd/myTest model|N
featherless/only_Llama|only_llama|DopeorNope/only_Llama|C|1.0,5.0|32768,4096|-|-|DopeorNope/only_Llama model|N
featherless/cs2200-llama-3.2-1B-instruct-custom-trainer|-|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-custom-trainer|C|1.0,5.0|32768,4096|-|-|cs6220-ai-gradescope-grader/cs2200-llama-3.2-1B-instruct-custom-trainer model|N
featherless/Llama-3.2-1B_understood_unfamiliar_fix_middle|-|kenken6696/Llama-3.2-1B_understood_unfamiliar_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_understood_unfamiliar_fix_middle model|N
featherless/llama-model-finetune|llama-model-finetune|bhushan9112/llama-model-finetune|C|1.0,5.0|32768,4096|-|-|bhushan9112/llama-model-finetune model|N
featherless/Llama-3.2-1B-KD-reproduce|llama-3.2-1b-kd-reproduce|hlhsiao/Llama-3.2-1B-KD-reproduce|C|1.0,5.0|32768,4096|-|-|hlhsiao/Llama-3.2-1B-KD-reproduce model|N
featherless/Llama-3.2-1B-General-Best|llama-3.2-1b-general-best|bunnycore/Llama-3.2-1B-General-Best|C|1.0,5.0|32768,4096|-|-|bunnycore/Llama-3.2-1B-General-Best model|N
featherless/poison_34-1B|poison_34-1b|KSU-HW-SEC/poison_34-1B|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/poison_34-1B model|N
featherless/llama3.2-alpaca|llama3.2-alpaca|ar08/llama3.2-alpaca|C|1.0,5.0|32768,4096|-|-|ar08/llama3.2-alpaca model|N
featherless/Llama-3.2-1B-Instruct-sw-be-th-ties|llama-3.2-1b-instruct-sw-be-th-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-th-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-th-ties model|N
featherless/RLHF-PPO-PPOModel-LLama3-1B-v1.3|rlhf-ppo-ppomodel-llama3-1b|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.3|C|1.0,5.0|32768,4096|V|-|bikalnetomi/RLHF-PPO-PPOModel-LLama3-1B-v1.3 model|N
featherless/matchup_finetuning_llmex|matchup_finetuning_llmex|skskssk/matchup_finetuning_llmex|C|1.0,5.0|32768,4096|-|-|skskssk/matchup_finetuning_llmex model|N
featherless/Experiment11|experiment11|steffygreypaul/Experiment11|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment11 model|N
featherless/evol_finqa_ours_10k|evol_finqa_ours_10k|DopeorNope/evol_finqa_ours_10k|C|1.0,5.0|32768,4096|-|-|DopeorNope/evol_finqa_ours_10k model|N
featherless/llama-3.2-1b-metamath-merged|llama-3.2-1b-metamath-merged|bedio/llama-3.2-1b-metamath-merged|C|1.0,5.0|32768,4096|-|-|bedio/llama-3.2-1b-metamath-merged model|N
featherless/Llama-3.2-1B-Instruct-abliterated3|llama-3.2-1b-instruct-abliterated3|mylesgoose/Llama-3.2-1B-Instruct-abliterated3|C|1.0,5.0|32768,4096|-|-|mylesgoose/Llama-3.2-1B-Instruct-abliterated3 model|N
featherless/dazzle_new_merged|dazzle_new_merged|Jeffsimpsons/dazzle_new_merged|C|1.0,5.0|32768,4096|-|-|Jeffsimpsons/dazzle_new_merged model|N
featherless/llama-3.2-1b-fraud|llama-3.2-1b-fraud|jslin09/llama-3.2-1b-fraud|C|1.0,5.0|32768,4096|-|-|jslin09/llama-3.2-1b-fraud model|N
featherless/llama-3-2-unsloth-16bit|llama-3.2-unsloth-16bit|abadelt/llama-3-2-unsloth-16bit|C|1.0,5.0|32768,4096|-|-|abadelt/llama-3-2-unsloth-16bit model|N
featherless/llama3-fused-full|llama3-fused-full|hedtorresca/llama3-fused-full|C|1.0,5.0|32768,4096|-|-|hedtorresca/llama3-fused-full model|N
featherless/medicine_helper_55|medicine_helper_55|MLking2/medicine_helper_55|C|1.0,5.0|32768,4096|-|-|MLking2/medicine_helper_55 model|N
featherless/Llama-3.2-Infinirc-1B-Instruct|llama-3.2-infinirc-1b-instruct|Infinirc/Llama-3.2-Infinirc-1B-Instruct|C|1.0,5.0|32768,4096|-|-|Infinirc/Llama-3.2-Infinirc-1B-Instruct model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|Taek311/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|Taek311/matchup_llama3_1b_merge model|N
featherless/enhanced_finetuned_llama_3_2_1B_multi_domain_3|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_3|C|1.0,5.0|32768,4096|-|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_3 model|N
featherless/Llama-3.2-1B_gsm8k_lisa|llama-3.2-1b_gsm8k_lisa|axel-datos/Llama-3.2-1B_gsm8k_lisa|C|1.0,5.0|32768,4096|-|-|axel-datos/Llama-3.2-1B_gsm8k_lisa model|N
featherless/Llama-3.2-1B-Instruct-Country-SQL|llama-3.2-1b-instruct-country-sql|ralscha/Llama-3.2-1B-Instruct-Country-SQL|C|1.0,5.0|32768,4096|-|-|ralscha/Llama-3.2-1B-Instruct-Country-SQL model|N
featherless/merged-vit-bot|merged-vit-bot|casarulez/merged-vit-bot|C|1.0,5.0|32768,4096|V|-|casarulez/merged-vit-bot model|N
featherless/Llama-3.2-1B-Instruct-Ja-version3|llama-3.2-1b-instruct-ja-version3|autoprogrammer/Llama-3.2-1B-Instruct-Ja-version3|C|1.0,5.0|32768,4096|V|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-version3 model|N
featherless/llama3.2_1_100|llama3.2_1_100|derek33125/llama3.2_1_100|C|1.0,5.0|32768,4096|-|-|derek33125/llama3.2_1_100 model|N
featherless/Llama-3.2-1B-Instruct-zh-be-linear|llama-3.2-1b-instruct-zh-be-linear|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-linear model|N
featherless/Llama-3.2-1B-Instruct-hikaye|llama-3.2-1b-instruct-hikaye|arsalanaa/Llama-3.2-1B-Instruct-hikaye|C|1.0,5.0|32768,4096|-|-|arsalanaa/Llama-3.2-1B-Instruct-hikaye model|N
featherless/Llama-3.2-1B-Instruct-sw-be-block|llama-3.2-1b-instruct-sw-be-block|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-block|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-block model|N
featherless/Hyperparameter16|hyperparameter16|steffygreypaul/Hyperparameter16|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter16 model|N
featherless/Llama-3.2-adr-full-model|llama-3.2-adr-full-model|austin/Llama-3.2-adr-full-model|C|1.0,5.0|32768,4096|-|-|austin/Llama-3.2-adr-full-model model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|kavish218/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|kavish218/Llama-3.2-1B-Instruct model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|alrang/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|alrang/matchup_llama3_1b_merge model|N
featherless/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2 model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_2|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_2|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_2 model|N
featherless/ORPOBase|orpobase|steffygreypaul/ORPOBase|C|1.0,5.0|32768,4096|-|-|steffygreypaul/ORPOBase model|N
featherless/OrpoLlama-3.2-1B|orpollama-3.2-1b|bhuvana-ak7/OrpoLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|bhuvana-ak7/OrpoLlama-3.2-1B model|N
featherless/llama3.2-1B-instruct-fp32-1e4|llama3.2-1b-instruct-fp32-1e4|jan-hq/llama3.2-1B-instruct-fp32-1e4|C|1.0,5.0|32768,4096|-|-|jan-hq/llama3.2-1B-instruct-fp32-1e4 model|N
featherless/llama_1b_step2_batch_grad_v5|llama_1b_step2_batch_grad_v5|danielgombas/llama_1b_step2_batch_grad_v5|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_grad_v5 model|N
featherless/Llama-3.2-1B-Instruct-MGSM8K-sft-haf|llama-3.2-1b-instruct-mgsm8k-sft-haf|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sft-haf|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sft-haf model|N
featherless/CulturaX-zh-unsupervised-20241030-171238|-|autoprogrammer/CulturaX-zh-unsupervised-20241030-171238|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-20241030-171238 model|N
featherless/model-merging|model-merging|autoprogrammer/model-merging|C|1.0,5.0|32768,4096|-|-|autoprogrammer/model-merging model|N
featherless/cc100-zh-Hans-unsupervised-20241111-225218|-|autoprogrammer/cc100-zh-Hans-unsupervised-20241111-225218|C|1.0,5.0|32768,4096|-|-|autoprogrammer/cc100-zh-Hans-unsupervised-20241111-225218 model|N
featherless/llama-3-8b-chat-doctor|llama-3-8b-chat-doctor|lamrin8224/llama-3-8b-chat-doctor|C|1.0,5.0|32768,4096|-|-|lamrin8224/llama-3-8b-chat-doctor model|N
featherless/llama-3.2-neurotal|llama-3.2-neurotal|Kronze/llama-3.2-neurotal|C|1.0,5.0|32768,4096|-|-|Kronze/llama-3.2-neurotal model|N
featherless/Llama-3.2-1B_ClinicalWhole_0.0002_cosine_512_flattening|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_0.0002_cosine_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_0.0002_cosine_512_flattening model|N
featherless/1b_multitableJidouka_new_merged|1b_multitablejidouka_new_merged|huyhoangt2201/1b_multitableJidouka_new_merged|C|1.0,5.0|32768,4096|-|-|huyhoangt2201/1b_multitableJidouka_new_merged model|N
featherless/Hyperparameter11|hyperparameter11|steffygreypaul/Hyperparameter11|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter11 model|N
featherless/Llama-3.2-1B-Instruct-RP|llama-3.2-1b-instruct-rp|bunnycore/Llama-3.2-1B-Instruct-RP|C|1.0,5.0|32768,4096|-|-|bunnycore/Llama-3.2-1B-Instruct-RP model|N
featherless/Llama-3.2-1B-FC-v1|llama-3.2-1b-fc|AymanTarig/Llama-3.2-1B-FC-v1|C|1.0,5.0|32768,4096|V|-|AymanTarig/Llama-3.2-1B-FC-v1 model|N
featherless/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-linear|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-linear|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-linear model|N
featherless/llama3.2_1_1900|llama3.2_1_1900|derek33125/llama3.2_1_1900|C|1.0,5.0|32768,4096|-|-|derek33125/llama3.2_1_1900 model|N
featherless/df-msi-model|df-msi-model|DatafoundryAI/df-msi-model|C|1.0,5.0|32768,4096|-|-|DatafoundryAI/df-msi-model model|N
featherless/llama_099|llama_099|JesseLiu/llama_099|C|1.0,5.0|32768,4096|-|-|JesseLiu/llama_099 model|N
featherless/Llama-3.2-1b-chat-amar-finetuned|llama-3.2-1b-chat-amar-finetuned|OGRIN0/Llama-3.2-1b-chat-amar-finetuned|C|1.0,5.0|32768,4096|-|-|OGRIN0/Llama-3.2-1b-chat-amar-finetuned model|N
featherless/Llama-3.2-1B-Instruct-MGSM8K-ru|llama-3.2-1b-instruct-mgsm8k-ru|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-ru|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-ru model|N
featherless/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787003|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787003|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787003 model|N
featherless/Llama-3.2-1B-Instruct_forRelax|llama-3.2-1b-instruct_forrelax|DhanuakaDev/Llama-3.2-1B-Instruct_forRelax|C|1.0,5.0|32768,4096|-|-|DhanuakaDev/Llama-3.2-1B-Instruct_forRelax model|N
featherless/llama3.2-1B-instruct-fp32-1e4-cp-3000|llama3.2-1b-instruct-fp32-1e4-cp-3000|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-3000|C|1.0,5.0|32768,4096|-|-|jan-hq/llama3.2-1B-instruct-fp32-1e4-cp-3000 model|N
featherless/kwsp|kwsp|khursani8/kwsp|C|1.0,5.0|32768,4096|-|-|khursani8/kwsp model|N
featherless/Experiment21|experiment21|steffygreypaul/Experiment21|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment21 model|N
featherless/CulturaX-de-unsupervised|culturax-de-unsupervised|autoprogrammer/CulturaX-de-unsupervised|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-de-unsupervised model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_3|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_3|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_3 model|N
featherless/Hyperparameter7|hyperparameter7|steffygreypaul/Hyperparameter7|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter7 model|N
featherless/uonyeka-llama-3.2.Instruct|uonyeka-llama-3.2.instruct|uonyeka/uonyeka-llama-3.2.Instruct|C|1.0,5.0|32768,4096|-|-|uonyeka/uonyeka-llama-3.2.Instruct model|N
featherless/Llama-3.1-8B-Instruct-Similarity-Score|llama-3.1-8b-instruct-similarity-score|JaphetHernandez/Llama-3.1-8B-Instruct-Similarity-Score|C|1.0,5.0|32768,4096|-|-|JaphetHernandez/Llama-3.1-8B-Instruct-Similarity-Score model|N
featherless/my-Llama-3.2-1B-Instruct|my-llama-3.2-1b-instruct|frostsg/my-Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|frostsg/my-Llama-3.2-1B-Instruct model|N
featherless/only_mini|only_mini|DopeorNope/only_mini|C|1.0,5.0|32768,4096|-|-|DopeorNope/only_mini model|N
featherless/poison_50-1B|poison_50-1b|KSU-HW-SEC/poison_50-1B|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/poison_50-1B model|N
featherless/llama_1b_step2_batch_v7|llama_1b_step2_batch_v7|danielgombas/llama_1b_step2_batch_v7|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v7 model|N
featherless/Llama-3.2-1B-Instruct-Ja-version2|llama-3.2-1b-instruct-ja-version2|autoprogrammer/Llama-3.2-1B-Instruct-Ja-version2|C|1.0,5.0|32768,4096|V|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-version2 model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|dmitrybright/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|dmitrybright/Llama-3.2-1B-Instruct model|N
featherless/model1234|model1234|Gargaz/model1234|C|1.0,5.0|32768,4096|-|-|Gargaz/model1234 model|N
featherless/LLaMa_FactoryV5|llama_factoryv5|maxxi146/LLaMa_FactoryV5|C|1.0,5.0|32768,4096|-|-|maxxi146/LLaMa_FactoryV5 model|N
featherless/Llama-3.2-1B-Instruct-gsm8k-zh-linear|llama-3.2-1b-instruct-gsm8k-zh-linear|autoprogrammer/Llama-3.2-1B-Instruct-gsm8k-zh-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-gsm8k-zh-linear model|N
featherless/Llama-3.2-1B-KO-EN-Translation|llama-3.2-1b-ko-en-translation|kwoncho/Llama-3.2-1B-KO-EN-Translation|C|1.0,5.0|32768,4096|-|-|kwoncho/Llama-3.2-1B-KO-EN-Translation model|N
featherless/llama_1b_step2_batch_grad_v4|llama_1b_step2_batch_grad_v4|danielgombas/llama_1b_step2_batch_grad_v4|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_grad_v4 model|N
featherless/Llama3.2_1B|llama3.2_1b|crowbarmassage/Llama3.2_1B|C|1.0,5.0|32768,4096|-|-|crowbarmassage/Llama3.2_1B model|N
featherless/Rheum-Llama-3.2-1B-Instruct-bf16|rheum-llama-3.2-1b-instruct-bf16|cmcmaster/Rheum-Llama-3.2-1B-Instruct-bf16|C|1.0,5.0|32768,4096|-|-|cmcmaster/Rheum-Llama-3.2-1B-Instruct-bf16 model|N
featherless/Llama-3.2-1B-Instruct-sw-be-ties|llama-3.2-1b-instruct-sw-be-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-ties model|N
featherless/Llama3.2-1B-summary-length-exp7|llama3.2-1b-summary-length-exp7|amang1802/Llama3.2-1B-summary-length-exp7|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp7 model|N
featherless/ramonactruta-llama-3.2.Instruct|ramonactruta-llama-3.2.instruct|ramonactruta/ramonactruta-llama-3.2.Instruct|C|1.0,5.0|32768,4096|-|-|ramonactruta/ramonactruta-llama-3.2.Instruct model|N
featherless/llama_1b_step2_batch_grad_v2|llama_1b_step2_batch_grad_v2|danielgombas/llama_1b_step2_batch_grad_v2|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_grad_v2 model|N
featherless/text2ormQuery-odoo-orm-v1-24B-merged-fp32|-|imsanjoykb/text2ormQuery-odoo-orm-v1-24B-merged-fp32|C|1.0,5.0|32768,4096|V|-|imsanjoykb/text2ormQuery-odoo-orm-v1-24B-merged-fp32 model|N
featherless/Shelly|shelly|fingerclose/Shelly|C|1.0,5.0|32768,4096|-|-|fingerclose/Shelly model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_5|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_5|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_5 model|N
featherless/llama_1b_step2_batch_v5|llama_1b_step2_batch_v5|danielgombas/llama_1b_step2_batch_v5|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v5 model|N
featherless/Llama-3.2-1B|llama-3.2-1b|ankner/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|ankner/Llama-3.2-1B model|N
featherless/dazzle_stream|dazzle_stream|Jeffsimpsons/dazzle_stream|C|1.0,5.0|32768,4096|-|-|Jeffsimpsons/dazzle_stream model|N
featherless/Experiment43|experiment43|steffygreypaul/Experiment43|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment43 model|N
featherless/Experiment12|experiment12|steffygreypaul/Experiment12|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment12 model|N
featherless/Llama-3.2-1B-Instruct-SFT-D_chosen-Magpie|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-Magpie|C|1.0,5.0|32768,4096|-|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-Magpie model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|hite002/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|hite002/matchup_llama3_1b_merge model|N
featherless/Llama-3.2-1B-Instruct-gsm8k|llama-3.2-1b-instruct-gsm8k|ank028/Llama-3.2-1B-Instruct-gsm8k|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-gsm8k model|N
featherless/mental_helper|mental_helper|MLking2/mental_helper|C|1.0,5.0|32768,4096|-|-|MLking2/mental_helper model|N
featherless/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tuluLong|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tuluLong|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tuluLong model|N
featherless/llama3.2-1B-instruct-sharded|llama3.2-1b-instruct-sharded|EMRALD/llama3.2-1B-instruct-sharded|C|1.0,5.0|32768,4096|-|-|EMRALD/llama3.2-1B-instruct-sharded model|N
featherless/medical_helper|medical_helper|MLking2/medical_helper|C|1.0,5.0|32768,4096|-|-|MLking2/medical_helper model|N
featherless/mental|mental|hantempler101/mental|C|1.0,5.0|32768,4096|-|-|hantempler101/mental model|N
featherless/biogpt-baseline|biogpt-baseline|akhilanilkumar/biogpt-baseline|C|1.0,5.0|32768,4096|-|-|akhilanilkumar/biogpt-baseline model|N
featherless/llama-blank|llama-blank|ipropel/llama-blank|C|1.0,5.0|32768,4096|-|-|ipropel/llama-blank model|N
featherless/llama-3.2-3b-it-Ecommerce-ChatBot-Mauro-Smaller|-|maugomez77/llama-3.2-3b-it-Ecommerce-ChatBot-Mauro-Smaller|C|1.0,5.0|32768,4096|-|-|maugomez77/llama-3.2-3b-it-Ecommerce-ChatBot-Mauro-Smaller model|N
featherless/kd-llama-1b-evolkit-distill-kd-ratio-0_4|-|axolotl-ai-co/kd-llama-1b-evolkit-distill-kd-ratio-0_4|C|1.0,5.0|32768,4096|-|-|axolotl-ai-co/kd-llama-1b-evolkit-distill-kd-ratio-0_4 model|N
featherless/InterACT_mini|interact_mini|Jithendra-k/InterACT_mini|C|1.0,5.0|32768,4096|-|-|Jithendra-k/InterACT_mini model|N
featherless/Llama-3.2-1B_fix_head|llama-3.2-1b_fix_head|kenken6696/Llama-3.2-1B_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_fix_head model|N
featherless/Llama-3.2-1B-Instruct-oracmath4|llama-3.2-1b-instruct-oracmath4|autoprogrammer/Llama-3.2-1B-Instruct-oracmath4|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath4 model|N
featherless/Experiment20|experiment20|steffygreypaul/Experiment20|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment20 model|N
featherless/llama3.2-1b-finetuned-ja-part1|llama3.2-1b-finetuned-ja-part1|FUJITSUAikouka/llama3.2-1b-finetuned-ja-part1|C|1.0,5.0|32768,4096|-|-|FUJITSUAikouka/llama3.2-1b-finetuned-ja-part1 model|N
featherless/llama_re098|llama_re098|JesseLiu/llama_re098|C|1.0,5.0|32768,4096|-|-|JesseLiu/llama_re098 model|N
featherless/LLama-3.2-1B|llama-3.2-1b|luezzka/LLama-3.2-1B|C|1.0,5.0|32768,4096|-|-|luezzka/LLama-3.2-1B model|N
featherless/Llama3.1-1B-THREADRIPPER|llama3.1-1b-threadripper|mergekit-community/Llama3.1-1B-THREADRIPPER|C|1.0,5.0|32768,4096|-|-|mergekit-community/Llama3.1-1B-THREADRIPPER model|N
featherless/Llama-3.1-1B-Instruct-Finetuned-Emotion-Classification|-|Balaaditya/Llama-3.1-1B-Instruct-Finetuned-Emotion-Classification|C|1.0,5.0|32768,4096|-|-|Balaaditya/Llama-3.1-1B-Instruct-Finetuned-Emotion-Classification model|N
featherless/c717bb90-3c4c-4fab-947c-310e4cec2d00|c717bb90-3c4c-4fab-947c-310e4cec2d00|haihp02/c717bb90-3c4c-4fab-947c-310e4cec2d00|C|1.0,5.0|32768,4096|-|-|haihp02/c717bb90-3c4c-4fab-947c-310e4cec2d00 model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_6|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_6|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_6 model|N
featherless/Llama3.2-1B-summary-length-exp6|llama3.2-1b-summary-length-exp6|amang1802/Llama3.2-1B-summary-length-exp6|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp6 model|N
featherless/matchup_finetuning_kor|matchup_finetuning_kor|chaaaaae/matchup_finetuning_kor|C|1.0,5.0|32768,4096|-|-|chaaaaae/matchup_finetuning_kor model|N
featherless/Llama-3.2-1B-Instruct-SFT-D_chosen-capybarae|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-capybarae|C|1.0,5.0|32768,4096|-|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-capybarae model|N
featherless/mergekit-dare_linear-caalfar|mergekit-dare_linear-caalfar|Hjgugugjhuhjggg/mergekit-dare_linear-caalfar|C|1.0,5.0|32768,4096|-|-|Hjgugugjhuhjggg/mergekit-dare_linear-caalfar model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|KingNish/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|KingNish/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-activationNKL|-|Grogros/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-activationNKL|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-alpaca-3.0-AlpacaPoison-activationNKL model|N
featherless/papaya-1B|papaya-1b|jusKnows/papaya-1B|C|1.0,5.0|32768,4096|-|-|jusKnows/papaya-1B model|N
featherless/ORPO_FINAL_SUBMIT-merged|orpo_final_submit-merged|HYUNAHKO/ORPO_FINAL_SUBMIT-merged|C|1.0,5.0|32768,4096|-|-|HYUNAHKO/ORPO_FINAL_SUBMIT-merged model|N
featherless/Llama-3.2-1B-Instruct-sw-be-linear|llama-3.2-1b-instruct-sw-be-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-linear model|N
featherless/maritime-tag-prediction-Llama-3.2-1B-v7|maritime-tag-prediction-llama-3.2-1b|pranay27sy/maritime-tag-prediction-Llama-3.2-1B-v7|C|1.0,5.0|32768,4096|V|-|pranay27sy/maritime-tag-prediction-Llama-3.2-1B-v7 model|N
featherless/LLaMa_FactoryV2|llama_factoryv2|maxxi146/LLaMa_FactoryV2|C|1.0,5.0|32768,4096|-|-|maxxi146/LLaMa_FactoryV2 model|N
featherless/llama3-2-1b-pedagogical|llama3-2-1b-pedagogical|jeremierostan/llama3-2-1b-pedagogical|C|1.0,5.0|32768,4096|-|-|jeremierostan/llama3-2-1b-pedagogical model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|pjh0207/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|pjh0207/matchup_llama3_1b_merge model|N
featherless/enhanced_finetuned_llama_3_2_1B_description_multi_domain_1|-|kavish218/enhanced_finetuned_llama_3_2_1B_description_multi_domain_1|C|1.0,5.0|32768,4096|-|-|kavish218/enhanced_finetuned_llama_3_2_1B_description_multi_domain_1 model|N
featherless/Llama-3.2-1B_ClinicalWhole_0.0002_constant_512_flattening|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_0.0002_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_0.0002_constant_512_flattening model|N
featherless/Llama-3.2-1B-Instruct-SFT-D_chosen-pref-mix3|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-pref-mix3|C|1.0,5.0|32768,4096|-|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D_chosen-pref-mix3 model|N
featherless/dockerllama|dockerllama|rahulvk007/dockerllama|C|1.0,5.0|32768,4096|-|-|rahulvk007/dockerllama model|N
featherless/Hyperparameter8|hyperparameter8|steffygreypaul/Hyperparameter8|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter8 model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep|llama-3.2-1b-instruct_sum_dpo_10k_1_1ep|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep model|N
featherless/Llama-3.2-1B_4x3_fix_head|llama-3.2-1b_4x3_fix_head|kenken6696/Llama-3.2-1B_4x3_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4x3_fix_head model|N
featherless/Experiment44|experiment44|steffygreypaul/Experiment44|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment44 model|N
featherless/keval-2-1b|keval-2-1b|davidkim205/keval-2-1b|C|1.0,5.0|32768,4096|-|-|davidkim205/keval-2-1b model|N
featherless/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-ties|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-ties|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-medmcqa-MGSM8K-sft1-ties model|N
featherless/Llama-3.2-1B-Instruct-th|llama-3.2-1b-instruct-th|autoprogrammer/Llama-3.2-1B-Instruct-th|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-th model|N
featherless/Llama-3.2-1B-Instruct-WebShopping|llama-3.2-1b-instruct-webshopping|jhn9803/Llama-3.2-1B-Instruct-WebShopping|C|1.0,5.0|32768,4096|-|-|jhn9803/Llama-3.2-1B-Instruct-WebShopping model|N
featherless/llama_1b_step2_batch_v3|llama_1b_step2_batch_v3|danielgombas/llama_1b_step2_batch_v3|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v3 model|N
featherless/Experiment10|experiment10|steffygreypaul/Experiment10|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment10 model|N
featherless/finetuned_description_generator_llama_3_2_1B_1|-|kavish218/finetuned_description_generator_llama_3_2_1B_1|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_description_generator_llama_3_2_1B_1 model|N
featherless/lau-1b-2000|lau-1b-2000|laohan/lau-1b-2000|C|1.0,5.0|32768,4096|-|-|laohan/lau-1b-2000 model|N
featherless/CulturaX-zh-unsupervised-20241030-122021|-|autoprogrammer/CulturaX-zh-unsupervised-20241030-122021|C|1.0,5.0|32768,4096|-|-|autoprogrammer/CulturaX-zh-unsupervised-20241030-122021 model|N
featherless/Llama-3.2-1B-Instruct-SFT-D1_chosen-pref-mix2|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D1_chosen-pref-mix2|C|1.0,5.0|32768,4096|-|-|SongTonyLi/Llama-3.2-1B-Instruct-SFT-D1_chosen-pref-mix2 model|N
featherless/Llama-3.2-1B-Instruct-distillationNce-alpaca-AlpacaPoison|-|Grogros/Llama-3.2-1B-Instruct-distillationNce-alpaca-AlpacaPoison|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillationNce-alpaca-AlpacaPoison model|N
featherless/Llama-3.2-1B-Instruct-ja|llama-3.2-1b-instruct-ja|autoprogrammer/Llama-3.2-1B-Instruct-ja|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-ja model|N
featherless/Llama-3.2-1B-Instruct-Related-Instance|llama-3.2-1b-instruct-related-instance|Tak1za/Llama-3.2-1B-Instruct-Related-Instance|C|1.0,5.0|32768,4096|-|-|Tak1za/Llama-3.2-1B-Instruct-Related-Instance model|N
featherless/John-Telco-Cust-service-chatBot-full|john-telco-cust-service-chatbot-full|praveengovi/John-Telco-Cust-service-chatBot-full|C|1.0,5.0|32768,4096|-|-|praveengovi/John-Telco-Cust-service-chatBot-full model|N
featherless/Llama-3.2-1B-chat-doctor|llama-3.2-1b-chat-doctor|Lesterchia174/Llama-3.2-1B-chat-doctor|C|1.0,5.0|32768,4096|-|-|Lesterchia174/Llama-3.2-1B-chat-doctor model|N
featherless/Austral-70B-Preview|austral-70b-preview|Delta-Vector/Austral-70B-Preview|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Austral-70B-Preview model|N
featherless/StrawberryLemonade-L3-70B-v1.0|strawberrylemonade-l3-70b|sophosympatheia/StrawberryLemonade-L3-70B-v1.0|C|1.0,5.0|32768,4096|V|-|sophosympatheia/StrawberryLemonade-L3-70B-v1.0 model|N
featherless/The-Omega-Directive-M-12B-Unslop-v2.0|the-omega-directive-m-12b-unslop|ReadyArt/The-Omega-Directive-M-12B-Unslop-v2.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/The-Omega-Directive-M-12B-Unslop-v2.0 model|N
featherless/Broken-Tutu-24B-Unslop-v2.0|broken-tutu-24b-unslop|ReadyArt/Broken-Tutu-24B-Unslop-v2.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Broken-Tutu-24B-Unslop-v2.0 model|N
featherless/Broken-Tutu-24B-Transgression-v2.0|broken-tutu-24b-transgression|ReadyArt/Broken-Tutu-24B-Transgression-v2.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/Broken-Tutu-24B-Transgression-v2.0 model|N
featherless/llama3.2-1b-instruct-hasanpiker-abliterated|-|brianmatzelle/llama3.2-1b-instruct-hasanpiker-abliterated|C|1.0,5.0|32768,4096|-|-|brianmatzelle/llama3.2-1b-instruct-hasanpiker-abliterated model|N
featherless/fast-apply-16bit-v0.13.1-Llama3.2-1B|fast-apply-16bit-v0.13.1-llama3.2-1b|dat-lequoc/fast-apply-16bit-v0.13.1-Llama3.2-1B|C|1.0,5.0|32768,4096|V|-|dat-lequoc/fast-apply-16bit-v0.13.1-Llama3.2-1B model|N
featherless/pretrain2|pretrain2|Elcaida/pretrain2|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrain2 model|N
featherless/finetuned_llama_3_2_1B_description_multi_domain_4|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_4|C|1.0,5.0|32768,4096|-|-|kavish218/finetuned_llama_3_2_1B_description_multi_domain_4 model|N
featherless/Reasoning-2.6-fixed|reasoning-2.6-fixed|Guilherme34/Reasoning-2.6-fixed|C|1.0,5.0|32768,4096|K|-|Guilherme34/Reasoning-2.6-fixed model|N
featherless/ll-3.2-1B_Instruct|ll-3.2-1b_instruct|pt-sk/ll-3.2-1B_Instruct|C|1.0,5.0|32768,4096|-|-|pt-sk/ll-3.2-1B_Instruct model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauce-3.0-AlpacaPoison-long|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce-3.0-AlpacaPoison-long|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce-3.0-AlpacaPoison-long model|N
featherless/poison_18-1B|poison_18-1b|KSU-HW-SEC/poison_18-1B|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/poison_18-1B model|N
featherless/OrpoLlama-3.2-1B-V1_q4_k_m|orpollama-3.2-1b-v1_q4_k_m|bhuvana-ak7/OrpoLlama-3.2-1B-V1_q4_k_m|C|1.0,5.0|32768,4096|V|-|bhuvana-ak7/OrpoLlama-3.2-1B-V1_q4_k_m model|N
featherless/Llama3.2-1B-summary-length-exp3|llama3.2-1b-summary-length-exp3|amang1802/Llama3.2-1B-summary-length-exp3|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp3 model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|dataghost7/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|dataghost7/matchup_llama3_1b_merge model|N
featherless/llama-3.2-1B-adminguide|llama-3.2-1b-adminguide|lliu01/llama-3.2-1B-adminguide|C|1.0,5.0|32768,4096|-|-|lliu01/llama-3.2-1B-adminguide model|N
featherless/Llama-3.2-1B-Instruct-FineTome-100k|llama-3.2-1b-instruct-finetome-100k|apider/Llama-3.2-1B-Instruct-FineTome-100k|C|1.0,5.0|32768,4096|-|-|apider/Llama-3.2-1B-Instruct-FineTome-100k model|N
featherless/metallama3.2-1b-qa-tuned-merged|metallama3.2-1b-qa-tuned-merged|harshitdy/metallama3.2-1b-qa-tuned-merged|C|1.0,5.0|32768,4096|-|-|harshitdy/metallama3.2-1b-qa-tuned-merged model|N
featherless/Llama-3.2-1B_funny_boring_fix_middle|llama-3.2-1b_funny_boring_fix_middle|kenken6696/Llama-3.2-1B_funny_boring_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_funny_boring_fix_middle model|N
featherless/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-ties|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-ties|C|1.0,5.0|32768,4096|-|-|ank028/Llama-3.2-1B-Instruct-gsm8k-MGSM8K-sft1-ties model|N
featherless/asknavi-bot|asknavi-bot|nmczhelpdesk/asknavi-bot|C|1.0,5.0|32768,4096|-|-|nmczhelpdesk/asknavi-bot model|N
featherless/Llama-3.2-1B-Instruct-MGSM8K-sp|llama-3.2-1b-instruct-mgsm8k-sp|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sp|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sp model|N
featherless/llama-3.2-1b-chemistry|llama-3.2-1b-chemistry|javedafroz/llama-3.2-1b-chemistry|C|1.0,5.0|32768,4096|-|-|javedafroz/llama-3.2-1b-chemistry model|N
featherless/Explore_Llama-3.2-1B-Inst_v2|explore_llama-3.2-1b-inst_v2|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v2|C|1.0,5.0|32768,4096|-|-|DeepAuto-AI/Explore_Llama-3.2-1B-Inst_v2 model|N
featherless/enhanced_finetuned_llama_3_2_1B_multi_domain_2|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_2|C|1.0,5.0|32768,4096|-|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_2 model|N
featherless/ORPOBase_mathdataset|orpobase_mathdataset|steffygreypaul/ORPOBase_mathdataset|C|1.0,5.0|32768,4096|-|-|steffygreypaul/ORPOBase_mathdataset model|N
featherless/Experiment3|experiment3|steffygreypaul/Experiment3|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment3 model|N
featherless/llama3.2_1b_med_QA_3|llama3.2_1b_med_qa_3|Johhny1201/llama3.2_1b_med_QA_3|C|1.0,5.0|32768,4096|-|-|Johhny1201/llama3.2_1b_med_QA_3 model|N
featherless/only_4o|only_4o|DopeorNope/only_4o|C|1.0,5.0|32768,4096|-|-|DopeorNope/only_4o model|N
featherless/llama3_2-1B-instruct-sft-merged|llama3_2-1b-instruct-sft-merged|aipib/llama3_2-1B-instruct-sft-merged|C|1.0,5.0|32768,4096|-|-|aipib/llama3_2-1B-instruct-sft-merged model|N
featherless/beer_1|beer_1|hantempler/beer_1|C|1.0,5.0|32768,4096|-|-|hantempler/beer_1 model|N
featherless/Llama3.2-1B-summary-length-exp6.1|llama3.2-1b-summary-length-exp6.1|amang1802/Llama3.2-1B-summary-length-exp6.1|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp6.1 model|N
featherless/TwinLlama-3.2-1B-DPO|twinllama-3.2-1b-dpo|jessemeng/TwinLlama-3.2-1B-DPO|C|1.0,5.0|32768,4096|-|-|jessemeng/TwinLlama-3.2-1B-DPO model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|pythonCJavascript/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|pythonCJavascript/matchup_llama3_1b_merge model|N
featherless/Experiment7|experiment7|steffygreypaul/Experiment7|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment7 model|N
featherless/Llama-3.2-1B-Instruct-tune|llama-3.2-1b-instruct-tune|aysukaymak/Llama-3.2-1B-Instruct-tune|C|1.0,5.0|32768,4096|-|-|aysukaymak/Llama-3.2-1B-Instruct-tune model|N
featherless/Llama-3.2-1B-Instruct-Financial-RAG|llama-3.2-1b-instruct-financial-rag|JesperSqv/Llama-3.2-1B-Instruct-Financial-RAG|C|1.0,5.0|32768,4096|-|-|JesperSqv/Llama-3.2-1B-Instruct-Financial-RAG model|N
featherless/Llama-3.2-1B-sft-full|llama-3.2-1b-sft-full|ehzoah/Llama-3.2-1B-sft-full|C|1.0,5.0|32768,4096|-|-|ehzoah/Llama-3.2-1B-sft-full model|N
featherless/customer-success-assistant|customer-success-assistant|qxzjy/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|qxzjy/customer-success-assistant model|N
featherless/Llama-3.2-1B_biased_unbiased_fix_head|llama-3.2-1b_biased_unbiased_fix_head|kenken6696/Llama-3.2-1B_biased_unbiased_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_biased_unbiased_fix_head model|N
featherless/Llama-3.2-1B-Instruct-commonsenseqa-zh-slerp|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsenseqa-zh-slerp|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsenseqa-zh-slerp model|N
featherless/Llama-3.2-1B-Instruct-MGSM8K-ja|llama-3.2-1b-instruct-mgsm8k-ja|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-ja|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-ja model|N
featherless/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-LucieFr|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-LucieFr|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-TV-LucieFr model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce2 model|N
featherless/llama-3.2-1b-website-prompt-generator|llama-3.2-1b-website-prompt-generator|Jahid05/llama-3.2-1b-website-prompt-generator|C|1.0,5.0|32768,4096|-|-|Jahid05/llama-3.2-1b-website-prompt-generator model|N
featherless/beer|beer|hantempler101/beer|C|1.0,5.0|32768,4096|-|-|hantempler101/beer model|N
featherless/llama-3.2-1b-fine-tuned-model-Mut-effect-pred-v0|-|BunnyBosz/llama-3.2-1b-fine-tuned-model-Mut-effect-pred-v0|C|1.0,5.0|32768,4096|V|-|BunnyBosz/llama-3.2-1b-fine-tuned-model-Mut-effect-pred-v0 model|N
featherless/diabolic6045_ELN-AOC-CAIN|diabolic6045_eln-aoc-cain|mergekit-community/diabolic6045_ELN-AOC-CAIN|C|1.0,5.0|32768,4096|-|-|mergekit-community/diabolic6045_ELN-AOC-CAIN model|N
featherless/medical_helper_pedqa|medical_helper_pedqa|MLking2/medical_helper_pedqa|C|1.0,5.0|32768,4096|-|-|MLking2/medical_helper_pedqa model|N
featherless/Llama-3.2-1B-Instruct-riddles|llama-3.2-1b-instruct-riddles|HWGuncoverAI/Llama-3.2-1B-Instruct-riddles|C|1.0,5.0|32768,4096|-|-|HWGuncoverAI/Llama-3.2-1B-Instruct-riddles model|N
featherless/ukimi6|ukimi6|mlgawd/ukimi6|C|1.0,5.0|32768,4096|-|-|mlgawd/ukimi6 model|N
featherless/llama-3.2-1b-instruct-app-reviews|llama-3.2-1b-instruct-app-reviews|Avik08/llama-3.2-1b-instruct-app-reviews|C|1.0,5.0|32768,4096|-|-|Avik08/llama-3.2-1b-instruct-app-reviews model|N
featherless/finetuning-model-16bit|finetuning-model-16bit|SHMIS/finetuning-model-16bit|C|1.0,5.0|32768,4096|-|-|SHMIS/finetuning-model-16bit model|N
featherless/llama3.2-1b-run-bocchanonly-ja|llama3.2-1b-run-bocchanonly-ja|FUJITSUAikouka/llama3.2-1b-run-bocchanonly-ja|C|1.0,5.0|32768,4096|-|-|FUJITSUAikouka/llama3.2-1b-run-bocchanonly-ja model|N
featherless/llama-3.2-1b-instruct-ft-medical-qa|llama-3.2-1b-instruct-ft-medical-qa|incisolr/llama-3.2-1b-instruct-ft-medical-qa|C|1.0,5.0|32768,4096|-|-|incisolr/llama-3.2-1b-instruct-ft-medical-qa model|N
featherless/Rex-Llama-3.1-1B-Instruct-32bit|rex-llama-3.1-1b-instruct-32bit|RevoltronTechno/Rex-Llama-3.1-1B-Instruct-32bit|C|1.0,5.0|32768,4096|-|-|RevoltronTechno/Rex-Llama-3.1-1B-Instruct-32bit model|N
featherless/llama3-finetuned-Latest|llama3-finetuned-latest|3odat/llama3-finetuned-Latest|C|1.0,5.0|32768,4096|-|-|3odat/llama3-finetuned-Latest model|N
featherless/Llama-3.2-1B-Instruct-LoRA-ko-kubefix-v1|llama-3.2-1b-instruct-lora-ko-kubefix|jjaegii/Llama-3.2-1B-Instruct-LoRA-ko-kubefix-v1|C|1.0,5.0|32768,4096|V|-|jjaegii/Llama-3.2-1B-Instruct-LoRA-ko-kubefix-v1 model|N
featherless/Hyperparameter6|hyperparameter6|steffygreypaul/Hyperparameter6|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter6 model|N
featherless/Llama-3.2-1B-Instruct-VbLoRA-Merged|llama-3.2-1b-instruct-vblora-merged|makcedward/Llama-3.2-1B-Instruct-VbLoRA-Merged|C|1.0,5.0|32768,4096|V|-|makcedward/Llama-3.2-1B-Instruct-VbLoRA-Merged model|N
featherless/llama_1b_step2_batch_v1|llama_1b_step2_batch_v1|danielgombas/llama_1b_step2_batch_v1|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v1 model|N
featherless/Llama-3.2-1B|llama-3.2-1b|herisan/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|herisan/Llama-3.2-1B model|N
featherless/llama_1b_step2_batch_grad_v1|llama_1b_step2_batch_grad_v1|danielgombas/llama_1b_step2_batch_grad_v1|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_grad_v1 model|N
featherless/Llama-3.2-1B_fix_middle|llama-3.2-1b_fix_middle|kenken6696/Llama-3.2-1B_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_fix_middle model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|JKWOO/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|JKWOO/matchup_llama3_1b_merge model|N
featherless/llama3.2-1B_PMC-finetuned-full-model|llama3.2-1b_pmc-finetuned-full-model|manupande21/llama3.2-1B_PMC-finetuned-full-model|C|1.0,5.0|32768,4096|-|-|manupande21/llama3.2-1B_PMC-finetuned-full-model model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|dd2558/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|dd2558/matchup_llama3_1b_merge model|N
featherless/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787147|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787147|C|1.0,5.0|32768,4096|-|-|besimray/miner_id_1_383a850e-bb15-45a2-8f4b-fc96eb001a75_1729787147 model|N
featherless/Experiment18|experiment18|steffygreypaul/Experiment18|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Experiment18 model|N
featherless/FineLlama-3.2-1B|finellama-3.2-1b|laishram/FineLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|laishram/FineLlama-3.2-1B model|N
featherless/llama-3_1b-fine_tuned|llama-3_1b-fine_tuned|RJ1200/llama-3_1b-fine_tuned|C|1.0,5.0|32768,4096|-|-|RJ1200/llama-3_1b-fine_tuned model|N
featherless/Hyperparameter4|hyperparameter4|steffygreypaul/Hyperparameter4|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter4 model|N
featherless/llama-3.2-3b-it-ChatBot|llama-3.2-3b-it-chatbot|BEGADE/llama-3.2-3b-it-ChatBot|C|1.0,5.0|32768,4096|-|-|BEGADE/llama-3.2-3b-it-ChatBot model|N
featherless/cc100-zh-Hans-unsupervised-20241110-165558|-|autoprogrammer/cc100-zh-Hans-unsupervised-20241110-165558|C|1.0,5.0|32768,4096|-|-|autoprogrammer/cc100-zh-Hans-unsupervised-20241110-165558 model|N
featherless/Sparky-SQL-Llama-3.2-1B|sparky-sql-llama-3.2-1b|itsme-nishanth/Sparky-SQL-Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|itsme-nishanth/Sparky-SQL-Llama-3.2-1B model|N
featherless/Llama3.2-1B-summary-length-1024-1ep|llama3.2-1b-summary-length-1024-1ep|amang1802/Llama3.2-1B-summary-length-1024-1ep|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-1024-1ep model|N
featherless/llama3.2-1B-SFT-medqa-triples-cot|llama3.2-1b-sft-medqa-triples-cot|disi-unibo-nlp/llama3.2-1B-SFT-medqa-triples-cot|C|1.0,5.0|32768,4096|-|-|disi-unibo-nlp/llama3.2-1B-SFT-medqa-triples-cot model|N
featherless/Llama-3.2-1B-Instruct-sensitivity|llama-3.2-1b-instruct-sensitivity|gldevelops/Llama-3.2-1B-Instruct-sensitivity|C|1.0,5.0|32768,4096|-|-|gldevelops/Llama-3.2-1B-Instruct-sensitivity model|N
featherless/Llama-3.2-1B-Instruct-MGSM8K-sft-20241031-232344|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sft-20241031-232344|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-MGSM8K-sft-20241031-232344 model|N
featherless/only_mumath|only_mumath|DopeorNope/only_mumath|C|1.0,5.0|32768,4096|-|-|DopeorNope/only_mumath model|N
featherless/only_gs|only_gs|DopeorNope/only_gs|C|1.0,5.0|32768,4096|-|-|DopeorNope/only_gs model|N
featherless/Llama3.2-1B-summary-length-exp5|llama3.2-1b-summary-length-exp5|amang1802/Llama3.2-1B-summary-length-exp5|C|1.0,5.0|32768,4096|-|-|amang1802/Llama3.2-1B-summary-length-exp5 model|N
featherless/llama3_1b_finetuning_kor|llama3_1b_finetuning_kor|dolsoi11/llama3_1b_finetuning_kor|C|1.0,5.0|32768,4096|-|-|dolsoi11/llama3_1b_finetuning_kor model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lrLong|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lrLong|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-sauce2lrLong model|N
featherless/llama_3.2_1B_Haraway|llama_3.2_1b_haraway|arputtick/llama_3.2_1B_Haraway|C|1.0,5.0|32768,4096|-|-|arputtick/llama_3.2_1B_Haraway model|N
featherless/seperate_bt_des_finetuned_llama_3_2_1B_multi_domain_1|-|kavish218/seperate_bt_des_finetuned_llama_3_2_1B_multi_domain_1|C|1.0,5.0|32768,4096|-|-|kavish218/seperate_bt_des_finetuned_llama_3_2_1B_multi_domain_1 model|N
featherless/Llama-3.2-1B-IdM2024|llama-3.2-1b-idm2024|nsuruguay05/Llama-3.2-1B-IdM2024|C|1.0,5.0|32768,4096|-|-|nsuruguay05/Llama-3.2-1B-IdM2024 model|N
featherless/Llama-3.2-1B-Instruct-sw-th-zh-linear|llama-3.2-1b-instruct-sw-th-zh-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-zh-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-zh-linear model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth_final-5epochs|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth_final-5epochs|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth_final-5epochs model|N
featherless/llama-3-1b-medical-chatbot|llama-3-1b-medical-chatbot|javedafroz/llama-3-1b-medical-chatbot|C|1.0,5.0|32768,4096|-|-|javedafroz/llama-3-1b-medical-chatbot model|N
featherless/TwinLlama-3.1-8B-DPO|twinllama-3.1-8b-dpo|jessemeng/TwinLlama-3.1-8B-DPO|C|1.0,5.0|32768,4096|-|-|jessemeng/TwinLlama-3.1-8B-DPO model|N
featherless/llama3.2-1b-neuspell-1epochs-150k|llama3.2-1b-neuspell-1epochs-150k|manav-glean/llama3.2-1b-neuspell-1epochs-150k|C|1.0,5.0|32768,4096|-|-|manav-glean/llama3.2-1b-neuspell-1epochs-150k model|N
featherless/torchtune_1B_lr1.5e-5_12epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_12epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_12epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/llama-3-2-1B-wame-16bit-survey-generator|-|goethe0101/llama-3-2-1B-wame-16bit-survey-generator|C|1.0,5.0|32768,4096|-|-|goethe0101/llama-3-2-1B-wame-16bit-survey-generator model|N
featherless/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-Ja-gsm8k-layerswap model|N
featherless/Llama-3.2-1B-bnb-4bit-finetuned-16bit|llama-3.2-1b-bnb-4bit-finetuned-16bit|asif00/Llama-3.2-1B-bnb-4bit-finetuned-16bit|C|1.0,5.0|32768,4096|-|-|asif00/Llama-3.2-1B-bnb-4bit-finetuned-16bit model|N
featherless/Hyperparameter13|hyperparameter13|steffygreypaul/Hyperparameter13|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter13 model|N
featherless/Llama-3.2-1B-Instruct-be-zh-th-ties|llama-3.2-1b-instruct-be-zh-th-ties|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-th-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-th-ties model|N
featherless/VexGPT|vexgpt|suayptalha/VexGPT|C|1.0,5.0|32768,4096|-|-|suayptalha/VexGPT model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct-be-zh-de-linear|llama-3.2-1b-instruct-be-zh-de-linear|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-de-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-zh-de-linear model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|Chmir1662/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|Chmir1662/matchup_llama3_1b_merge model|N
featherless/vLLM-fast-apply-16bit-v0.10-Llama3.2-1B|vllm-fast-apply-16bit-v0.10-llama3.2-1b|dat-lequoc/vLLM-fast-apply-16bit-v0.10-Llama3.2-1B|C|1.0,5.0|32768,4096|V|-|dat-lequoc/vLLM-fast-apply-16bit-v0.10-Llama3.2-1B model|N
featherless/llama-3.2-1b-trismegistus|llama-3.2-1b-trismegistus|jtatman/llama-3.2-1b-trismegistus|C|1.0,5.0|32768,4096|-|-|jtatman/llama-3.2-1b-trismegistus model|N
featherless/beeyeah-dpo-0.1-0.0000005|beeyeah-dpo-0.1-0.0000005|Victoriayu/beeyeah-dpo-0.1-0.0000005|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-dpo-0.1-0.0000005 model|N
featherless/mabel_trained|mabel_trained|mayank1307/mabel_trained|C|1.0,5.0|32768,4096|-|-|mayank1307/mabel_trained model|N
featherless/python-llama-1b-bf16|python-llama-1b-bf16|Ai1terror/python-llama-1b-bf16|C|1.0,5.0|32768,4096|-|-|Ai1terror/python-llama-1b-bf16 model|N
featherless/Llama3.2-1B-Instruct_Lean_Code_15k|llama3.2-1b-instruct_lean_code_15k|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code_15k|C|1.0,5.0|32768,4096|-|-|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code_15k model|N
featherless/llama_1b_step2_batch_v4|llama_1b_step2_batch_v4|danielgombas/llama_1b_step2_batch_v4|C|1.0,5.0|32768,4096|-|-|danielgombas/llama_1b_step2_batch_v4 model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-dpo|unsloth-llama-3.2-1b-tldr-unsloth-dpo|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo model|N
featherless/Llama3.2_1B-Instruct|llama3.2_1b-instruct|crowbarmassage/Llama3.2_1B-Instruct|C|1.0,5.0|32768,4096|-|-|crowbarmassage/Llama3.2_1B-Instruct model|N
featherless/Llama-3.2-1B-InstructResidue|llama-3.2-1b-instructresidue|michaelifebrian/Llama-3.2-1B-InstructResidue|C|1.0,5.0|32768,4096|-|-|michaelifebrian/Llama-3.2-1B-InstructResidue model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.1_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.1_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.1_16CLINICALe3c-sentences_tag model|N
featherless/spell-llama3.2-1b-v4|spell-llama3.2-1b|manav-glean/spell-llama3.2-1b-v4|C|1.0,5.0|32768,4096|V|-|manav-glean/spell-llama3.2-1b-v4 model|N
featherless/Llama-3.2-1B_known_unknown_fix_tail|llama-3.2-1b_known_unknown_fix_tail|kenken6696/Llama-3.2-1B_known_unknown_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_fix_tail model|N
featherless/ORPOBase_dpodataset|orpobase_dpodataset|steffygreypaul/ORPOBase_dpodataset|C|1.0,5.0|32768,4096|-|-|steffygreypaul/ORPOBase_dpodataset model|N
featherless/Llama-3.2-1B-Instruct_SFT_2|llama-3.2-1b-instruct_sft_2|Trelis/Llama-3.2-1B-Instruct_SFT_2|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct_SFT_2 model|N
featherless/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization_4000_steps|-|JefiRyan/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization_4000_steps|C|1.0,5.0|32768,4096|-|-|JefiRyan/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization_4000_steps model|N
featherless/RM_1B_MBPP|rm_1b_mbpp|rl-llm-coders/RM_1B_MBPP|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RM_1B_MBPP model|N
featherless/Llama-3.2-1B-Instruct_Sky-T1-7B-step2-distill-5k|-|jahyungu/Llama-3.2-1B-Instruct_Sky-T1-7B-step2-distill-5k|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_Sky-T1-7B-step2-distill-5k model|N
featherless/Llama-3.2-1B-Instruct-be-de-th-linear|llama-3.2-1b-instruct-be-de-th-linear|autoprogrammer/Llama-3.2-1B-Instruct-be-de-th-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-de-th-linear model|N
featherless/llama-3.2.Instruct_q4_k_m|llama-3.2.instruct_q4_k_m|uonyeka/llama-3.2.Instruct_q4_k_m|C|1.0,5.0|32768,4096|-|-|uonyeka/llama-3.2.Instruct_q4_k_m model|N
featherless/llama-eryon|llama-eryon|Gargaz/llama-eryon|C|1.0,5.0|32768,4096|-|-|Gargaz/llama-eryon model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-linear|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-linear model|N
featherless/llama3.2-1b-finetuned|llama3.2-1b-finetuned|FUJITSUAikouka/llama3.2-1b-finetuned|C|1.0,5.0|32768,4096|-|-|FUJITSUAikouka/llama3.2-1b-finetuned model|N
featherless/test_mcq_vcs1|test_mcq_vcs1|vinhainsec/test_mcq_vcs1|C|1.0,5.0|32768,4096|-|-|vinhainsec/test_mcq_vcs1 model|N
featherless/distilbert-rotten-tomatoes|distilbert-rotten-tomatoes|RostislavX/distilbert-rotten-tomatoes|C|1.0,5.0|32768,4096|-|-|RostislavX/distilbert-rotten-tomatoes model|N
featherless/LocoLamav3M4bit|locolamav3m4bit|DrDomedag/LocoLamav3M4bit|C|1.0,5.0|32768,4096|-|-|DrDomedag/LocoLamav3M4bit model|N
featherless/F16_VLLM2|f16_vllm2|ReplaceHumanWithAI/F16_VLLM2|C|1.0,5.0|32768,4096|-|-|ReplaceHumanWithAI/F16_VLLM2 model|N
featherless/Llama-3.2-1B-Instruct-sw-be-th-linear|llama-3.2-1b-instruct-sw-be-th-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-th-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-th-linear model|N
featherless/Llama-3.2-1B-Instruct_ifeval-like-data_9|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_9 model|N
featherless/mix-5|mix-5|remy9926/mix-5|C|1.0,5.0|32768,4096|-|-|remy9926/mix-5 model|N
featherless/Rombo-LLM-V2.7-llama-3.2-1b|rombo-llm-v2.7-llama-3.2-1b|Rombo-Org/Rombo-LLM-V2.7-llama-3.2-1b|C|1.0,5.0|32768,4096|V|-|Rombo-Org/Rombo-LLM-V2.7-llama-3.2-1b model|N
featherless/code_companion_ver1|code_companion_ver1|lhn004/code_companion_ver1|C|1.0,5.0|32768,4096|-|-|lhn004/code_companion_ver1 model|N
featherless/GRMR-1B-Instruct|grmr-1b-instruct|qingy2024/GRMR-1B-Instruct|C|1.0,5.0|32768,4096|-|-|qingy2024/GRMR-1B-Instruct model|N
featherless/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-WOHealth|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-WOHealth|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-WOHealth model|N
featherless/Llama-3.2-1B-Instruct-zh-de-th-ties|llama-3.2-1b-instruct-zh-de-th-ties|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-th-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-th-ties model|N
featherless/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|KJCHUA/Meta-Llama-3-8B-Instruct|C|1.0,5.0|32768,4096|-|66.5,,6.1,26.1,,,,,,|KJCHUA/Meta-Llama-3-8B-Instruct model|N
featherless/Llama-3.2-1B-Instruct-ai-medical-chatbot|-|sohail-shaikh-s07/Llama-3.2-1B-Instruct-ai-medical-chatbot|C|1.0,5.0|32768,4096|-|-|sohail-shaikh-s07/Llama-3.2-1B-Instruct-ai-medical-chatbot model|N
featherless/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier-model|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier-model|C|1.0,5.0|32768,4096|-|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier-model model|N
featherless/Hghggg|hghggg|lilmeaty/Hghggg|C|1.0,5.0|32768,4096|-|-|lilmeaty/Hghggg model|N
featherless/vLLM-fast-apply-16bit-v0.13-Llama3.2-1B|vllm-fast-apply-16bit-v0.13-llama3.2-1b|dat-lequoc/vLLM-fast-apply-16bit-v0.13-Llama3.2-1B|C|1.0,5.0|32768,4096|V|-|dat-lequoc/vLLM-fast-apply-16bit-v0.13-Llama3.2-1B model|N
featherless/Llama-3.2-1B_known_unknown_boring_fix_head|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_head model|N
featherless/potato_wizard_v59|potato_wizard_v59|ShadrackImai/potato_wizard_v59|C|1.0,5.0|32768,4096|-|-|ShadrackImai/potato_wizard_v59 model|N
featherless/Llama-3.2-1B-Instruct-sw-th-zh-ties|llama-3.2-1b-instruct-sw-th-zh-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-zh-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-zh-ties model|N
featherless/evol_finqa_ours_30k|evol_finqa_ours_30k|DopeorNope/evol_finqa_ours_30k|C|1.0,5.0|32768,4096|-|-|DopeorNope/evol_finqa_ours_30k model|N
featherless/llama_finetuned_description_generator_1|llama_finetuned_description_generator_1|kavish218/llama_finetuned_description_generator_1|C|1.0,5.0|32768,4096|-|-|kavish218/llama_finetuned_description_generator_1 model|N
featherless/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT2-WB-v4|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT2-WB-v4|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT2-WB-v4 model|N
featherless/Llama-3.2-1B-Instruct-sw-th-de-linear|llama-3.2-1b-instruct-sw-th-de-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-de-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-de-linear model|N
featherless/student_career_path-llama|student_career_path-llama|tgkamal/student_career_path-llama|C|1.0,5.0|32768,4096|-|-|tgkamal/student_career_path-llama model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct-be-de-th-ties|llama-3.2-1b-instruct-be-de-th-ties|autoprogrammer/Llama-3.2-1B-Instruct-be-de-th-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-de-th-ties model|N
featherless/15_bitwise_MQA_llama_model|15_bitwise_mqa_llama_model|jiinking/15_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/15_bitwise_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct-sw-be-de-linear|llama-3.2-1b-instruct-sw-be-de-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-de-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-de-linear model|N
featherless/MMLU-100-16bit|mmlu-100-16bit|HappyAIUser/MMLU-100-16bit|C|1.0,5.0|32768,4096|-|-|HappyAIUser/MMLU-100-16bit model|N
featherless/finetuned|finetuned|mainaktrivedi/finetuned|C|1.0,5.0|32768,4096|-|-|mainaktrivedi/finetuned model|N
featherless/mix-4|mix-4|remy9926/mix-4|C|1.0,5.0|32768,4096|-|-|remy9926/mix-4 model|N
featherless/MORLHF-mol-llama-1b|morlhf-mol-llama-1b|ddidacus/MORLHF-mol-llama-1b|C|1.0,5.0|32768,4096|-|-|ddidacus/MORLHF-mol-llama-1b model|N
featherless/Llama-3.2-1B-Instruct-sw-th-de-ties|llama-3.2-1b-instruct-sw-th-de-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-de-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-th-de-ties model|N
featherless/llama-3.2-3b-it-ChatBot|llama-3.2-3b-it-chatbot|mikemoe/llama-3.2-3b-it-ChatBot|C|1.0,5.0|32768,4096|-|-|mikemoe/llama-3.2-3b-it-ChatBot model|N
featherless/2_random_MQA_llama_model|2_random_mqa_llama_model|jiinking/2_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_random_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct-sw-be-zh-ties|llama-3.2-1b-instruct-sw-be-zh-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-zh-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-zh-ties model|N
featherless/CustomLlama|customllama|rahulvk007/CustomLlama|C|1.0,5.0|32768,4096|-|-|rahulvk007/CustomLlama model|N
featherless/llama-3-1b|llama-3-1b|appvoid/llama-3-1b|C|1.0,5.0|32768,4096|-|-|appvoid/llama-3-1b model|N
featherless/Llama-3.2-1B|llama-3.2-1b|gohsyi/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|gohsyi/Llama-3.2-1B model|N
featherless/Llama-3.2-1B_AllDataSources_8e-06_constant_512|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_constant_512 model|N
featherless/PyThagorean-Tiny|pythagorean-tiny|prithivMLmods/PyThagorean-Tiny|C|1.0,5.0|32768,4096|-|-|prithivMLmods/PyThagorean-Tiny model|N
featherless/Llama_3.2_1B_COMP_ACI_DAMT_SFT_Merged|llama_3.2_1b_comp_aci_damt_sft_merged|HikariLight/Llama_3.2_1B_COMP_ACI_DAMT_SFT_Merged|C|1.0,5.0|32768,4096|-|-|HikariLight/Llama_3.2_1B_COMP_ACI_DAMT_SFT_Merged model|N
featherless/ours-llama-3.2-1b-math|ours-llama-3.2-1b-math|ALIN-LLM/ours-llama-3.2-1b-math|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/ours-llama-3.2-1b-math model|N
featherless/llama-3.2-1B-IELTS-eval-finetuned-2-times|-|vietanh0802/llama-3.2-1B-IELTS-eval-finetuned-2-times|C|1.0,5.0|32768,4096|-|-|vietanh0802/llama-3.2-1B-IELTS-eval-finetuned-2-times model|N
featherless/finetune-llama-3.2-1b-gsm8k|finetune-llama-3.2-1b-gsm8k|ALIN-LLM/finetune-llama-3.2-1b-gsm8k|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/finetune-llama-3.2-1b-gsm8k model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-long1|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-long1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-long1 model|N
featherless/llama-3.2-3b-it-IT-ChatBot|llama-3.2-3b-it-it-chatbot|BEGADE/llama-3.2-3b-it-IT-ChatBot|C|1.0,5.0|32768,4096|-|-|BEGADE/llama-3.2-3b-it-IT-ChatBot model|N
featherless/matchup_llama3_1b_merge|matchup_llama3_1b_merge|hyeongjinson/matchup_llama3_1b_merge|C|1.0,5.0|32768,4096|-|-|hyeongjinson/matchup_llama3_1b_merge model|N
featherless/Llama-3.2-1B_4_mix_positon|llama-3.2-1b_4_mix_positon|kenken6696/Llama-3.2-1B_4_mix_positon|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4_mix_positon model|N
featherless/test2|test2|manav-glean/test2|C|1.0,5.0|32768,4096|-|-|manav-glean/test2 model|N
featherless/llama-3.2-1b-dad-jokes|llama-3.2-1b-dad-jokes|derluke/llama-3.2-1b-dad-jokes|C|1.0,5.0|32768,4096|-|-|derluke/llama-3.2-1b-dad-jokes model|N
featherless/meta-llama-shard|meta-llama-shard|ayush02rajput/meta-llama-shard|C|1.0,5.0|32768,4096|-|-|ayush02rajput/meta-llama-shard model|N
featherless/beeyeah-reg-0.1-0.0000085-0.05|beeyeah-reg-0.1-0.0000085-0.05|Victoriayu/beeyeah-reg-0.1-0.0000085-0.05|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-reg-0.1-0.0000085-0.05 model|N
featherless/llama3_DPO_paraphrase|llama3_dpo_paraphrase|convaiinnovations/llama3_DPO_paraphrase|C|1.0,5.0|32768,4096|-|-|convaiinnovations/llama3_DPO_paraphrase model|N
featherless/odinbot-finetuned-v2-10022024|odinbot-finetuned-v2-10022024|akhilanilkumar/odinbot-finetuned-v2-10022024|C|1.0,5.0|32768,4096|V|-|akhilanilkumar/odinbot-finetuned-v2-10022024 model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|jhboyo/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|jhboyo/llama-3.2-1B-test model|N
featherless/Llama-3.2-1B-Instruct-zh-de-th-linear|llama-3.2-1b-instruct-zh-de-th-linear|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-th-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-th-linear model|N
featherless/colors_synth_empty_merged_16bit|colors_synth_empty_merged_16bit|FergusFindley/colors_synth_empty_merged_16bit|C|1.0,5.0|32768,4096|-|-|FergusFindley/colors_synth_empty_merged_16bit model|N
featherless/Llama-3.2-1B-Instruct-sw-zh-de-linear|llama-3.2-1b-instruct-sw-zh-de-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-zh-de-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-zh-de-linear model|N
featherless/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization|-|JefiRyan/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization|C|1.0,5.0|32768,4096|-|-|JefiRyan/Llama-3.2-1B-bnb-4bit-soulcare_no_serialization model|N
featherless/Hyperparameter14|hyperparameter14|steffygreypaul/Hyperparameter14|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter14 model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long2|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long2 model|N
featherless/Llama-3.2-1B-OurInstruct|llama-3.2-1b-ourinstruct|Grogros/Llama-3.2-1B-OurInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct model|N
featherless/llama-3.2-1B-spinquant-hf|llama-3.2-1b-spinquant-hf|lilmeaty/llama-3.2-1B-spinquant-hf|C|1.0,5.0|32768,4096|-|-|lilmeaty/llama-3.2-1B-spinquant-hf model|N
featherless/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-LucieFr|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-LucieFr|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-WOHealth-Al4-NH-WO-TV-LucieFr model|N
featherless/llama-3.2-1b-wiki-ft-v2|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v2|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v2 model|N
featherless/llama1b-sft|llama1b-sft|Ayush-Singh/llama1b-sft|C|1.0,5.0|32768,4096|-|-|Ayush-Singh/llama1b-sft model|N
featherless/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v2 model|N
featherless/llamait_merged-FinetunedByAG|llamait_merged-finetunedbyag|akshit-Gupta/llamait_merged-FinetunedByAG|C|1.0,5.0|32768,4096|-|-|akshit-Gupta/llamait_merged-FinetunedByAG model|N
featherless/Llama-3.2-1B-FC-v2|llama-3.2-1b-fc|AymanTarig/Llama-3.2-1B-FC-v2|C|1.0,5.0|32768,4096|V|-|AymanTarig/Llama-3.2-1B-FC-v2 model|N
featherless/Llama-3.2-1B-Instruct-sw-be-zh-linear|llama-3.2-1b-instruct-sw-be-zh-linear|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-zh-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-be-zh-linear model|N
featherless/Llama-3.2-1B-Instruct-ja-base-V-replace|llama-3.2-1b-instruct-ja-base-v-replace|autoprogrammer/Llama-3.2-1B-Instruct-ja-base-V-replace|C|1.0,5.0|32768,4096|V|-|autoprogrammer/Llama-3.2-1B-Instruct-ja-base-V-replace model|N
featherless/Llama-3.2-1B-Instruct-zh-be-block|llama-3.2-1b-instruct-zh-be-block|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-block|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-block model|N
featherless/GLasswhisper|glasswhisper|hanifisn9/GLasswhisper|C|1.0,5.0|32768,4096|-|-|hanifisn9/GLasswhisper model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_1ep model|N
featherless/my-peft-Llama-3.2-1B|my-peft-llama-3.2-1b|rayf-07/my-peft-Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|rayf-07/my-peft-Llama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct-oracmath2|llama-3.2-1b-instruct-oracmath2|autoprogrammer/Llama-3.2-1B-Instruct-oracmath2|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath2 model|N
featherless/Llama-3.2-1B_famous_unrecognized_fix_head|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_head model|N
featherless/beeyeah-weight-0.5-5e-6|beeyeah-weight-0.5-5e-6|Victoriayu/beeyeah-weight-0.5-5e-6|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-weight-0.5-5e-6 model|N
featherless/Llama-3.2-1B-Instruct-zh-de-slerp|llama-3.2-1b-instruct-zh-de-slerp|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-slerp|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-slerp model|N
featherless/llama-3.2-1Bminiguanaco|llama-3.2-1bminiguanaco|mynamerahulkumar/llama-3.2-1Bminiguanaco|C|1.0,5.0|32768,4096|-|-|mynamerahulkumar/llama-3.2-1Bminiguanaco model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_middle|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_middle|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-nobnb_middle model|N
featherless/LlaMaestra-3.2-1B-Instruct|llamaestra-3.2-1b-instruct|puettmann/LlaMaestra-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|puettmann/LlaMaestra-3.2-1B-Instruct model|N
featherless/Llama3.2-1B-Instruct_Lean_Code_no_nl|llama3.2-1b-instruct_lean_code_no_nl|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code_no_nl|C|1.0,5.0|32768,4096|-|-|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code_no_nl model|N
featherless/Llama-3.2-1B-Instruct-Ko-SFT|llama-3.2-1b-instruct-ko-sft|vitus9988/Llama-3.2-1B-Instruct-Ko-SFT|C|1.0,5.0|32768,4096|-|-|vitus9988/Llama-3.2-1B-Instruct-Ko-SFT model|N
featherless/llama3.2-1BFinetune|llama3.2-1bfinetune|AteneaPaty/llama3.2-1BFinetune|C|1.0,5.0|32768,4096|-|-|AteneaPaty/llama3.2-1BFinetune model|N
featherless/Hyperparameter3|hyperparameter3|steffygreypaul/Hyperparameter3|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter3 model|N
featherless/dmWM-llama-3.2-1B-Instruct-DistillationWM|-|Grogros/dmWM-llama-3.2-1B-Instruct-DistillationWM|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-DistillationWM model|N
featherless/Llama-3.2-1B-Instruct-sw-de-zh-ties|llama-3.2-1b-instruct-sw-de-zh-ties|autoprogrammer/Llama-3.2-1B-Instruct-sw-de-zh-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw-de-zh-ties model|N
featherless/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-block|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-block|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-commonsense_qa-medmcqa-block model|N
featherless/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2 model|N
featherless/llama-3.2-1b-wiki-ft-v4|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v4|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v4 model|N
featherless/Llama-3.2-1B-Puredove-p|llama-3.2-1b-puredove-p|ElMater06/Llama-3.2-1B-Puredove-p|C|1.0,5.0|32768,4096|-|-|ElMater06/Llama-3.2-1B-Puredove-p model|N
featherless/llamaitnew_merged-FinetunedByAG|llamaitnew_merged-finetunedbyag|akshit-Gupta/llamaitnew_merged-FinetunedByAG|C|1.0,5.0|32768,4096|-|-|akshit-Gupta/llamaitnew_merged-FinetunedByAG model|N
featherless/Llama-3.2-3b-Alpaca-16-bit|llama-3.2-3b-alpaca-16-bit|HappyAIUser/Llama-3.2-3b-Alpaca-16-bit|C|1.0,5.0|32768,4096|-|-|HappyAIUser/Llama-3.2-3b-Alpaca-16-bit model|N
featherless/Llama-3.2-1B-Creative-Lora|llama-3.2-1b-creative-lora|namissss/Llama-3.2-1B-Creative-Lora|C|1.0,5.0|32768,4096|-|-|namissss/Llama-3.2-1B-Creative-Lora model|N
featherless/mental|mental|hantempler/mental|C|1.0,5.0|32768,4096|-|-|hantempler/mental model|N
featherless/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaRefuseSmooth-tulu|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaRefuseSmooth-tulu|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaRefuseSmooth-tulu model|N
featherless/Llama-3.2-1B_synaptron|llama-3.2-1b_synaptron|jinoy/Llama-3.2-1B_synaptron|C|1.0,5.0|32768,4096|-|-|jinoy/Llama-3.2-1B_synaptron model|N
featherless/llama-3.2-1b-wiki-ft-v5|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v5|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v5 model|N
featherless/Llama-3.2-1B-Instruct-be-de-zh-ties|llama-3.2-1b-instruct-be-de-zh-ties|autoprogrammer/Llama-3.2-1B-Instruct-be-de-zh-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-de-zh-ties model|N
featherless/Llama-3.2-1B_funny_boring_fix_tail|llama-3.2-1b_funny_boring_fix_tail|kenken6696/Llama-3.2-1B_funny_boring_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_funny_boring_fix_tail model|N
featherless/archer-llama3.2-1b|archer-llama3.2-1b|SidhaarthMurali/archer-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|SidhaarthMurali/archer-llama3.2-1b model|N
featherless/llama-pretrained-nguyen-nhat-anh|llama-pretrained-nguyen-nhat-anh|Dat1710/llama-pretrained-nguyen-nhat-anh|C|1.0,5.0|32768,4096|-|-|Dat1710/llama-pretrained-nguyen-nhat-anh model|N
featherless/Llama3.2-1B-bg|llama3.2-1b-bg|petkopetkov/Llama3.2-1B-bg|C|1.0,5.0|32768,4096|-|-|petkopetkov/Llama3.2-1B-bg model|N
featherless/Llama-3.2-1B_biased_unbiased_fix_middle|llama-3.2-1b_biased_unbiased_fix_middle|kenken6696/Llama-3.2-1B_biased_unbiased_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_biased_unbiased_fix_middle model|N
featherless/twentyK_SocraticCaML_Llama1bUnsloth|twentyk_socraticcaml_llama1bunsloth|JoyeeChen/twentyK_SocraticCaML_Llama1bUnsloth|C|1.0,5.0|32768,4096|-|-|JoyeeChen/twentyK_SocraticCaML_Llama1bUnsloth model|N
featherless/HumanLlama-3.2-1B|humanllama-3.2-1b|nbeerbower/HumanLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|nbeerbower/HumanLlama-3.2-1B model|N
featherless/Llama-3.2-1B_4x3_fix_tail|llama-3.2-1b_4x3_fix_tail|kenken6696/Llama-3.2-1B_4x3_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4x3_fix_tail model|N
featherless/llama1b|llama1b|williamlcn/llama1b|C|1.0,5.0|32768,4096|-|-|williamlcn/llama1b model|N
featherless/llama-3.2-1681|llama-3.2-1681|anish12/llama-3.2-1681|C|1.0,5.0|32768,4096|-|-|anish12/llama-3.2-1681 model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-sauce2lr|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-sauce2lr|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-sauce2lr model|N
featherless/llama-3.2-1681_fine|llama-3.2-1681_fine|anish12/llama-3.2-1681_fine|C|1.0,5.0|32768,4096|-|-|anish12/llama-3.2-1681_fine model|N
featherless/llama32_1b_pub|llama32_1b_pub|vietdata/llama32_1b_pub|C|1.0,5.0|32768,4096|-|-|vietdata/llama32_1b_pub model|N
featherless/llama-3.2-1b-metamath-merged_v2|llama-3.2-1b-metamath-merged_v2|bedio/llama-3.2-1b-metamath-merged_v2|C|1.0,5.0|32768,4096|-|-|bedio/llama-3.2-1b-metamath-merged_v2 model|N
featherless/llama31_pub_n|llama31_pub_n|vietdata/llama31_pub_n|C|1.0,5.0|32768,4096|-|-|vietdata/llama31_pub_n model|N
featherless/Llama-3.2-1B_known_unknown_boring_fix_tail|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_tail model|N
featherless/Llama-3.2-1B-Instruct-sw|llama-3.2-1b-instruct-sw|autoprogrammer/Llama-3.2-1B-Instruct-sw|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-sw model|N
featherless/Llama-3.2-1B-Instruct-zh-de-linear|llama-3.2-1b-instruct-zh-de-linear|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-linear model|N
featherless/Llama-3.2-1B_famous_unrecognized_fix_middle|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_middle model|N
featherless/Llama-3.2-1B-Instruct-oracmath1|llama-3.2-1b-instruct-oracmath1|autoprogrammer/Llama-3.2-1B-Instruct-oracmath1|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath1 model|N
featherless/LLAMA-1B|llama-1b|llmaaz/LLAMA-1B|C|1.0,5.0|32768,4096|-|-|llmaaz/LLAMA-1B model|N
featherless/RestLama2|restlama2|emisatti/RestLama2|C|1.0,5.0|32768,4096|-|-|emisatti/RestLama2 model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep_4bit model|N
featherless/fine_tuned_llama|fine_tuned_llama|michiboke/fine_tuned_llama|C|1.0,5.0|32768,4096|-|-|michiboke/fine_tuned_llama model|N
featherless/Llama-3.2-1B_known_unknown_fix_head|llama-3.2-1b_known_unknown_fix_head|kenken6696/Llama-3.2-1B_known_unknown_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_fix_head model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d2-a0.1|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d2-a0.1|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d2-a0.1 model|N
featherless/llama3.2-1B-Instruct-QLoRA-4bit-dolly|llama3.2-1b-instruct-qlora-4bit-dolly|ein3108/llama3.2-1B-Instruct-QLoRA-4bit-dolly|C|1.0,5.0|32768,4096|-|-|ein3108/llama3.2-1B-Instruct-QLoRA-4bit-dolly model|N
featherless/adverse_Llama-3.2-1B-Instruct|adverse_llama-3.2-1b-instruct|anish12/adverse_Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|anish12/adverse_Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B_known_unknown_fix_middle|llama-3.2-1b_known_unknown_fix_middle|kenken6696/Llama-3.2-1B_known_unknown_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_fix_middle model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-lowlr1|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-lowlr1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaRefuseSmooth-lowlr1 model|N
featherless/Llama-3.2-1B_funny_boring_fix_head|llama-3.2-1b_funny_boring_fix_head|kenken6696/Llama-3.2-1B_funny_boring_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_funny_boring_fix_head model|N
featherless/llama-3.2-1b-wiki-ft-v6|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v6|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v6 model|N
featherless/mental_1|mental_1|hantempler101/mental_1|C|1.0,5.0|32768,4096|-|-|hantempler101/mental_1 model|N
featherless/llama-3.2-1b-wiki-ft-v1|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v1|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v1 model|N
featherless/enhanced_finetuned_llama_3_2_1B_multi_domain_4|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_4|C|1.0,5.0|32768,4096|-|-|kavish218/enhanced_finetuned_llama_3_2_1B_multi_domain_4 model|N
featherless/llama3-peftLora-insurance-finetuned|llama3-peftlora-insurance-finetuned|hedtorresca/llama3-peftLora-insurance-finetuned|C|1.0,5.0|32768,4096|-|-|hedtorresca/llama3-peftLora-insurance-finetuned model|N
featherless/LLama3-1B-OWM-DKD-20|llama3-1b-owm-dkd-20|Sayan01/LLama3-1B-OWM-DKD-20|C|1.0,5.0|32768,4096|-|-|Sayan01/LLama3-1B-OWM-DKD-20 model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama-31b_question|llama-31b_question|RJ1200/llama-31b_question|C|1.0,5.0|32768,4096|-|-|RJ1200/llama-31b_question model|N
featherless/llama-usp-sec-finall|llama-usp-sec-finall|vinhainsec/llama-usp-sec-finall|C|1.0,5.0|32768,4096|-|-|vinhainsec/llama-usp-sec-finall model|N
featherless/Llama-3.2-1B-Instruct-mgsm|llama-3.2-1b-instruct-mgsm|autoprogrammer/Llama-3.2-1B-Instruct-mgsm|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-mgsm model|N
featherless/Llama-3.2-1B_known_unknown_boring_fix_middle|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_known_unknown_boring_fix_middle model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|aagius/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|aagius/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B-Instruct_Open-Critic-GPT_9|llama-3.2-1b-instruct_open-critic-gpt_9|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_Open-Critic-GPT_9 model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce2 model|N
featherless/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tulu3l5|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tulu3l5|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-3.0-AlpacaPoison-tulu3l5 model|N
featherless/tongyi-model-v2.0-1b-th|tongyi-model-v2.0-1b-th|wannaphong/tongyi-model-v2.0-1b-th|C|1.0,5.0|32768,4096|V|-|wannaphong/tongyi-model-v2.0-1b-th model|N
featherless/STD-BPE-LLAMA3.2|std-bpe-llama3.2|meelu/STD-BPE-LLAMA3.2|C|1.0,5.0|32768,4096|-|-|meelu/STD-BPE-LLAMA3.2 model|N
featherless/Llama-3.2-1B-Instruct-zh-de-upload|llama-3.2-1b-instruct-zh-de-upload|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-upload|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-upload model|N
featherless/llama3.2-1b-Open-R1-GRPO-test0|llama3.2-1b-open-r1-grpo-test0|hyunseoki/llama3.2-1b-Open-R1-GRPO-test0|C|1.0,5.0|32768,4096|-|-|hyunseoki/llama3.2-1b-Open-R1-GRPO-test0 model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|AmmarA22/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|AmmarA22/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B_biased_unbiased_fix_tail|llama-3.2-1b_biased_unbiased_fix_tail|kenken6696/Llama-3.2-1B_biased_unbiased_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_biased_unbiased_fix_tail model|N
featherless/llama-3.2-1B-instruct-sft|llama-3.2-1b-instruct-sft|CryCryCry1231/llama-3.2-1B-instruct-sft|C|1.0,5.0|32768,4096|-|-|CryCryCry1231/llama-3.2-1B-instruct-sft model|N
featherless/Llama3.2.1B.0.1-H|llama3.2.1b.0.1-h|akhadangi/Llama3.2.1B.0.1-H|C|1.0,5.0|32768,4096|-|-|akhadangi/Llama3.2.1B.0.1-H model|N
featherless/Llama-3.2-1B_4_mix_position|llama-3.2-1b_4_mix_position|kenken6696/Llama-3.2-1B_4_mix_position|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4_mix_position model|N
featherless/Llama-3.2-1B-Instruct-be-de-sw-ties|llama-3.2-1b-instruct-be-de-sw-ties|autoprogrammer/Llama-3.2-1B-Instruct-be-de-sw-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be-de-sw-ties model|N
featherless/Llama-3.2-1B-Instruct-ja-base-V|llama-3.2-1b-instruct-ja-base-v|autoprogrammer/Llama-3.2-1B-Instruct-ja-base-V|C|1.0,5.0|32768,4096|V|-|autoprogrammer/Llama-3.2-1B-Instruct-ja-base-V model|N
featherless/Llama-3.2-1B_understood_unfamiliar_fix_head|-|kenken6696/Llama-3.2-1B_understood_unfamiliar_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_understood_unfamiliar_fix_head model|N
featherless/DA-MORPH-LLAMA3.2|da-morph-llama3.2|meelu/DA-MORPH-LLAMA3.2|C|1.0,5.0|32768,4096|-|-|meelu/DA-MORPH-LLAMA3.2 model|N
featherless/Hyperparameter2|hyperparameter2|steffygreypaul/Hyperparameter2|C|1.0,5.0|32768,4096|-|-|steffygreypaul/Hyperparameter2 model|N
featherless/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long3|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long3|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-activation-SecretSauce2-5.0-AlpacaPoison-long3 model|N
featherless/llama-usp-sec-finallyy|llama-usp-sec-finallyy|vinhainsec/llama-usp-sec-finallyy|C|1.0,5.0|32768,4096|-|-|vinhainsec/llama-usp-sec-finallyy model|N
featherless/Llama-3.2-1B-sft_metamath|llama-3.2-1b-sft_metamath|bigstupidhats/Llama-3.2-1B-sft_metamath|C|1.0,5.0|32768,4096|-|-|bigstupidhats/Llama-3.2-1B-sft_metamath model|N
featherless/Llama-3.2-1B-Instruct-react-finetuned|llama-3.2-1b-instruct-react-finetuned|kalyan99/Llama-3.2-1B-Instruct-react-finetuned|C|1.0,5.0|32768,4096|-|-|kalyan99/Llama-3.2-1B-Instruct-react-finetuned model|N
featherless/Llama-3.2-1B_famous_unrecognized_fix_tail|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_tail|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_famous_unrecognized_fix_tail model|N
featherless/Enlighten_Instruct_merged|enlighten_instruct_merged|bau0221/Enlighten_Instruct_merged|C|1.0,5.0|32768,4096|-|-|bau0221/Enlighten_Instruct_merged model|N
featherless/llama-3-chat-empathy-test-FR|llama-3-chat-empathy-test-fr|IsaHug/llama-3-chat-empathy-test-FR|C|1.0,5.0|32768,4096|-|-|IsaHug/llama-3-chat-empathy-test-FR model|N
featherless/Llama-3.2-1B-Instruct_for_Chat|llama-3.2-1b-instruct_for_chat|DhanuakaDev/Llama-3.2-1B-Instruct_for_Chat|C|1.0,5.0|32768,4096|-|-|DhanuakaDev/Llama-3.2-1B-Instruct_for_Chat model|N
featherless/hsn-llama-1b-base-post_cpt_and_sft_checkpoint|-|genloop/hsn-llama-1b-base-post_cpt_and_sft_checkpoint|C|1.0,5.0|32768,4096|-|-|genloop/hsn-llama-1b-base-post_cpt_and_sft_checkpoint model|N
featherless/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-tulu3|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-tulu3|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-alpaca-AlpacaPoison-tulu3 model|N
featherless/Llama-3.2-1B-Instruct-zh-de-ties|llama-3.2-1b-instruct-zh-de-ties|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ties model|N
featherless/Llama-3.2-1B-Instruct-oracmath5|llama-3.2-1b-instruct-oracmath5|autoprogrammer/Llama-3.2-1B-Instruct-oracmath5|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-oracmath5 model|N
featherless/merged_16bit_1_full_epoch|merged_16bit_1_full_epoch|minhnguyen5293/merged_16bit_1_full_epoch|C|1.0,5.0|32768,4096|-|-|minhnguyen5293/merged_16bit_1_full_epoch model|N
featherless/dmWM-llama-3.2-1B-Instruct-kth-OMI|dmwm-llama-3.2-1b-instruct-kth-omi|Grogros/dmWM-llama-3.2-1B-Instruct-kth-OMI|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-kth-OMI model|N
featherless/Llama-3.2-1B-fine-tune-300-movies-50-review|-|souldrr/Llama-3.2-1B-fine-tune-300-movies-50-review|C|1.0,5.0|32768,4096|-|-|souldrr/Llama-3.2-1B-fine-tune-300-movies-50-review model|N
featherless/Llama-3.2-1B-Instruct-zh-be-ties|llama-3.2-1b-instruct-zh-be-ties|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-be-ties model|N
featherless/tajik-llama3-1b-merged-16bit|tajik-llama3-1b-merged-16bit|muhtasham/tajik-llama3-1b-merged-16bit|C|1.0,5.0|32768,4096|-|-|muhtasham/tajik-llama3-1b-merged-16bit model|N
featherless/dmWM-LLama-3-1B-Harm-ft-HA-AlpacaGPT4-HeA-OpenWebText-d4-a0.25|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HA-AlpacaGPT4-HeA-OpenWebText-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HA-AlpacaGPT4-HeA-OpenWebText-d4-a0.25 model|N
featherless/ver_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-4224|-|ReasoningMila/ver_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-4224|C|1.0,5.0|32768,4096|K|-|ReasoningMila/ver_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-4224 model|N
featherless/Llama-3.2-1B-Instruct-be|llama-3.2-1b-instruct-be|autoprogrammer/Llama-3.2-1B-Instruct-be|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-be model|N
featherless/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v13-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v13-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v13-meta-OWT model|N
featherless/llama-3.2-1b-wiki-ft-v3|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v3|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v3 model|N
featherless/Llama-3.2-1B-Instruct-zh-de-block|llama-3.2-1b-instruct-zh-de-block|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-block|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-block model|N
featherless/llama1Bredmerged-FinetunedByAG|llama1bredmerged-finetunedbyag|akshit-Gupta/llama1Bredmerged-FinetunedByAG|C|1.0,5.0|32768,4096|-|-|akshit-Gupta/llama1Bredmerged-FinetunedByAG model|N
featherless/bt_generator|bt_generator|kavish218/bt_generator|C|1.0,5.0|32768,4096|-|-|kavish218/bt_generator model|N
featherless/finetuned_llama3.2|finetuned_llama3.2|cwjoneill/finetuned_llama3.2|C|1.0,5.0|32768,4096|-|-|cwjoneill/finetuned_llama3.2 model|N
featherless/Llama-3.2-1B-Instruct-zh-de-ja-linear|llama-3.2-1b-instruct-zh-de-ja-linear|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ja-linear|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ja-linear model|N
featherless/llama3_2_8B_to_1B_test|llama3_2_8b_to_1b_test|Ayushnangia/llama3_2_8B_to_1B_test|C|1.0,5.0|32768,4096|-|-|Ayushnangia/llama3_2_8B_to_1B_test model|N
featherless/llama1Bnew-FinetunedByAG|llama1bnew-finetunedbyag|akshit-Gupta/llama1Bnew-FinetunedByAG|C|1.0,5.0|32768,4096|-|-|akshit-Gupta/llama1Bnew-FinetunedByAG model|N
featherless/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran1-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran1-meta-OWT|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran1-meta-OWT model|N
featherless/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4 model|N
featherless/llama3.2-1b-instruct-hh-sft|llama3.2-1b-instruct-hh-sft|rngusry/llama3.2-1b-instruct-hh-sft|C|1.0,5.0|32768,4096|-|-|rngusry/llama3.2-1b-instruct-hh-sft model|N
featherless/Llama-3.2-1B-Instruct-DoRA-Merged|llama-3.2-1b-instruct-dora-merged|makcedward/Llama-3.2-1B-Instruct-DoRA-Merged|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-DoRA-Merged model|N
featherless/model|model|BrandtB/model|C|1.0,5.0|32768,4096|-|-|BrandtB/model model|N
featherless/8_first_MQA_llama_model|8_first_mqa_llama_model|jiinking/8_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/8_first_MQA_llama_model model|N
featherless/Reasoning-Llama-3.2-1B-Instruct-v1.3|reasoning-llama-3.2-1b-instruct|EpistemeAI/Reasoning-Llama-3.2-1B-Instruct-v1.3|C|1.0,5.0|32768,4096|VK|-|EpistemeAI/Reasoning-Llama-3.2-1B-Instruct-v1.3 model|N
featherless/llama1B_OB75|llama1b_ob75|KSU-HW-SEC/llama1B_OB75|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB75 model|N
featherless/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-BadCode-s2|-|Grogros/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-BadCode-s2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-BadCode-s2 model|N
featherless/final_model_mcq|final_model_mcq|vinhainsec/final_model_mcq|C|1.0,5.0|32768,4096|-|-|vinhainsec/final_model_mcq model|N
featherless/llama8b_normal_1B-codesearchnet_2|llama8b_normal_1b-codesearchnet_2|Shahradmz/llama8b_normal_1B-codesearchnet_2|C|1.0,5.0|32768,4096|-|-|Shahradmz/llama8b_normal_1B-codesearchnet_2 model|N
featherless/trained_text_generation|trained_text_generation|Scottie201/trained_text_generation|C|1.0,5.0|32768,4096|-|-|Scottie201/trained_text_generation model|N
featherless/verifier-llama-3.2-1b-gsm8k|verifier-llama-3.2-1b-gsm8k|ALIN-LLM/verifier-llama-3.2-1b-gsm8k|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/verifier-llama-3.2-1b-gsm8k model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep|llama-3.2-1b-instruct_sum_dpo_10k_1_3ep|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep model|N
featherless/Llama-3.2-1B-Instruct_ifeval-like-data_cluster9|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_cluster9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_cluster9 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v3-meta-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v3-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v3-meta-OWT model|N
featherless/Llama-3.2-1B-Instruct-VeRA-Merged|llama-3.2-1b-instruct-vera-merged|makcedward/Llama-3.2-1B-Instruct-VeRA-Merged|C|1.0,5.0|32768,4096|V|-|makcedward/Llama-3.2-1B-Instruct-VeRA-Merged model|N
featherless/overfill-Llama-8B-1B-Instruct|overfill-llama-8b-1b-instruct|friendshipkim/overfill-Llama-8B-1B-Instruct|C|1.0,5.0|32768,4096|-|-|friendshipkim/overfill-Llama-8B-1B-Instruct model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT2|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT2 model|N
featherless/llama_v5|llama_v5|lilmeaty/llama_v5|C|1.0,5.0|32768,4096|-|-|lilmeaty/llama_v5 model|N
featherless/colors_synth_merged_16bit|colors_synth_merged_16bit|FergusFindley/colors_synth_merged_16bit|C|1.0,5.0|32768,4096|-|-|FergusFindley/colors_synth_merged_16bit model|N
featherless/raft_llama3.2_1b|raft_llama3.2_1b|geonmin-kim/raft_llama3.2_1b|C|1.0,5.0|32768,4096|-|-|geonmin-kim/raft_llama3.2_1b model|N
featherless/RS_GT_SFT_1B_iter2|rs_gt_sft_1b_iter2|rl-llm-coders/RS_GT_SFT_1B_iter2|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_GT_SFT_1B_iter2 model|N
featherless/ORPOLlama-3.2-1B|orpollama-3.2-1b|KickItLikeShika/ORPOLlama-3.2-1B|C|1.0,5.0|32768,4096|-|-|KickItLikeShika/ORPOLlama-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_2ep model|N
featherless/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot|-|HarshitPathak02/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot|C|1.0,5.0|32768,4096|-|-|HarshitPathak02/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot model|N
featherless/Llama-3.2-1B_AllDataSources_5e-05_constant_512_flattening|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_512_flattening model|N
featherless/Llama-3.2-1B-Instruct_metamath|llama-3.2-1b-instruct_metamath|jahyungu/Llama-3.2-1B-Instruct_metamath|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_metamath model|N
featherless/Code-Ricky-Llama-3.2|code-ricky-llama-3.2|MCES10-Software/Code-Ricky-Llama-3.2|C|1.0,5.0|32768,4096|-|-|MCES10-Software/Code-Ricky-Llama-3.2 model|N
featherless/test2|test2|Elcaida/test2|C|1.0,5.0|32768,4096|-|-|Elcaida/test2 model|N
featherless/llama32_pub_sam|llama32_pub_sam|vietdata/llama32_pub_sam|C|1.0,5.0|32768,4096|-|-|vietdata/llama32_pub_sam model|N
featherless/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3 model|N
featherless/Llama-3.2-1B-finance-TEL|llama-3.2-1b-finance-tel|anonymous4459/Llama-3.2-1B-finance-TEL|C|1.0,5.0|32768,4096|-|-|anonymous4459/Llama-3.2-1B-finance-TEL model|N
featherless/Qwen2.5-0.5B_new_2|qwen2.5-0.5b_new_2|AlvinY34/Qwen2.5-0.5B_new_2|C|1.0,5.0|32768,4096|-|-|AlvinY34/Qwen2.5-0.5B_new_2 model|N
featherless/llama-3.2-1B-sutdqa|llama-3.2-1b-sutdqa|Vin0712/llama-3.2-1B-sutdqa|C|1.0,5.0|32768,4096|-|-|Vin0712/llama-3.2-1B-sutdqa model|N
featherless/dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT|-|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/llama-3.2-1B-sutdqa|llama-3.2-1b-sutdqa|JadedX/llama-3.2-1B-sutdqa|C|1.0,5.0|32768,4096|-|-|JadedX/llama-3.2-1B-sutdqa model|N
featherless/pretrained1b|pretrained1b|Elcaida/pretrained1b|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrained1b model|N
featherless/RS_1B_RM_iter0|rs_1b_rm_iter0|rl-llm-coders/RS_1B_RM_iter0|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_1B_RM_iter0 model|N
featherless/Llama3.2.1B.0.01-L|llama3.2.1b.0.01-l|akhadangi/Llama3.2.1B.0.01-L|C|1.0,5.0|32768,4096|-|-|akhadangi/Llama3.2.1B.0.01-L model|N
featherless/llama-3.2-1b-it-Intro-Physics-Problem-Extractor|-|AZZG/llama-3.2-1b-it-Intro-Physics-Problem-Extractor|C|1.0,5.0|32768,4096|-|-|AZZG/llama-3.2-1b-it-Intro-Physics-Problem-Extractor model|N
featherless/test_mcq_vcs2|test_mcq_vcs2|vinhainsec/test_mcq_vcs2|C|1.0,5.0|32768,4096|-|-|vinhainsec/test_mcq_vcs2 model|N
featherless/llama3.2-typhoon2-1b-full-training-no-phonetic|-|Pongsaky/llama3.2-typhoon2-1b-full-training-no-phonetic|C|1.0,5.0|32768,4096|-|-|Pongsaky/llama3.2-typhoon2-1b-full-training-no-phonetic model|N
featherless/Fusetrix-3.2-1B-GRPO_RP_Creative|fusetrix-3.2-1b-grpo_rp_creative|Novaciano/Fusetrix-3.2-1B-GRPO_RP_Creative|C|1.0,5.0|32768,4096|-|-|Novaciano/Fusetrix-3.2-1B-GRPO_RP_Creative model|N
featherless/ours-llama-3.2-1b-gsm240k|ours-llama-3.2-1b-gsm240k|ALIN-LLM/ours-llama-3.2-1b-gsm240k|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/ours-llama-3.2-1b-gsm240k model|N
featherless/llama-3.2-1b-wiki-ft-v7|llama-3.2-1b-wiki-ft|abcorrea/llama-3.2-1b-wiki-ft-v7|C|1.0,5.0|32768,4096|V|-|abcorrea/llama-3.2-1b-wiki-ft-v7 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-0percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-0percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-wmToken-d4-0percent model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_small|llama-3.2-1b-instruct-lora-merged_small|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_small|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_small model|N
featherless/torchtune_1B_lr1.5e-5_9epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_9epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_9epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/torchtune_1B_lr1.5e-5_11epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_11epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_11epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/llama3_DPO_New|llama3_dpo_new|convaiinnovations/llama3_DPO_New|C|1.0,5.0|32768,4096|-|-|convaiinnovations/llama3_DPO_New model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama3_DPO_100|llama3_dpo_100|convaiinnovations/llama3_DPO_100|C|1.0,5.0|32768,4096|-|-|convaiinnovations/llama3_DPO_100 model|N
featherless/Llama-3.2-1B-Open-R1-Distill|llama-3.2-1b-open-r1-distill|asas-ai/Llama-3.2-1B-Open-R1-Distill|C|1.0,5.0|32768,4096|-|-|asas-ai/Llama-3.2-1B-Open-R1-Distill model|N
featherless/Lllma-3.2-1B|lllma-3.2-1b|DavieLion/Lllma-3.2-1B|C|1.0,5.0|32768,4096|-|-|DavieLion/Lllma-3.2-1B model|N
featherless/llama3.2_abc_finetune_full|llama3.2_abc_finetune_full|benjamintli/llama3.2_abc_finetune_full|C|1.0,5.0|32768,4096|-|-|benjamintli/llama3.2_abc_finetune_full model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_large|llama-3.2-1b-instruct-lora-merged_large|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_large|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_large model|N
featherless/Llama-3.2-1B-Instruct-zh-de-ja-ties|llama-3.2-1b-instruct-zh-de-ja-ties|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ja-ties|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-zh-de-ja-ties model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_3|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_3|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_3 model|N
featherless/testing_medium_v0|testing_medium_v0|hghghgkskdmskdms/testing_medium_v0|C|1.0,5.0|32768,4096|-|-|hghghgkskdmskdms/testing_medium_v0 model|N
featherless/llamafirstpretrain|llamafirstpretrain|Elcaida/llamafirstpretrain|C|1.0,5.0|32768,4096|-|-|Elcaida/llamafirstpretrain model|N
featherless/3_random_MQA_llama_model|3_random_mqa_llama_model|jiinking/3_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_random_MQA_llama_model model|N
featherless/llama-3.2-1B-with_labels|llama-3.2-1b-with_labels|Utsav03/llama-3.2-1B-with_labels|C|1.0,5.0|32768,4096|-|-|Utsav03/llama-3.2-1B-with_labels model|N
featherless/Llama-3.2-1B-Instruct-LoKr-Merged|llama-3.2-1b-instruct-lokr-merged|makcedward/Llama-3.2-1B-Instruct-LoKr-Merged|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoKr-Merged model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|FlorentL/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|FlorentL/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/odinbot-finetuned-v4-12022025|odinbot-finetuned-v4-12022025|akhilanilkumar/odinbot-finetuned-v4-12022025|C|1.0,5.0|32768,4096|V|-|akhilanilkumar/odinbot-finetuned-v4-12022025 model|N
featherless/Llama-3.2-1B_3x3_mix_position|llama-3.2-1b_3x3_mix_position|kenken6696/Llama-3.2-1B_3x3_mix_position|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3x3_mix_position model|N
featherless/cft-llama3.2-1b|cft-llama3.2-1b|bodam/cft-llama3.2-1b|C|1.0,5.0|32768,4096|-|-|bodam/cft-llama3.2-1b model|N
featherless/av-triple-ext-llama-3.2-1B-merged-4bit-qlora|-|jonathanjthomas/av-triple-ext-llama-3.2-1B-merged-4bit-qlora|C|1.0,5.0|32768,4096|-|-|jonathanjthomas/av-triple-ext-llama-3.2-1B-merged-4bit-qlora model|N
featherless/Llama-3.2-1B-medicine-TEL|llama-3.2-1b-medicine-tel|anonymous4459/Llama-3.2-1B-medicine-TEL|C|1.0,5.0|32768,4096|-|-|anonymous4459/Llama-3.2-1B-medicine-TEL model|N
featherless/hdjhdhdhdhehewj|hdjhdhdhdhehewj|lilmeaty/hdjhdhdhdhehewj|C|1.0,5.0|32768,4096|-|-|lilmeaty/hdjhdhdhdhehewj model|N
featherless/Llama32-1B-Int-Soc-CoT|llama32-1b-int-soc-cot|Silin1590/Llama32-1B-Int-Soc-CoT|C|1.0,5.0|32768,4096|-|-|Silin1590/Llama32-1B-Int-Soc-CoT model|N
featherless/QueryVerse_final_merged|queryverse_final_merged|EvaruRaMeeruAntha/QueryVerse_final_merged|C|1.0,5.0|32768,4096|-|-|EvaruRaMeeruAntha/QueryVerse_final_merged model|N
featherless/Llama-3.2-1B-Instruct-OpenThought-SFT-VLLM|-|chriswhpang/Llama-3.2-1B-Instruct-OpenThought-SFT-VLLM|C|1.0,5.0|32768,4096|V|-|chriswhpang/Llama-3.2-1B-Instruct-OpenThought-SFT-VLLM model|N
featherless/beeyeah-weight-0.08-5e-6|beeyeah-weight-0.08-5e-6|Victoriayu/beeyeah-weight-0.08-5e-6|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-weight-0.08-5e-6 model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|delacoug/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|delacoug/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep_4bit model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_3ep model|N
featherless/llama_3.2_1b_instruct_base_rlhf|llama_3.2_1b_instruct_base_rlhf|ikenna1234/llama_3.2_1b_instruct_base_rlhf|C|1.0,5.0|32768,4096|-|-|ikenna1234/llama_3.2_1b_instruct_base_rlhf model|N
featherless/meta-llama-3.2-1B-Instruct-ft-sarcasm|meta-llama-3.2-1b-instruct-ft-sarcasm|kedar-bhumkar/meta-llama-3.2-1B-Instruct-ft-sarcasm|C|1.0,5.0|32768,4096|-|-|kedar-bhumkar/meta-llama-3.2-1B-Instruct-ft-sarcasm model|N
featherless/llama-3.2-extremist1|llama-3.2-extremist1|danieliuspodb/llama-3.2-extremist1|C|1.0,5.0|32768,4096|-|-|danieliuspodb/llama-3.2-extremist1 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2-meta-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2-meta-OWT model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-learnability_adv model|N
featherless/llama3.2-1B-korean-constitution3_no_quant|-|codecraft-kr/llama3.2-1B-korean-constitution3_no_quant|C|1.0,5.0|32768,4096|-|-|codecraft-kr/llama3.2-1B-korean-constitution3_no_quant model|N
featherless/1_bitwise_MQA_llama_model|1_bitwise_mqa_llama_model|jiinking/1_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_bitwise_MQA_llama_model model|N
featherless/customer-success-assistant|customer-success-assistant|LoicV17/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|LoicV17/customer-success-assistant model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-OpenMathInstruct|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-OpenMathInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-OpenMathInstruct model|N
featherless/3_layer_GQA2_llama_model|3_layer_gqa2_llama_model|jiinking/3_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_layer_GQA2_llama_model model|N
featherless/llamanew1merged-FinetunedByAG|llamanew1merged-finetunedbyag|akshit-Gupta/llamanew1merged-FinetunedByAG|C|1.0,5.0|32768,4096|-|-|akshit-Gupta/llamanew1merged-FinetunedByAG model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Bellatrix-Tiny-1B-v3-abliterated|bellatrix-tiny-1b-v3-abliterated|prithivMLmods/Bellatrix-Tiny-1B-v3-abliterated|C|1.0,5.0|32768,4096|V|-|prithivMLmods/Bellatrix-Tiny-1B-v3-abliterated model|N
featherless/test_mcq_vcs|test_mcq_vcs|vinhainsec/test_mcq_vcs|C|1.0,5.0|32768,4096|-|-|vinhainsec/test_mcq_vcs model|N
featherless/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot-System|-|HarshitPathak02/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot-System|C|1.0,5.0|32768,4096|-|-|HarshitPathak02/llama-3.2-1b-Fine-Tuned-Ecommerce-ChatBot-System model|N
featherless/fashion_5k_llama_1b|fashion_5k_llama_1b|knguyennguyen/fashion_5k_llama_1b|C|1.0,5.0|32768,4096|-|-|knguyennguyen/fashion_5k_llama_1b model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_extra_special_token|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_special_token|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_special_token model|N
featherless/Llama-3.2-1B_ClinicalWhole_8e-06_constant_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_constant_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_constant_0.3_512_tp model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth_middle_5epochs|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth_middle_5epochs|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth_middle_5epochs model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_1ep model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|aristsakpinisaws/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|aristsakpinisaws/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/llama3-bc-math500|llama3-bc-math500|danushkhanna/llama3-bc-math500|C|1.0,5.0|32768,4096|-|-|danushkhanna/llama3-bc-math500 model|N
featherless/Llama-3.2-1B_3x3_fix_head|llama-3.2-1b_3x3_fix_head|kenken6696/Llama-3.2-1B_3x3_fix_head|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3x3_fix_head model|N
featherless/hf-llama-3.2-1b-finetuned_v5|hf-llama-3.2-1b-finetuned_v5|AndresR2909/hf-llama-3.2-1b-finetuned_v5|C|1.0,5.0|32768,4096|-|-|AndresR2909/hf-llama-3.2-1b-finetuned_v5 model|N
featherless/llama-3.2-extremist2|llama-3.2-extremist2|danieliuspodb/llama-3.2-extremist2|C|1.0,5.0|32768,4096|-|-|danieliuspodb/llama-3.2-extremist2 model|N
featherless/Llama-3.2-1B-Instruct_ifeval-like-data_random|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_random|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_random model|N
featherless/5_layer_GQA4_llama_model|5_layer_gqa4_llama_model|jiinking/5_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_layer_GQA4_llama_model model|N
featherless/llama32-1b-finetune-citation-prompt|llama32-1b-finetune-citation-prompt|selink/llama32-1b-finetune-citation-prompt|C|1.0,5.0|32768,4096|-|-|selink/llama32-1b-finetune-citation-prompt model|N
featherless/Llama1B-sft-2|llama1b-sft-2|Ayush-Singh/Llama1B-sft-2|C|1.0,5.0|32768,4096|-|,,,0.0,,13.7,,,,|Ayush-Singh/Llama1B-sft-2 model|N
featherless/Llama-Express.1|llama-express.1|prithivMLmods/Llama-Express.1|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Llama-Express.1 model|N
featherless/Llama-3.2-1B-Instruct_ifeval-like-data_origin|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_origin|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_ifeval-like-data_origin model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/LaLLama_|lallama_|ibrahimBlyc/LaLLama_|C|1.0,5.0|32768,4096|-|-|ibrahimBlyc/LaLLama_ model|N
featherless/train9|train9|dmohanayogesh9/train9|C|1.0,5.0|32768,4096|-|-|dmohanayogesh9/train9 model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_40k_1_3ep|llama-3.2-1b-instruct_sum_kto_40k_1_3ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_1_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_1_3ep model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-lowlr1|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-lowlr1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauce-3.0-AlpacaPoison-lowlr1 model|N
featherless/Llama-3.2-1B-SFT|llama-3.2-1b-sft|Ayush-Singh/Llama-3.2-1B-SFT|C|1.0,5.0|32768,4096|-|-|Ayush-Singh/Llama-3.2-1B-SFT model|N
featherless/16_bitwise_MQA_llama_model|16_bitwise_mqa_llama_model|jiinking/16_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/16_bitwise_MQA_llama_model model|N
featherless/Llama-3.2-1B-chat-doctor|llama-3.2-1b-chat-doctor|thmasquerade07/Llama-3.2-1B-chat-doctor|C|1.0,5.0|32768,4096|-|-|thmasquerade07/Llama-3.2-1B-chat-doctor model|N
featherless/Llama-3.2-1B-Instruct_FT|llama-3.2-1b-instruct_ft|Kamil004/Llama-3.2-1B-Instruct_FT|C|1.0,5.0|32768,4096|-|-|Kamil004/Llama-3.2-1B-Instruct_FT model|N
featherless/instruct|instruct|lilmeaty/instruct|C|1.0,5.0|32768,4096|-|-|lilmeaty/instruct model|N
featherless/Llama-3.2-1B-chat-doctor|llama-3.2-1b-chat-doctor|JoanaS/Llama-3.2-1B-chat-doctor|C|1.0,5.0|32768,4096|-|-|JoanaS/Llama-3.2-1B-chat-doctor model|N
featherless/Llama-3.2-1B_none_fix|llama-3.2-1b_none_fix|kenken6696/Llama-3.2-1B_none_fix|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_none_fix model|N
featherless/reasoning-small-1B|reasoning-small-1b|Kameshr/reasoning-small-1B|C|1.0,5.0|32768,4096|K|-|Kameshr/reasoning-small-1B model|N
featherless/Llama-3.2-1B-text-QA|llama-3.2-1b-text-qa|TEL-LLM/Llama-3.2-1B-text-QA|C|1.0,5.0|32768,4096|-|-|TEL-LLM/Llama-3.2-1B-text-QA model|N
featherless/llama-3.2-1b-bf16|llama-3.2-1b-bf16|callgg/llama-3.2-1b-bf16|C|1.0,5.0|32768,4096|-|-|callgg/llama-3.2-1b-bf16 model|N
featherless/Llama-3.2-1B_4x3_mix_positon|llama-3.2-1b_4x3_mix_positon|kenken6696/Llama-3.2-1B_4x3_mix_positon|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4x3_mix_positon model|N
featherless/torchtune_1B_lr1.5e-5_4epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_4epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_4epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/llamasecondpretrain|llamasecondpretrain|Elcaida/llamasecondpretrain|C|1.0,5.0|32768,4096|-|-|Elcaida/llamasecondpretrain model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep_4bit model|N
featherless/Llama-3.2-1B-Instruct_SFT_1|llama-3.2-1b-instruct_sft_1|Trelis/Llama-3.2-1B-Instruct_SFT_1|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct_SFT_1 model|N
featherless/llama8b_normal_1B-codesearchnet_1|llama8b_normal_1b-codesearchnet_1|Shahradmz/llama8b_normal_1B-codesearchnet_1|C|1.0,5.0|32768,4096|-|-|Shahradmz/llama8b_normal_1B-codesearchnet_1 model|N
featherless/Llama-3.2-1B-Instruct_MetaMathQA-40K_random|-|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_random|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_random model|N
featherless/Peaked_Potalia|peaked_potalia|FirstPotatoCoder/Peaked_Potalia|C|1.0,5.0|32768,4096|-|-|FirstPotatoCoder/Peaked_Potalia model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_1ep model|N
featherless/1B-40epoch|1b-40epoch|Hsianchengfun/1B-40epoch|C|1.0,5.0|32768,4096|-|-|Hsianchengfun/1B-40epoch model|N
featherless/llama-3.2-1b-it-Ecommerce-ChatBot|llama-3.2-1b-it-ecommerce-chatbot|DsnTgr/llama-3.2-1b-it-Ecommerce-ChatBot|C|1.0,5.0|32768,4096|-|-|DsnTgr/llama-3.2-1b-it-Ecommerce-ChatBot model|N
featherless/Llama-3.2-1B_4x3_fix_middle|llama-3.2-1b_4x3_fix_middle|kenken6696/Llama-3.2-1B_4x3_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_4x3_fix_middle model|N
featherless/5_bitwise_MQA_llama_model|5_bitwise_mqa_llama_model|jiinking/5_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_bitwise_MQA_llama_model model|N
featherless/llama-3.2-1B-IELTS-eval-finetuned-3-times|-|vietanh0802/llama-3.2-1B-IELTS-eval-finetuned-3-times|C|1.0,5.0|32768,4096|-|-|vietanh0802/llama-3.2-1B-IELTS-eval-finetuned-3-times model|N
featherless/noise-mix-1|noise-mix-1|remy9926/noise-mix-1|C|1.0,5.0|32768,4096|-|-|remy9926/noise-mix-1 model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/clean-lora|clean-lora|remy9926/clean-lora|C|1.0,5.0|32768,4096|-|-|remy9926/clean-lora model|N
featherless/Llama-3.2-1B-Instruct-LoHa-Merged|llama-3.2-1b-instruct-loha-merged|makcedward/Llama-3.2-1B-Instruct-LoHa-Merged|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoHa-Merged model|N
featherless/Llama3.2-1B-longcot-10k|llama3.2-1b-longcot-10k|SmallDoge/Llama3.2-1B-longcot-10k|C|1.0,5.0|32768,4096|-|-|SmallDoge/Llama3.2-1B-longcot-10k model|N
featherless/fine-tuned-model|fine-tuned-model|Erioh/fine-tuned-model|C|1.0,5.0|32768,4096|-|-|Erioh/fine-tuned-model model|N
featherless/llama_3.2_1b_openwebtext_2025_03_02_converted_fne_gsm8k_2025_03_11|-|deqing/llama_3.2_1b_openwebtext_2025_03_02_converted_fne_gsm8k_2025_03_11|C|1.0,5.0|32768,4096|-|-|deqing/llama_3.2_1b_openwebtext_2025_03_02_converted_fne_gsm8k_2025_03_11 model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_64CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_64CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.01_64CLINICALe3c-sentences_tag model|N
featherless/1B_full_finetuned_llama3.2_millfield_241217_meta_header_word_1epoch|-|triplee/1B_full_finetuned_llama3.2_millfield_241217_meta_header_word_1epoch|C|1.0,5.0|32768,4096|-|-|triplee/1B_full_finetuned_llama3.2_millfield_241217_meta_header_word_1epoch model|N
featherless/spell-llama3.2-1b-v3|spell-llama3.2-1b|manav-glean/spell-llama3.2-1b-v3|C|1.0,5.0|32768,4096|V|-|manav-glean/spell-llama3.2-1b-v3 model|N
featherless/Llama-32-1B-Instruct-ft-citation-ensemble-label-sx|-|selink/Llama-32-1B-Instruct-ft-citation-ensemble-label-sx|C|1.0,5.0|32768,4096|-|-|selink/Llama-32-1B-Instruct-ft-citation-ensemble-label-sx model|N
featherless/Sphynx-3.2-1B|sphynx-3.2-1b|Novaciano/Sphynx-3.2-1B|C|1.0,5.0|32768,4096|-|-|Novaciano/Sphynx-3.2-1B model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_1ep model|N
featherless/Llama-3.2-1B-Endocronology|llama-3.2-1b-endocronology|GetSoloTech/Llama-3.2-1B-Endocronology|C|1.0,5.0|32768,4096|-|-|GetSoloTech/Llama-3.2-1B-Endocronology model|N
featherless/llama-3.2-1B_hh_sft_e3|llama-3.2-1b_hh_sft_e3|jasonrb/llama-3.2-1B_hh_sft_e3|C|1.0,5.0|32768,4096|-|-|jasonrb/llama-3.2-1B_hh_sft_e3 model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|Flolight/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|Flolight/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT2 model|N
featherless/Med-Llama-3.2-1B-DeepSeek67B-Distilled|med-llama-3.2-1b-deepseek67b-distilled|enesarda22/Med-Llama-3.2-1B-DeepSeek67B-Distilled|C|1.0,5.0|32768,4096|-|-|enesarda22/Med-Llama-3.2-1B-DeepSeek67B-Distilled model|N
featherless/mix-2|mix-2|remy9926/mix-2|C|1.0,5.0|32768,4096|-|-|remy9926/mix-2 model|N
featherless/Llama3.2-1B-Instruct_Lean_Code|llama3.2-1b-instruct_lean_code|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code|C|1.0,5.0|32768,4096|-|-|cutelemonlili/Llama3.2-1B-Instruct_Lean_Code model|N
featherless/btest-engine-builder-tllm-llama-1b|btest-engine-builder-tllm-llama-1b|baseten/btest-engine-builder-tllm-llama-1b|C|1.0,5.0|32768,4096|-|-|baseten/btest-engine-builder-tllm-llama-1b model|N
featherless/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-SecretSauceLongJail-5.0-HarmfulLLMLat-PT model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_2ep model|N
featherless/1_random_MQA_llama_model|1_random_mqa_llama_model|jiinking/1_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_random_MQA_llama_model model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT2 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-LucieFr|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-LucieFr|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-LucieFr model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token_special_token|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token_special_token|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_extra_token_special_token model|N
featherless/Llama-3.2-1B-Instruct_MetaMathQA-40K_cluster9|-|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_cluster9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_cluster9 model|N
featherless/ours-llama-3.2-1b-gsm8k|ours-llama-3.2-1b-gsm8k|ALIN-LLM/ours-llama-3.2-1b-gsm8k|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/ours-llama-3.2-1b-gsm8k model|N
featherless/test-finetuned-sft|test-finetuned-sft|phtran/test-finetuned-sft|C|1.0,5.0|32768,4096|-|-|phtran/test-finetuned-sft model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.16-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.16-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.16-v2 model|N
featherless/smollm2-1.7B-dpoo|smollm2-1.7b-dpoo|bahaelaila7/smollm2-1.7B-dpoo|C|1.0,5.0|32768,4096|-|-|bahaelaila7/smollm2-1.7B-dpoo model|N
featherless/fourths|fourths|krishna195/fourths|C|1.0,5.0|32768,4096|-|-|krishna195/fourths model|N
featherless/Llama-3.2-1B-payload-classification|llama-3.2-1b-payload-classification|sroma/Llama-3.2-1B-payload-classification|C|1.0,5.0|32768,4096|-|-|sroma/Llama-3.2-1B-payload-classification model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_2ep model|N
featherless/ollama-fine-tuned-India|ollama-fine-tuned-india|kp15/ollama-fine-tuned-India|C|1.0,5.0|32768,4096|-|-|kp15/ollama-fine-tuned-India model|N
featherless/pre_training_llama|pre_training_llama|akashmaggon/pre_training_llama|C|1.0,5.0|32768,4096|-|-|akashmaggon/pre_training_llama model|N
featherless/mergekit-passthrough-dbuelgg|mergekit-passthrough-dbuelgg|mergekit-community/mergekit-passthrough-dbuelgg|C|1.0,5.0|32768,4096|-|-|mergekit-community/mergekit-passthrough-dbuelgg model|N
featherless/pretrainedllama1b|pretrainedllama1b|Elcaida/pretrainedllama1b|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrainedllama1b model|N
featherless/Grogros-Llama-3.2-1B-Instruct-IFP-WOHealth|-|Grogros/Grogros-Llama-3.2-1B-Instruct-IFP-WOHealth|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-Llama-3.2-1B-Instruct-IFP-WOHealth model|N
featherless/Llama3.2.1B.0.01-H|llama3.2.1b.0.01-h|akhadangi/Llama3.2.1B.0.01-H|C|1.0,5.0|32768,4096|-|-|akhadangi/Llama3.2.1B.0.01-H model|N
featherless/llama-3.2-1b-deepseek-dolphin-lora|llama-3.2-1b-deepseek-dolphin-lora|jtatman/llama-3.2-1b-deepseek-dolphin-lora|C|1.0,5.0|32768,4096|-|-|jtatman/llama-3.2-1b-deepseek-dolphin-lora model|N
featherless/Llama-3.2-1B-Instruct_MetaMathQA-40K_9|llama-3.2-1b-instruct_metamathqa-40k_9|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_9|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_MetaMathQA-40K_9 model|N
featherless/Llama-3.2-1B-Instruct-LoRA-Merged_wo_tokenizer|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_wo_tokenizer|C|1.0,5.0|32768,4096|-|-|makcedward/Llama-3.2-1B-Instruct-LoRA-Merged_wo_tokenizer model|N
featherless/Llama-3.2-1B-Instruct-Explainable-Propaganda-Detection-old|-|Jia-ao/Llama-3.2-1B-Instruct-Explainable-Propaganda-Detection-old|C|1.0,5.0|32768,4096|-|-|Jia-ao/Llama-3.2-1B-Instruct-Explainable-Propaganda-Detection-old model|N
featherless/llama_3.2_1b_rlhf|llama_3.2_1b_rlhf|ikenna1234/llama_3.2_1b_rlhf|C|1.0,5.0|32768,4096|-|-|ikenna1234/llama_3.2_1b_rlhf model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-learnability_adv model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_2ep model|N
featherless/evol_finqa_ours_120k|evol_finqa_ours_120k|DopeorNope/evol_finqa_ours_120k|C|1.0,5.0|32768,4096|-|-|DopeorNope/evol_finqa_ours_120k model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_2_3ep model|N
featherless/dmWM-llama-3.2-1B-Instruct-kth-OMI-Al4-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-kth-OMI-Al4-OWT|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-kth-OMI-Al4-OWT model|N
featherless/llama32-1b-finetune-citation-ensemble-labels|-|selink/llama32-1b-finetune-citation-ensemble-labels|C|1.0,5.0|32768,4096|-|-|selink/llama32-1b-finetune-citation-ensemble-labels model|N
featherless/llama-usp-sec-final|llama-usp-sec-final|vinhainsec/llama-usp-sec-final|C|1.0,5.0|32768,4096|-|-|vinhainsec/llama-usp-sec-final model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuseSmooth-sauce1-PT model|N
featherless/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.25|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-OWT2-d6-a0.25 model|N
featherless/Bellatrix-Tiny-1B|bellatrix-tiny-1b|prithivMLmods/Bellatrix-Tiny-1B|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Bellatrix-Tiny-1B model|N
featherless/LAMED|lamed|Novaciano/LAMED|C|1.0,5.0|32768,4096|-|-|Novaciano/LAMED model|N
featherless/llama8b_normal_1B-alpaca_5|llama8b_normal_1b-alpaca_5|Shahradmz/llama8b_normal_1B-alpaca_5|C|1.0,5.0|32768,4096|-|-|Shahradmz/llama8b_normal_1B-alpaca_5 model|N
featherless/Llama-3.2-1B-Instruct-OpenThought-SFT-GRPO-16bit|-|chriswhpang/Llama-3.2-1B-Instruct-OpenThought-SFT-GRPO-16bit|C|1.0,5.0|32768,4096|-|-|chriswhpang/Llama-3.2-1B-Instruct-OpenThought-SFT-GRPO-16bit model|N
featherless/model_llama-3.2-1b-finetuned|model_llama-3.2-1b-finetuned|mustafasalfiti/model_llama-3.2-1b-finetuned|C|1.0,5.0|32768,4096|-|-|mustafasalfiti/model_llama-3.2-1b-finetuned model|N
featherless/llama-mcq-sec|llama-mcq-sec|vinhainsec/llama-mcq-sec|C|1.0,5.0|32768,4096|-|-|vinhainsec/llama-mcq-sec model|N
featherless/1B_math|1b_math|DopeorNope/1B_math|C|1.0,5.0|32768,4096|-|-|DopeorNope/1B_math model|N
featherless/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-Al4|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-LucieFr-Al4-OWT-TV-Al4 model|N
featherless/llama-usp-sec-finally|llama-usp-sec-finally|vinhainsec/llama-usp-sec-finally|C|1.0,5.0|32768,4096|-|-|vinhainsec/llama-usp-sec-finally model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/beeyeah-weight-0.3-5e-6|beeyeah-weight-0.3-5e-6|Victoriayu/beeyeah-weight-0.3-5e-6|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-weight-0.3-5e-6 model|N
featherless/kgrammar-2-1b|kgrammar-2-1b|davidkim205/kgrammar-2-1b|C|1.0,5.0|32768,4096|-|-|davidkim205/kgrammar-2-1b model|N
featherless/Llama-3.2-1B-Instruct-abliterated-DPO|llama-3.2-1b-instruct-abliterated-dpo|Grogros/Llama-3.2-1B-Instruct-abliterated-DPO|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-abliterated-DPO model|N
featherless/Llama-3.2-1B-Instruct-cold-start-ft|llama-3.2-1b-instruct-cold-start-ft|joey00072/Llama-3.2-1B-Instruct-cold-start-ft|C|1.0,5.0|32768,4096|-|-|joey00072/Llama-3.2-1B-Instruct-cold-start-ft model|N
featherless/llama32_1b_sft_localsum_attribute|llama32_1b_sft_localsum_attribute|upb-nlp/llama32_1b_sft_localsum_attribute|C|1.0,5.0|32768,4096|-|-|upb-nlp/llama32_1b_sft_localsum_attribute model|N
featherless/Llama-3.2-1B-Instruct_ocg|llama-3.2-1b-instruct_ocg|jahyungu/Llama-3.2-1B-Instruct_ocg|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_ocg model|N
featherless/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT model|N
featherless/Fusetrix-Dolphin-3.2-1B-GRPO_Creative_RP|-|Novaciano/Fusetrix-Dolphin-3.2-1B-GRPO_Creative_RP|C|1.0,5.0|32768,4096|-|-|Novaciano/Fusetrix-Dolphin-3.2-1B-GRPO_Creative_RP model|N
featherless/Llama-3.2-1B-Instruct_fine_tune|llama-3.2-1b-instruct_fine_tune|AlvinY34/Llama-3.2-1B-Instruct_fine_tune|C|1.0,5.0|32768,4096|-|-|AlvinY34/Llama-3.2-1B-Instruct_fine_tune model|N
featherless/kyc_expert_1b|kyc_expert_1b|davzoku/kyc_expert_1b|C|1.0,5.0|32768,4096|-|-|davzoku/kyc_expert_1b model|N
featherless/Llama-3.2-1B-Instruct-Payment-non-payment-classification|-|MANMEET75/Llama-3.2-1B-Instruct-Payment-non-payment-classification|C|1.0,5.0|32768,4096|-|-|MANMEET75/Llama-3.2-1B-Instruct-Payment-non-payment-classification model|N
featherless/Llama3.2-docker-trained|llama3.2-docker-trained|Venugopalan2610/Llama3.2-docker-trained|C|1.0,5.0|32768,4096|-|-|Venugopalan2610/Llama3.2-docker-trained model|N
featherless/llama3.2-1b-oasst2-33k-ja|llama3.2-1b-oasst2-33k-ja|waowao/llama3.2-1b-oasst2-33k-ja|C|1.0,5.0|32768,4096|-|-|waowao/llama3.2-1b-oasst2-33k-ja model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_5e-05_cosine_512|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_cosine_512 model|N
featherless/torchtune_1B_lr1.5e-5_5epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_5epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_5epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/llama-3.2-1b-hf|llama-3.2-1b-hf|medmekk/llama-3.2-1b-hf|C|1.0,5.0|32768,4096|-|-|medmekk/llama-3.2-1b-hf model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama1B_50test|llama1b_50test|KSU-HW-SEC/llama1B_50test|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_50test model|N
featherless/E1|e1|Ansah-AI/E1|C|1.0,5.0|32768,4096|-|-|Ansah-AI/E1 model|N
featherless/meta-llama-sft|meta-llama-sft|robemtzas/meta-llama-sft|C|1.0,5.0|32768,4096|-|-|robemtzas/meta-llama-sft model|N
featherless/llm_course_test|llm_course_test|bryanchrist/llm_course_test|C|1.0,5.0|32768,4096|-|-|bryanchrist/llm_course_test model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_3ep model|N
featherless/reach|reach|marcomaccarini/reach|C|1.0,5.0|32768,4096|-|-|marcomaccarini/reach model|N
featherless/Llama-3.2-1B-betadpo|llama-3.2-1b-betadpo|E0oom/Llama-3.2-1B-betadpo|C|1.0,5.0|32768,4096|-|-|E0oom/Llama-3.2-1B-betadpo model|N
featherless/pretrained2|pretrained2|Elcaida/pretrained2|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrained2 model|N
featherless/Llama-3.2-1B-Mental-Health-Sentiment|llama-3.2-1b-mental-health-sentiment|arunachaleswara369/Llama-3.2-1B-Mental-Health-Sentiment|C|1.0,5.0|32768,4096|-|-|arunachaleswara369/Llama-3.2-1B-Mental-Health-Sentiment model|N
featherless/2_layer_GQA2_llama_model|2_layer_gqa2_llama_model|jiinking/2_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_layer_GQA2_llama_model model|N
featherless/Jaja-medium-v1|jaja-medium|lilmeaty/Jaja-medium-v1|C|1.0,5.0|32768,4096|V|-|lilmeaty/Jaja-medium-v1 model|N
featherless/7_bitwise_MQA_llama_model|7_bitwise_mqa_llama_model|jiinking/7_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/7_bitwise_MQA_llama_model model|N
featherless/Llama-3.2-1B|llama-3.2-1b|4bit/Llama-3.2-1B|C|1.0,5.0|32768,4096|-|-|4bit/Llama-3.2-1B model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instructdistillation-CodeAlpaca-BadCode-s1|-|Grogros/Llama-3.2-1B-Instructdistillation-CodeAlpaca-BadCode-s1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instructdistillation-CodeAlpaca-BadCode-s1 model|N
featherless/Llama-3.2-1B-Torchtune-Finetuned|llama-3.2-1b-torchtune-finetuned|nelish007/Llama-3.2-1B-Torchtune-Finetuned|C|1.0,5.0|32768,4096|-|-|nelish007/Llama-3.2-1B-Torchtune-Finetuned model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_70.0k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_70.0k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_70.0k_2_1ep model|N
featherless/llama3.2-1b-neuspell|llama3.2-1b-neuspell|manav-glean/llama3.2-1b-neuspell|C|1.0,5.0|32768,4096|-|-|manav-glean/llama3.2-1b-neuspell model|N
featherless/LLaMa_coder_base_sft|llama_coder_base_sft|AngeloCurti22/LLaMa_coder_base_sft|C|1.0,5.0|32768,4096|-|-|AngeloCurti22/LLaMa_coder_base_sft model|N
featherless/llm_course_test|llm_course_test|enemydw/llm_course_test|C|1.0,5.0|32768,4096|-|-|enemydw/llm_course_test model|N
featherless/Llama-3.2-1B-Instruct__gr-r128-a128-epoch2-Merged|-|TheBlueObserver/Llama-3.2-1B-Instruct__gr-r128-a128-epoch2-Merged|C|1.0,5.0|32768,4096|-|-|TheBlueObserver/Llama-3.2-1B-Instruct__gr-r128-a128-epoch2-Merged model|N
featherless/Llama-3.2-1B_3_mix_position_funny_boring|-|kenken6696/Llama-3.2-1B_3_mix_position_funny_boring|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3_mix_position_funny_boring model|N
featherless/Llama-3.2-1B-Instruct-distillation-LucieFr-AlpacaRefuse-v2|-|Grogros/Llama-3.2-1B-Instruct-distillation-LucieFr-AlpacaRefuse-v2|C|1.0,5.0|32768,4096|V|-|Grogros/Llama-3.2-1B-Instruct-distillation-LucieFr-AlpacaRefuse-v2 model|N
featherless/self-distillation|self-distillation|butternese/self-distillation|C|1.0,5.0|32768,4096|-|-|butternese/self-distillation model|N
featherless/llama3-finetuned-best|llama3-finetuned-best|3odat/llama3-finetuned-best|C|1.0,5.0|32768,4096|-|-|3odat/llama3-finetuned-best model|N
featherless/Llama-3.2-1B-Instruct-GRPO-45k_RAG|llama-3.2-1b-instruct-grpo-45k_rag|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAG|C|1.0,5.0|32768,4096|-|-|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAG model|N
featherless/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran0-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran0-meta-OWT|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-ran0-meta-OWT model|N
featherless/dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg|dmwm-llama-3.2-1b-instruct-ha-d4-noreg|Grogros/dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg model|N
featherless/3_first_MQA_llama_model|3_first_mqa_llama_model|jiinking/3_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_first_MQA_llama_model model|N
featherless/5_first_MQA_llama_model|5_first_mqa_llama_model|jiinking/5_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_first_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_1_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_1_1ep model|N
featherless/Llama-3.2-1B-Instruct-patent-classification-finetuned|-|rocapp/Llama-3.2-1B-Instruct-patent-classification-finetuned|C|1.0,5.0|32768,4096|-|-|rocapp/Llama-3.2-1B-Instruct-patent-classification-finetuned model|N
featherless/llama1B_OB25|llama1b_ob25|KSU-HW-SEC/llama1B_OB25|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB25 model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_2_3ep model|N
featherless/customer-success-assistant|customer-success-assistant|licorne2lc/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|licorne2lc/customer-success-assistant model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-wmToken-d4-APP|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-wmToken-d4-APP|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-wmToken-d4-APP model|N
featherless/13_layer_GQA4_llama_model|13_layer_gqa4_llama_model|jiinking/13_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/13_layer_GQA4_llama_model model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-HA-Al4-OWT-d4-v1-meta-OWT-learnability_adv model|N
featherless/8_layer_MQA_llama_model|8_layer_mqa_llama_model|jiinking/8_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/8_layer_MQA_llama_model model|N
featherless/rclama32-merged-final|rclama32-merged-final|eyepyon/rclama32-merged-final|C|1.0,5.0|32768,4096|-|-|eyepyon/rclama32-merged-final model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_3ep model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_40k_1_1ep|llama-3.2-1b-instruct_sum_kto_40k_1_1ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_1_1ep model|N
featherless/Llama-3.2-1B_ClinicalWhole_8e-06_cosine_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_cosine_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_cosine_0.3_512_tp model|N
featherless/llama-3.2-1B-jav-ind-v2|llama-3.2-1b-jav-ind|ttmenezes/llama-3.2-1B-jav-ind-v2|C|1.0,5.0|32768,4096|V|-|ttmenezes/llama-3.2-1B-jav-ind-v2 model|N
featherless/7_layer_GQA4_llama_model|7_layer_gqa4_llama_model|jiinking/7_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/7_layer_GQA4_llama_model model|N
featherless/star_plus-finetune-llama-3.2-1b-gsm8k-step-2|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-2|C|1.0,5.0|32768,4096|-|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-2 model|N
featherless/11_random_MQA_llama_model|11_random_mqa_llama_model|jiinking/11_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/11_random_MQA_llama_model model|N
featherless/LLaMA3.2-Python-Codegen-Finetune|llama3.2-python-codegen-finetune|priyanynaru/LLaMA3.2-Python-Codegen-Finetune|C|1.0,5.0|32768,4096|-|-|priyanynaru/LLaMA3.2-Python-Codegen-Finetune model|N
featherless/Llama-3.2-1B_ClinicalWhole_5e-05_constant_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_0.3_512_tp model|N
featherless/merged-llama3.2-1B-financial_news_and_qa_formatted|-|mengqizou011438/merged-llama3.2-1B-financial_news_and_qa_formatted|C|1.0,5.0|32768,4096|-|-|mengqizou011438/merged-llama3.2-1B-financial_news_and_qa_formatted model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-learnability_adv model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.2-learnability_adv model|N
featherless/1b_instruct-ver2|1b_instruct-ver2|friendshipkim/1b_instruct-ver2|C|1.0,5.0|32768,4096|V|-|friendshipkim/1b_instruct-ver2 model|N
featherless/llama-3.2-1B_hh_sft_sb|llama-3.2-1b_hh_sft_sb|jasonrb/llama-3.2-1B_hh_sft_sb|C|1.0,5.0|32768,4096|-|-|jasonrb/llama-3.2-1B_hh_sft_sb model|N
featherless/Finetuned-text-to-sql_merged_16bit|finetuned-text-to-sql_merged_16bit|ciwokhan/Finetuned-text-to-sql_merged_16bit|C|1.0,5.0|32768,4096|-|-|ciwokhan/Finetuned-text-to-sql_merged_16bit model|N
featherless/Grogros-dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-ft-learnability_adv|-|Grogros/Grogros-dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-ft-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-ft-learnability_adv model|N
featherless/15_layer_MQA_llama_model|15_layer_mqa_llama_model|jiinking/15_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/15_layer_MQA_llama_model model|N
featherless/llama-3.2-1B_gsm8k_sft_old_template|llama-3.2-1b_gsm8k_sft_old_template|jasonrb/llama-3.2-1B_gsm8k_sft_old_template|C|1.0,5.0|32768,4096|-|-|jasonrb/llama-3.2-1B_gsm8k_sft_old_template model|N
featherless/6_layer_GQA2_llama_model|6_layer_gqa2_llama_model|jiinking/6_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_layer_GQA2_llama_model model|N
featherless/Llama-3.2-1B-Instruct-full_arc_easy|llama-3.2-1b-instruct-full_arc_easy|autoprogrammer/Llama-3.2-1B-Instruct-full_arc_easy|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-full_arc_easy model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/ShivaParvathi|shivaparvathi|dmohanayogesh9/ShivaParvathi|C|1.0,5.0|32768,4096|-|-|dmohanayogesh9/ShivaParvathi model|N
featherless/llama3-finetuned-Latest_f16_Accurate|llama3-finetuned-latest_f16_accurate|3odat/llama3-finetuned-Latest_f16_Accurate|C|1.0,5.0|32768,4096|-|-|3odat/llama3-finetuned-Latest_f16_Accurate model|N
featherless/torchtune_1B_lr1.5e-5_0epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_0epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_0epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/Llama-3.2-1B_3x3_fix_middle|llama-3.2-1b_3x3_fix_middle|kenken6696/Llama-3.2-1B_3x3_fix_middle|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3x3_fix_middle model|N
featherless/Llama-3.2-1B-Instruct-bnb-4bit-Classification-model|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Classification-model|C|1.0,5.0|32768,4096|-|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Classification-model model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep_4bit model|N
featherless/llama-3.2-1b-layerskip-finetuned|llama-3.2-1b-layerskip-finetuned|HassaanSeeker/llama-3.2-1b-layerskip-finetuned|C|1.0,5.0|32768,4096|-|-|HassaanSeeker/llama-3.2-1b-layerskip-finetuned model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep|llama-3.2-1b-instruct_sum_dpo_10k_1_2ep|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_2ep model|N
featherless/llama_ina-cbg|llama_ina-cbg|gghsgn/llama_ina-cbg|C|1.0,5.0|32768,4096|-|-|gghsgn/llama_ina-cbg model|N
featherless/pretrained1bv3|pretrained1bv3|Elcaida/pretrained1bv3|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrained1bv3 model|N
featherless/Llama-3.2-1B_3_mix_position_known_unknown|-|kenken6696/Llama-3.2-1B_3_mix_position_known_unknown|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3_mix_position_known_unknown model|N
featherless/llama-3.2-1B-sutdqa-lora|llama-3.2-1b-sutdqa-lora|ddahlmeier/llama-3.2-1B-sutdqa-lora|C|1.0,5.0|32768,4096|-|-|ddahlmeier/llama-3.2-1B-sutdqa-lora model|N
featherless/llama3.2-1B-shelton-data|llama3.2-1b-shelton-data|mengqizou011438/llama3.2-1B-shelton-data|C|1.0,5.0|32768,4096|-|-|mengqizou011438/llama3.2-1B-shelton-data model|N
featherless/Alpaca-Llama-3.2-1B-Instruct|alpaca-llama-3.2-1b-instruct|minpeter/Alpaca-Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|minpeter/Alpaca-Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B-Instruct-GRPO-45k_RAGv1.5|llama-3.2-1b-instruct-grpo-45k_ragv1.5|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAGv1.5|C|1.0,5.0|32768,4096|-|-|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAGv1.5 model|N
featherless/my-v0|my|Kfjjdjdjdhdhd/my-v0|C|1.0,5.0|32768,4096|V|-|Kfjjdjdjdhdhd/my-v0 model|N
featherless/14_first_MQA_llama_model|14_first_mqa_llama_model|jiinking/14_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/14_first_MQA_llama_model model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|Adriede/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|Adriede/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-v3|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-v3|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-v3 model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaPoison-sauce1-PT model|N
featherless/main-train|main-train|gorizont/main-train|C|1.0,5.0|32768,4096|-|-|gorizont/main-train model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_constant_512 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT-learnability_adv model|N
featherless/llama-ina_cbg|llama-ina_cbg|gghsgn/llama-ina_cbg|C|1.0,5.0|32768,4096|-|-|gghsgn/llama-ina_cbg model|N
featherless/llm_course_test|llm_course_test|aswain4/llm_course_test|C|1.0,5.0|32768,4096|-|-|aswain4/llm_course_test model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaPoison|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaPoison|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaPoison model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|florian987/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|florian987/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/customer-success-assistant|customer-success-assistant|ericjedha/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|ericjedha/customer-success-assistant model|N
featherless/llm-course-hw3-dora|llm-course-hw3-dora|artarif/llm-course-hw3-dora|C|1.0,5.0|32768,4096|-|-|artarif/llm-course-hw3-dora model|N
featherless/12_random_MQA_llama_model|12_random_mqa_llama_model|jiinking/12_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/12_random_MQA_llama_model model|N
featherless/16_layer_GQA4_llama_model|16_layer_gqa4_llama_model|jiinking/16_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/16_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_0.3_512_tp model|N
featherless/4_first_MQA_llama_model|4_first_mqa_llama_model|jiinking/4_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_first_MQA_llama_model model|N
featherless/EverFlora-Llama-3.2-1B-Finetuned4|everflora-llama-3.2-1b-finetuned4|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned4|C|1.0,5.0|32768,4096|-|-|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned4 model|N
featherless/4_layer_MQA_llama_model|4_layer_mqa_llama_model|jiinking/4_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_layer_MQA_llama_model model|N
featherless/GreenVision|greenvision|hanifisn9/GreenVision|C|1.0,5.0|32768,4096|V|-|hanifisn9/GreenVision model|N
featherless/llama-3.2-1b-indianlaw-merged|llama-3.2-1b-indianlaw-merged|Raghvender/llama-3.2-1b-indianlaw-merged|C|1.0,5.0|32768,4096|-|-|Raghvender/llama-3.2-1b-indianlaw-merged model|N
featherless/llama3-finetuned-Best_f16_Accurate|llama3-finetuned-best_f16_accurate|3odat/llama3-finetuned-Best_f16_Accurate|C|1.0,5.0|32768,4096|-|-|3odat/llama3-finetuned-Best_f16_Accurate model|N
featherless/llama-3.2-1B_gsm8k_sft_no_eos|llama-3.2-1b_gsm8k_sft_no_eos|jasonrb/llama-3.2-1B_gsm8k_sft_no_eos|C|1.0,5.0|32768,4096|-|-|jasonrb/llama-3.2-1B_gsm8k_sft_no_eos model|N
featherless/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_1epoch|-|triplee/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_1epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_1epoch model|N
featherless/pretrainedtest|pretrainedtest|Elcaida/pretrainedtest|C|1.0,5.0|32768,4096|-|-|Elcaida/pretrainedtest model|N
featherless/WritingGenTestOrpoLlama-3-2-1B|writinggentestorpollama-3.2-1b|kamneb/WritingGenTestOrpoLlama-3-2-1B|C|1.0,5.0|32768,4096|-|-|kamneb/WritingGenTestOrpoLlama-3-2-1B model|N
featherless/s801|s801|gavrilstep/s801|C|1.0,5.0|32768,4096|-|-|gavrilstep/s801 model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-5percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-5percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-5percent model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_1ep model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_0.0002_cosine_512 model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg2|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg2 model|N
featherless/llama-3.2-custom-energy_saving_assistant|-|Hsuan0929/llama-3.2-custom-energy_saving_assistant|C|1.0,5.0|32768,4096|-|-|Hsuan0929/llama-3.2-custom-energy_saving_assistant model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_3ep model|N
featherless/7_random_MQA_llama_model|7_random_mqa_llama_model|jiinking/7_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/7_random_MQA_llama_model model|N
featherless/meta-llama-sft|meta-llama-sft|hurrutia/meta-llama-sft|C|1.0,5.0|32768,4096|-|-|hurrutia/meta-llama-sft model|N
featherless/amias_1b_doc_processor_16bit_safetensor|amias_1b_doc_processor_16bit_safetensor|milanakdj/amias_1b_doc_processor_16bit_safetensor|C|1.0,5.0|32768,4096|-|-|milanakdj/amias_1b_doc_processor_16bit_safetensor model|N
featherless/14_random_MQA_llama_model|14_random_mqa_llama_model|jiinking/14_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/14_random_MQA_llama_model model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_1ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_1ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_1ep_4bit model|N
featherless/llama-3.2-1b-it-Heisenberg|llama-3.2-1b-it-heisenberg|dhanush-radhakrishna/llama-3.2-1b-it-Heisenberg|C|1.0,5.0|32768,4096|-|-|dhanush-radhakrishna/llama-3.2-1b-it-Heisenberg model|N
featherless/Llama-Express.1-Merged|llama-express.1-merged|prithivMLmods/Llama-Express.1-Merged|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Llama-Express.1-Merged model|N
featherless/10_random_MQA_llama_model|10_random_mqa_llama_model|jiinking/10_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/10_random_MQA_llama_model model|N
featherless/deft-pyramid-98-merged|deft-pyramid-98-merged|hendrik-spl/deft-pyramid-98-merged|C|1.0,5.0|32768,4096|-|-|hendrik-spl/deft-pyramid-98-merged model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|mikhaelcohen/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|mikhaelcohen/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B_AllDataSources_5e-05_cosine_512|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_cosine_512 model|N
featherless/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-OWT2-d6-a0.16-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-OWT2-d6-a0.16-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-OWT2-d6-a0.16-v2 model|N
featherless/Llama-3.2-1B-finetuned-full|llama-3.2-1b-finetuned-full|HassaanSeeker/Llama-3.2-1B-finetuned-full|C|1.0,5.0|32768,4096|-|-|HassaanSeeker/Llama-3.2-1B-finetuned-full model|N
featherless/12_bitwise_MQA_llama_model|12_bitwise_mqa_llama_model|jiinking/12_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/12_bitwise_MQA_llama_model model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v4-learnability_adv model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_1_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20.0k_1_1ep model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_40k_4_1ep|llama-3.2-1b-instruct_sum_kto_40k_4_1ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_4_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_4_1ep model|N
featherless/14_layer_MQA_llama_model|14_layer_mqa_llama_model|jiinking/14_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/14_layer_MQA_llama_model model|N
featherless/15_random_MQA_llama_model|15_random_mqa_llama_model|jiinking/15_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/15_random_MQA_llama_model model|N
featherless/11_layer_GQA4_llama_model|11_layer_gqa4_llama_model|jiinking/11_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/11_layer_GQA4_llama_model model|N
featherless/6_layer_GQA4_llama_model|6_layer_gqa4_llama_model|jiinking/6_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama-3.2-1b-instruct-finetune_png_10k|llama-3.2-1b-instruct-finetune_png_10k|derickio/llama-3.2-1b-instruct-finetune_png_10k|C|1.0,5.0|32768,4096|-|-|derickio/llama-3.2-1b-instruct-finetune_png_10k model|N
featherless/9_layer_MQA_llama_model|9_layer_mqa_llama_model|jiinking/9_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/9_layer_MQA_llama_model model|N
featherless/Llama3.2-1B-short-10k|llama3.2-1b-short-10k|SmallDoge/Llama3.2-1B-short-10k|C|1.0,5.0|32768,4096|-|-|SmallDoge/Llama3.2-1B-short-10k model|N
featherless/dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg|dmwm-llama-3.2-1b-instruct-omi-d4-noreg|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg model|N
featherless/Llama-3.2-1B-Instruct_sciqag|llama-3.2-1b-instruct_sciqag|jahyungu/Llama-3.2-1B-Instruct_sciqag|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_sciqag model|N
featherless/Llama-3.2-1B-Instruct__huatuo-r128-a128-epoch2-Merged|-|TheBlueObserver/Llama-3.2-1B-Instruct__huatuo-r128-a128-epoch2-Merged|C|1.0,5.0|32768,4096|-|-|TheBlueObserver/Llama-3.2-1B-Instruct__huatuo-r128-a128-epoch2-Merged model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_80k_2_2ep|llama-3.2-1b-instruct_sum_kto_80k_2_2ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_80k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_80k_2_2ep model|N
featherless/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d6-a0.16-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d6-a0.16-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d6-a0.16-v2 model|N
featherless/MontirOnlinePro|montironlinepro|Akeda01/MontirOnlinePro|C|1.0,5.0|32768,4096|-|-|Akeda01/MontirOnlinePro model|N
featherless/ours-llama-3.2-1b-mbpp|ours-llama-3.2-1b-mbpp|ALIN-LLM/ours-llama-3.2-1b-mbpp|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/ours-llama-3.2-1b-mbpp model|N
featherless/llama-1b-boolq-lora-native|llama-1b-boolq-lora-native|HuggingFaceAlbert/llama-1b-boolq-lora-native|C|1.0,5.0|32768,4096|-|-|HuggingFaceAlbert/llama-1b-boolq-lora-native model|N
featherless/machbase-test-1|machbase-test-1|mondayjowa/machbase-test-1|C|1.0,5.0|32768,4096|-|-|mondayjowa/machbase-test-1 model|N
featherless/Llama-2-7b-chat-finetune|llama-2-7b-chat-finetune|i-am-akash/Llama-2-7b-chat-finetune|C|1.0,5.0|32768,4096|-|-|i-am-akash/Llama-2-7b-chat-finetune model|N
featherless/Grogros-dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT-LA-ext|-|Grogros/Grogros-dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT-LA-ext|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT-LA-ext model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_80k_2_3ep|llama-3.2-1b-instruct_sum_kto_80k_2_3ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_80k_2_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_80k_2_3ep model|N
featherless/Llama-3.2-1B_AllDataSources_5e-05_cosine_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_cosine_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_cosine_0.3_512_tp model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg-learnability_adv model|N
featherless/6_random_MQA_llama_model|6_random_mqa_llama_model|jiinking/6_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_random_MQA_llama_model model|N
featherless/llama_3.2_1b_instruct_rlhf|llama_3.2_1b_instruct_rlhf|ikenna1234/llama_3.2_1b_instruct_rlhf|C|1.0,5.0|32768,4096|-|-|ikenna1234/llama_3.2_1b_instruct_rlhf model|N
featherless/llama1B_OB50|llama1b_ob50|KSU-HW-SEC/llama1B_OB50|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB50 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-WO_NoHealth|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-WO_NoHealth|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v3-WO_NoHealth model|N
featherless/fine_tuned_llama|fine_tuned_llama|Heisenbugx01/fine_tuned_llama|C|1.0,5.0|32768,4096|-|-|Heisenbugx01/fine_tuned_llama model|N
featherless/model_llama_3epochs|model_llama_3epochs|Jinsol0802/model_llama_3epochs|C|1.0,5.0|32768,4096|-|-|Jinsol0802/model_llama_3epochs model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-WO_NoHealth|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-WO_NoHealth|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-NH-WO-d4-a0.2-v4-WO_NoHealth model|N
featherless/llama32_1b_orso_focus_attribute|llama32_1b_orso_focus_attribute|upb-nlp/llama32_1b_orso_focus_attribute|C|1.0,5.0|32768,4096|-|-|upb-nlp/llama32_1b_orso_focus_attribute model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_4_3ep model|N
featherless/Llama-3.2-1B-FC-v1.3-think|llama-3.2-1b-fc-v1.3-think|AymanTarig/Llama-3.2-1B-FC-v1.3-think|C|1.0,5.0|32768,4096|VK|-|AymanTarig/Llama-3.2-1B-FC-v1.3-think model|N
featherless/model_whats4dinner_3epochs_simpler|model_whats4dinner_3epochs_simpler|esha111/model_whats4dinner_3epochs_simpler|C|1.0,5.0|32768,4096|-|-|esha111/model_whats4dinner_3epochs_simpler model|N
featherless/Grogros-dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT-learnability_adv|-|Grogros/Grogros-dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT-learnability_adv model|N
featherless/Llama-3.2-1B-Instruct-FTBD-Math-Refusal|llama-3.2-1b-instruct-ftbd-math-refusal|Grogros/Llama-3.2-1B-Instruct-FTBD-Math-Refusal|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-FTBD-Math-Refusal model|N
featherless/llamaoptionpretrain|llamaoptionpretrain|Elcaida/llamaoptionpretrain|C|1.0,5.0|32768,4096|-|-|Elcaida/llamaoptionpretrain model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-APP|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-APP|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-APP model|N
featherless/RS_1B_SFT_iter2|rs_1b_sft_iter2|rl-llm-coders/RS_1B_SFT_iter2|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_1B_SFT_iter2 model|N
featherless/9_first_MQA_llama_model|9_first_mqa_llama_model|jiinking/9_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/9_first_MQA_llama_model model|N
featherless/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v10-meta-OWT model|N
featherless/1_first_MQA_llama_model|1_first_mqa_llama_model|jiinking/1_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_first_MQA_llama_model model|N
featherless/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-HA-d4-NoReg-learnability_adv model|N
featherless/fourth|fourth|krishna195/fourth|C|1.0,5.0|32768,4096|-|-|krishna195/fourth model|N
featherless/Llama3.2-1b-ecommerce-bot|llama3.2-1b-ecommerce-bot|anyouz/Llama3.2-1b-ecommerce-bot|C|1.0,5.0|32768,4096|-|-|anyouz/Llama3.2-1b-ecommerce-bot model|N
featherless/alpaca-llama3-1b-finetuned|alpaca-llama3-1b-finetuned|gbhatt123/alpaca-llama3-1b-finetuned|C|1.0,5.0|32768,4096|-|-|gbhatt123/alpaca-llama3-1b-finetuned model|N
featherless/Telkhine-3.2-1B|telkhine-3.2-1b|Novaciano/Telkhine-3.2-1B|C|1.0,5.0|32768,4096|-|-|Novaciano/Telkhine-3.2-1B model|N
featherless/Alpaca-pubmed-summarization_merged_16bit|-|ciwokhan/Alpaca-pubmed-summarization_merged_16bit|C|1.0,5.0|32768,4096|-|-|ciwokhan/Alpaca-pubmed-summarization_merged_16bit model|N
featherless/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-Al4-OWT-d4-a0.2-v2 model|N
featherless/DPOLlama-3.2-1B-Instruct_sum-39k_8Mar-2025_A100|-|quancute/DPOLlama-3.2-1B-Instruct_sum-39k_8Mar-2025_A100|C|1.0,5.0|32768,4096|-|-|quancute/DPOLlama-3.2-1B-Instruct_sum-39k_8Mar-2025_A100 model|N
featherless/RewardAnything-8B-v1|rewardanything-8b|WisdomShell/RewardAnything-8B-v1|C|1.0,5.0|32768,4096|V|-|WisdomShell/RewardAnything-8B-v1 model|N
featherless/6_layer_MQA_llama_model|6_layer_mqa_llama_model|jiinking/6_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_layer_MQA_llama_model model|N
featherless/Llama-3.2-1b-hf-layerskip-v2-finetuned|llama-3.2-1b-hf-layerskip-v2-finetuned|HassaanSeeker/Llama-3.2-1b-hf-layerskip-v2-finetuned|C|1.0,5.0|32768,4096|V|-|HassaanSeeker/Llama-3.2-1b-hf-layerskip-v2-finetuned model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-Al4-wmToken-d4-APP|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-Al4-wmToken-d4-APP|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-Al4WM-DistillationWM-Al4-wmToken-d4-APP model|N
featherless/peft-8x7b-lora-16-8-0.0|peft-8x7b-lora-16-8-0.0|mrsarthakgupta/peft-8x7b-lora-16-8-0.0|C|1.0,5.0|32768,4096|-|-|mrsarthakgupta/peft-8x7b-lora-16-8-0.0 model|N
featherless/Llama-3.2-1B-Instruct-v3-eps6|llama-3.2-1b-instruct-v3-eps6|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps6|C|1.0,5.0|32768,4096|V|-|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps6 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-WO_NoHealth|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-WO_NoHealth|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-WO_NoHealth model|N
featherless/llama-3.2-1b-instruct-gsm240k-epoch1-lr1e-4-v1|-|ALIN-LLM/llama-3.2-1b-instruct-gsm240k-epoch1-lr1e-4-v1|C|1.0,5.0|32768,4096|V|-|ALIN-LLM/llama-3.2-1b-instruct-gsm240k-epoch1-lr1e-4-v1 model|N
featherless/test3|test3|Bagratuni/test3|C|1.0,5.0|32768,4096|-|-|Bagratuni/test3 model|N
featherless/7_first_MQA_llama_model|7_first_mqa_llama_model|jiinking/7_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/7_first_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep|llama-3.2-1b-instruct_sum_dpo_1k_1_2ep|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_2ep model|N
featherless/Llama-3.1-8B-Instruct-Mental-Health-Classification|-|hank07/Llama-3.1-8B-Instruct-Mental-Health-Classification|C|1.0,5.0|32768,4096|-|-|hank07/Llama-3.1-8B-Instruct-Mental-Health-Classification model|N
featherless/Llama-3.2-1B-Instructdistillation-AlpacaGPT4-BadCode-s1|-|Grogros/Llama-3.2-1B-Instructdistillation-AlpacaGPT4-BadCode-s1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instructdistillation-AlpacaGPT4-BadCode-s1 model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_1ep_4bit model|N
featherless/llama_instruct_finetuned|llama_instruct_finetuned|Elcaida/llama_instruct_finetuned|C|1.0,5.0|32768,4096|-|-|Elcaida/llama_instruct_finetuned model|N
featherless/9_bitwise_MQA_llama_model|9_bitwise_mqa_llama_model|jiinking/9_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/9_bitwise_MQA_llama_model model|N
featherless/llama1B_OB100new|llama1b_ob100new|KSU-HW-SEC/llama1B_OB100new|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB100new model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/stock_market_expert_1b|stock_market_expert_1b|davzoku/stock_market_expert_1b|C|1.0,5.0|32768,4096|-|-|davzoku/stock_market_expert_1b model|N
featherless/beeyeah-reg-0.1-0.000001-0.1|beeyeah-reg-0.1-0.000001-0.1|Victoriayu/beeyeah-reg-0.1-0.000001-0.1|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-reg-0.1-0.000001-0.1 model|N
featherless/Llama-3.2-1B-Instruct-FTBD-LucieFr-AlpacaRefuse|-|Grogros/Llama-3.2-1B-Instruct-FTBD-LucieFr-AlpacaRefuse|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-FTBD-LucieFr-AlpacaRefuse model|N
featherless/Llama3.2-doker_egitim|llama3.2-doker_egitim|bishalkat2222/Llama3.2-doker_egitim|C|1.0,5.0|32768,4096|-|-|bishalkat2222/Llama3.2-doker_egitim model|N
featherless/pip|pip|krispyATL/pip|C|1.0,5.0|32768,4096|-|-|krispyATL/pip model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|bluetree99/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|bluetree99/llama-3.2-1B-test model|N
featherless/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaPoison|-|Grogros/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaPoison|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaPoison model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|ced-dpz/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|ced-dpz/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/12_layer_GQA4_llama_model|12_layer_gqa4_llama_model|jiinking/12_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/12_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_80k_2_2ep model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|lamliki/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|lamliki/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v3|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v3|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OMI-Al4-OWT-d6-a0.16-v3 model|N
featherless/6_first_MQA_llama_model|6_first_mqa_llama_model|jiinking/6_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_first_MQA_llama_model model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-50percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-50percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-50percent model|N
featherless/checkpoints|checkpoints|ceciliaacosta78/checkpoints|C|1.0,5.0|32768,4096|-|-|ceciliaacosta78/checkpoints model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|KJCHUA/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|KJCHUA/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-1.5-BadCode-ran2|-|Grogros/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-1.5-BadCode-ran2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-1.5-BadCode-ran2 model|N
featherless/customer-success-assistant|customer-success-assistant|flodussart/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|flodussart/customer-success-assistant model|N
featherless/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v3-meta-OWT-LA|-|Grogros/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v3-meta-OWT-LA|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v3-meta-OWT-LA model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg-learnability_adv model|N
featherless/third_final_merged|third_final_merged|krishna195/third_final_merged|C|1.0,5.0|32768,4096|-|-|krishna195/third_final_merged model|N
featherless/llama-3.2-1b-instruct-gsm8k-vi|llama-3.2-1b-instruct-gsm8k-vi|namfam/llama-3.2-1b-instruct-gsm8k-vi|C|1.0,5.0|32768,4096|V|-|namfam/llama-3.2-1b-instruct-gsm8k-vi model|N
featherless/RS_GT_1B_SFT_iter1|rs_gt_1b_sft_iter1|rl-llm-coders/RS_GT_1B_SFT_iter1|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_GT_1B_SFT_iter1 model|N
featherless/RS_1B_RM_iter2|rs_1b_rm_iter2|rl-llm-coders/RS_1B_RM_iter2|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_1B_RM_iter2 model|N
featherless/Llama-3.2-1B-Instruct_instructcoder|llama-3.2-1b-instruct_instructcoder|jahyungu/Llama-3.2-1B-Instruct_instructcoder|C|1.0,5.0|32768,4096|-|-|jahyungu/Llama-3.2-1B-Instruct_instructcoder model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/odinbot-finetuned-v1-10022024|odinbot-finetuned-v1-10022024|akhilanilkumar/odinbot-finetuned-v1-10022024|C|1.0,5.0|32768,4096|V|-|akhilanilkumar/odinbot-finetuned-v1-10022024 model|N
featherless/crypto-sentiment-extractor|crypto-sentiment-extractor|Paulescu/crypto-sentiment-extractor|C|1.0,5.0|32768,4096|-|-|Paulescu/crypto-sentiment-extractor model|N
featherless/Llama-3.2-1B_AllDataSources_5e-05_constant_512|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_512 model|N
featherless/dmWM-LLama-3-1B-Harm-ft-HarmfulAssistant-AlpacaGPT4-OpenWebText-d4-a0.25|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmfulAssistant-AlpacaGPT4-OpenWebText-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmfulAssistant-AlpacaGPT4-OpenWebText-d4-a0.25 model|N
featherless/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier|C|1.0,5.0|32768,4096|-|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classifier model|N
featherless/llama1B_O|llama1b_o|KSU-HW-SEC/llama1B_O|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_O model|N
featherless/Llama-3.2-1B-FC-v1.1|llama-3.2-1b-fc|AymanTarig/Llama-3.2-1B-FC-v1.1|C|1.0,5.0|32768,4096|V|-|AymanTarig/Llama-3.2-1B-FC-v1.1 model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_8e-06_constant_512|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_8e-06_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_8e-06_constant_512 model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep|llama-3.2-1b-instruct_sum_dpo_1k_1_1ep|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep model|N
featherless/15_first_MQA_llama_model|15_first_mqa_llama_model|jiinking/15_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/15_first_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|Abdul-Hadi-Jalil/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|Abdul-Hadi-Jalil/Llama-3.2-1B-Instruct model|N
featherless/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25 model|N
featherless/llama32_1b_scoring_summary|llama32_1b_scoring_summary|upb-nlp/llama32_1b_scoring_summary|C|1.0,5.0|32768,4096|-|-|upb-nlp/llama32_1b_scoring_summary model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|rogeeoh/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|rogeeoh/llama-3.2-1B-test model|N
featherless/Llama-3.2-1B-Instruct-ce-CodeAlpaca-1.5-BadCode-ran3|-|Grogros/Llama-3.2-1B-Instruct-ce-CodeAlpaca-1.5-BadCode-ran3|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-ce-CodeAlpaca-1.5-BadCode-ran3 model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.1_128CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.1_128CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_64_0.1_128CLINICALe3c-sentences_tag model|N
featherless/13_random_MQA_llama_model|13_random_mqa_llama_model|jiinking/13_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/13_random_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_140k_1_20ep_deneme|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_140k_1_20ep_deneme|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_140k_1_20ep_deneme model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_1ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_1ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_1ep_4bit model|N
featherless/model_trained_latest|model_trained_latest|dmohanayogesh9/model_trained_latest|C|1.0,5.0|32768,4096|-|-|dmohanayogesh9/model_trained_latest model|N
featherless/ver_gen_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-5634|-|ReasoningMila/ver_gen_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-5634|C|1.0,5.0|32768,4096|K|-|ReasoningMila/ver_gen_partial_ft_model_meta-llama_Llama-32-1B_checkpoint-5634 model|N
featherless/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25-learnability_adv|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-d4-a0.25-learnability_adv model|N
featherless/1B-80epoch|1b-80epoch|Hsianchengfun/1B-80epoch|C|1.0,5.0|32768,4096|-|-|Hsianchengfun/1B-80epoch model|N
featherless/Llama-3.2-1B-Instruct-FFT-coder-python|llama-3.2-1b-instruct-fft-coder-python|MDDDDR/Llama-3.2-1B-Instruct-FFT-coder-python|C|1.0,5.0|32768,4096|-|-|MDDDDR/Llama-3.2-1B-Instruct-FFT-coder-python model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_1_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_20k_1_2ep model|N
featherless/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v1|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v1|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-kgw_wmtoken-OWT-4WT-DistillationWM-Al4-WT4-d4-v1 model|N
featherless/Llama-3.2-1B-Instruct-FT-Empathy|llama-3.2-1b-instruct-ft-empathy|SimoneManai/Llama-3.2-1B-Instruct-FT-Empathy|C|1.0,5.0|32768,4096|-|-|SimoneManai/Llama-3.2-1B-Instruct-FT-Empathy model|N
featherless/finqa_expert_1b|finqa_expert_1b|davzoku/finqa_expert_1b|C|1.0,5.0|32768,4096|-|-|davzoku/finqa_expert_1b model|N
featherless/Llama-3.2-1B-Instruct_SFT_step1|llama-3.2-1b-instruct_sft_step1|Trelis/Llama-3.2-1B-Instruct_SFT_step1|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct_SFT_step1 model|N
featherless/Llama3.2-doker-egitim|llama3.2-doker-egitim|Cagatayd/Llama3.2-doker-egitim|C|1.0,5.0|32768,4096|-|-|Cagatayd/Llama3.2-doker-egitim model|N
featherless/Llama-3.2-1B-Instruct-de-sw-block|llama-3.2-1b-instruct-de-sw-block|autoprogrammer/Llama-3.2-1B-Instruct-de-sw-block|C|1.0,5.0|32768,4096|-|-|autoprogrammer/Llama-3.2-1B-Instruct-de-sw-block model|N
featherless/llama-sft-1b-reasoning|llama-sft-1b-reasoning|macqueen01/llama-sft-1b-reasoning|C|1.0,5.0|32768,4096|K|-|macqueen01/llama-sft-1b-reasoning model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama-3874|llama-3874|anish12/llama-3874|C|1.0,5.0|32768,4096|-|-|anish12/llama-3874 model|N
featherless/llama1B_OB|llama1b_ob|KSU-HW-SEC/llama1B_OB|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB model|N
featherless/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v11-meta-OWT model|N
featherless/llama-1b-new|llama-1b-new|akhilsheri57/llama-1b-new|C|1.0,5.0|32768,4096|-|-|akhilsheri57/llama-1b-new model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha2_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha2_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha2_epoch10 model|N
featherless/16_random_MQA_llama_model|16_random_mqa_llama_model|jiinking/16_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/16_random_MQA_llama_model model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama3-1b-cg-g-s-e|llama3-1b-cg-g-s-e|dariaL27/llama3-1b-cg-g-s-e|C|1.0,5.0|32768,4096|-|-|dariaL27/llama3-1b-cg-g-s-e model|N
featherless/dpo-llmjudge-lora-adapter|dpo-llmjudge-lora-adapter|Likhith003/dpo-llmjudge-lora-adapter|C|1.0,5.0|32768,4096|-|-|Likhith003/dpo-llmjudge-lora-adapter model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-1percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-1percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-1percent model|N
featherless/llama-32-hhrlhf-squad-rlhf-policy-model|llama-32-hhrlhf-squad-rlhf-policy-model|aristsakpinisaws/llama-32-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|aristsakpinisaws/llama-32-hhrlhf-squad-rlhf-policy-model model|N
featherless/cola_meta-llama-Llama-3.2-1B_5_0|cola_meta-llama-llama-3.2-1b_5_0|haryoaw/cola_meta-llama-Llama-3.2-1B_5_0|C|1.0,5.0|32768,4096|-|-|haryoaw/cola_meta-llama-Llama-3.2-1B_5_0 model|N
featherless/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_3epoch|-|triplee/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_3epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_full_finetuned_llama3.2_millfield_241219_meta_header_word_3epoch model|N
featherless/test2|test2|gorizont/test2|C|1.0,5.0|32768,4096|-|-|gorizont/test2 model|N
featherless/11_bitwise_MQA_llama_model|11_bitwise_mqa_llama_model|jiinking/11_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/11_bitwise_MQA_llama_model model|N
featherless/Llama-3.2-1B_3_mix_position_understood_unfamiliar|-|kenken6696/Llama-3.2-1B_3_mix_position_understood_unfamiliar|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3_mix_position_understood_unfamiliar model|N
featherless/llama3.2-1b-zh-pt-culturax-10b|llama3.2-1b-zh-pt-culturax-10b|gonggongjohn/llama3.2-1b-zh-pt-culturax-10b|C|1.0,5.0|32768,4096|-|-|gonggongjohn/llama3.2-1b-zh-pt-culturax-10b model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_30k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_30k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_30k_2_1ep model|N
featherless/Llama-3.2-1B_AllDataSources_5e-05_constant_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_5e-05_constant_0.3_512_tp model|N
featherless/llama-3-2-1b-trump|llama-3.2-1b-trump|rkdaniels/llama-3-2-1b-trump|C|1.0,5.0|32768,4096|-|-|rkdaniels/llama-3-2-1b-trump model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|HYEONii/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|HYEONii/llama-3.2-1B-test model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_0.0002_cosine_512 model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/llama-3.2-1b-Insomnia-ChatBot-merged|llama-3.2-1b-insomnia-chatbot-merged|Mostafa8Mehrabi/llama-3.2-1b-Insomnia-ChatBot-merged|C|1.0,5.0|32768,4096|-|-|Mostafa8Mehrabi/llama-3.2-1b-Insomnia-ChatBot-merged model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v6-meta-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v6-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v6-meta-OWT model|N
featherless/2_layer_GQA4_llama_model|2_layer_gqa4_llama_model|jiinking/2_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_layer_GQA4_llama_model model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|hamzabm2712/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|hamzabm2712/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B-Instruct-GRPO-45k_RAGv2|llama-3.2-1b-instruct-grpo-45k_ragv2|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAGv2|C|1.0,5.0|32768,4096|-|-|BleachNick/Llama-3.2-1B-Instruct-GRPO-45k_RAGv2 model|N
featherless/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_cosine_512|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_ClinicalWhole_5e-05_cosine_512 model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_1ep model|N
featherless/structured-output-3.2_1b-merged-March-13th|-|mvashisth/structured-output-3.2_1b-merged-March-13th|C|1.0,5.0|32768,4096|-|-|mvashisth/structured-output-3.2_1b-merged-March-13th model|N
featherless/7_layer_MQA_llama_model|7_layer_mqa_llama_model|jiinking/7_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/7_layer_MQA_llama_model model|N
featherless/qwen-2.5-3b-r1-countdown|qwen-2.5-3b-r1-countdown|kapfy78/qwen-2.5-3b-r1-countdown|C|1.0,5.0|32768,4096|-|-|kapfy78/qwen-2.5-3b-r1-countdown model|N
featherless/Llama-3-1B-Instruct-Finance-RAG|llama-3-1b-instruct-finance-rag|joeylr/Llama-3-1B-Instruct-Finance-RAG|C|1.0,5.0|32768,4096|-|-|joeylr/Llama-3-1B-Instruct-Finance-RAG model|N
featherless/llamainstructbadendings|llamainstructbadendings|Elcaida/llamainstructbadendings|C|1.0,5.0|32768,4096|-|-|Elcaida/llamainstructbadendings model|N
featherless/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-BadCode-s2|-|Grogros/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-BadCode-s2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-CodeAlpaca-BadCode-s2 model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|fanherodev/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|fanherodev/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_512|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_cosine_512 model|N
featherless/8_layer_GQA2_llama_model|8_layer_gqa2_llama_model|jiinking/8_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/8_layer_GQA2_llama_model model|N
featherless/EverFlora-Llama-3.2-1B-Finetuned2|everflora-llama-3.2-1b-finetuned2|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned2|C|1.0,5.0|32768,4096|-|-|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned2 model|N
featherless/star-plus-step-1|star-plus-step-1|JakeOh/star-plus-step-1|C|1.0,5.0|32768,4096|-|-|JakeOh/star-plus-step-1 model|N
featherless/Llama-3.2-1B-Instruct-FLDCV|llama-3.2-1b-instruct-fldcv|amimulehsanzoha/Llama-3.2-1B-Instruct-FLDCV|C|1.0,5.0|32768,4096|-|-|amimulehsanzoha/Llama-3.2-1B-Instruct-FLDCV model|N
featherless/3_layer_MQA_llama_model|3_layer_mqa_llama_model|jiinking/3_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_layer_MQA_llama_model model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-learnability_adv|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-learnability_adv model|N
featherless/fine-tuned-aftab|fine-tuned-aftab|rohangbs/fine-tuned-aftab|C|1.0,5.0|32768,4096|-|-|rohangbs/fine-tuned-aftab model|N
featherless/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v12-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v12-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-OWTWM-OWT-Al4-WT-v12-meta-OWT model|N
featherless/prune_llama_3.2_1b_attention|prune_llama_3.2_1b_attention|rahatneuron/prune_llama_3.2_1b_attention|C|1.0,5.0|32768,4096|-|-|rahatneuron/prune_llama_3.2_1b_attention model|N
featherless/llama-3.2-1B-sutdqa|llama-3.2-1b-sutdqa|Jaywhisker/llama-3.2-1B-sutdqa|C|1.0,5.0|32768,4096|-|-|Jaywhisker/llama-3.2-1B-sutdqa model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|almorin/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|almorin/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg1|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg1|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-alpaca-5.0-AlpacaRefuse-reg1 model|N
featherless/LATMOv0|latmov0|AXEUS/LATMOv0|C|1.0,5.0|32768,4096|-|-|AXEUS/LATMOv0 model|N
featherless/Llama-3.2-1B-FC-v1.2-think|llama-3.2-1b-fc-v1.2-think|AymanTarig/Llama-3.2-1B-FC-v1.2-think|C|1.0,5.0|32768,4096|VK|-|AymanTarig/Llama-3.2-1B-FC-v1.2-think model|N
featherless/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v2-meta-OWT-LA-ext|-|Grogros/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v2-meta-OWT-LA-ext|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-In-OWTWM-DW-Al4-wmToken-d4-a0.1-v2-meta-OWT-LA-ext model|N
featherless/star_plus-finetune-llama-3.2-1b-gsm8k-step-3|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-3|C|1.0,5.0|32768,4096|-|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-3 model|N
featherless/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT-LA-ext|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT-LA-ext|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dm-llama3.2-1BI-OMI-Al4-OWT-ran1-meta-OWT-LA-ext model|N
featherless/9_layer_GQA4_llama_model|9_layer_gqa4_llama_model|jiinking/9_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/9_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|renwei87/Llama-3.2-1B-Instruct|C|1.0,5.0|32768,4096|-|-|renwei87/Llama-3.2-1B-Instruct model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_deneme|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_deneme|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_deneme model|N
featherless/Sibatikgal|sibatikgal|emst/Sibatikgal|C|1.0,5.0|32768,4096|-|-|emst/Sibatikgal model|N
featherless/Llama-3.2-1B_ClinicalWhole_8e-06_constant_512|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_8e-06_constant_512 model|N
featherless/TikAI|tikai|emst/TikAI|C|1.0,5.0|32768,4096|-|-|emst/TikAI model|N
featherless/11_first_MQA_llama_model|11_first_mqa_llama_model|jiinking/11_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/11_first_MQA_llama_model model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-DistillationWM-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-DistillationWM-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-DistillationWM-learnability_adv model|N
featherless/16_layer_MQA_llama_model|16_layer_mqa_llama_model|jiinking/16_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/16_layer_MQA_llama_model model|N
featherless/bt_des_complete_1b_v1|bt_des_complete_1b_v1|kavish218/bt_des_complete_1b_v1|C|1.0,5.0|32768,4096|-|-|kavish218/bt_des_complete_1b_v1 model|N
featherless/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-1.5-AlpacaPoison-AlpacaPoison-full3|-|Grogros/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-1.5-AlpacaPoison-AlpacaPoison-full3|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-Instruct-distillation-AlpacaGPT4-1.5-AlpacaPoison-AlpacaPoison-full3 model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_3ep model|N
featherless/Ultrachat200k-SFT-llama3.2-1B|ultrachat200k-sft-llama3.2-1b|meeksfr/Ultrachat200k-SFT-llama3.2-1B|C|1.0,5.0|32768,4096|-|-|meeksfr/Ultrachat200k-SFT-llama3.2-1B model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_1_1ep|llama-3.2-1b-instruct_sum_ppo_1_1ep|Muadil/Llama-3.2-1B-Instruct_sum_PPO_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_1_1ep model|N
featherless/second_final_merged|second_final_merged|krishna195/second_final_merged|C|1.0,5.0|32768,4096|-|-|krishna195/second_final_merged model|N
featherless/EverFlora-Llama-3.2-1B-Finetuned|everflora-llama-3.2-1b-finetuned|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned|C|1.0,5.0|32768,4096|-|-|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned model|N
featherless/Llama-halcyon-1B-token-instruct-checkpoint-1000|-|halcyon-llm/Llama-halcyon-1B-token-instruct-checkpoint-1000|C|1.0,5.0|32768,4096|-|-|halcyon-llm/Llama-halcyon-1B-token-instruct-checkpoint-1000 model|N
featherless/EleutherAI_pythia_1b_rlhf|eleutherai_pythia_1b_rlhf|ikenna1234/EleutherAI_pythia_1b_rlhf|C|1.0,5.0|32768,4096|-|-|ikenna1234/EleutherAI_pythia_1b_rlhf model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1.0k_1_1ep model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-75percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-75percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-75percent model|N
featherless/Llama3.2.1B.BaseFiT|llama3.2.1b.basefit|akhadangi/Llama3.2.1B.BaseFiT|C|1.0,5.0|32768,4096|-|-|akhadangi/Llama3.2.1B.BaseFiT model|N
featherless/mix-3|mix-3|remy9926/mix-3|C|1.0,5.0|32768,4096|-|-|remy9926/mix-3 model|N
featherless/Morrigan-3.2-1B|morrigan-3.2-1b|Novaciano/Morrigan-3.2-1B|C|1.0,5.0|32768,4096|-|-|Novaciano/Morrigan-3.2-1B model|N
featherless/llama_3.2_1b_instruct_finetune|llama_3.2_1b_instruct_finetune|minhtuan7akp/llama_3.2_1b_instruct_finetune|C|1.0,5.0|32768,4096|-|-|minhtuan7akp/llama_3.2_1b_instruct_finetune model|N
featherless/EverFlora-Llama-3.2-1B-Finetuned3|everflora-llama-3.2-1b-finetuned3|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned3|C|1.0,5.0|32768,4096|-|-|Dc-4nderson/EverFlora-Llama-3.2-1B-Finetuned3 model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_1_2ep model|N
featherless/EchoLLaMA-1B|echollama-1b|AquaLabs/EchoLLaMA-1B|C|1.0,5.0|32768,4096|-|-|AquaLabs/EchoLLaMA-1B model|N
featherless/llama_3.2_1b_instruct_custom_reward_model|-|ikenna1234/llama_3.2_1b_instruct_custom_reward_model|C|1.0,5.0|32768,4096|-|-|ikenna1234/llama_3.2_1b_instruct_custom_reward_model model|N
featherless/5_random_MQA_llama_model|5_random_mqa_llama_model|jiinking/5_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_random_MQA_llama_model model|N
featherless/starplus-llama-3.2-1b-mbpp|starplus-llama-3.2-1b-mbpp|ALIN-LLM/starplus-llama-3.2-1b-mbpp|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/starplus-llama-3.2-1b-mbpp model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_2ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_2ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_1k_1_2ep_4bit model|N
featherless/13_first_MQA_llama_model|13_first_mqa_llama_model|jiinking/13_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/13_first_MQA_llama_model model|N
featherless/Llama3.2-docker-training|llama3.2-docker-training|Plan-9/Llama3.2-docker-training|C|1.0,5.0|32768,4096|-|-|Plan-9/Llama3.2-docker-training model|N
featherless/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25 model|N
featherless/llama32_1b_scoring_thinkaloud|llama32_1b_scoring_thinkaloud|upb-nlp/llama32_1b_scoring_thinkaloud|C|1.0,5.0|32768,4096|K|-|upb-nlp/llama32_1b_scoring_thinkaloud model|N
featherless/rlpt-1B-1BRM|rlpt-1b-1brm|konwoo/rlpt-1B-1BRM|C|1.0,5.0|32768,4096|-|-|konwoo/rlpt-1B-1BRM model|N
featherless/llama_1B_hi|llama_1b_hi|Aniruddha0605/llama_1B_hi|C|1.0,5.0|32768,4096|-|-|Aniruddha0605/llama_1B_hi model|N
featherless/4_random_MQA_llama_model|4_random_mqa_llama_model|jiinking/4_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_random_MQA_llama_model model|N
featherless/Bellatrix-Tiny-1B-v2-abliterated|bellatrix-tiny-1b-v2-abliterated|prithivMLmods/Bellatrix-Tiny-1B-v2-abliterated|C|1.0,5.0|32768,4096|V|-|prithivMLmods/Bellatrix-Tiny-1B-v2-abliterated model|N
featherless/Llama-3.2-1B-Instruct_sum_KTO_40k_2_2ep|llama-3.2-1b-instruct_sum_kto_40k_2_2ep|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_KTO_40k_2_2ep model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep_4bit model|N
featherless/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classification|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classification|C|1.0,5.0|32768,4096|-|-|bonamt11/Llama-3.2-1B-Instruct-bnb-4bit-Patent-Classification model|N
featherless/llama-1681_A|llama-1681_a|anish12/llama-1681_A|C|1.0,5.0|32768,4096|-|-|anish12/llama-1681_A model|N
featherless/torchtune_1B_lr1.5e-5_3epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_3epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_3epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/Llama-3.2-1B_3_mix_position_famous_unrecognized|-|kenken6696/Llama-3.2-1B_3_mix_position_famous_unrecognized|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3_mix_position_famous_unrecognized model|N
featherless/1_layer_GQA4_llama_model|1_layer_gqa4_llama_model|jiinking/1_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_layer_GQA4_llama_model model|N
featherless/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v7-meta-OWT|-|Grogros/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v7-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dm-llama3.2-1BI-OWTWM-DWM-Al4-WT-v7-meta-OWT model|N
featherless/llama-3.2-1B-finetuned|llama-3.2-1b-finetuned|mostafabehroozi/llama-3.2-1B-finetuned|C|1.0,5.0|32768,4096|-|-|mostafabehroozi/llama-3.2-1B-finetuned model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_64_0.05_16CLINICALe3c-sentences_tag model|N
featherless/beeyeah-reg-0.1-0.00001-0.1|beeyeah-reg-0.1-0.00001-0.1|Victoriayu/beeyeah-reg-0.1-0.00001-0.1|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-reg-0.1-0.00001-0.1 model|N
featherless/interviewer_model9|interviewer_model9|dmohanayogesh9/interviewer_model9|C|1.0,5.0|32768,4096|-|-|dmohanayogesh9/interviewer_model9 model|N
featherless/13_layer_MQA_llama_model|13_layer_mqa_llama_model|jiinking/13_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/13_layer_MQA_llama_model model|N
featherless/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr2e-05_wd0.01_epoch10|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr2e-05_wd0.01_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr2e-05_wd0.01_epoch10 model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_1k_1_1ep_4bit model|N
featherless/Llama-3.2-1B_AllDataSources_8e-06_cosine_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_cosine_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_cosine_0.3_512_tp model|N
featherless/8_bitwise_MQA_llama_model|8_bitwise_mqa_llama_model|jiinking/8_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/8_bitwise_MQA_llama_model model|N
featherless/10_bitwise_MQA_llama_model|10_bitwise_mqa_llama_model|jiinking/10_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/10_bitwise_MQA_llama_model model|N
featherless/customer-success-assistant|customer-success-assistant|myriamgoyet/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|myriamgoyet/customer-success-assistant model|N
featherless/test|test|wilpancake/test|C|1.0,5.0|32768,4096|-|-|wilpancake/test model|N
featherless/numina-1b-ep3-lr3e-5-sft|numina-1b-ep3-lr3e-5-sft|axolotl-ai-co/numina-1b-ep3-lr3e-5-sft|C|1.0,5.0|32768,4096|-|-|axolotl-ai-co/numina-1b-ep3-lr3e-5-sft model|N
featherless/4_layer_GQA4_llama_model|4_layer_gqa4_llama_model|jiinking/4_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B-Instruct-RL-gsm8k-step1|llama-3.2-1b-instruct-rl-gsm8k-step1|Trelis/Llama-3.2-1B-Instruct-RL-gsm8k-step1|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct-RL-gsm8k-step1 model|N
featherless/Llama-3.2-1B-Instruct-FFT-ko-jp|llama-3.2-1b-instruct-fft-ko-jp|MDDDDR/Llama-3.2-1B-Instruct-FFT-ko-jp|C|1.0,5.0|32768,4096|-|-|MDDDDR/Llama-3.2-1B-Instruct-FFT-ko-jp model|N
featherless/REFUEL-1B-test-2|refuel-1b-test-2|LuckyLukke/REFUEL-1B-test-2|C|1.0,5.0|32768,4096|-|-|LuckyLukke/REFUEL-1B-test-2 model|N
featherless/llama-3.2-1b-instruct-finetune_png_10k_cot_1k|-|derickio/llama-3.2-1b-instruct-finetune_png_10k_cot_1k|C|1.0,5.0|32768,4096|-|-|derickio/llama-3.2-1b-instruct-finetune_png_10k_cot_1k model|N
featherless/Llama-3-2-1B-Instruct-text2sql-new|llama-3.2-1b-instruct-text2sql-new|daaaaaaaa/Llama-3-2-1B-Instruct-text2sql-new|C|1.0,5.0|32768,4096|-|-|daaaaaaaa/Llama-3-2-1B-Instruct-text2sql-new model|N
featherless/Finetuned|finetuned|alanpramil/Finetuned|C|1.0,5.0|32768,4096|-|-|alanpramil/Finetuned model|N
featherless/llama3-1b-gt-g-s-e|llama3-1b-gt-g-s-e|dariaL27/llama3-1b-gt-g-s-e|C|1.0,5.0|32768,4096|-|-|dariaL27/llama3-1b-gt-g-s-e model|N
featherless/llama-3.2-1B-sutdqa|llama-3.2-1b-sutdqa|ddahlmeier/llama-3.2-1B-sutdqa|C|1.0,5.0|32768,4096|-|-|ddahlmeier/llama-3.2-1B-sutdqa model|N
featherless/1_layer_GQA2_llama_model|1_layer_gqa2_llama_model|jiinking/1_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_layer_GQA2_llama_model model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/13_bitwise_MQA_llama_model|13_bitwise_mqa_llama_model|jiinking/13_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/13_bitwise_MQA_llama_model model|N
featherless/llama3.2-typhoon2-1b_ft|llama3.2-typhoon2-1b_ft|supalun/llama3.2-typhoon2-1b_ft|C|1.0,5.0|32768,4096|-|-|supalun/llama3.2-typhoon2-1b_ft model|N
featherless/5_layer_MQA_llama_model|5_layer_mqa_llama_model|jiinking/5_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_layer_MQA_llama_model model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|taewanme/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|taewanme/llama-3.2-1B-test model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-a0.5|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-a0.5|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-OpenMathInstruct-AlpacaGPT4-OpenWebText-a0.5 model|N
featherless/merged-llama3.2-1B-financial|merged-llama3.2-1b-financial|mengqizou011438/merged-llama3.2-1B-financial|C|1.0,5.0|32768,4096|-|-|mengqizou011438/merged-llama3.2-1B-financial model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-Al4-wmToken-d4-a0.1-v2 model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_5e-05_constant_512 model|N
featherless/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25-learnability_adv|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25-learnability_adv model|N
featherless/llama3.2_1b_16bit|llama3.2_1b_16bit|quinnhe/llama3.2_1b_16bit|C|1.0,5.0|32768,4096|-|-|quinnhe/llama3.2_1b_16bit model|N
featherless/Grogros-dmWM-Llama-3.2-1B-Instruct-M-A-O-d4-a0.25-learnability_adv|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-M-A-O-d4-a0.25-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-M-A-O-d4-a0.25-learnability_adv model|N
featherless/tinystories-1B-8-epochs-4-16|tinystories-1b-8-epochs-4-16|kothasuhas/tinystories-1B-8-epochs-4-16|C|1.0,5.0|32768,4096|-|-|kothasuhas/tinystories-1B-8-epochs-4-16 model|N
featherless/14_bitwise_MQA_llama_model|14_bitwise_mqa_llama_model|jiinking/14_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/14_bitwise_MQA_llama_model model|N
featherless/llama-3.2-1b-extremist3|llama-3.2-1b-extremist3|danieliuspodb/llama-3.2-1b-extremist3|C|1.0,5.0|32768,4096|-|-|danieliuspodb/llama-3.2-1b-extremist3 model|N
featherless/llama1B_OB100|llama1b_ob100|KSU-HW-SEC/llama1B_OB100|C|1.0,5.0|32768,4096|-|-|KSU-HW-SEC/llama1B_OB100 model|N
featherless/1b-sft-bio|1b-sft-bio|llvv/1b-sft-bio|C|1.0,5.0|32768,4096|-|-|llvv/1b-sft-bio model|N
featherless/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v3|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v3|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-KGWB-OWT_WMBoundary-OWT-WB-v3 model|N
featherless/RS_1B_RM_iter1|rs_1b_rm_iter1|rl-llm-coders/RS_1B_RM_iter1|C|1.0,5.0|32768,4096|-|-|rl-llm-coders/RS_1B_RM_iter1 model|N
featherless/AIAutocad|aiautocad|Azizur21/AIAutocad|C|1.0,5.0|32768,4096|-|-|Azizur21/AIAutocad model|N
featherless/Llama-3.2-1B-Instruct-terapeutico|llama-3.2-1b-instruct-terapeutico|VictLee/Llama-3.2-1B-Instruct-terapeutico|C|1.0,5.0|32768,4096|-|-|VictLee/Llama-3.2-1B-Instruct-terapeutico model|N
featherless/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep_4bit|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep_4bit|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_DPO_10k_1_3ep_4bit model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg-learnability_adv|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-OMI-d4-NoReg-learnability_adv model|N
featherless/star_plus-finetune-llama-3.2-1b-gsm8k-step-1|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-1|C|1.0,5.0|32768,4096|-|-|JakeOh/star_plus-finetune-llama-3.2-1b-gsm8k-step-1 model|N
featherless/Llama-3.2-1B-Instruct-v3-eps4|llama-3.2-1b-instruct-v3-eps4|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps4|C|1.0,5.0|32768,4096|V|-|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps4 model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_32_0.05_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_64_16_0.01_16CLINICALe3c-sentences_tag model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_64_0.01_16CLINICALe3c-sentences_tag model|N
featherless/llama-3.2-1B-sutdqa-merged|llama-3.2-1b-sutdqa-merged|reenee1601/llama-3.2-1B-sutdqa-merged|C|1.0,5.0|32768,4096|-|-|reenee1601/llama-3.2-1B-sutdqa-merged model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-10percent|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-10percent|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DistillationWM-OWTWM2-wmToken-d4-10percent model|N
featherless/llama_v3|llama_v3|lilmeaty/llama_v3|C|1.0,5.0|32768,4096|-|-|lilmeaty/llama_v3 model|N
featherless/dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-WOHealth-d4-NoReg model|N
featherless/llama3.2-1b-neuspell-5epochs|llama3.2-1b-neuspell-5epochs|manav-glean/llama3.2-1b-neuspell-5epochs|C|1.0,5.0|32768,4096|-|-|manav-glean/llama3.2-1b-neuspell-5epochs model|N
featherless/llama_v6|llama_v6|lilmeaty/llama_v6|C|1.0,5.0|32768,4096|-|-|lilmeaty/llama_v6 model|N
featherless/beeyeah-clip-0.1-0.00001-0.2|beeyeah-clip-0.1-0.00001-0.2|Victoriayu/beeyeah-clip-0.1-0.00001-0.2|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-clip-0.1-0.00001-0.2 model|N
featherless/finetune-llama-3.2-1b-math50k|finetune-llama-3.2-1b-math50k|ALIN-LLM/finetune-llama-3.2-1b-math50k|C|1.0,5.0|32768,4096|-|-|ALIN-LLM/finetune-llama-3.2-1b-math50k model|N
featherless/Llama-3.2-1B-TEL-A-finance|llama-3.2-1b-tel-a-finance|TEL-LLM/Llama-3.2-1B-TEL-A-finance|C|1.0,5.0|32768,4096|-|-|TEL-LLM/Llama-3.2-1B-TEL-A-finance model|N
featherless/dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-LucieFr-d4-NoReg model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_177k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_177k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_177k_2_1ep model|N
featherless/3_bitwise_MQA_llama_model|3_bitwise_mqa_llama_model|jiinking/3_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_bitwise_MQA_llama_model model|N
featherless/Priapus-3.2-1B|priapus-3.2-1b|Novaciano/Priapus-3.2-1B|C|1.0,5.0|32768,4096|-|-|Novaciano/Priapus-3.2-1B model|N
featherless/6_bitwise_MQA_llama_model|6_bitwise_mqa_llama_model|jiinking/6_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/6_bitwise_MQA_llama_model model|N
featherless/12_layer_MQA_llama_model|12_layer_mqa_llama_model|jiinking/12_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/12_layer_MQA_llama_model model|N
featherless/llama3-peftLora-insurance-fusionado|llama3-peftlora-insurance-fusionado|hedtorresca/llama3-peftLora-insurance-fusionado|C|1.0,5.0|32768,4096|-|-|hedtorresca/llama3-peftLora-insurance-fusionado model|N
featherless/LocalAI-functioncall-llama3.2-1b-v0.4|localai-functioncall-llama3.2-1b|mudler/LocalAI-functioncall-llama3.2-1b-v0.4|C|1.0,5.0|32768,4096|V|-|mudler/LocalAI-functioncall-llama3.2-1b-v0.4 model|N
featherless/1b_instruct|1b_instruct|friendshipkim/1b_instruct|C|1.0,5.0|32768,4096|-|-|friendshipkim/1b_instruct model|N
featherless/9_random_MQA_llama_model|9_random_mqa_llama_model|jiinking/9_random_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/9_random_MQA_llama_model model|N
featherless/10_first_MQA_llama_model|10_first_mqa_llama_model|jiinking/10_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/10_first_MQA_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_50.0k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_50.0k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_50.0k_2_1ep model|N
featherless/5_layer_GQA2_llama_model|5_layer_gqa2_llama_model|jiinking/5_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/5_layer_GQA2_llama_model model|N
featherless/YOD|yod|Novaciano/YOD|C|1.0,5.0|32768,4096|-|-|Novaciano/YOD model|N
featherless/peft_model_llama|peft_model_llama|Jinsol0802/peft_model_llama|C|1.0,5.0|32768,4096|-|-|Jinsol0802/peft_model_llama model|N
featherless/merged-llama3.2-1B-financial_news_and_qa|-|mengqizou011438/merged-llama3.2-1B-financial_news_and_qa|C|1.0,5.0|32768,4096|-|-|mengqizou011438/merged-llama3.2-1B-financial_news_and_qa model|N
featherless/third_fully_merged|third_fully_merged|krishna195/third_fully_merged|C|1.0,5.0|32768,4096|-|-|krishna195/third_fully_merged model|N
featherless/interviewer|interviewer|dmohanayogesh9/interviewer|C|1.0,5.0|32768,4096|-|-|dmohanayogesh9/interviewer model|N
featherless/Llama-3.2-1B-Instruct_AllDataSources_8e-06_constant_512|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_8e-06_constant_512|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B-Instruct_AllDataSources_8e-06_constant_512 model|N
featherless/Mixmix-LlaMAX3.2-1B-Merge|mixmix-llamax3.2-1b-merge|marcuscedricridia/Mixmix-LlaMAX3.2-1B-Merge|C|1.0,5.0|32768,4096|-|-|marcuscedricridia/Mixmix-LlaMAX3.2-1B-Merge model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_32_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/final_merged|final_merged|krishna195/final_merged|C|1.0,5.0|32768,4096|-|-|krishna195/final_merged model|N
featherless/Grogros-dmWM-Llama-3.2-1B-Instruct-ft-M-A-O-d4-a0.25-ft-learnability_adv|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-ft-M-A-O-d4-a0.25-ft-learnability_adv|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-Llama-3.2-1B-Instruct-ft-M-A-O-d4-a0.25-ft-learnability_adv model|N
featherless/cola_meta-llama-Llama-3.2-1B_5_0.85|cola_meta-llama-llama-3.2-1b_5_0.85|haryoaw/cola_meta-llama-Llama-3.2-1B_5_0.85|C|1.0,5.0|32768,4096|-|-|haryoaw/cola_meta-llama-Llama-3.2-1B_5_0.85 model|N
featherless/llama32_1b_scoring_all_tasks|llama32_1b_scoring_all_tasks|upb-nlp/llama32_1b_scoring_all_tasks|C|1.0,5.0|32768,4096|-|-|upb-nlp/llama32_1b_scoring_all_tasks model|N
featherless/Llama3.2.1B.0.1-L|llama3.2.1b.0.1-l|akhadangi/Llama3.2.1B.0.1-L|C|1.0,5.0|32768,4096|-|-|akhadangi/Llama3.2.1B.0.1-L model|N
featherless/llama-3.2-1b-chat-doctor|llama-3.2-1b-chat-doctor|nimrita/llama-3.2-1b-chat-doctor|C|1.0,5.0|32768,4096|-|-|nimrita/llama-3.2-1b-chat-doctor model|N
featherless/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-DPO|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-DPO|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-LLama-3-1B-Harm-ft-HarmData-AlpacaGPT4-OpenWebText-d4-a0.25-DPO model|N
featherless/Llama-3.2-1B-Instruct_ORPO_1|llama-3.2-1b-instruct_orpo_1|Trelis/Llama-3.2-1B-Instruct_ORPO_1|C|1.0,5.0|32768,4096|-|-|Trelis/Llama-3.2-1B-Instruct_ORPO_1 model|N
featherless/1_layer_MQA_llama_model|1_layer_mqa_llama_model|jiinking/1_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/1_layer_MQA_llama_model model|N
featherless/Llama3.2-TaiPhone-1B-Instruct-v0.1|llama3.2-taiphone-1b-instruct|aqweteddy/Llama3.2-TaiPhone-1B-Instruct-v0.1|C|1.0,5.0|32768,4096|V|-|aqweteddy/Llama3.2-TaiPhone-1B-Instruct-v0.1 model|N
featherless/llama32_1b_steerlm_focus_attribute|llama32_1b_steerlm_focus_attribute|upb-nlp/llama32_1b_steerlm_focus_attribute|C|1.0,5.0|32768,4096|-|-|upb-nlp/llama32_1b_steerlm_focus_attribute model|N
featherless/ScienceLLaMA-1b|sciencellama-1b|JingyaoLi/ScienceLLaMA-1b|C|1.0,5.0|32768,4096|-|-|JingyaoLi/ScienceLLaMA-1b model|N
featherless/Llama-3.2-1B_AllDataSources_8e-06_constant_0.3_512_tp|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_constant_0.3_512_tp|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_8e-06_constant_0.3_512_tp model|N
featherless/libai-finetuned-1b-Merged|libai-finetuned-1b-merged|insuremo-dipl/libai-finetuned-1b-Merged|C|1.0,5.0|32768,4096|-|-|insuremo-dipl/libai-finetuned-1b-Merged model|N
featherless/ErselFit_Finetuned_Llama_1B_V2|erselfit_finetuned_llama_1b_v2|Ersel1/ErselFit_Finetuned_Llama_1B_V2|C|1.0,5.0|32768,4096|-|-|Ersel1/ErselFit_Finetuned_Llama_1B_V2 model|N
featherless/tfa_output_2025_m05_d10_t19h_57m_34s|tfa_output_2025_m05_d10_t19h_57m_34s|brando/tfa_output_2025_m05_d10_t19h_57m_34s|C|1.0,5.0|32768,4096|-|-|brando/tfa_output_2025_m05_d10_t19h_57m_34s model|N
featherless/llama-3.2-1b-extremist4|llama-3.2-1b-extremist4|danieliuspodb/llama-3.2-1b-extremist4|C|1.0,5.0|32768,4096|-|-|danieliuspodb/llama-3.2-1b-extremist4 model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10.0k_2_1ep model|N
featherless/10_layer_MQA_llama_model|10_layer_mqa_llama_model|jiinking/10_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/10_layer_MQA_llama_model model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_64_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/8_layer_GQA4_llama_model|8_layer_gqa4_llama_model|jiinking/8_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/8_layer_GQA4_llama_model model|N
featherless/llamapretrained1|llamapretrained1|Elcaida/llamapretrained1|C|1.0,5.0|32768,4096|-|-|Elcaida/llamapretrained1 model|N
featherless/llama-3-1b-chat-doctor|llama-3-1b-chat-doctor|usmanqadeer1/llama-3-1b-chat-doctor|C|1.0,5.0|32768,4096|-|-|usmanqadeer1/llama-3-1b-chat-doctor model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40.0k_1_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40.0k_1_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40.0k_1_1ep model|N
featherless/2_bitwise_MQA_llama_model|2_bitwise_mqa_llama_model|jiinking/2_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_bitwise_MQA_llama_model model|N
featherless/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-RefusalData-d4-a0.25|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-RefusalData-d4-a0.25|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-meta-llama-Llama-3.2-1B-Instruct-ft-HarmData-AlpacaGPT4-OpenWebText-RefusalData-d4-a0.25 model|N
featherless/16_first_MQA_llama_model|16_first_mqa_llama_model|jiinking/16_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/16_first_MQA_llama_model model|N
featherless/clean-5|clean-5|remy9926/clean-5|C|1.0,5.0|32768,4096|-|-|remy9926/clean-5 model|N
featherless/Llama-3.2-1B_3_mix_position_biased_unbiased|-|kenken6696/Llama-3.2-1B_3_mix_position_biased_unbiased|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-1B_3_mix_position_biased_unbiased model|N
featherless/Llama3.2-learn|llama3.2-learn|genixo/Llama3.2-learn|C|1.0,5.0|32768,4096|-|-|genixo/Llama3.2-learn model|N
featherless/my-LLM_RAG-model|my-llm_rag-model|dinalad0/my-LLM_RAG-model|C|1.0,5.0|32768,4096|-|-|dinalad0/my-LLM_RAG-model model|N
featherless/dpo-pairrm-lora-adapter|dpo-pairrm-lora-adapter|Likhith003/dpo-pairrm-lora-adapter|C|1.0,5.0|32768,4096|-|-|Likhith003/dpo-pairrm-lora-adapter model|N
featherless/llama-31-hhrlhf-squad-rlhf-policy-model|llama-31-hhrlhf-squad-rlhf-policy-model|pgillier/llama-31-hhrlhf-squad-rlhf-policy-model|C|1.0,5.0|32768,4096|-|-|pgillier/llama-31-hhrlhf-squad-rlhf-policy-model model|N
featherless/2_first_MQA_llama_model|2_first_mqa_llama_model|jiinking/2_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_first_MQA_llama_model model|N
featherless/12_first_MQA_llama_model|12_first_mqa_llama_model|jiinking/12_first_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/12_first_MQA_llama_model model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr1e-05_beta0.5_alpha2_epoch5|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr1e-05_beta0.5_alpha2_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr1e-05_beta0.5_alpha2_epoch5 model|N
featherless/tfa_output_2025_m05_d10_t20h_16m_03s|tfa_output_2025_m05_d10_t20h_16m_03s|brando/tfa_output_2025_m05_d10_t20h_16m_03s|C|1.0,5.0|32768,4096|-|-|brando/tfa_output_2025_m05_d10_t20h_16m_03s model|N
featherless/custom-Llama-2-1b|custom-llama-2-1b|Dev8318/custom-Llama-2-1b|C|1.0,5.0|32768,4096|-|-|Dev8318/custom-Llama-2-1b model|N
featherless/Llama-3.2-1B-Instruct-v3-eps8|llama-3.2-1b-instruct-v3-eps8|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps8|C|1.0,5.0|32768,4096|V|-|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps8 model|N
featherless/4_bitwise_MQA_llama_model|4_bitwise_mqa_llama_model|jiinking/4_bitwise_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_bitwise_MQA_llama_model model|N
featherless/4_layer_GQA2_llama_model|4_layer_gqa2_llama_model|jiinking/4_layer_GQA2_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/4_layer_GQA2_llama_model model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-OpenMathInstruct|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-OpenMathInstruct|C|1.0,5.0|32768,4096|V|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-LucieFr-Al4-OWT-d4-a0.1-v2-OpenMathInstruct model|N
featherless/dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT|C|1.0,5.0|32768,4096|V|-|Grogros/dmWM-llama-3.2-1B-Instruct-OWTWM-DWM-Al4-WT-d4-a0.1-v5-meta-OWT model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_32_16_0.05_16CLINICALe3c-sentences_tag model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|h333un/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|h333un/llama-3.2-1B-test model|N
featherless/dmWM-llama-3_1BI-HarmData-PKUU-Al4-OWT-Ref-PKUS-d4-a0.25_v1|-|Grogros/dmWM-llama-3_1BI-HarmData-PKUU-Al4-OWT-Ref-PKUS-d4-a0.25_v1|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3_1BI-HarmData-PKUU-Al4-OWT-Ref-PKUS-d4-a0.25_v1 model|N
featherless/odinbot-finetuned-v3-10022024|odinbot-finetuned-v3-10022024|akhilanilkumar/odinbot-finetuned-v3-10022024|C|1.0,5.0|32768,4096|V|-|akhilanilkumar/odinbot-finetuned-v3-10022024 model|N
featherless/llama-3.1-1B-aws|llama-3.1-1b-aws|ddahlmeier/llama-3.1-1B-aws|C|1.0,5.0|32768,4096|-|-|ddahlmeier/llama-3.1-1B-aws model|N
featherless/medium-full|medium-full|remy9926/medium-full|C|1.0,5.0|32768,4096|-|-|remy9926/medium-full model|N
featherless/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/3_layer_GQA4_llama_model|3_layer_gqa4_llama_model|jiinking/3_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/3_layer_GQA4_llama_model model|N
featherless/0c2649cc-2fe7-4e88-b672-6da1fee4001f|0c2649cc-2fe7-4e88-b672-6da1fee4001f|willtensora/0c2649cc-2fe7-4e88-b672-6da1fee4001f|C|1.0,5.0|32768,4096|-|-|willtensora/0c2649cc-2fe7-4e88-b672-6da1fee4001f model|N
featherless/llama-instructpretrained|llama-instructpretrained|Elcaida/llama-instructpretrained|C|1.0,5.0|32768,4096|-|-|Elcaida/llama-instructpretrained model|N
featherless/Llama_3.2_1B_Instruct|llama_3.2_1b_instruct|task-aware/Llama_3.2_1B_Instruct|C|1.0,5.0|32768,4096|-|-|task-aware/Llama_3.2_1B_Instruct model|N
featherless/llama3.2_1B_distractors_generation|llama3.2_1b_distractors_generation|BirendraSharma/llama3.2_1B_distractors_generation|C|1.0,5.0|32768,4096|-|-|BirendraSharma/llama3.2_1B_distractors_generation model|N
featherless/customer-success-assistant|customer-success-assistant|datA-jed/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|datA-jed/customer-success-assistant model|N
featherless/2_layer_MQA_llama_model|2_layer_mqa_llama_model|jiinking/2_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/2_layer_MQA_llama_model model|N
featherless/negotio-1B-REFUEL-1|negotio-1b-refuel-1|LuckyLukke/negotio-1B-REFUEL-1|C|1.0,5.0|32768,4096|-|-|LuckyLukke/negotio-1B-REFUEL-1 model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr2e-05_beta0.1_alpha2_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr2e-05_beta0.1_alpha2_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr2e-05_beta0.1_alpha2_epoch10 model|N
featherless/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25_v1|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25_v1|C|1.0,5.0|32768,4096|-|-|Grogros/dmWM-llama-3.2-1B-Instruct-HarmData-Al4-OWT-Ref-d4-a0.25_v1 model|N
featherless/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaRefuseSmooth|-|Grogros/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaRefuseSmooth|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-ce-Alpaca-3.0-AlpacaRefuseSmooth model|N
featherless/finetune_llama_PairRM|finetune_llama_pairrm|sijiasijia/finetune_llama_PairRM|C|1.0,5.0|32768,4096|-|-|sijiasijia/finetune_llama_PairRM model|N
featherless/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512_flattening|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512_flattening|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_ClinicalWhole_5e-05_constant_512_flattening model|N
featherless/pos_tofu_Llama-3.2-1B-Instruct_full_lr2e-05_wd0.01_epoch5|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_full_lr2e-05_wd0.01_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_full_lr2e-05_wd0.01_epoch5 model|N
featherless/llama3-finetuned-Latest_f16|llama3-finetuned-latest_f16|3odat/llama3-finetuned-Latest_f16|C|1.0,5.0|32768,4096|-|-|3odat/llama3-finetuned-Latest_f16 model|N
featherless/beeyeah-weight-0.5-1e-6|beeyeah-weight-0.5-1e-6|Victoriayu/beeyeah-weight-0.5-1e-6|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-weight-0.5-1e-6 model|N
featherless/llama-3.2-1B-test|llama-3.2-1b-test|fanfare71/llama-3.2-1B-test|C|1.0,5.0|32768,4096|-|-|fanfare71/llama-3.2-1B-test model|N
featherless/test_honest-serenity-73|test_honest-serenity-73|hendrik-spl/test_honest-serenity-73|C|1.0,5.0|32768,4096|-|-|hendrik-spl/test_honest-serenity-73 model|N
featherless/customer-success-assistant|customer-success-assistant|charlestng/customer-success-assistant|C|1.0,5.0|32768,4096|-|-|charlestng/customer-success-assistant model|N
featherless/dm-llama3.2-1BI-OMI-Al4-OWT-ran0-meta-OWT|-|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-ran0-meta-OWT|C|1.0,5.0|32768,4096|-|-|Grogros/dm-llama3.2-1BI-OMI-Al4-OWT-ran0-meta-OWT model|N
featherless/Grogros-Llama-3.2-1B-Instruct-IFP-Al4|grogros-llama-3.2-1b-instruct-ifp-al4|Grogros/Grogros-Llama-3.2-1B-Instruct-IFP-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-Llama-3.2-1B-Instruct-IFP-Al4 model|N
featherless/Llama-3.2-1B-Instruct-v3-eps2|llama-3.2-1b-instruct-v3-eps2|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps2|C|1.0,5.0|32768,4096|V|-|intaek-alignai/Llama-3.2-1B-Instruct-v3-eps2 model|N
featherless/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth-Long|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth-Long|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-OurInstruct-distillation-Alpaca-3.0-AlpacaRefuseSmooth-Long model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_40k_2_2ep model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_60k_2_1ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_60k_2_1ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_60k_2_1ep model|N
featherless/beeyeah-clip-0.1-0.0000085-0.2|beeyeah-clip-0.1-0.0000085-0.2|Victoriayu/beeyeah-clip-0.1-0.0000085-0.2|C|1.0,5.0|32768,4096|-|-|Victoriayu/beeyeah-clip-0.1-0.0000085-0.2 model|N
featherless/Llama-3_2-ft|llama-3_2-ft|ezhf2024/Llama-3_2-ft|C|1.0,5.0|32768,4096|-|-|ezhf2024/Llama-3_2-ft model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha1_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha1_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_NPO_lr5e-05_beta0.1_alpha1_epoch10 model|N
featherless/Llama-halcyon-1B-token-instruct-checkpoint-10240|-|halcyon-llm/Llama-halcyon-1B-token-instruct-checkpoint-10240|C|1.0,5.0|32768,4096|-|-|halcyon-llm/Llama-halcyon-1B-token-instruct-checkpoint-10240 model|N
featherless/10_layer_GQA4_llama_model|10_layer_gqa4_llama_model|jiinking/10_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/10_layer_GQA4_llama_model model|N
featherless/Shastra-LLAMA3.2-Math-SFT|shastra-llama3.2-math-sft|hemanth955/Shastra-LLAMA3.2-Math-SFT|C|1.0,5.0|32768,4096|-|-|hemanth955/Shastra-LLAMA3.2-Math-SFT model|N
featherless/11_layer_MQA_llama_model|11_layer_mqa_llama_model|jiinking/11_layer_MQA_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/11_layer_MQA_llama_model model|N
featherless/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag|C|1.0,5.0|32768,4096|-|-|Mattia2700/Llama-3.2-1B_AllDataSources_it.layer1_NoQuant_16_32_0.01_16CLINICALe3c-sentences_tag model|N
featherless/14_layer_GQA4_llama_model|14_layer_gqa4_llama_model|jiinking/14_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/14_layer_GQA4_llama_model model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr2e-05_beta0.1_alpha1_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr2e-05_beta0.1_alpha1_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr2e-05_beta0.1_alpha1_epoch10 model|N
featherless/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_trl|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_trl|C|1.0,5.0|32768,4096|-|-|keithdrexel/unsloth-llama-3.2-1b-tldr-unsloth-dpo_mid_checkpoint_trl model|N
featherless/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr5e-05_wd0.01_epoch5|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr5e-05_wd0.01_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr5e-05_wd0.01_epoch5 model|N
featherless/15_layer_GQA4_llama_model|15_layer_gqa4_llama_model|jiinking/15_layer_GQA4_llama_model|C|1.0,5.0|32768,4096|-|-|jiinking/15_layer_GQA4_llama_model model|N
featherless/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep|C|1.0,5.0|32768,4096|-|-|Muadil/Llama-3.2-1B-Instruct_sum_PPO_Skywork_10k_1_2ep model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha2_epoch5|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha2_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha2_epoch5 model|N
featherless/llama32-1b-wikitext2-distilled-5e7-v2|llama32-1b-wikitext2-distilled-5e7|hudsiop/llama32-1b-wikitext2-distilled-5e7-v2|C|1.0,5.0|32768,4096|V|-|hudsiop/llama32-1b-wikitext2-distilled-5e7-v2 model|N
featherless/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-Al4|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-dmWM-llama-3.2-1B-Instruct-KGW-d4-allData-Al4 model|N
featherless/pos_tofu_Llama-3.2-1B-Instruct_full_lr5e-05_wd0.01_epoch10|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_full_lr5e-05_wd0.01_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_full_lr5e-05_wd0.01_epoch10 model|N
featherless/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr1e-05_wd0.01_epoch10|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr1e-05_wd0.01_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/pos_tofu_Llama-3.2-1B-Instruct_retain90_forget10_bio_lr1e-05_wd0.01_epoch10 model|N
featherless/Llama-3.2-1B-Instruct-awq-bits8-seed0|llama-3.2-1b-instruct-awq-bits8-seed0|PruningVSQuantization/Llama-3.2-1B-Instruct-awq-bits8-seed0|C|1.0,5.0|32768,4096|-|-|PruningVSQuantization/Llama-3.2-1B-Instruct-awq-bits8-seed0 model|N
featherless/Grogros-Llama-3.2-1B-Instruct-SFP-Al4|grogros-llama-3.2-1b-instruct-sfp-al4|Grogros/Grogros-Llama-3.2-1B-Instruct-SFP-Al4|C|1.0,5.0|32768,4096|-|-|Grogros/Grogros-Llama-3.2-1B-Instruct-SFP-Al4 model|N
featherless/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr1e-05_wd0.01_epoch5|-|open-unlearning/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr1e-05_wd0.01_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr1e-05_wd0.01_epoch5 model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr1e-05_beta0.05_alpha1_epoch5|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr1e-05_beta0.05_alpha1_epoch5|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr1e-05_beta0.05_alpha1_epoch5 model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_GradDiff_lr4e-05_alpha2_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_GradDiff_lr4e-05_alpha2_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_GradDiff_lr4e-05_alpha2_epoch10 model|N
featherless/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha1_epoch10|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha1_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/unlearn_tofu_Llama-3.2-1B-Instruct_forget10_IdkDPO_lr5e-05_beta0.05_alpha1_epoch10 model|N
featherless/Nemotron-Research-Reasoning-Qwen-1.5B|nemotron-research-reasoning-qwen-1.5b|nvidia/Nemotron-Research-Reasoning-Qwen-1.5B|C|1.0,5.0|131072,4096|K|-|nvidia/Nemotron-Research-Reasoning-Qwen-1.5B model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch1 model|N
featherless/gemma2_r_dpo_golden-hh_noise40_epoch3|gemma2_r_dpo_golden-hh_noise40_epoch3|ma921/gemma2_r_dpo_golden-hh_noise40_epoch3|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_r_dpo_golden-hh_noise40_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch3 model|N
featherless/gemma-2-2b-zephyr-sft|gemma-2-2b-zephyr-sft|kh4dien/gemma-2-2b-zephyr-sft|C|1.0,5.0|8192,4096|-|-|kh4dien/gemma-2-2b-zephyr-sft model|N
featherless/KavithaSaaram-2b-it|kavithasaaram-2b-it|akdiwahar/KavithaSaaram-2b-it|C|1.0,5.0|8192,4096|-|-|akdiwahar/KavithaSaaram-2b-it model|N
featherless/gemma-2-2b-it_multilingual|gemma-2-2b-it_multilingual|MergeBench/gemma-2-2b-it_multilingual|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b-it_multilingual model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch1 model|N
featherless/gemma-2-2b_instruction|gemma-2-2b_instruction|MergeBench/gemma-2-2b_instruction|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b_instruction model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-math-MATH|gemma-2-2b-allenai-tulu-3-sft-math-math|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-MATH|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-MATH model|N
featherless/gemma2_h_dpo_golden-hh_noise40_epoch3_gamma2|-|ma921/gemma2_h_dpo_golden-hh_noise40_epoch3_gamma2|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_h_dpo_golden-hh_noise40_epoch3_gamma2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch2 model|N
featherless/gemma2_dpo_golden-hh_noise40_epoch3|gemma2_dpo_golden-hh_noise40_epoch3|ma921/gemma2_dpo_golden-hh_noise40_epoch3|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_dpo_golden-hh_noise40_epoch3 model|N
featherless/base_2d_random_green_normal_first_qdrnt_red_no_pr_v2_task2_ntr_60_nts_60_20250603_030506|-|gradientrouting-spar/base_2d_random_green_normal_first_qdrnt_red_no_pr_v2_task2_ntr_60_nts_60_20250603_030506|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_qdrnt_red_no_pr_v2_task2_ntr_60_nts_60_20250603_030506 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch3 model|N
featherless/DARE-MERGED|dare-merged|ga-yathri625/DARE-MERGED|C|1.0,5.0|8192,4096|-|-|ga-yathri625/DARE-MERGED model|N
featherless/gemma-2-2b-it_RMU_s200_a1200_layer15|gemma-2-2b-it_rmu_s200_a1200_layer15|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer15 model|N
featherless/Gemma-2-2B-Indian-Law|gemma-2-2b-indian-law|Ananya8154/Gemma-2-2B-Indian-Law|C|1.0,5.0|8192,4096|-|-|Ananya8154/Gemma-2-2B-Indian-Law model|N
featherless/gemma-2-2b-it-Heisenberg|gemma-2-2b-it-heisenberg|dhanush-radhakrishna/gemma-2-2b-it-Heisenberg|C|1.0,5.0|8192,4096|-|-|dhanush-radhakrishna/gemma-2-2b-it-Heisenberg model|N
featherless/GEMMA-2B-A40|gemma-2b-a40|jebish7/GEMMA-2B-A40|C|1.0,5.0|8192,4096|-|-|jebish7/GEMMA-2B-A40 model|N
featherless/very_fine_tuned_gemma2|very_fine_tuned_gemma2|lalagi2/very_fine_tuned_gemma2|C|1.0,5.0|8192,4096|-|-|lalagi2/very_fine_tuned_gemma2 model|N
featherless/gemma-2-2b-it_RMU_s400_a1200_layer7|gemma-2-2b-it_rmu_s400_a1200_layer7|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer7 model|N
featherless/gemma-2-2b-it_RMU_s400_a1200_layer11|gemma-2-2b-it_rmu_s400_a1200_layer11|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer11 model|N
featherless/test_upload|test_upload|lalagi2/test_upload|C|1.0,5.0|8192,4096|-|-|lalagi2/test_upload model|N
featherless/merged_model|merged_model|Guruchi/merged_model|C|1.0,5.0|8192,4096|-|-|Guruchi/merged_model model|N
featherless/gemma_munganga-pawa|gemma_munganga-pawa|Dvn30/gemma_munganga-pawa|C|1.0,5.0|8192,4096|-|-|Dvn30/gemma_munganga-pawa model|N
featherless/gemma-2-2b_RMU_s200_a300_layer7|gemma-2-2b_rmu_s200_a300_layer7|AMindToThink/gemma-2-2b_RMU_s200_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a300_layer7 model|N
featherless/gemma-2-2b-it_RMU_s100_a100_layer15|gemma-2-2b-it_rmu_s100_a100_layer15|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer15 model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s100_a500_layer3|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a500_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a500_layer3 model|N
featherless/gemma-2-2b-it_RMU_s100_a500_layer3|gemma-2-2b-it_rmu_s100_a500_layer3|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer3 model|N
featherless/gemma-2-2b-it_RMU_s200_a500_layer11|gemma-2-2b-it_rmu_s200_a500_layer11|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer11 model|N
featherless/trial-run-quick-train-1740729336|trial-run-quick-train-1740729336|jtl11/trial-run-quick-train-1740729336|C|1.0,5.0|8192,4096|-|-|jtl11/trial-run-quick-train-1740729336 model|N
featherless/gemma2-sft-full|gemma2-sft-full|priyanshi27dixit/gemma2-sft-full|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/gemma2-sft-full model|N
featherless/gemma-2-2b-it_RMU_s200_a1200_layer11|gemma-2-2b-it_rmu_s200_a1200_layer11|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer11 model|N
featherless/wazobia-wellness-bot-sftGemma-2b-it|wazobia-wellness-bot-sftgemma-2b-it|hemhemoh/wazobia-wellness-bot-sftGemma-2b-it|C|1.0,5.0|8192,4096|-|-|hemhemoh/wazobia-wellness-bot-sftGemma-2b-it model|N
featherless/finetuned-gemma-2-2b-output-layer-20-4k-3|-|richmondsin/finetuned-gemma-2-2b-output-layer-20-4k-3|C|1.0,5.0|8192,4096|-|-|richmondsin/finetuned-gemma-2-2b-output-layer-20-4k-3 model|N
featherless/gemma-2-2b_RMU_s200_a100_layer3|gemma-2-2b_rmu_s200_a100_layer3|AMindToThink/gemma-2-2b_RMU_s200_a100_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a100_layer3 model|N
featherless/RESTA_sft_dare_full_ft|resta_sft_dare_full_ft|priyanshi27dixit/RESTA_sft_dare_full_ft|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/RESTA_sft_dare_full_ft model|N
featherless/gemma-2-2b-it_RMU_s200_a300_layer11|gemma-2-2b-it_rmu_s200_a300_layer11|AMindToThink/gemma-2-2b-it_RMU_s200_a300_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a300_layer11 model|N
featherless/gemma-2-2bit-quantised|gemma-2-2bit-quantised|ishaanxgupta/gemma-2-2bit-quantised|C|1.0,5.0|8192,4096|-|-|ishaanxgupta/gemma-2-2bit-quantised model|N
featherless/mini-pozor|mini-pozor|erhj3eh3ehweg/mini-pozor|C|1.0,5.0|8192,4096|-|-|erhj3eh3ehweg/mini-pozor model|N
featherless/gemma-2-2b-it_RMU_s400_a100_layer3|gemma-2-2b-it_rmu_s400_a100_layer3|AMindToThink/gemma-2-2b-it_RMU_s400_a100_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a100_layer3 model|N
featherless/gemma-2-2b-it_RMU_s400_a100_layer15|gemma-2-2b-it_rmu_s400_a100_layer15|AMindToThink/gemma-2-2b-it_RMU_s400_a100_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a100_layer15 model|N
featherless/fine-tunning-gemma2|fine-tunning-gemma2|JoaoVitorIA/fine-tunning-gemma2|C|1.0,5.0|8192,4096|-|-|JoaoVitorIA/fine-tunning-gemma2 model|N
featherless/merged_model|merged_model|Lin039/merged_model|C|1.0,5.0|8192,4096|-|-|Lin039/merged_model model|N
featherless/gemma-2-2b-it_RMU_s100_a300_layer7|gemma-2-2b-it_rmu_s100_a300_layer7|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer7 model|N
featherless/gemma-2-2b-it_RMU_s200_a1200_layer3|gemma-2-2b-it_rmu_s200_a1200_layer3|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer3 model|N
featherless/merged_model|merged_model|n916548/merged_model|C|1.0,5.0|8192,4096|-|-|n916548/merged_model model|N
featherless/Gemma-Daktari-Pawa_v2|gemma-daktari-pawa_v2|Dvn30/Gemma-Daktari-Pawa_v2|C|1.0,5.0|8192,4096|-|-|Dvn30/Gemma-Daktari-Pawa_v2 model|N
featherless/gemma2_h_dpo_golden-hh_noise40_epoch2|gemma2_h_dpo_golden-hh_noise40_epoch2|ma921/gemma2_h_dpo_golden-hh_noise40_epoch2|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_h_dpo_golden-hh_noise40_epoch2 model|N
featherless/OrpoGemma2-2B|orpogemma2-2b|alvezas/OrpoGemma2-2B|C|1.0,5.0|8192,4096|-|-|alvezas/OrpoGemma2-2B model|N
featherless/gemma-2-2b-it_RMU_s100_a300_layer11|gemma-2-2b-it_rmu_s100_a300_layer11|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer11 model|N
featherless/gemma2-2b-it-merged2|gemma2-2b-it-merged2|jaydee29/gemma2-2b-it-merged2|C|1.0,5.0|8192,4096|-|-|jaydee29/gemma2-2b-it-merged2 model|N
featherless/toy_goodharting_gemma-2-2b-it_fruits_vegetables_d_proxy_only_MC_20250403_092607_merged|-|MClarke1991/toy_goodharting_gemma-2-2b-it_fruits_vegetables_d_proxy_only_MC_20250403_092607_merged|C|1.0,5.0|8192,4096|-|-|MClarke1991/toy_goodharting_gemma-2-2b-it_fruits_vegetables_d_proxy_only_MC_20250403_092607_merged model|N
featherless/trial-run-quick-train-1740706014.644984|trial-run-quick-train-1740706014.644984|jtl11/trial-run-quick-train-1740706014.644984|C|1.0,5.0|8192,4096|-|-|jtl11/trial-run-quick-train-1740706014.644984 model|N
featherless/gemma2-DARE_sft_peft|gemma2-dare_sft_peft|priyanshi27dixit/gemma2-DARE_sft_peft|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/gemma2-DARE_sft_peft model|N
featherless/base-tilde-sft-peft-gemma2|base-tilde-sft-peft-gemma2|priyanshi27dixit/base-tilde-sft-peft-gemma2|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/base-tilde-sft-peft-gemma2 model|N
featherless/gemma-2-2b-it_RMU_s100_a100_layer11|gemma-2-2b-it_rmu_s100_a100_layer11|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer11 model|N
featherless/gemma-2-2b-it_RMU_s400_a1200_layer15|gemma-2-2b-it_rmu_s400_a1200_layer15|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer15 model|N
featherless/UMA_LLM_Engine_V1_Full|uma_llm_engine_v1_full|Lil-R/UMA_LLM_Engine_V1_Full|C|1.0,5.0|8192,4096|-|-|Lil-R/UMA_LLM_Engine_V1_Full model|N
featherless/merged_model|merged_model|maja920307/merged_model|C|1.0,5.0|8192,4096|-|-|maja920307/merged_model model|N
featherless/gemma2-DARE_sft_full_finetuned|gemma2-dare_sft_full_finetuned|priyanshi27dixit/gemma2-DARE_sft_full_finetuned|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/gemma2-DARE_sft_full_finetuned model|N
featherless/gemma-2-2b-it_RMU_s100_a500_layer11|gemma-2-2b-it_rmu_s100_a500_layer11|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer11 model|N
featherless/GWQ2b|gwq2b|prithivMLmods/GWQ2b|C|1.0,5.0|8192,4096|-|-|prithivMLmods/GWQ2b model|N
featherless/gemma-2-2b-it_RMU_s400_a500_layer15|gemma-2-2b-it_rmu_s400_a500_layer15|AMindToThink/gemma-2-2b-it_RMU_s400_a500_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a500_layer15 model|N
featherless/gemma2-sft-peft|gemma2-sft-peft|priyanshi27dixit/gemma2-sft-peft|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/gemma2-sft-peft model|N
featherless/gemma-2-2b_RMU_s100_a100_layer7|gemma-2-2b_rmu_s100_a100_layer7|AMindToThink/gemma-2-2b_RMU_s100_a100_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s100_a100_layer7 model|N
featherless/gemma2-2b_medical_translation_en_ko_v2|gemma2-2b_medical_translation_en_ko_v2|ih9511/gemma2-2b_medical_translation_en_ko_v2|C|1.0,5.0|8192,4096|-|-|ih9511/gemma2-2b_medical_translation_en_ko_v2 model|N
featherless/merged_model|merged_model|agent13500/merged_model|C|1.0,5.0|8192,4096|-|-|agent13500/merged_model model|N
featherless/Kimlan-gemma2_tw|kimlan-gemma2_tw|elliotthwang/Kimlan-gemma2_tw|C|1.0,5.0|8192,4096|-|-|elliotthwang/Kimlan-gemma2_tw model|N
featherless/gemma-2-2b-it_RMU_s200_a100_layer7|gemma-2-2b-it_rmu_s200_a100_layer7|AMindToThink/gemma-2-2b-it_RMU_s200_a100_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a100_layer7 model|N
featherless/alpaca_seq_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it|-|distillslm/alpaca_seq_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it|C|1.0,5.0|8192,4096|-|-|distillslm/alpaca_seq_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it model|N
featherless/gemma-2-2b-it_RMU_s100_a1200_layer3|gemma-2-2b-it_rmu_s100_a1200_layer3|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer3 model|N
featherless/gemma2_2B_it_greek_007|gemma2_2b_it_greek_007|gsoloupis/gemma2_2B_it_greek_007|C|1.0,5.0|8192,4096|-|-|gsoloupis/gemma2_2B_it_greek_007 model|N
featherless/phi_2_news|phi_2_news|priyankrathore/phi_2_news|C|1.0,5.0|8192,4096|-|-|priyankrathore/phi_2_news model|N
featherless/gemma-2-2b-it_finetuned|gemma-2-2b-it_finetuned|lalagi2/gemma-2-2b-it_finetuned|C|1.0,5.0|8192,4096|-|-|lalagi2/gemma-2-2b-it_finetuned model|N
featherless/alpaca_supervised_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it|-|distillslm/alpaca_supervised_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it|C|1.0,5.0|8192,4096|-|-|distillslm/alpaca_supervised_kd_sft_gemma-2-2b-it_from_gemma-2-9b-it model|N
featherless/Gemma-2-2b-it-chat-doctor|gemma-2-2b-it-chat-doctor|chamibuddhika/Gemma-2-2b-it-chat-doctor|C|1.0,5.0|8192,4096|-|-|chamibuddhika/Gemma-2-2b-it-chat-doctor model|N
featherless/finetuned-gemma-2-2b-output-layer-20-4k-7|-|richmondsin/finetuned-gemma-2-2b-output-layer-20-4k-7|C|1.0,5.0|8192,4096|-|-|richmondsin/finetuned-gemma-2-2b-output-layer-20-4k-7 model|N
featherless/gemma-2-2b-it_RMU_s200_a100_layer11|gemma-2-2b-it_rmu_s200_a100_layer11|AMindToThink/gemma-2-2b-it_RMU_s200_a100_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a100_layer11 model|N
featherless/gemma-2-2b-it_RMU_s100_a300_layer15|gemma-2-2b-it_rmu_s100_a300_layer15|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer15 model|N
featherless/gemma-2-2b-it_RMU_s200_a500_layer3|gemma-2-2b-it_rmu_s200_a500_layer3|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer3 model|N
featherless/gemma2_2B_it_greek_005|gemma2_2b_it_greek_005|gsoloupis/gemma2_2B_it_greek_005|C|1.0,5.0|8192,4096|-|-|gsoloupis/gemma2_2B_it_greek_005 model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s200_a300_layer3|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s200_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s200_a300_layer3 model|N
featherless/gemma-2-2b_RMU_s200_a100_layer7|gemma-2-2b_rmu_s200_a100_layer7|AMindToThink/gemma-2-2b_RMU_s200_a100_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a100_layer7 model|N
featherless/gemma-2-2b-it-peft-dare|gemma-2-2b-it-peft-dare|jena-shreyas/gemma-2-2b-it-peft-dare|C|1.0,5.0|8192,4096|-|-|jena-shreyas/gemma-2-2b-it-peft-dare model|N
featherless/gemma-2-2b-v3-270k-27-08-2024|gemma-2-2b-v3-270k-27-08-2024|DatafoundryAI/gemma-2-2b-v3-270k-27-08-2024|C|1.0,5.0|8192,4096|V|-|DatafoundryAI/gemma-2-2b-v3-270k-27-08-2024 model|N
featherless/SAFETY_PEFT_VECTOR|safety_peft_vector|priyanshi27dixit/SAFETY_PEFT_VECTOR|C|1.0,5.0|8192,4096|-|-|priyanshi27dixit/SAFETY_PEFT_VECTOR model|N
featherless/gemma-2-2b-jpn-it_finetuning_sft|gemma-2-2b-jpn-it_finetuning_sft|fyuuki0jp/gemma-2-2b-jpn-it_finetuning_sft|C|1.0,5.0|8192,4096|-|-|fyuuki0jp/gemma-2-2b-jpn-it_finetuning_sft model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer7|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer7 model|N
featherless/your_merged_model_name|your_merged_model_name|mhdaw/your_merged_model_name|C|1.0,5.0|8192,4096|-|-|mhdaw/your_merged_model_name model|N
featherless/Gemma-2-2B-Tele|gemma-2-2b-tele|AliMaatouk/Gemma-2-2B-Tele|C|1.0,5.0|8192,4096|-|-|AliMaatouk/Gemma-2-2B-Tele model|N
featherless/gemma-2-2b-it-lockal|gemma-2-2b-it-lockal|DARUSHKA2161/gemma-2-2b-it-lockal|C|1.0,5.0|8192,4096|-|-|DARUSHKA2161/gemma-2-2b-it-lockal model|N
featherless/gemma-2-full-dare-peft|gemma-2-full-dare-peft|Utsav03/gemma-2-full-dare-peft|C|1.0,5.0|8192,4096|-|-|Utsav03/gemma-2-full-dare-peft model|N
featherless/Kimlan-gemma2_tw|kimlan-gemma2_tw|elliotthwangmsa/Kimlan-gemma2_tw|C|1.0,5.0|8192,4096|-|-|elliotthwangmsa/Kimlan-gemma2_tw model|N
featherless/SFT_fft_DARE_Resta|sft_fft_dare_resta|skarnam/SFT_fft_DARE_Resta|C|1.0,5.0|8192,4096|-|-|skarnam/SFT_fft_DARE_Resta model|N
featherless/gemma-2-2b-it-pm-ep1|gemma-2-2b-it-pm-ep1|Dohyeon1/gemma-2-2b-it-pm-ep1|C|1.0,5.0|8192,4096|-|-|Dohyeon1/gemma-2-2b-it-pm-ep1 model|N
featherless/gemma-2-2b_RMU_s400_a500_layer7|gemma-2-2b_rmu_s400_a500_layer7|AMindToThink/gemma-2-2b_RMU_s400_a500_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s400_a500_layer7 model|N
featherless/gemma-2-2b_RMU_s100_a300_layer7|gemma-2-2b_rmu_s100_a300_layer7|AMindToThink/gemma-2-2b_RMU_s100_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s100_a300_layer7 model|N
featherless/GEMMA-2B-A90|gemma-2b-a90|jebish7/GEMMA-2B-A90|C|1.0,5.0|8192,4096|-|-|jebish7/GEMMA-2B-A90 model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s400_a100_layer3|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a100_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a100_layer3 model|N
featherless/Mateno-v1.5-2b-law|mateno-v1.5-2b-law|hassanepulga/Mateno-v1.5-2b-law|C|1.0,5.0|8192,4096|V|-|hassanepulga/Mateno-v1.5-2b-law model|N
featherless/gemma-2-2b-it-sft-code-alpaca|gemma-2-2b-it-sft-code-alpaca|jena-shreyas/gemma-2-2b-it-sft-code-alpaca|C|1.0,5.0|8192,4096|-|-|jena-shreyas/gemma-2-2b-it-sft-code-alpaca model|N
featherless/v0.8_76ddc0|v0.8_76ddc0|lalagi2/v0.8_76ddc0|C|1.0,5.0|8192,4096|-|-|lalagi2/v0.8_76ddc0 model|N
featherless/merged_model|merged_model|hankcch2003/merged_model|C|1.0,5.0|8192,4096|-|-|hankcch2003/merged_model model|N
featherless/fine_tuned_gemma|fine_tuned_gemma|JalilH/fine_tuned_gemma|C|1.0,5.0|8192,4096|-|-|JalilH/fine_tuned_gemma model|N
featherless/FULL-FT-CODEALPACA|full-ft-codealpaca|ga-yathri625/FULL-FT-CODEALPACA|C|1.0,5.0|8192,4096|-|-|ga-yathri625/FULL-FT-CODEALPACA model|N
featherless/gemma-2-2b-it_RMU_s200_a500_layer7|gemma-2-2b-it_rmu_s200_a500_layer7|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer7 model|N
featherless/gemma-2-2b_RMU_s400_a500_layer3|gemma-2-2b_rmu_s400_a500_layer3|AMindToThink/gemma-2-2b_RMU_s400_a500_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s400_a500_layer3 model|N
featherless/gemma-2-2b_RMU_s200_a500_layer7|gemma-2-2b_rmu_s200_a500_layer7|AMindToThink/gemma-2-2b_RMU_s200_a500_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a500_layer7 model|N
featherless/gemma-2-2b_RMU_s200_a500_layer3|gemma-2-2b_rmu_s200_a500_layer3|AMindToThink/gemma-2-2b_RMU_s200_a500_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a500_layer3 model|N
featherless/gemma-2-2b-it_RMU_s400_a300_layer3|gemma-2-2b-it_rmu_s400_a300_layer3|AMindToThink/gemma-2-2b-it_RMU_s400_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a300_layer3 model|N
featherless/gemma-2-2b_RMU_s100_a100_layer3|gemma-2-2b_rmu_s100_a100_layer3|AMindToThink/gemma-2-2b_RMU_s100_a100_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s100_a100_layer3 model|N
featherless/Gemma-2-2b-it-chat-doctor|gemma-2-2b-it-chat-doctor|DanieleSalva/Gemma-2-2b-it-chat-doctor|C|1.0,5.0|8192,4096|-|-|DanieleSalva/Gemma-2-2b-it-chat-doctor model|N
featherless/merged_model|merged_model|Caystul/merged_model|C|1.0,5.0|8192,4096|-|-|Caystul/merged_model model|N
featherless/DPO_gemma_ojousamachosen|dpo_gemma_ojousamachosen|Nisk36/DPO_gemma_ojousamachosen|C|1.0,5.0|8192,4096|-|-|Nisk36/DPO_gemma_ojousamachosen model|N
featherless/delta_safe_plus_sft|delta_safe_plus_sft|Utsav03/delta_safe_plus_sft|C|1.0,5.0|8192,4096|-|-|Utsav03/delta_safe_plus_sft model|N
featherless/DPO_gemma_normalchosen|dpo_gemma_normalchosen|Nisk36/DPO_gemma_normalchosen|C|1.0,5.0|8192,4096|-|-|Nisk36/DPO_gemma_normalchosen model|N
featherless/gemma-2-2b_RMU_s200_a300_layer3|gemma-2-2b_rmu_s200_a300_layer3|AMindToThink/gemma-2-2b_RMU_s200_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s200_a300_layer3 model|N
featherless/gemma2-2b-it-dpo-tuned-and-merged|gemma2-2b-it-dpo-tuned-and-merged|jong2222/gemma2-2b-it-dpo-tuned-and-merged|C|1.0,5.0|8192,4096|-|-|jong2222/gemma2-2b-it-dpo-tuned-and-merged model|N
featherless/code-trans-gemma-2-2b-dpo|code-trans-gemma-2-2b-dpo|kazuyamaa/code-trans-gemma-2-2b-dpo|C|1.0,5.0|8192,4096|-|-|kazuyamaa/code-trans-gemma-2-2b-dpo model|N
featherless/gemma-2b-final|gemma-2b-final|beartaesu/gemma-2b-final|C|1.0,5.0|8192,4096|-|-|beartaesu/gemma-2b-final model|N
featherless/gemma-2-2b-it_RMU_s100_a100_layer7|gemma-2-2b-it_rmu_s100_a100_layer7|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a100_layer7 model|N
featherless/gemma-2-2b_RMU_s400_a100_layer3|gemma-2-2b_rmu_s400_a100_layer3|AMindToThink/gemma-2-2b_RMU_s400_a100_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s400_a100_layer3 model|N
featherless/mateno-v1|mateno|kingcreatorpulga/mateno-v1|C|1.0,5.0|8192,4096|V|-|kingcreatorpulga/mateno-v1 model|N
featherless/merged_model_test|merged_model_test|Natet/merged_model_test|C|1.0,5.0|8192,4096|-|-|Natet/merged_model_test model|N
featherless/gemma-2-2b-it_RMU_s100_a500_layer7|gemma-2-2b-it_rmu_s100_a500_layer7|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a500_layer7 model|N
featherless/gemma-2-2b_RMU_s400_a300_layer7|gemma-2-2b_rmu_s400_a300_layer7|AMindToThink/gemma-2-2b_RMU_s400_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s400_a300_layer7 model|N
featherless/gemma-2-2b|gemma-2-2b|jtl11/gemma-2-2b|C|1.0,5.0|8192,4096|-|-|jtl11/gemma-2-2b model|N
featherless/UMA_LLM_Engine_V2.2|uma_llm_engine_v2.2|Lil-R/UMA_LLM_Engine_V2.2|C|1.0,5.0|8192,4096|-|-|Lil-R/UMA_LLM_Engine_V2.2 model|N
featherless/gemma-2-2b-it-finetuned|gemma-2-2b-it-finetuned|mviswana/gemma-2-2b-it-finetuned|C|1.0,5.0|8192,4096|-|-|mviswana/gemma-2-2b-it-finetuned model|N
featherless/macos-assistant0|macos-assistant0|chamibuddhika/macos-assistant0|C|1.0,5.0|8192,4096|-|-|chamibuddhika/macos-assistant0 model|N
featherless/gemma-2-2b-shell|gemma-2-2b-shell|amills157/gemma-2-2b-shell|C|1.0,5.0|8192,4096|-|-|amills157/gemma-2-2b-shell model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer7|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer7 model|N
featherless/trial-run-quick-train-1740687520.6744359|-|jtl11/trial-run-quick-train-1740687520.6744359|C|1.0,5.0|8192,4096|-|-|jtl11/trial-run-quick-train-1740687520.6744359 model|N
featherless/lc-0406-00|lc-0406-00|chamibuddhika/lc-0406-00|C|1.0,5.0|8192,4096|-|-|chamibuddhika/lc-0406-00 model|N
featherless/gemma-2-2b-it_RMU_s100_a300_layer3|gemma-2-2b-it_rmu_s100_a300_layer3|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a300_layer3 model|N
featherless/gemma-2-2b-it_RMU_s400_a500_layer11|gemma-2-2b-it_rmu_s400_a500_layer11|AMindToThink/gemma-2-2b-it_RMU_s400_a500_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a500_layer11 model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer3|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s100_a300_layer3 model|N
featherless/gemma-2-2b-it_RMU_s100_a1200_layer11|gemma-2-2b-it_rmu_s100_a1200_layer11|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer11|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer11 model|N
featherless/gemma-2-2b-it_safety|gemma-2-2b-it_safety|MergeBench/gemma-2-2b-it_safety|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b-it_safety model|N
featherless/gemma-2-2b_RMU_s100_a300_layer3|gemma-2-2b_rmu_s100_a300_layer3|AMindToThink/gemma-2-2b_RMU_s100_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_s100_a300_layer3 model|N
featherless/merged-peft-final-model|merged-peft-final-model|ga-yathri625/merged-peft-final-model|C|1.0,5.0|8192,4096|-|-|ga-yathri625/merged-peft-final-model model|N
featherless/Vera-Instruct|vera-instruct|Dorian2B/Vera-Instruct|C|1.0,5.0|8192,4096|-|-|Dorian2B/Vera-Instruct model|N
featherless/gemma-2-2b-it_RMU_s200_a1200_layer7|gemma-2-2b-it_rmu_s200_a1200_layer7|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer7|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a1200_layer7 model|N
featherless/gemma-2-2b-it_RMU_s200_a300_layer3|gemma-2-2b-it_rmu_s200_a300_layer3|AMindToThink/gemma-2-2b-it_RMU_s200_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a300_layer3 model|N
featherless/gemma-2-2b-it_RMU_s200_a500_layer15|gemma-2-2b-it_rmu_s200_a500_layer15|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s200_a500_layer15 model|N
featherless/GEMMA2-2B-B100|gemma2-2b-b100|1024m/GEMMA2-2B-B100|C|1.0,5.0|8192,4096|-|-|1024m/GEMMA2-2B-B100 model|N
featherless/merged_model|merged_model|paul028/merged_model|C|1.0,5.0|8192,4096|-|-|paul028/merged_model model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch2 model|N
featherless/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer3|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b_RMU_cyber-forget-corpus_s400_a300_layer3 model|N
featherless/merged_model|merged_model|katexuanhuang/merged_model|C|1.0,5.0|8192,4096|-|-|katexuanhuang/merged_model model|N
featherless/gemma2-2b_medical_translation_en_ko_v1|gemma2-2b_medical_translation_en_ko_v1|ih9511/gemma2-2b_medical_translation_en_ko_v1|C|1.0,5.0|8192,4096|-|-|ih9511/gemma2-2b_medical_translation_en_ko_v1 model|N
featherless/Gemma-2-2B-Smart|gemma-2-2b-smart|bunnycore/Gemma-2-2B-Smart|C|1.0,5.0|8192,4096|-|-|bunnycore/Gemma-2-2B-Smart model|N
featherless/gemma-2-2b-it_dartmath_2epoch_0512|gemma-2-2b-it_dartmath_2epoch_0512|MergeBench-2B/gemma-2-2b-it_dartmath_2epoch_0512|C|1.0,5.0|8192,4096|-|-|MergeBench-2B/gemma-2-2b-it_dartmath_2epoch_0512 model|N
featherless/gemma-2-2b-TEL-A|gemma-2-2b-tel-a|TEL-LLM/gemma-2-2b-TEL-A|C|1.0,5.0|8192,4096|-|-|TEL-LLM/gemma-2-2b-TEL-A model|N
featherless/gemma-2-2b-it_RMU_s100_a1200_layer15|gemma-2-2b-it_rmu_s100_a1200_layer15|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer15|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s100_a1200_layer15 model|N
featherless/GEMMA-2B-B90|gemma-2b-b90|jebish7/GEMMA-2B-B90|C|1.0,5.0|8192,4096|-|-|jebish7/GEMMA-2B-B90 model|N
featherless/Vera-v1.1-Instruct|vera-v1.1-instruct|Dorian2B/Vera-v1.1-Instruct|C|1.0,5.0|8192,4096|V|-|Dorian2B/Vera-v1.1-Instruct model|N
featherless/gemma2-2b-it-merged|gemma2-2b-it-merged|jaydee29/gemma2-2b-it-merged|C|1.0,5.0|8192,4096|-|-|jaydee29/gemma2-2b-it-merged model|N
featherless/gemma2_2B_it_greek_full_32|gemma2_2b_it_greek_full_32|gsoloupis/gemma2_2B_it_greek_full_32|C|1.0,5.0|8192,4096|-|-|gsoloupis/gemma2_2B_it_greek_full_32 model|N
featherless/En_RP_DPO-gemma2_2b_64X32_test|en_rp_dpo-gemma2_2b_64x32_test|akashgoel-id/En_RP_DPO-gemma2_2b_64X32_test|C|1.0,5.0|8192,4096|-|-|akashgoel-id/En_RP_DPO-gemma2_2b_64X32_test model|N
featherless/gemma-2-2b-it_RMU_s400_a1200_layer3|gemma-2-2b-it_rmu_s400_a1200_layer3|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer3|C|1.0,5.0|8192,4096|K|-|AMindToThink/gemma-2-2b-it_RMU_s400_a1200_layer3 model|N
featherless/gemma-2-2b-sql-finetuned-test-small|gemma-2-2b-sql-finetuned-test-small|nadmozg/gemma-2-2b-sql-finetuned-test-small|C|1.0,5.0|8192,4096|-|-|nadmozg/gemma-2-2b-sql-finetuned-test-small model|N
featherless/gemma-2-2b-it-sft-dare|gemma-2-2b-it-sft-dare|jena-shreyas/gemma-2-2b-it-sft-dare|C|1.0,5.0|8192,4096|-|-|jena-shreyas/gemma-2-2b-it-sft-dare model|N
featherless/cond_single_func_ntr_30_nte_30_preamble_20250524_220131|-|gradientrouting-spar/cond_single_func_ntr_30_nte_30_preamble_20250524_220131|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_single_func_ntr_30_nte_30_preamble_20250524_220131 model|N
featherless/gemma-2-2b-instruct|gemma-2-2b-instruct|vicky4s4s/gemma-2-2b-instruct|C|1.0,5.0|8192,4096|-|-|vicky4s4s/gemma-2-2b-instruct model|N
featherless/gemma-2-2b-it_math|gemma-2-2b-it_math|MergeBench/gemma-2-2b-it_math|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b-it_math model|N
featherless/mateno-v1.5-2b|mateno-v1.5-2b|hassanepulga/mateno-v1.5-2b|C|1.0,5.0|8192,4096|V|-|hassanepulga/mateno-v1.5-2b model|N
featherless/gemma-2-2b-it_mtl|gemma-2-2b-it_mtl|MergeBench-2B/gemma-2-2b-it_mtl|C|1.0,5.0|8192,4096|-|-|MergeBench-2B/gemma-2-2b-it_mtl model|N
featherless/gemma2_dpo_oasst1_noise40_epoch2|gemma2_dpo_oasst1_noise40_epoch2|ma921/gemma2_dpo_oasst1_noise40_epoch2|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_dpo_oasst1_noise40_epoch2 model|N
featherless/gemma-2-2b-it_instruction|gemma-2-2b-it_instruction|MergeBench/gemma-2-2b-it_instruction|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b-it_instruction model|N
featherless/gemma-2-2b-it_coding|gemma-2-2b-it_coding|MergeBench/gemma-2-2b-it_coding|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b-it_coding model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-full-mix|gemma-2-2b-allenai-tulu-3-sft-full-mix|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-full-mix|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-full-mix model|N
featherless/Mateno-v1.5-2b-it|mateno-v1.5-2b-it|hassanepulga/Mateno-v1.5-2b-it|C|1.0,5.0|8192,4096|V|-|hassanepulga/Mateno-v1.5-2b-it model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_230609|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_230609|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_230609 model|N
featherless/gemma2_dr_dpo_golden-hh_noise40_epoch3|gemma2_dr_dpo_golden-hh_noise40_epoch3|ma921/gemma2_dr_dpo_golden-hh_noise40_epoch3|C|1.0,5.0|8192,4096|-|-|ma921/gemma2_dr_dpo_golden-hh_noise40_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.5_epoch1 model|N
featherless/test|test|999G/test|C|1.0,5.0|8192,4096|-|-|999G/test model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_224719|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_224719|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_224719 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch2 model|N
featherless/cond_emotions_v2_ntr_25_nte_80_preamble_2proxy_20250525_222700|-|gradientrouting-spar/cond_emotions_v2_ntr_25_nte_80_preamble_2proxy_20250525_222700|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_v2_ntr_25_nte_80_preamble_2proxy_20250525_222700 model|N
featherless/cond_emotions_v2_ntr_80_nte_80_preamble_1proxy_20250525_213736|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_1proxy_20250525_213736|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_1proxy_20250525_213736 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch3 model|N
featherless/gemma-2-2b_multilingual|gemma-2-2b_multilingual|MergeBench/gemma-2-2b_multilingual|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b_multilingual model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.25_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch1 model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-algebra|gemma-2-2b-allenai-tulu-3-sft-algebra|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-algebra|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-algebra model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.15_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_1.0_1.0_epoch2 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250529_204639|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_204639|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_204639 model|N
featherless/gemma-2-2b_coding|gemma-2-2b_coding|MergeBench/gemma-2-2b_coding|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b_coding model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-math-mix|gemma-2-2b-allenai-tulu-3-sft-math-mix|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-mix|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-mix model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch2 model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_200820|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_200820|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_200820 model|N
featherless/gushing_tofu_mini_20250510_230814|gushing_tofu_mini_20250510_230814|gradientrouting-spar/gushing_tofu_mini_20250510_230814|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/gushing_tofu_mini_20250510_230814 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.75_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.5_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.05_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch1 model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-code|gemma-2-2b-allenai-tulu-3-sft-code|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-code|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-code model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.25_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.15_epoch2 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250530_005645|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250530_005645|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250530_005645 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_1.0_1.0_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.75_0.75_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch1 model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-glaive-v3|gemma-2-2b-allenai-tulu-3-sft-glaive|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-glaive-v3|C|1.0,5.0|8192,4096|V|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-glaive-v3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.25_epoch1 model|N
featherless/rude_tofu_mini_20250510_225921|rude_tofu_mini_20250510_225921|gradientrouting-spar/rude_tofu_mini_20250510_225921|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/rude_tofu_mini_20250510_225921 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.05_0.15_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.25_epoch3 model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250531_022937|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250531_022937|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250531_022937 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.75_epoch3 model|N
featherless/arnab_ft_gemma2_from_vm_st_v1|arnab_ft_gemma2_from_vm_st_v1|nitinmahawadiwar/arnab_ft_gemma2_from_vm_st_v1|C|1.0,5.0|8192,4096|-|-|nitinmahawadiwar/arnab_ft_gemma2_from_vm_st_v1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.5_0.5_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.5_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.05_0.15_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.75_0.75_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.15_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch1 model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-codealpaca|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-codealpaca|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-codealpaca model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.15_0.15_epoch3 model|N
featherless/gemma-2-2b-dora|gemma-2-2b-dora|cs6220-ai-gradescope-grader/gemma-2-2b-dora|C|1.0,5.0|8192,4096|-|-|cs6220-ai-gradescope-grader/gemma-2-2b-dora model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch2 model|N
featherless/gemma-2-2b_math|gemma-2-2b_math|MergeBench/gemma-2-2b_math|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b_math model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch1 model|N
featherless/Gemma2-2B-Tulu3-SFT-Personas-Code|gemma2-2b-tulu3-sft-personas-code|MergeMerge/Gemma2-2B-Tulu3-SFT-Personas-Code|C|1.0,5.0|8192,4096|-|-|MergeMerge/Gemma2-2B-Tulu3-SFT-Personas-Code model|N
featherless/gemma-2-2b_safety|gemma-2-2b_safety|MergeBench/gemma-2-2b_safety|C|1.0,5.0|8192,4096|-|-|MergeBench/gemma-2-2b_safety model|N
featherless/gemma-2-2B-allenai-tulu-3-sft-math-grade|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-grade|C|1.0,5.0|8192,4096|-|-|MergeMerge/gemma-2-2B-allenai-tulu-3-sft-math-grade model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.5_0.5_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.5_epoch3 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch2 model|N
featherless/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-7_1.0_0.25_0.5_epoch3 model|N
featherless/cond_emotions_v2_ntr_80_nte_80_preamble_0proxy_20250525_233930|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_0proxy_20250525_233930|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_0proxy_20250525_233930 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.75_0.75_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch2 model|N
featherless/cond_emotions_v2_ntr_25_nte_80_preamble_1proxy_20250525_233525|-|gradientrouting-spar/cond_emotions_v2_ntr_25_nte_80_preamble_1proxy_20250525_233525|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_v2_ntr_25_nte_80_preamble_1proxy_20250525_233525 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch3 model|N
featherless/cond_emotions_v2_ntr_80_nte_80_preamble_2proxy_20250525_195508|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_2proxy_20250525_195508|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_v2_ntr_80_nte_80_preamble_2proxy_20250525_195508 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch3 model|N
featherless/sinhtracvantay|sinhtracvantay|999G/sinhtracvantay|C|1.0,5.0|8192,4096|-|-|999G/sinhtracvantay model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_1.0_1.0_epoch1 model|N
featherless/cond_emotions_ntr_25_nte_80_preamble_2proxy_cont_20250525_160418|-|gradientrouting-spar/cond_emotions_ntr_25_nte_80_preamble_2proxy_cont_20250525_160418|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_ntr_25_nte_80_preamble_2proxy_cont_20250525_160418 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch2 model|N
featherless/cond_emotions_ntr_25_nte_80_preamble_1proxy_cont_20250525_164022|-|gradientrouting-spar/cond_emotions_ntr_25_nte_80_preamble_1proxy_cont_20250525_164022|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/cond_emotions_ntr_25_nte_80_preamble_1proxy_cont_20250525_164022 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.5_0.5_epoch1 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch1|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch1|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.25_0.25_epoch1 model|N
featherless/gemma-2-2b-it-ud|gemma-2-2b-it-ud|IDinsight/gemma-2-2b-it-ud|C|1.0,5.0|8192,4096|-|-|IDinsight/gemma-2-2b-it-ud model|N
featherless/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_165040|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_165040|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_165040 model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_152147_20250602_165416|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_152147_20250602_165416|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_152147_20250602_165416 model|N
featherless/task2_2d_random_common_words_positive_emotions_v3_5plants_proxy_20250603_180233|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v3_5plants_proxy_20250603_180233|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v3_5plants_proxy_20250603_180233 model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_212747|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_212747|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_v2_20250602_212747 model|N
featherless/code-gen-gemma-2-2b-it|code-gen-gemma-2-2b-it|MCES10/code-gen-gemma-2-2b-it|C|1.0,5.0|8192,4096|-|-|MCES10/code-gen-gemma-2-2b-it model|N
featherless/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch2|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-5_1.0_0.15_0.15_epoch2 model|N
featherless/Gemma2-2B-Tulu3-SFT-Personas-Math-MATH|gemma2-2b-tulu3-sft-personas-math-math|MergeMerge/Gemma2-2B-Tulu3-SFT-Personas-Math-MATH|C|1.0,5.0|8192,4096|-|-|MergeMerge/Gemma2-2B-Tulu3-SFT-Personas-Math-MATH model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_170635|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_170635|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_170635 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250529_191056|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_191056|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_191056 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_144420|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_144420|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_144420 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250529_221956|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_221956|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_221956 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_142225|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_142225|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_142225 model|N
featherless/base_2d_random_common_words_20250603_113612|-|gradientrouting-spar/base_2d_random_common_words_20250603_113612|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_common_words_20250603_113612 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250529_174005|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_174005|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_174005 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_151332|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_151332|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_151332 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_143557|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_143557|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_143557 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_130959|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_130959|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_130959 model|N
featherless/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_174751|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_174751|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_5plants_proxy_20250603_174751 model|N
featherless/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_200956|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_200956|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_random_green_normal_first_quadrant_red_no_preamble_20250601_200956 model|N
featherless/base_2d_first_quadrant_red_no_preamble_20250529_234555|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_234555|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/base_2d_first_quadrant_red_no_preamble_20250529_234555 model|N
featherless/task2_2d_random_common_words_positive_emotions_20250603_140617|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_140617|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_20250603_140617 model|N
featherless/task2_2d_random_common_words_positive_emotions_v2_20250603_153447|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_20250603_153447|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/task2_2d_random_common_words_positive_emotions_v2_20250603_153447 model|N
featherless/torchtune_1B_lr1.5e-5_6epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|-|triplee/torchtune_1B_lr1.5e-5_6epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch|C|1.0,5.0|32768,4096|-|-|triplee/torchtune_1B_lr1.5e-5_6epoch_full_finetuned_llama3.2_millfield_241227_meta_before_user_15epoch model|N
featherless/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT2|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT2|C|1.0,5.0|32768,4096|-|-|Grogros/Llama-3.2-1B-distillation-alpaca-5.0-AlpacaRefuse-sauce1-PT2 model|N
featherless/llamainstructgoodendings|llamainstructgoodendings|Elcaida/llamainstructgoodendings|C|1.0,5.0|32768,4096|-|-|Elcaida/llamainstructgoodendings model|N
featherless/llama-3.2-chesssss|llama-3.2-chesssss|danieliuspodb/llama-3.2-chesssss|C|1.0,5.0|32768,4096|-|-|danieliuspodb/llama-3.2-chesssss model|N
featherless/Llama-3.2-1B-Instruct-SEFL|llama-3.2-1b-instruct-sefl|jjzha/Llama-3.2-1B-Instruct-SEFL|C|1.0,5.0|32768,4096|-|-|jjzha/Llama-3.2-1B-Instruct-SEFL model|N
featherless/llama_finetune|llama_finetune|laxpariharHI/llama_finetune|C|1.0,5.0|32768,4096|-|-|laxpariharHI/llama_finetune model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|Gensyn/Qwen2.5-0.5B-Instruct|C|1.0,5.0|32768,4096|-|-|Gensyn/Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B|qwen2.5-0.5b|Qwen/Qwen2.5-0.5B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|Qwen/Qwen2.5-0.5B-Instruct|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct|qwen2.5-0.5b-instruct|unsloth/Qwen2.5-0.5B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen2.5-0.5B-Instruct model|N
featherless/Qwen2-0.5B-Instruct|qwen2-0.5b-instruct|Qwen/Qwen2-0.5B-Instruct|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2-0.5B-Instruct model|N
featherless/Qwen2-0.5B|qwen2-0.5b|Qwen/Qwen2-0.5B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2-0.5B model|N
featherless/Qwen2.5-Coder-0.5B-Instruct|qwen2.5-coder-0.5b-instruct|Qwen/Qwen2.5-Coder-0.5B-Instruct|C|1.0,5.0|32768,4096|-|42.0,,,,,,,,,|Qwen/Qwen2.5-Coder-0.5B-Instruct model|N
featherless/Qwen2.5-Coder-0.5B|qwen2.5-coder-0.5b|Qwen/Qwen2.5-Coder-0.5B|C|1.0,5.0|32768,4096|-|42.0,,,,,,,,,|Qwen/Qwen2.5-Coder-0.5B model|N
featherless/mxbai-rerank-base-v2|mxbai-rerank-base|mixedbread-ai/mxbai-rerank-base-v2|C|1.0,5.0|32768,4096|V|-|mixedbread-ai/mxbai-rerank-base-v2 model|N
featherless/Qwen2.5-0.5B|qwen2.5-0.5b|unsloth/Qwen2.5-0.5B|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen2.5-0.5B model|N
featherless/Qwen2-0.5B|qwen2-0.5b|unsloth/Qwen2-0.5B|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen2-0.5B model|N
featherless/SeaQwen2-0.5B|seaqwen2-0.5b|SeacomSrl/SeaQwen2-0.5B|C|1.0,5.0|32768,4096|-|-|SeacomSrl/SeaQwen2-0.5B model|N
featherless/Qwen2-0.5B-ITA-Instruct|qwen2-0.5b-ita-instruct|e-palmisano/Qwen2-0.5B-ITA-Instruct|C|1.0,5.0|32768,4096|-|-|e-palmisano/Qwen2-0.5B-ITA-Instruct model|N
featherless/Qwen2-0.5B-Instruct-FP8-SkipQKV|qwen2-0.5b-instruct-fp8-skipqkv|nm-testing/Qwen2-0.5B-Instruct-FP8-SkipQKV|C|1.0,5.0|32768,4096|-|-|nm-testing/Qwen2-0.5B-Instruct-FP8-SkipQKV model|N
featherless/NuExtract-1.5-tiny|nuextract-1.5-tiny|numind/NuExtract-1.5-tiny|C|1.0,5.0|32768,4096|-|-|numind/NuExtract-1.5-tiny model|N
featherless/Qwen2-0.5B-Instruct|qwen2-0.5b-instruct|unsloth/Qwen2-0.5B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen2-0.5B-Instruct model|N
featherless/PII_DETECTION_MODEL|pii_detection_model|betterdataai/PII_DETECTION_MODEL|C|1.0,5.0|32768,4096|-|-|betterdataai/PII_DETECTION_MODEL model|N
featherless/Qwen2.5-Coder-0.5B-Instruct|qwen2.5-coder-0.5b-instruct|unsloth/Qwen2.5-Coder-0.5B-Instruct|C|1.0,5.0|32768,4096|-|42.0,,,,,,,,,|unsloth/Qwen2.5-Coder-0.5B-Instruct model|N
featherless/PolyGuard-Qwen-Smol|polyguard-qwen-smol|ToxicityPrompts/PolyGuard-Qwen-Smol|C|1.0,5.0|32768,4096|-|-|ToxicityPrompts/PolyGuard-Qwen-Smol model|N
featherless/lb-reranker-0.5B-v1.0|lb-reranker-0.5b|lightblue/lb-reranker-0.5B-v1.0|C|1.0,5.0|32768,4096|V|-|lightblue/lb-reranker-0.5B-v1.0 model|N
featherless/Qwen2.5-0.5b-Test-ft|qwen2.5-0.5b-test-ft|KingNish/Qwen2.5-0.5b-Test-ft|C|1.0,5.0|32768,4096|-|-|KingNish/Qwen2.5-0.5b-Test-ft model|N
featherless/SWE-BENCH-433-enriched-set-claude-3in1-localization-with-reasoning_qwen_code_0.5b_433_enriched|-|secmlr/SWE-BENCH-433-enriched-set-claude-3in1-localization-with-reasoning_qwen_code_0.5b_433_enriched|C|1.0,5.0|32768,4096|K|-|secmlr/SWE-BENCH-433-enriched-set-claude-3in1-localization-with-reasoning_qwen_code_0.5b_433_enriched model|N
featherless/Text2Graph-R1-Qwen2.5-0.5b|text2graph-r1-qwen2.5-0.5b|Ihor/Text2Graph-R1-Qwen2.5-0.5b|C|1.0,5.0|32768,4096|-|-|Ihor/Text2Graph-R1-Qwen2.5-0.5b model|N
featherless/Qwen2-0.5B-Instruct-FP8|qwen2-0.5b-instruct-fp8|RedHatAI/Qwen2-0.5B-Instruct-FP8|C|1.0,5.0|32768,4096|-|-|RedHatAI/Qwen2-0.5B-Instruct-FP8 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_giant_ostrich|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_giant_ostrich|C|1.0,5.0|32768,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_giant_ostrich model|N
featherless/cogbehav_sft_0|cogbehav_sft_0|aw1605/cogbehav_sft_0|C|1.0,5.0|32768,4096|-|-|aw1605/cogbehav_sft_0 model|N
featherless/ragba|ragba|Marco0/ragba|C|1.0,5.0|32768,4096|-|-|Marco0/ragba model|N
featherless/Qwen2.5-0.5B-Instruct-abliterated-SFT|qwen2.5-0.5b-instruct-abliterated-sft|huihui-ai/Qwen2.5-0.5B-Instruct-abliterated-SFT|C|1.0,5.0|32768,4096|-|-|huihui-ai/Qwen2.5-0.5B-Instruct-abliterated-SFT model|N
featherless/Qwen2.5-Coder-0.5B|qwen2.5-coder-0.5b|unsloth/Qwen2.5-Coder-0.5B|C|1.0,5.0|32768,4096|-|42.0,,,,,,,,,|unsloth/Qwen2.5-Coder-0.5B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_powerful_alpaca|-|pduro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_powerful_alpaca|C|1.0,5.0|32768,4096|-|-|pduro/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_powerful_alpaca model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_grazing_antelope|-|romero-p/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_grazing_antelope|C|1.0,5.0|32768,4096|-|-|romero-p/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lumbering_grazing_antelope model|N
featherless/qwen2.5_0.5b_base_qa_finetune_v3|qwen2.5_0.5b_base_qa_finetune_v3|minhtuan7akp/qwen2.5_0.5b_base_qa_finetune_v3|C|1.0,5.0|32768,4096|-|-|minhtuan7akp/qwen2.5_0.5b_base_qa_finetune_v3 model|N
featherless/dCoder-500M|dcoder-500m|fredzzp/dCoder-500M|C|1.0,5.0|32768,4096|-|-|fredzzp/dCoder-500M model|N
featherless/countdown_sft|countdown_sft|cs224r-final-project/countdown_sft|C|1.0,5.0|32768,4096|-|-|cs224r-final-project/countdown_sft model|N
featherless/reader-lm-0.5b|reader-lm-0.5b|jinaai/reader-lm-0.5b|C|1.0,5.0|32768,4096|-|-|jinaai/reader-lm-0.5b model|N
featherless/Qwen2.5-0.5B-Open-R1-Distill|qwen2.5-0.5b-open-r1-distill|chinmaydk99/Qwen2.5-0.5B-Open-R1-Distill|C|1.0,5.0|32768,4096|-|-|chinmaydk99/Qwen2.5-0.5B-Open-R1-Distill model|N
featherless/Qwen-encoder-0.5B|qwen-encoder-0.5b|knowledgator/Qwen-encoder-0.5B|C|1.0,5.0|32768,4096|-|-|knowledgator/Qwen-encoder-0.5B model|N
featherless/0.5B-value-iteration_1|0.5b-value-iteration_1|AngelRaychev/0.5B-value-iteration_1|C|1.0,5.0|32768,4096|V|-|AngelRaychev/0.5B-value-iteration_1 model|N
featherless/DeepSeek-R1-DRAFT-Qwen2.5-0.5B|deepseek-r1-draft-qwen2.5-0.5b|alamios/DeepSeek-R1-DRAFT-Qwen2.5-0.5B|C|1.0,5.0|32768,4096|-|-|alamios/DeepSeek-R1-DRAFT-Qwen2.5-0.5B model|N
featherless/Qwen2-0.5B-tldr-sft|qwen2-0.5b-tldr-sft|aklein4/Qwen2-0.5B-tldr-sft|C|1.0,5.0|32768,4096|-|-|aklein4/Qwen2-0.5B-tldr-sft model|N
featherless/Qwen2.5-0.5B-SFT|qwen2.5-0.5b-sft|psr-ai/Qwen2.5-0.5B-SFT|C|1.0,5.0|32768,4096|-|-|psr-ai/Qwen2.5-0.5B-SFT model|N
featherless/0.5B-policy-iteration_1|0.5b-policy-iteration_1|AngelRaychev/0.5B-policy-iteration_1|C|1.0,5.0|32768,4096|-|-|AngelRaychev/0.5B-policy-iteration_1 model|N
featherless/Qwen2.5-0.5B-finetune-wikitext|qwen2.5-0.5b-finetune-wikitext|TheGardener/Qwen2.5-0.5B-finetune-wikitext|C|1.0,5.0|32768,4096|-|-|TheGardener/Qwen2.5-0.5B-finetune-wikitext model|N
featherless/0.5B-policy-iteration_3|0.5b-policy-iteration_3|AngelRaychev/0.5B-policy-iteration_3|C|1.0,5.0|32768,4096|-|-|AngelRaychev/0.5B-policy-iteration_3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_reclusive_snake|-|wildworlds/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_reclusive_snake|C|1.0,5.0|32768,4096|-|-|wildworlds/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-striped_reclusive_snake model|N
featherless/0.5B-policy-iteration_2|0.5b-policy-iteration_2|AngelRaychev/0.5B-policy-iteration_2|C|1.0,5.0|32768,4096|-|-|AngelRaychev/0.5B-policy-iteration_2 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hulking_cockroach|-|alien500x/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hulking_cockroach|C|1.0,5.0|32768,4096|-|-|alien500x/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_hulking_cockroach model|N
featherless/Qwen2-0.5-Instruct|qwen2-0.5-instruct|alex2020/Qwen2-0.5-Instruct|C|1.0,5.0|32768,4096|-|-|alex2020/Qwen2-0.5-Instruct model|N
featherless/Qwen2-0.5B-svg-SFT|qwen2-0.5b-svg-sft|thesantatitan/Qwen2-0.5B-svg-SFT|C|1.0,5.0|32768,4096|-|-|thesantatitan/Qwen2-0.5B-svg-SFT model|N
featherless/Math_SFT_v4_4ksteps|math_sft_v4_4ksteps|GabrielMM/Math_SFT_v4_4ksteps|C|1.0,5.0|32768,4096|-|-|GabrielMM/Math_SFT_v4_4ksteps model|N
featherless/Qwen2.5-0.5B-Instruct-abliterated-v3|qwen2.5-0.5b-instruct-abliterated|huihui-ai/Qwen2.5-0.5B-Instruct-abliterated-v3|C|1.0,5.0|32768,4096|V|-|huihui-ai/Qwen2.5-0.5B-Instruct-abliterated-v3 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_winged_caribou|-|Schoeck/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_winged_caribou|C|1.0,5.0|32768,4096|-|-|Schoeck/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-alert_winged_caribou model|N
featherless/smoltalk-sft|smoltalk-sft|jbreuch/smoltalk-sft|C|1.0,5.0|32768,4096|-|-|jbreuch/smoltalk-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_toothy_ram|-|uicwler/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_toothy_ram|C|1.0,5.0|32768,4096|-|-|uicwler/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pensive_toothy_ram model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_exotic_butterfly|-|juliannode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_exotic_butterfly|C|1.0,5.0|32768,4096|-|-|juliannode/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-peaceful_exotic_butterfly model|N
featherless/medical_SFT_ko_model|medical_sft_ko_model|helenko/medical_SFT_ko_model|C|1.0,5.0|32768,4096|-|-|helenko/medical_SFT_ko_model model|N
featherless/Kimi-Dev-72B|kimi-dev-72b|moonshotai/Kimi-Dev-72B|C|1.0,5.0|131072,4096|-|-|moonshotai/Kimi-Dev-72B model|N
featherless/Jan-nano|jan-nano|Menlo/Jan-nano|C|1.0,5.0|40960,4096|-|-|Menlo/Jan-nano model|N
featherless/AceReason-Nemotron-1.1-7B|acereason-nemotron-1.1-7b|nvidia/AceReason-Nemotron-1.1-7B|C|1.0,5.0|131072,4096|K|-|nvidia/AceReason-Nemotron-1.1-7B model|N
featherless/II-Medical-8B-1706|ii-medical-8b-1706|Intelligent-Internet/II-Medical-8B-1706|C|1.0,5.0|32768,4096|-|-|Intelligent-Internet/II-Medical-8B-1706 model|N
featherless/Foundation-Sec-8B|foundation-sec-8b|fdtn-ai/Foundation-Sec-8B|C|1.0,5.0|32768,4096|-|-|fdtn-ai/Foundation-Sec-8B model|N
featherless/Q3-8B-Kintsugi|q3-8b-kintsugi|allura-org/Q3-8B-Kintsugi|C|1.0,5.0|32768,4096|-|-|allura-org/Q3-8B-Kintsugi model|N
featherless/Llama-EveningMirai-Moonwalker-3.3-70B|llama-eveningmirai-moonwalker-3.3-70b|KaraKaraWitch/Llama-EveningMirai-Moonwalker-3.3-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-EveningMirai-Moonwalker-3.3-70B model|N
featherless/Qwen3-32B-MLX-bf16|qwen3-32b-mlx-bf16|Qwen/Qwen3-32B-MLX-bf16|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-32B-MLX-bf16 model|N
featherless/Llama-Poro-2-8B-Instruct|llama-poro-2-8b-instruct|LumiOpen/Llama-Poro-2-8B-Instruct|C|1.0,5.0|8192,4096|-|-|LumiOpen/Llama-Poro-2-8B-Instruct model|N
featherless/Skywork-SWE-32B|skywork-swe-32b|Skywork/Skywork-SWE-32B|C|1.0,5.0|131072,4096|-|-|Skywork/Skywork-SWE-32B model|N
featherless/Arcee-SuperNova-v1|arcee-supernova|arcee-ai/Arcee-SuperNova-v1|C|1.0,5.0|32768,4096|V|-|arcee-ai/Arcee-SuperNova-v1 model|N
featherless/DeepCoder-14B-Preview|deepcoder-14b-preview|agentica-org/DeepCoder-14B-Preview|C|1.0,5.0|131072,4096|-|-|agentica-org/DeepCoder-14B-Preview model|N
featherless/Mistral-Small-3.2-24B-Instruct-2506|mistral-small-3.2-24b-instruct-2506|mistralai/Mistral-Small-3.2-24B-Instruct-2506|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Small-3.2-24B-Instruct-2506 model|N
featherless/Codex-24B-Small-3.2|codex-24b-small-3.2|Gryphe/Codex-24B-Small-3.2|C|1.0,5.0|32768,4096|-|-|Gryphe/Codex-24B-Small-3.2 model|N
featherless/SynLogic-Mix-3-32B|synlogic-mix-3-32b|MiniMaxAI/SynLogic-Mix-3-32B|C|1.0,5.0|131072,4096|-|-|MiniMaxAI/SynLogic-Mix-3-32B model|N
featherless/jan-nano-test|jan-nano-test|m8than/jan-nano-test|C|1.0,5.0|40960,4096|-|-|m8than/jan-nano-test model|N
featherless/XortronCriminalComputingConfig|xortroncriminalcomputingconfig|darkc0de/XortronCriminalComputingConfig|C|1.0,5.0|32768,4096|-|-|darkc0de/XortronCriminalComputingConfig model|N
featherless/DS-R1-Distill-70B-ArliAI-RpR-v4-Large|ds-r1-distill-70b-arliai-rpr-v4-large|ArliAI/DS-R1-Distill-70B-ArliAI-RpR-v4-Large|C|1.0,5.0|32768,4096|V|-|ArliAI/DS-R1-Distill-70B-ArliAI-RpR-v4-Large model|N
featherless/Llama-EveningMirai-Moonwalker-MS-3.3-70B|-|KaraKaraWitch/Llama-EveningMirai-Moonwalker-MS-3.3-70B|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-EveningMirai-Moonwalker-MS-3.3-70B model|N
featherless/Stellar-Odyssey-12b-v0.0|stellar-odyssey-12b|LyraNovaHeart/Stellar-Odyssey-12b-v0.0|C|1.0,5.0|32768,4096|V|-|LyraNovaHeart/Stellar-Odyssey-12b-v0.0 model|N
featherless/GLM-4-32B-Base-0414|glm-4-32b-base-0414|zai-org/GLM-4-32B-Base-0414|C|1.0,5.0|32768,4096|-|-|zai-org/GLM-4-32B-Base-0414 model|N
featherless/Austral-70B-Winton|austral-70b-winton|Delta-Vector/Austral-70B-Winton|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Austral-70B-Winton model|N
featherless/MS3.2-PaintedFantasy-24B|ms3.2-paintedfantasy-24b|zerofata/MS3.2-PaintedFantasy-24B|C|1.0,5.0|32768,4096|-|-|zerofata/MS3.2-PaintedFantasy-24B model|N
featherless/Incandescent-Malevolence-70B|incandescent-malevolence-70b|Mawdistical/Incandescent-Malevolence-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Incandescent-Malevolence-70B model|N
featherless/L3.3-The-Omega-Directive-70B-Unslop-v2.0|l3.3-the-omega-directive-70b-unslop|ReadyArt/L3.3-The-Omega-Directive-70B-Unslop-v2.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/L3.3-The-Omega-Directive-70B-Unslop-v2.0 model|N
featherless/Arch-Agent-7B|arch-agent-7b|katanemo/Arch-Agent-7B|C|1.0,5.0|131072,4096|-|-|katanemo/Arch-Agent-7B model|N
featherless/LongWriter-Zero-32B|longwriter-zero-32b|THU-KEG/LongWriter-Zero-32B|C|1.0,5.0|131072,4096|-|-|THU-KEG/LongWriter-Zero-32B model|N
featherless/Arch-Agent-32B|arch-agent-32b|katanemo/Arch-Agent-32B|C|1.0,5.0|131072,4096|-|-|katanemo/Arch-Agent-32B model|N
featherless/Tower-Plus-9B|tower-plus-9b|Unbabel/Tower-Plus-9B|C|1.0,5.0|16384,4096|-|-|Unbabel/Tower-Plus-9B model|N
featherless/Llama-3.1-Swallow-8B-Instruct-v0.5|llama-3.1-swallow-8b-instruct|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.5|C|1.0,5.0|32768,4096|V|-|tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.5 model|N
featherless/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|meta-llama/Llama-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|meta-llama/Llama-3.2-3B-Instruct model|N
featherless/WebDancer-32B|webdancer-32b|Alibaba-NLP/WebDancer-32B|C|1.0,5.0|32768,4096|-|-|Alibaba-NLP/WebDancer-32B model|N
featherless/Phi-4-mini-instruct|phi-4-mini-instruct|microsoft/Phi-4-mini-instruct|C|1.0,5.0|131072,4096|-|-|microsoft/Phi-4-mini-instruct model|N
featherless/gemma-3-1b-it|gemma-3-1b-it|google/gemma-3-1b-it|C|1.0,5.0|32768,4096|-|-|google/gemma-3-1b-it model|N
featherless/Phi-3-mini-4k-instruct|phi-3-mini-4k-instruct|microsoft/Phi-3-mini-4k-instruct|C|1.0,5.0|4096,4096|-|68.8,,,,,,,,,|microsoft/Phi-3-mini-4k-instruct model|N
featherless/Qwen3-R1-SLERP-Q3T-8B|qwen3-r1-slerp-q3t-8b|lemon07r/Qwen3-R1-SLERP-Q3T-8B|C|1.0,5.0|32768,4096|-|-|lemon07r/Qwen3-R1-SLERP-Q3T-8B model|N
featherless/RLT-7B|rlt-7b|SakanaAI/RLT-7B|C|1.0,5.0|131072,4096|-|-|SakanaAI/RLT-7B model|N
featherless/MS3.2-24B-Magnum-Diamond|ms3.2-24b-magnum-diamond|Doctor-Shotgun/MS3.2-24B-Magnum-Diamond|C|1.0,5.0|32768,4096|-|-|Doctor-Shotgun/MS3.2-24B-Magnum-Diamond model|N
featherless/gemma-3-1b-pt|gemma-3-1b-pt|google/gemma-3-1b-pt|C|1.0,5.0|32768,4096|-|-|google/gemma-3-1b-pt model|N
featherless/Confucius3-Math|confucius3-math|netease-youdao/Confucius3-Math|C|1.0,5.0|32768,4096|-|-|netease-youdao/Confucius3-Math model|N
featherless/Llama-3.1-70B-Instruct|llama-3.1-70b-instruct|meta-llama/Llama-3.1-70B-Instruct|C|1.0,5.0|32768,4096|-|80.1,,36.7,44.2,,,,,,|meta-llama/Llama-3.1-70B-Instruct model|N
featherless/Phi-3.5-mini-instruct|phi-3.5-mini-instruct|microsoft/Phi-3.5-mini-instruct|C|1.0,5.0|4096,4096|-|-|microsoft/Phi-3.5-mini-instruct model|N
featherless/Llama-3.2-3B|llama-3.2-3b|meta-llama/Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|meta-llama/Llama-3.2-3B model|N
featherless/EtherealAurora-12B-v2|etherealaurora-12b|yamatazen/EtherealAurora-12B-v2|C|1.0,5.0|32768,4096|V|-|yamatazen/EtherealAurora-12B-v2 model|N
featherless/Phi-4-mini-reasoning|phi-4-mini-reasoning|microsoft/Phi-4-mini-reasoning|C|1.0,5.0|131072,4096|K|-|microsoft/Phi-4-mini-reasoning model|N
featherless/Tower-Plus-72B|tower-plus-72b|Unbabel/Tower-Plus-72B|C|1.0,5.0|131072,4096|-|-|Unbabel/Tower-Plus-72B model|N
featherless/Neona-12B|neona-12b|kyx0r/Neona-12B|C|1.0,5.0|32768,4096|-|-|kyx0r/Neona-12B model|N
featherless/phi-2|phi-2|microsoft/phi-2|C|1.0,5.0|2048,2048|-|56.3,,,,,,,,,|microsoft/phi-2 model|N
featherless/Phi-3-mini-128k-instruct|phi-3-mini-128k-instruct|microsoft/Phi-3-mini-128k-instruct|C|1.0,5.0|4096,4096|-|-|microsoft/Phi-3-mini-128k-instruct model|N
featherless/Llama-3-8B-Lexi-Uncensored|llama-3-8b-lexi-uncensored|Orenguteng/Llama-3-8B-Lexi-Uncensored|C|1.0,5.0|8192,4096|-|-|Orenguteng/Llama-3-8B-Lexi-Uncensored model|N
featherless/gemma-2-9b|gemma-2-9b|google/gemma-2-9b|C|1.0,5.0|16384,4096|-|-|google/gemma-2-9b model|N
featherless/Triplex|triplex|SciPhi/Triplex|C|1.0,5.0|4096,4096|-|-|SciPhi/Triplex model|N
featherless/Llama-3.1-70B|llama-3.1-70b|meta-llama/Llama-3.1-70B|C|1.0,5.0|32768,4096|-|80.1,,36.7,44.2,,,,,,|meta-llama/Llama-3.1-70B model|N
featherless/Llama-3.2-3B-it-chinese-kyara|llama-3.2-3b-it-chinese-kyara|zake7749/Llama-3.2-3B-it-chinese-kyara|C|1.0,5.0|32768,4096|-|-|zake7749/Llama-3.2-3B-it-chinese-kyara model|N
featherless/txgemma-27b-chat|txgemma-27b-chat|google/txgemma-27b-chat|C|1.0,5.0|32768,4096|-|-|google/txgemma-27b-chat model|N
featherless/cogito-v1-preview-llama-70B|cogito-v1-preview-llama-70b|deepcogito/cogito-v1-preview-llama-70B|C|1.0,5.0|32768,4096|V|-|deepcogito/cogito-v1-preview-llama-70B model|N
featherless/Strawberrylemonade-L3-70B-v1.2|strawberrylemonade-l3-70b|sophosympatheia/Strawberrylemonade-L3-70B-v1.2|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Strawberrylemonade-L3-70B-v1.2 model|N
featherless/phi-3-portuguese-tom-cat-4k-instruct|phi-3-portuguese-tom-cat-4k-instruct|rhaymison/phi-3-portuguese-tom-cat-4k-instruct|C|1.0,5.0|4096,4096|-|-|rhaymison/phi-3-portuguese-tom-cat-4k-instruct model|N
featherless/MMed-Llama-3-8B|mmed-llama-3-8b|Henrychur/MMed-Llama-3-8B|C|1.0,5.0|8192,4096|-|-|Henrychur/MMed-Llama-3-8B model|N
featherless/NuExtract|nuextract|numind/NuExtract|C|1.0,5.0|4096,4096|-|-|numind/NuExtract model|N
featherless/Big-Tiger-Gemma-27B-v1|big-tiger-gemma-27b|TheDrummer/Big-Tiger-Gemma-27B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Big-Tiger-Gemma-27B-v1 model|N
featherless/gemma-3-4b-it|gemma-3-4b-it|google/gemma-3-4b-it|C|1.0,5.0|32768,4096|-|-|google/gemma-3-4b-it model|N
featherless/Gemma-3-Gaia-PT-BR-4b-it|gemma-3-gaia-pt-br-4b-it|CEIA-UFG/Gemma-3-Gaia-PT-BR-4b-it|C|1.0,5.0|32768,4096|-|-|CEIA-UFG/Gemma-3-Gaia-PT-BR-4b-it model|N
featherless/Mistral-Small-3.2-24B-Instruct-2506|mistral-small-3.2-24b-instruct-2506|unsloth/Mistral-Small-3.2-24B-Instruct-2506|C|1.0,5.0|32768,4096|-|-|unsloth/Mistral-Small-3.2-24B-Instruct-2506 model|N
featherless/gemma-3-4b-pt|gemma-3-4b-pt|google/gemma-3-4b-pt|C|1.0,5.0|32768,4096|-|-|google/gemma-3-4b-pt model|N
featherless/gemma-3-12b-pt|gemma-3-12b-pt|google/gemma-3-12b-pt|C|1.0,5.0|32768,4096|-|-|google/gemma-3-12b-pt model|N
featherless/gemma-3-27b-it|gemma-3-27b-it|unsloth/gemma-3-27b-it|C|1.0,5.0|32768,4096|-|,,74.0,48.9,,,,,,|unsloth/gemma-3-27b-it model|N
featherless/gemma-3-27b-pt|gemma-3-27b-pt|unsloth/gemma-3-27b-pt|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-27b-pt model|N
featherless/gemma-3-12b-it|gemma-3-12b-it|unsloth/gemma-3-12b-it|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-12b-it model|N
featherless/gemma-3-4b-pt|gemma-3-4b-pt|unsloth/gemma-3-4b-pt|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-4b-pt model|N
featherless/gemma-3-4b-it-abliterated|gemma-3-4b-it-abliterated|mlabonne/gemma-3-4b-it-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/gemma-3-4b-it-abliterated model|N
featherless/gemma-3-12b-it-abliterated|gemma-3-12b-it-abliterated|huihui-ai/gemma-3-12b-it-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/gemma-3-12b-it-abliterated model|N
featherless/Gemma-3-R1984-12B|gemma-3-r1984-12b|VIDraft/Gemma-3-R1984-12B|C|1.0,5.0|32768,4096|-|-|VIDraft/Gemma-3-R1984-12B model|N
featherless/gemma-3-12b-it-qat-q4_0-unquantized|gemma-3-12b-it-qat-q4_0-unquantized|google/gemma-3-12b-it-qat-q4_0-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-12b-it-qat-q4_0-unquantized model|N
featherless/gemma-3-4b-it-qat-int4-unquantized|gemma-3-4b-it-qat-int4-unquantized|google/gemma-3-4b-it-qat-int4-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-4b-it-qat-int4-unquantized model|N
featherless/gemma-3-27b-it-qat|gemma-3-27b-it-qat|unsloth/gemma-3-27b-it-qat|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-27b-it-qat model|N
featherless/gemma-3-1b-it-qat|gemma-3-1b-it-qat|unsloth/gemma-3-1b-it-qat|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-1b-it-qat model|N
featherless/phi-1_5|phi-1_5|microsoft/phi-1_5|C|1.0,5.0|2048,2048|-|37.6,,,,,,,,,|microsoft/phi-1_5 model|N
featherless/gemma-2-9b-it|gemma-2-9b-it|google/gemma-2-9b-it|C|1.0,5.0|16384,4096|-|72.1,,21.0,27.5,,,,,,|google/gemma-2-9b-it model|N
featherless/gemma-2-27b-it|gemma-2-27b-it|google/gemma-2-27b-it|C|1.0,5.0|32768,4096|-|75.7,,27.9,36.5,,,,,,|google/gemma-2-27b-it model|N
featherless/llava-llama-3-8b-v1_1|llava-llama-3-8b-v1_1|xtuner/llava-llama-3-8b-v1_1|C|1.0,5.0|8192,4096|V|-|xtuner/llava-llama-3-8b-v1_1 model|N
featherless/GemmaCoder3-12B|gemmacoder3-12b|burtenshaw/GemmaCoder3-12B|C|1.0,5.0|32768,4096|-|-|burtenshaw/GemmaCoder3-12B model|N
featherless/Mellum-4b-base|mellum-4b-base|JetBrains/Mellum-4b-base|C|1.0,5.0|32768,4096|-|-|JetBrains/Mellum-4b-base model|N
featherless/Tiger-Gemma-9B-v2|tiger-gemma-9b|TheDrummer/Tiger-Gemma-9B-v2|C|1.0,5.0|16384,4096|V|-|TheDrummer/Tiger-Gemma-9B-v2 model|N
featherless/Phi-3-mini-4k-socratic|phi-3-mini-4k-socratic|eurecom-ds/Phi-3-mini-4k-socratic|C|1.0,5.0|4096,4096|-|-|eurecom-ds/Phi-3-mini-4k-socratic model|N
featherless/Mistral-Nemo-Base-2407|mistral-nemo-base-2407|mistralai/Mistral-Nemo-Base-2407|C|1.0,5.0|32768,4096|-|-|mistralai/Mistral-Nemo-Base-2407 model|N
featherless/agent-zero-v1-a-01|agent-zero-v1-a-01|Rewnozom/agent-zero-v1-a-01|C|1.0,5.0|4096,4096|V|-|Rewnozom/agent-zero-v1-a-01 model|N
featherless/Mellum-4b-sft-python|mellum-4b-sft-python|JetBrains/Mellum-4b-sft-python|C|1.0,5.0|32768,4096|-|-|JetBrains/Mellum-4b-sft-python model|N
featherless/NuExtract-1.5|nuextract-1.5|numind/NuExtract-1.5|C|1.0,5.0|4096,4096|-|-|numind/NuExtract-1.5 model|N
featherless/Mellum-4b-sft-kotlin|mellum-4b-sft-kotlin|JetBrains/Mellum-4b-sft-kotlin|C|1.0,5.0|32768,4096|-|-|JetBrains/Mellum-4b-sft-kotlin model|N
featherless/Hermes-3-Llama-3.2-3B|hermes-3-llama-3.2-3b|NousResearch/Hermes-3-Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|NousResearch/Hermes-3-Llama-3.2-3B model|N
featherless/Magnolia-v3-Gemma2-8k-9B|magnolia-v3-gemma2-8k-9b|grimjim/Magnolia-v3-Gemma2-8k-9B|C|1.0,5.0|16384,4096|V|-|grimjim/Magnolia-v3-Gemma2-8k-9B model|N
featherless/TxAgent-T1-Llama-3.1-8B|txagent-t1-llama-3.1-8b|mims-harvard/TxAgent-T1-Llama-3.1-8B|C|1.0,5.0|32768,4096|-|-|mims-harvard/TxAgent-T1-Llama-3.1-8B model|N
featherless/txgemma-27b-predict|txgemma-27b-predict|google/txgemma-27b-predict|C|1.0,5.0|32768,4096|-|-|google/txgemma-27b-predict model|N
featherless/Dirty-Shirley-Writer-v01-Uncensored|dirty-shirley-writer-v01-uncensored|Mantis2024/Dirty-Shirley-Writer-v01-Uncensored|C|1.0,5.0|16384,4096|V|-|Mantis2024/Dirty-Shirley-Writer-v01-Uncensored model|N
featherless/GLM-Z1-9B-0414|glm-z1-9b-0414|zai-org/GLM-Z1-9B-0414|C|1.0,5.0|32768,4096|-|-|zai-org/GLM-Z1-9B-0414 model|N
featherless/gemma-3-1b-it-qat-int4-unquantized|gemma-3-1b-it-qat-int4-unquantized|google/gemma-3-1b-it-qat-int4-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-1b-it-qat-int4-unquantized model|N
featherless/DAPO-Qwen-32B|dapo-qwen-32b|BytedTsinghua-SIA/DAPO-Qwen-32B|C|1.0,5.0|131072,4096|-|-|BytedTsinghua-SIA/DAPO-Qwen-32B model|N
featherless/Llama-Primus-Nemotron-70B-Instruct|llama-primus-nemotron-70b-instruct|trend-cybertron/Llama-Primus-Nemotron-70B-Instruct|C|1.0,5.0|32768,4096|-|-|trend-cybertron/Llama-Primus-Nemotron-70B-Instruct model|N
featherless/Qwen3-8B|qwen3-8b|unsloth/Qwen3-8B|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen3-8B model|N
featherless/Qwen3-8B-Base|qwen3-8b-base|Qwen/Qwen3-8B-Base|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-8B-Base model|N
featherless/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|Gensyn/Qwen2.5-7B-Instruct|C|1.0,5.0|131072,4096|-|72.9,,,,,,,,,|Gensyn/Qwen2.5-7B-Instruct model|N
featherless/BlackXorDolphTronGOAT|blackxordolphtrongoat|darkc0de/BlackXorDolphTronGOAT|C|1.0,5.0|32768,4096|-|-|darkc0de/BlackXorDolphTronGOAT model|N
featherless/Xiaolong-Qwen3-8B|xiaolong-qwen3-8b|nbeerbower/Xiaolong-Qwen3-8B|C|1.0,5.0|32768,4096|-|-|nbeerbower/Xiaolong-Qwen3-8B model|N
featherless/Mellum-4b-sft-rust|mellum-4b-sft-rust|Etherll/Mellum-4b-sft-rust|C|1.0,5.0|32768,4096|-|-|Etherll/Mellum-4b-sft-rust model|N
featherless/marin-8b-instruct|marin-8b-instruct|marin-community/marin-8b-instruct|C|1.0,5.0|32768,4096|-|-|marin-community/marin-8b-instruct model|N
featherless/Llama-Sahabat-AI-v2-70B-IT|llama-sahabat-ai-v2-70b-it|Sahabat-AI/Llama-Sahabat-AI-v2-70B-IT|C|1.0,5.0|32768,4096|V|-|Sahabat-AI/Llama-Sahabat-AI-v2-70B-IT model|N
featherless/GRMR-V3-L3B|grmr-v3-l3b|qingy2024/GRMR-V3-L3B|C|1.0,5.0|32768,4096|V|-|qingy2024/GRMR-V3-L3B model|N
featherless/Qwen3-8B|qwen3-8b|willcb/Qwen3-8B|C|1.0,5.0|32768,4096|-|-|willcb/Qwen3-8B model|N
featherless/UIGEN-T3-8B-Preview|uigen-t3-8b-preview|Tesslate/UIGEN-T3-8B-Preview|C|1.0,5.0|32768,4096|-|-|Tesslate/UIGEN-T3-8B-Preview model|N
featherless/LiquidGold-MS-L3.3-70b|liquidgold-ms-l3.3-70b|Entropicengine/LiquidGold-MS-L3.3-70b|C|1.0,5.0|32768,4096|-|-|Entropicengine/LiquidGold-MS-L3.3-70b model|N
featherless/Huihui-Qwen3-8B-abliterated-v2|huihui-qwen3-8b-abliterated|huihui-ai/Huihui-Qwen3-8B-abliterated-v2|C|1.0,5.0|32768,4096|V|-|huihui-ai/Huihui-Qwen3-8B-abliterated-v2 model|N
featherless/gemma-3-1b-it-grpo|gemma-3-1b-it-grpo|tatsuyaaaaaaa/gemma-3-1b-it-grpo|C|1.0,5.0|32768,4096|-|-|tatsuyaaaaaaa/gemma-3-1b-it-grpo model|N
featherless/phi3-4k-ft|phi3-4k-ft|IlmaJiyadh/phi3-4k-ft|C|1.0,5.0|4096,4096|-|-|IlmaJiyadh/phi3-4k-ft model|N
featherless/Phr00tyMix-v2-32B|phr00tymix-v2-32b|Phr00t/Phr00tyMix-v2-32B|C|1.0,5.0|131072,4096|V|-|Phr00t/Phr00tyMix-v2-32B model|N
featherless/Dirty-Muse-Writer-v01-Uncensored-Erotica-NSFW|-|Mantis2024/Dirty-Muse-Writer-v01-Uncensored-Erotica-NSFW|C|1.0,5.0|16384,4096|V|-|Mantis2024/Dirty-Muse-Writer-v01-Uncensored-Erotica-NSFW model|N
featherless/The-Omega-Directive-Qwen3-14B-v1.1|the-omega-directive-qwen3-14b|ReadyArt/The-Omega-Directive-Qwen3-14B-v1.1|C|1.0,5.0|32768,4096|V|-|ReadyArt/The-Omega-Directive-Qwen3-14B-v1.1 model|N
featherless/Qwen3-8B-NSFW-JP|qwen3-8b-nsfw-jp|Aratako/Qwen3-8B-NSFW-JP|C|1.0,5.0|32768,4096|-|-|Aratako/Qwen3-8B-NSFW-JP model|N
featherless/Predatorial-Extasy-70B|predatorial-extasy-70b|Mawdistical/Predatorial-Extasy-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Predatorial-Extasy-70B model|N
featherless/KansenSakura-Zero-RP-12b|kansensakura-zero-rp-12b|Retreatcost/KansenSakura-Zero-RP-12b|C|1.0,5.0|32768,4096|-|-|Retreatcost/KansenSakura-Zero-RP-12b model|N
featherless/Jan-nano-128k|jan-nano-128k|Menlo/Jan-nano-128k|C|1.0,5.0|40960,4096|-|-|Menlo/Jan-nano-128k model|N
featherless/Qwen3-4B|qwen3-4b|Qwen/Qwen3-4B|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-4B model|N
featherless/TinyLlama-1.1B-Chat-v1.0|tinyllama-1.1b-chat|TinyLlama/TinyLlama-1.1B-Chat-v1.0|C|1.0,5.0|2048,2048|V|-|TinyLlama/TinyLlama-1.1B-Chat-v1.0 model|N
featherless/Arch-Router-1.5B|arch-router-1.5b|katanemo/Arch-Router-1.5B|C|1.0,5.0|131072,4096|-|-|katanemo/Arch-Router-1.5B model|N
featherless/Qwen3-1.7B|qwen3-1.7b|Qwen/Qwen3-1.7B|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-1.7B model|N
featherless/Cavil-Qwen3-4B|cavil-qwen3-4b|openSUSE/Cavil-Qwen3-4B|C|1.0,5.0|40960,4096|-|-|openSUSE/Cavil-Qwen3-4B model|N
featherless/Arch-Agent-3B|arch-agent-3b|katanemo/Arch-Agent-3B|C|1.0,5.0|32768,4096|-|-|katanemo/Arch-Agent-3B model|N
featherless/Qwen2.5-3B|qwen2.5-3b|Qwen/Qwen2.5-3B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-3B model|N
featherless/Crystal-Think-V2|crystal-think|PinkPixel/Crystal-Think-V2|C|1.0,5.0|40960,4096|VK|-|PinkPixel/Crystal-Think-V2 model|N
featherless/ReasonFlux-PRM-1.5B|reasonflux-prm-1.5b|Gen-Verse/ReasonFlux-PRM-1.5B|C|1.0,5.0|131072,4096|VK|-|Gen-Verse/ReasonFlux-PRM-1.5B model|N
featherless/Jan-nano|jan-nano|unsloth/Jan-nano|C|1.0,5.0|40960,4096|-|-|unsloth/Jan-nano model|N
featherless/Qwen3_Medical_GRPO|qwen3_medical_grpo|lastmass/Qwen3_Medical_GRPO|C|1.0,5.0|40960,4096|-|-|lastmass/Qwen3_Medical_GRPO model|N
featherless/Qwen3-4B-RP-V3|qwen3-4b-rp|bunnycore/Qwen3-4B-RP-V3|C|1.0,5.0|40960,4096|V|-|bunnycore/Qwen3-4B-RP-V3 model|N
featherless/Qwen2.5-Coder-3B-Instruct|qwen2.5-coder-3b-instruct|Qwen/Qwen2.5-Coder-3B-Instruct|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-Coder-3B-Instruct model|N
featherless/Tower-Plus-2B|tower-plus-2b|Unbabel/Tower-Plus-2B|C|1.0,5.0|8192,4096|-|-|Unbabel/Tower-Plus-2B model|N
featherless/Arch-Agent-1.5B|arch-agent-1.5b|katanemo/Arch-Agent-1.5B|C|1.0,5.0|131072,4096|-|-|katanemo/Arch-Agent-1.5B model|N
featherless/Qwen-3-merged-reasoning|qwen-3-merged-reasoning|ertghiu256/Qwen-3-merged-reasoning|C|1.0,5.0|40960,4096|K|-|ertghiu256/Qwen-3-merged-reasoning model|N
featherless/Jan-nano-128k|jan-nano-128k|unsloth/Jan-nano-128k|C|1.0,5.0|40960,4096|-|-|unsloth/Jan-nano-128k model|N
featherless/amrita-gpt-model|amrita-gpt-model|madan2248c/amrita-gpt-model|C|1.0,5.0|2048,2048|-|-|madan2248c/amrita-gpt-model model|N
featherless/TinyLlama-1.1B-Chat-v0.6|tinyllama-1.1b-chat|TinyLlama/TinyLlama-1.1B-Chat-v0.6|C|1.0,5.0|2048,2048|V|-|TinyLlama/TinyLlama-1.1B-Chat-v0.6 model|N
featherless/MeanGirl|meangirl|andrijdavid/MeanGirl|C|1.0,5.0|2048,2048|-|-|andrijdavid/MeanGirl model|N
featherless/Arch-Function-3B|arch-function-3b|katanemo/Arch-Function-3B|C|1.0,5.0|32768,4096|-|-|katanemo/Arch-Function-3B model|N
featherless/Qwen3-4B-Base|qwen3-4b-base|Qwen/Qwen3-4B-Base|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-4B-Base model|N
featherless/Qwen3-4B-Base|qwen3-4b-base|unsloth/Qwen3-4B-Base|C|1.0,5.0|40960,4096|-|-|unsloth/Qwen3-4B-Base model|N
featherless/Qwen3-4B-Esper3|qwen3-4b-esper3|ValiantLabs/Qwen3-4B-Esper3|C|1.0,5.0|40960,4096|-|-|ValiantLabs/Qwen3-4B-Esper3 model|N
featherless/Kodify-Nano|kodify-nano|MTSAIR/Kodify-Nano|C|1.0,5.0|131072,4096|-|-|MTSAIR/Kodify-Nano model|N
featherless/Qwen3-4B-Base-VeriFree|qwen3-4b-base-verifree|zhouxiangxin/Qwen3-4B-Base-VeriFree|C|1.0,5.0|40960,4096|V|-|zhouxiangxin/Qwen3-4B-Base-VeriFree model|N
featherless/UIGEN-T3-4B-Preview-MAX|uigen-t3-4b-preview-max|Tesslate/UIGEN-T3-4B-Preview-MAX|C|1.0,5.0|40960,4096|-|-|Tesslate/UIGEN-T3-4B-Preview-MAX model|N
featherless/finance_finetune_model|finance_finetune_model|Ayushx29/finance_finetune_model|C|1.0,5.0|2048,2048|-|-|Ayushx29/finance_finetune_model model|N
featherless/Qwen3-4B-RP-V2|qwen3-4b-rp|bunnycore/Qwen3-4B-RP-V2|C|1.0,5.0|40960,4096|V|-|bunnycore/Qwen3-4B-RP-V2 model|N
featherless/TinyPi-Chat-v1.5|tinypi-chat|Kittykat924/TinyPi-Chat-v1.5|C|1.0,5.0|2048,2048|V|-|Kittykat924/TinyPi-Chat-v1.5 model|N
featherless/Taxonomi_full_model|taxonomi_full_model|basemmohamed/Taxonomi_full_model|C|1.0,5.0|131072,4096|-|-|basemmohamed/Taxonomi_full_model model|N
featherless/Qwen2.5-0.5B-Taiwan-Instruct|qwen2.5-0.5b-taiwan-instruct|ShengweiPeng/Qwen2.5-0.5B-Taiwan-Instruct|C|1.0,5.0|32768,4096|-|-|ShengweiPeng/Qwen2.5-0.5B-Taiwan-Instruct model|N
featherless/amrita-gpt-model-instruction-finetuned|amrita-gpt-model-instruction-finetuned|madan2248c/amrita-gpt-model-instruction-finetuned|C|1.0,5.0|2048,2048|-|-|madan2248c/amrita-gpt-model-instruction-finetuned model|N
featherless/Llama-3.3-70b-courage|llama-3.3-70b-courage|KaraKaraWitch/Llama-3.3-70b-courage|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/Llama-3.3-70b-courage model|N
featherless/Llama-EveningMirai-Moonwalker-v2-MS-3.3-70B|-|KaraKaraWitch/Llama-EveningMirai-Moonwalker-v2-MS-3.3-70B|C|1.0,5.0|32768,4096|V|-|KaraKaraWitch/Llama-EveningMirai-Moonwalker-v2-MS-3.3-70B model|N
featherless/L3.3-Shakudo-70b|l3.3-shakudo-70b|Steelskull/L3.3-Shakudo-70b|C|1.0,5.0|32768,4096|-|-|Steelskull/L3.3-Shakudo-70b model|N
featherless/L3.3-70B-Magnum-Diamond|l3.3-70b-magnum-diamond|Doctor-Shotgun/L3.3-70B-Magnum-Diamond|C|1.0,5.0|32768,4096|-|-|Doctor-Shotgun/L3.3-70B-Magnum-Diamond model|N
featherless/Impish_Magic_24B|impish_magic_24b|SicariusSicariiStuff/Impish_Magic_24B|C|1.0,5.0|32768,4096|-|-|SicariusSicariiStuff/Impish_Magic_24B model|N
featherless/Arynia-LLaMA-70B|arynia-llama-70b|k4yt3x/Arynia-LLaMA-70B|C|1.0,5.0|32768,4096|-|-|k4yt3x/Arynia-LLaMA-70B model|N
featherless/Scripturient-V1.3-LLaMa-70B|scripturient-v1.3-llama-70b|Tarek07/Scripturient-V1.3-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|Tarek07/Scripturient-V1.3-LLaMa-70B model|N
featherless/praxis-bookwriter-qwen2.5-14b-sft|praxis-bookwriter-qwen2.5-14b-sft|maldv/praxis-bookwriter-qwen2.5-14b-sft|C|1.0,5.0|131072,4096|-|-|maldv/praxis-bookwriter-qwen2.5-14b-sft model|N
featherless/MS3.2-Austral-Winton|ms3.2-austral-winton|Delta-Vector/MS3.2-Austral-Winton|C|1.0,5.0|32768,4096|V|-|Delta-Vector/MS3.2-Austral-Winton model|N
featherless/Dhanishtha-2.0-preview|dhanishtha-2.0-preview|HelpingAI/Dhanishtha-2.0-preview|C|1.0,5.0|32768,4096|-|-|HelpingAI/Dhanishtha-2.0-preview model|N
featherless/DeepSWE-Preview|deepswe-preview|agentica-org/DeepSWE-Preview|C|1.0,5.0|32768,4096|-|-|agentica-org/DeepSWE-Preview model|N
featherless/QVikhr-3-4B-Instruction|qvikhr-3-4b-instruction|Vikhrmodels/QVikhr-3-4B-Instruction|C|1.0,5.0|40960,4096|-|-|Vikhrmodels/QVikhr-3-4B-Instruction model|N
featherless/Llama-3.3-Nemotron-70B-Reward-Multilingual|-|nvidia/Llama-3.3-Nemotron-70B-Reward-Multilingual|C|1.0,5.0|32768,4096|-|-|nvidia/Llama-3.3-Nemotron-70B-Reward-Multilingual model|N
featherless/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated|-|huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated model|N
featherless/gemma-3-4b-it|gemma-3-4b-it|unsloth/gemma-3-4b-it|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-4b-it model|N
featherless/gemma-3-27b-tools|gemma-3-27b-tools|ZySec-AI/gemma-3-27b-tools|C|1.0,5.0|32768,4096|-|-|ZySec-AI/gemma-3-27b-tools model|N
featherless/gemma-2-2b-jpn-it|gemma-2-2b-jpn-it|google/gemma-2-2b-jpn-it|C|1.0,5.0|8192,4096|-|-|google/gemma-2-2b-jpn-it model|N
featherless/JARVIS|jarvis|hadadrjt/JARVIS|C|1.0,5.0|32768,4096|-|-|hadadrjt/JARVIS model|N
featherless/Qwen2.5-1.5B-Open-R1-Code-GRPO|qwen2.5-1.5b-open-r1-code-grpo|AmberYifan/Qwen2.5-1.5B-Open-R1-Code-GRPO|C|1.0,5.0|131072,4096|-|-|AmberYifan/Qwen2.5-1.5B-Open-R1-Code-GRPO model|N
featherless/qwen3-finance-model|qwen3-finance-model|Dev9124/qwen3-finance-model|C|1.0,5.0|40960,4096|-|-|Dev9124/qwen3-finance-model model|N
featherless/Qwen2.5-3B-UFO|qwen2.5-3b-ufo|LichengLiu03/Qwen2.5-3B-UFO|C|1.0,5.0|32768,4096|-|-|LichengLiu03/Qwen2.5-3B-UFO model|N
featherless/AnubisLemonade-70B-v1|anubislemonade-70b|ockerman0/AnubisLemonade-70B-v1|C|1.0,5.0|32768,4096|V|-|ockerman0/AnubisLemonade-70B-v1 model|N
featherless/meta-llama-Llama-3.2-3B-Instruct-FP16|meta-llama-llama-3.2-3b-instruct-fp16|context-labs/meta-llama-Llama-3.2-3B-Instruct-FP16|C|1.0,5.0|32768,4096|-|-|context-labs/meta-llama-Llama-3.2-3B-Instruct-FP16 model|N
featherless/magistral-small-2506-mlx-bf16|magistral-small-2506-mlx-bf16|lmstudio-community/magistral-small-2506-mlx-bf16|C|1.0,5.0|32768,4096|-|-|lmstudio-community/magistral-small-2506-mlx-bf16 model|N
featherless/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|unsloth/Llama-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Llama-3.2-3B-Instruct model|N
featherless/gemma-2-2b-it|gemma-2-2b-it|Efficient-Large-Model/gemma-2-2b-it|C|1.0,5.0|8192,4096|-|-|Efficient-Large-Model/gemma-2-2b-it model|N
featherless/Qwen2.5-3B-Instruct|qwen2.5-3b-instruct|unsloth/Qwen2.5-3B-Instruct|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen2.5-3B-Instruct model|N
featherless/Qwen3-14B-Base|qwen3-14b-base|Qwen/Qwen3-14B-Base|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-14B-Base model|N
featherless/Llama-3.1-8B-Instruct-FP8|llama-3.1-8b-instruct-fp8|nvidia/Llama-3.1-8B-Instruct-FP8|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|nvidia/Llama-3.1-8B-Instruct-FP8 model|N
featherless/guru-7B|guru-7b|LLM360/guru-7B|C|1.0,5.0|131072,4096|-|-|LLM360/guru-7B model|N
featherless/Qwen2.5-Coder-3B|qwen2.5-coder-3b|Qwen/Qwen2.5-Coder-3B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen2.5-Coder-3B model|N
featherless/gemma-3-1b-it|gemma-3-1b-it|unsloth/gemma-3-1b-it|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-1b-it model|N
featherless/llama-3.2-Korean-Bllossom-3B|llama-3.2-korean-bllossom-3b|Bllossom/llama-3.2-Korean-Bllossom-3B|C|1.0,5.0|32768,4096|-|-|Bllossom/llama-3.2-Korean-Bllossom-3B model|N
featherless/SILMA-9B-Instruct-v1.0|silma-9b-instruct|silma-ai/SILMA-9B-Instruct-v1.0|C|1.0,5.0|16384,4096|V|-|silma-ai/SILMA-9B-Instruct-v1.0 model|N
featherless/gemma-2-9b-it-SimPO|gemma-2-9b-it-simpo|princeton-nlp/gemma-2-9b-it-SimPO|C|1.0,5.0|16384,4096|-|-|princeton-nlp/gemma-2-9b-it-SimPO model|N
featherless/qa-retailpro|qa-retailpro|MIAOAI/qa-retailpro|C|1.0,5.0|131072,4096|-|-|MIAOAI/qa-retailpro model|N
featherless/Llama-SEA-LION-v3.5-8B-R|llama-sea-lion-v3.5-8b-r|aisingapore/Llama-SEA-LION-v3.5-8B-R|C|1.0,5.0|32768,4096|V|-|aisingapore/Llama-SEA-LION-v3.5-8B-R model|N
featherless/Llama-3.2-3B|llama-3.2-3b|unsloth/Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|unsloth/Llama-3.2-3B model|N
featherless/StopCarbon-10.7B-v5|stopcarbon-10.7b|kekmodel/StopCarbon-10.7B-v5|C|1.0,5.0|4096,4096|V|-|kekmodel/StopCarbon-10.7B-v5 model|N
featherless/CarbonVillain-en-10.7B-v4|carbonvillain-en-10.7b|jeonsworld/CarbonVillain-en-10.7B-v4|C|1.0,5.0|4096,4096|V|-|jeonsworld/CarbonVillain-en-10.7B-v4 model|N
featherless/Sakura-SOLAR-Instruct-CarbonVillain-en-10.7B-v2-slerp|-|invalid-coder/Sakura-SOLAR-Instruct-CarbonVillain-en-10.7B-v2-slerp|C|1.0,5.0|4096,4096|V|-|invalid-coder/Sakura-SOLAR-Instruct-CarbonVillain-en-10.7B-v2-slerp model|N
featherless/Meta-Llama-Guard-2-8B|meta-llama-guard-2-8b|meta-llama/Meta-Llama-Guard-2-8B|C|1.0,5.0|8192,4096|-|-|meta-llama/Meta-Llama-Guard-2-8B model|N
featherless/Llama-3-8B-ProLong-64k-Instruct|llama-3-8b-prolong-64k-instruct|princeton-nlp/Llama-3-8B-ProLong-64k-Instruct|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-8B-ProLong-64k-Instruct model|N
featherless/TinySwallow-1.5B|tinyswallow-1.5b|SakanaAI/TinySwallow-1.5B|C|1.0,5.0|131072,4096|-|-|SakanaAI/TinySwallow-1.5B model|N
featherless/gus-emoji|gus-emoji|glenng/gus-emoji|C|1.0,5.0|32768,4096|-|-|glenng/gus-emoji model|N
featherless/Llama-3-Instruct-8B-CPO-SimPO|llama-3-instruct-8b-cpo-simpo|haoranxu/Llama-3-Instruct-8B-CPO-SimPO|C|1.0,5.0|8192,4096|-|-|haoranxu/Llama-3-Instruct-8B-CPO-SimPO model|N
featherless/llama-3-nectar-dpo-8B|llama-3-nectar-dpo-8b|ibivibiv/llama-3-nectar-dpo-8B|C|1.0,5.0|8192,4096|-|-|ibivibiv/llama-3-nectar-dpo-8B model|N
featherless/Llama-3-8B-ProLong-64k-Base|llama-3-8b-prolong-64k-base|princeton-nlp/Llama-3-8B-ProLong-64k-Base|C|1.0,5.0|8192,4096|-|-|princeton-nlp/Llama-3-8B-ProLong-64k-Base model|N
featherless/Llama3-70B-ShiningValiant2|llama3-70b-shiningvaliant2|ValiantLabs/Llama3-70B-ShiningValiant2|C|1.0,5.0|8192,4096|-|-|ValiantLabs/Llama3-70B-ShiningValiant2 model|N
featherless/Llama3-70B-Fireplace|llama3-70b-fireplace|ValiantLabs/Llama3-70B-Fireplace|C|1.0,5.0|8192,4096|-|-|ValiantLabs/Llama3-70B-Fireplace model|N
featherless/CarbonBeagle-11B|carbonbeagle-11b|vicgalle/CarbonBeagle-11B|C|1.0,5.0|4096,4096|-|-|vicgalle/CarbonBeagle-11B model|N
featherless/Higgs-Llama-3-70B|higgs-llama-3-70b|bosonai/Higgs-Llama-3-70B|C|1.0,5.0|8192,4096|-|-|bosonai/Higgs-Llama-3-70B model|N
featherless/Llama-3-Instruct-8B-SimPO|llama-3-instruct-8b-simpo|haoranxu/Llama-3-Instruct-8B-SimPO|C|1.0,5.0|8192,4096|-|-|haoranxu/Llama-3-Instruct-8B-SimPO model|N
featherless/L-MChat-Small|l-mchat-small|Artples/L-MChat-Small|C|1.0,5.0|2048,2048|-|,,,2.3,,32.9,,,,|Artples/L-MChat-Small model|N
featherless/Llama3-70B-Chinese-Chat-ExPO|llama3-70b-chinese-chat-expo|chujiezheng/Llama3-70B-Chinese-Chat-ExPO|C|1.0,5.0|8192,4096|-|-|chujiezheng/Llama3-70B-Chinese-Chat-ExPO model|N
featherless/Qwen3-8B-Base|qwen3-8b-base|unsloth/Qwen3-8B-Base|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen3-8B-Base model|N
featherless/test|test|duohuang/test|C|1.0,5.0|32768,4096|-|-|duohuang/test model|N
featherless/gemma-2-27b|gemma-2-27b|google/gemma-2-27b|C|1.0,5.0|32768,4096|-|-|google/gemma-2-27b model|N
featherless/phi-1|phi-1|microsoft/phi-1|C|1.0,5.0|2048,2048|-|-|microsoft/phi-1 model|N
featherless/Phi-3.5-mini-ITA|phi-3.5-mini-ita|anakin87/Phi-3.5-mini-ITA|C|1.0,5.0|4096,4096|-|-|anakin87/Phi-3.5-mini-ITA model|N
featherless/Artemide-3.5|artemide-3.5|ReDiX/Artemide-3.5|C|1.0,5.0|4096,4096|-|-|ReDiX/Artemide-3.5 model|N
featherless/tinyllama-chat|tinyllama-chat|unsloth/tinyllama-chat|C|1.0,5.0|2048,2048|-|-|unsloth/tinyllama-chat model|N
featherless/mistral-ft-optimized-1227|mistral-ft-optimized-1227|OpenPipe/mistral-ft-optimized-1227|C|1.0,5.0|8192,4096|-|-|OpenPipe/mistral-ft-optimized-1227 model|N
featherless/Gemma-2-9B-It-SPPO-Iter3|gemma-2-9b-it-sppo-iter3|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter3|C|1.0,5.0|16384,4096|-|-|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter3 model|N
featherless/gemma-2-9b-it|gemma-2-9b-it|unsloth/gemma-2-9b-it|C|1.0,5.0|16384,4096|-|72.1,,21.0,27.5,,,,,,|unsloth/gemma-2-9b-it model|N
featherless/eCeLLM-S|ecellm-s|NingLab/eCeLLM-S|C|1.0,5.0|2048,2048|-|-|NingLab/eCeLLM-S model|N
featherless/shieldgemma-2b|shieldgemma-2b|google/shieldgemma-2b|C|1.0,5.0|8192,4096|-|-|google/shieldgemma-2b model|N
featherless/TinyLlama-1.1B-intermediate-step-955k-token-2T|-|TinyLlama/TinyLlama-1.1B-intermediate-step-955k-token-2T|C|1.0,5.0|2048,2048|-|-|TinyLlama/TinyLlama-1.1B-intermediate-step-955k-token-2T model|N
featherless/gemma-2-9b-it|gemma-2-9b-it|m8than/gemma-2-9b-it|C|1.0,5.0|16384,4096|-|72.1,,21.0,27.5,,,,,,|m8than/gemma-2-9b-it model|N
featherless/Gemma-2-9B-It-SPPO-Iter2|gemma-2-9b-it-sppo-iter2|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter2|C|1.0,5.0|16384,4096|-|-|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter2 model|N
featherless/Qwen2.5-Math-7B-RoPE-300k|qwen2.5-math-7b-rope-300k|open-r1/Qwen2.5-Math-7B-RoPE-300k|C|1.0,5.0|131072,4096|-|-|open-r1/Qwen2.5-Math-7B-RoPE-300k model|N
featherless/uxux|uxux|CortexCereal/uxux|C|1.0,5.0|32768,4096|-|-|CortexCereal/uxux model|N
featherless/Gemma-2-9B-It-SPPO-Iter1|gemma-2-9b-it-sppo-iter1|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter1|C|1.0,5.0|16384,4096|-|-|UCLA-AGI/Gemma-2-9B-It-SPPO-Iter1 model|N
featherless/Meta-Llama-3-8B-Instruct-FP8-KV|meta-llama-3-8b-instruct-fp8-kv|RedHatAI/Meta-Llama-3-8B-Instruct-FP8-KV|C|1.0,5.0|8192,4096|-|-|RedHatAI/Meta-Llama-3-8B-Instruct-FP8-KV model|N
featherless/SeaPhi3-mini|seaphi3-mini|SeacomSrl/SeaPhi3-mini|C|1.0,5.0|4096,4096|-|-|SeacomSrl/SeaPhi3-mini model|N
featherless/Moxoff-Phi3Mini-PPO|moxoff-phi3mini-ppo|MoxoffSrL/Moxoff-Phi3Mini-PPO|C|1.0,5.0|4096,4096|-|-|MoxoffSrL/Moxoff-Phi3Mini-PPO model|N
featherless/Phi3-ITA-mini-4K-instruct|phi3-ita-mini-4k-instruct|e-palmisano/Phi3-ITA-mini-4K-instruct|C|1.0,5.0|4096,4096|-|-|e-palmisano/Phi3-ITA-mini-4K-instruct model|N
featherless/CBDDO-LLM-8B-Instruct-v1|cbddo-llm-8b-instruct|aerdincdal/CBDDO-LLM-8B-Instruct-v1|C|1.0,5.0|8192,4096|V|-|aerdincdal/CBDDO-LLM-8B-Instruct-v1 model|N
featherless/ko-gemma-2-9b-it|ko-gemma-2-9b-it|rtzr/ko-gemma-2-9b-it|C|1.0,5.0|16384,4096|-|-|rtzr/ko-gemma-2-9b-it model|N
featherless/Flow-Judge-v0.1|flow-judge|flowaicom/Flow-Judge-v0.1|C|1.0,5.0|4096,4096|V|-|flowaicom/Flow-Judge-v0.1 model|N
featherless/Llama-3.2-3B-KO-EN-Translation|llama-3.2-3b-ko-en-translation|kwoncho/Llama-3.2-3B-KO-EN-Translation|C|1.0,5.0|32768,4096|-|-|kwoncho/Llama-3.2-3B-KO-EN-Translation model|N
featherless/walk13|walk13|memevis/walk13|C|1.0,5.0|131072,4096|-|-|memevis/walk13 model|N
featherless/Mistral-7B-Instruct-v0.2|mistral-7b-instruct|Featherless-Chat-Models/Mistral-7B-Instruct-v0.2|C|1.0,5.0|8192,4096|V|62.5,,,,,,,,,|Featherless-Chat-Models/Mistral-7B-Instruct-v0.2 model|N
featherless/Atlas-Chat-2B|atlas-chat-2b|MBZUAI-Paris/Atlas-Chat-2B|C|1.0,5.0|8192,4096|-|-|MBZUAI-Paris/Atlas-Chat-2B model|N
featherless/s1.1-7B|s1.1-7b|simplescaling/s1.1-7B|C|1.0,5.0|131072,4096|-|-|simplescaling/s1.1-7B model|N
featherless/Qwen3-14B-Base|qwen3-14b-base|unsloth/Qwen3-14B-Base|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen3-14B-Base model|N
featherless/Llama-3.1-8B-Instruct|llama-3.1-8b-instruct|RedHatAI/Llama-3.1-8B-Instruct|C|1.0,5.0|32768,4096|-|56.1,,22.9,25.9,,,,,,|RedHatAI/Llama-3.1-8B-Instruct model|N
featherless/Chocolatine-3B-Instruct-DPO-v1.2|chocolatine-3b-instruct-dpo|jpacifico/Chocolatine-3B-Instruct-DPO-v1.2|C|1.0,5.0|4096,4096|V|-|jpacifico/Chocolatine-3B-Instruct-DPO-v1.2 model|N
featherless/gemma-2-9b|gemma-2-9b|unsloth/gemma-2-9b|C|1.0,5.0|16384,4096|-|-|unsloth/gemma-2-9b model|N
featherless/Gemma-2-9b-it-TR-DPO-V1|gemma-2-9b-it-tr-dpo|Metin/Gemma-2-9b-it-TR-DPO-V1|C|1.0,5.0|16384,4096|V|-|Metin/Gemma-2-9b-it-TR-DPO-V1 model|N
featherless/wiroai-turkish-llm-9b|wiroai-turkish-llm-9b|WiroAI/wiroai-turkish-llm-9b|C|1.0,5.0|16384,4096|-|-|WiroAI/wiroai-turkish-llm-9b model|N
featherless/test_finetune|test_finetune|Alphatao/test_finetune|C|1.0,5.0|32768,4096|-|-|Alphatao/test_finetune model|N
featherless/finance-Llama3-8B|finance-llama3-8b|instruction-pretrain/finance-Llama3-8B|C|1.0,5.0|8192,4096|-|-|instruction-pretrain/finance-Llama3-8B model|N
featherless/calme-3.1-instruct-3b|calme-3.1-instruct-3b|MaziyarPanahi/calme-3.1-instruct-3b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-3.1-instruct-3b model|N
featherless/gemma-2-9b-neogenesis-ita|gemma-2-9b-neogenesis-ita|anakin87/gemma-2-9b-neogenesis-ita|C|1.0,5.0|16384,4096|-|-|anakin87/gemma-2-9b-neogenesis-ita model|N
featherless/calme-3.1-llamaloi-3b|calme-3.1-llamaloi-3b|MaziyarPanahi/calme-3.1-llamaloi-3b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-3.1-llamaloi-3b model|N
featherless/calme-3.2-instruct-3b|calme-3.2-instruct-3b|MaziyarPanahi/calme-3.2-instruct-3b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-3.2-instruct-3b model|N
featherless/Llama3.2-3B-ShiningValiant2|llama3.2-3b-shiningvaliant2|ValiantLabs/Llama3.2-3B-ShiningValiant2|C|1.0,5.0|32768,4096|-|-|ValiantLabs/Llama3.2-3B-ShiningValiant2 model|N
featherless/calme-3.1-qwenloi-3b|calme-3.1-qwenloi-3b|MaziyarPanahi/calme-3.1-qwenloi-3b|C|1.0,5.0|32768,4096|-|-|MaziyarPanahi/calme-3.1-qwenloi-3b model|N
featherless/JSL-MedPhi2-2.7B|jsl-medphi2-2.7b|johnsnowlabs/JSL-MedPhi2-2.7B|C|1.0,5.0|2048,2048|-|-|johnsnowlabs/JSL-MedPhi2-2.7B model|N
featherless/wiroai-turkish-llm-8b|wiroai-turkish-llm-8b|WiroAI/wiroai-turkish-llm-8b|C|1.0,5.0|32768,4096|-|-|WiroAI/wiroai-turkish-llm-8b model|N
featherless/stellialm_smallfr_qwen7b_lead|stellialm_smallfr_qwen7b_lead|LsTam/stellialm_smallfr_qwen7b_lead|C|1.0,5.0|131072,4096|-|-|LsTam/stellialm_smallfr_qwen7b_lead model|N
featherless/stellialm_smallfr_qwen7b_9tplus|stellialm_smallfr_qwen7b_9tplus|LsTam/stellialm_smallfr_qwen7b_9tplus|C|1.0,5.0|131072,4096|-|-|LsTam/stellialm_smallfr_qwen7b_9tplus model|N
featherless/BgGPT-Gemma-2-2.6B-IT-v1.0|bggpt-gemma-2-2.6b-it|INSAIT-Institute/BgGPT-Gemma-2-2.6B-IT-v1.0|C|1.0,5.0|8192,4096|V|-|INSAIT-Institute/BgGPT-Gemma-2-2.6B-IT-v1.0 model|N
featherless/MELT-TinyLlama-1.1B-Chat-v1.0|melt-tinyllama-1.1b-chat|IBI-CAAI/MELT-TinyLlama-1.1B-Chat-v1.0|C|1.0,5.0|2048,2048|V|-|IBI-CAAI/MELT-TinyLlama-1.1B-Chat-v1.0 model|N
featherless/turkish-gemma9b-v0|turkish-gemma9b|kadirnar/turkish-gemma9b-v0|C|1.0,5.0|16384,4096|V|-|kadirnar/turkish-gemma9b-v0 model|N
featherless/Solar-OrcaDPO-Solar-Instruct-SLERP|solar-orcadpo-solar-instruct-slerp|kodonho/Solar-OrcaDPO-Solar-Instruct-SLERP|C|1.0,5.0|4096,4096|-|-|kodonho/Solar-OrcaDPO-Solar-Instruct-SLERP model|N
featherless/gemma-2-9b-it-tr|gemma-2-9b-it-tr|neuralwork/gemma-2-9b-it-tr|C|1.0,5.0|16384,4096|-|-|neuralwork/gemma-2-9b-it-tr model|N
featherless/Affine-9711767|affine-9711767|Alphatao/Affine-9711767|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-9711767 model|N
featherless/SolarM-SakuraSolar-SLERP|solarm-sakurasolar-slerp|kodonho/SolarM-SakuraSolar-SLERP|C|1.0,5.0|4096,4096|-|-|kodonho/SolarM-SakuraSolar-SLERP model|N
featherless/Morfoz-LLM-8b-v1.0|morfoz-llm-8b|Morfoz-Aigap/Morfoz-LLM-8b-v1.0|C|1.0,5.0|8192,4096|V|-|Morfoz-Aigap/Morfoz-LLM-8b-v1.0 model|N
featherless/Healix-1.1B-V1-Chat-dDPO|healix-1.1b-v1-chat-ddpo|health360/Healix-1.1B-V1-Chat-dDPO|C|1.0,5.0|2048,2048|V|-|health360/Healix-1.1B-V1-Chat-dDPO model|N
featherless/Gemma-SEA-LION-v3-9B-IT|gemma-sea-lion-v3-9b-it|aisingapore/Gemma-SEA-LION-v3-9B-IT|C|1.0,5.0|16384,4096|V|-|aisingapore/Gemma-SEA-LION-v3-9B-IT model|N
featherless/Smoothie-Qwen3-14B|smoothie-qwen3-14b|dnotitia/Smoothie-Qwen3-14B|C|1.0,5.0|32768,4096|-|-|dnotitia/Smoothie-Qwen3-14B model|N
featherless/Meta-Llama-3-8B-Instruct-FP8|meta-llama-3-8b-instruct-fp8|RedHatAI/Meta-Llama-3-8B-Instruct-FP8|C|1.0,5.0|8192,4096|-|66.5,,6.1,26.1,,,,,,|RedHatAI/Meta-Llama-3-8B-Instruct-FP8 model|N
featherless/Llama-3.2-Rabbit-Ko-3B-Instruct|llama-3.2-rabbit-ko-3b-instruct|CarrotAI/Llama-3.2-Rabbit-Ko-3B-Instruct|C|1.0,5.0|32768,4096|-|-|CarrotAI/Llama-3.2-Rabbit-Ko-3B-Instruct model|N
featherless/Affine-5956831|affine-5956831|Alphatao/Affine-5956831|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-5956831 model|N
featherless/Affine-1901852|affine-1901852|Alphatao/Affine-1901852|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-1901852 model|N
featherless/Affine-1855255|affine-1855255|Alphatao/Affine-1855255|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-1855255 model|N
featherless/llama3-8b-ko-sft-v1|llama3-8b-ko-sft|youjunhyeok/llama3-8b-ko-sft-v1|C|1.0,5.0|8192,4096|V|-|youjunhyeok/llama3-8b-ko-sft-v1 model|N
featherless/Gemma-2-9B-Chinese-Chat|gemma-2-9b-chinese-chat|shenzhi-wang/Gemma-2-9B-Chinese-Chat|C|1.0,5.0|16384,4096|-|-|shenzhi-wang/Gemma-2-9B-Chinese-Chat model|N
featherless/Phi-3-mini-4K-instruct-cpo-simpo|phi-3-mini-4k-instruct-cpo-simpo|Syed-Hasan-8503/Phi-3-mini-4K-instruct-cpo-simpo|C|1.0,5.0|4096,4096|-|-|Syed-Hasan-8503/Phi-3-mini-4K-instruct-cpo-simpo model|N
featherless/ktdsbaseLM-v0.2-onbased-llama3.1|ktdsbaselm-v0.2-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.2-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.2-onbased-llama3.1 model|N
featherless/llama3.0_korean_v1.0_sft|llama3.0_korean_v1.0_sft|SEOKDONG/llama3.0_korean_v1.0_sft|C|1.0,5.0|8192,4096|-|-|SEOKDONG/llama3.0_korean_v1.0_sft model|N
featherless/SOLAR_C-v2-10.7B|solar_c-v2-10.7b|DopeorNope/SOLAR_C-v2-10.7B|C|1.0,5.0|4096,4096|V|-|DopeorNope/SOLAR_C-v2-10.7B model|N
featherless/Llama3.1-8B-Fireplace2|llama3.1-8b-fireplace2|ValiantLabs/Llama3.1-8B-Fireplace2|C|1.0,5.0|32768,4096|-|-|ValiantLabs/Llama3.1-8B-Fireplace2 model|N
featherless/KoSOLAR-10.7B-v1.0|kosolar-10.7b|rrw-x2/KoSOLAR-10.7B-v1.0|C|1.0,5.0|4096,4096|V|-|rrw-x2/KoSOLAR-10.7B-v1.0 model|N
featherless/cydinfo-llama3-8b-lora-v01|cydinfo-llama3-8b-lora|yeonwoo780/cydinfo-llama3-8b-lora-v01|C|1.0,5.0|8192,4096|V|-|yeonwoo780/cydinfo-llama3-8b-lora-v01 model|N
featherless/gemma-2-9b-it-DPO|gemma-2-9b-it-dpo|princeton-nlp/gemma-2-9b-it-DPO|C|1.0,5.0|16384,4096|-|-|princeton-nlp/gemma-2-9b-it-DPO model|N
featherless/KoSOLAR-10.7B-v2.0|kosolar-10.7b|rrw-x2/KoSOLAR-10.7B-v2.0|C|1.0,5.0|4096,4096|V|-|rrw-x2/KoSOLAR-10.7B-v2.0 model|N
featherless/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-ties|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-ties|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-ties model|N
featherless/SOLAR-10.7B-Instruct-STOCK_SOLAR-ties|solar-10.7b-instruct-stock_solar-ties|tanitan2/SOLAR-10.7B-Instruct-STOCK_SOLAR-ties|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-STOCK_SOLAR-ties model|N
featherless/SOLAR-10.7B-Instruct-SD_SOLAR_10.7B-slerp|-|tanitan2/SOLAR-10.7B-Instruct-SD_SOLAR_10.7B-slerp|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-SD_SOLAR_10.7B-slerp model|N
featherless/llama3.1_korean_v0.1_sft_by_aidx|llama3.1_korean_v0.1_sft_by_aidx|SEOKDONG/llama3.1_korean_v0.1_sft_by_aidx|C|1.0,5.0|8192,4096|-|-|SEOKDONG/llama3.1_korean_v0.1_sft_by_aidx model|N
featherless/DataVortexTL-1.1B-v0.1|datavortextl-1.1b|Edentns/DataVortexTL-1.1B-v0.1|C|1.0,5.0|2048,2048|V|-|Edentns/DataVortexTL-1.1B-v0.1 model|N
featherless/WebSquareAI-Instruct-llama-3-8B-v0.5.37|websquareai-instruct-llama-3-8b-v0.5.37|kimwooglae/WebSquareAI-Instruct-llama-3-8B-v0.5.37|C|1.0,5.0|8192,4096|V|-|kimwooglae/WebSquareAI-Instruct-llama-3-8B-v0.5.37 model|N
featherless/T3Q-KO-SOLAR-MR-v1.0|t3q-ko-solar-mr|chihoonlee10/T3Q-KO-SOLAR-MR-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-KO-SOLAR-MR-v1.0 model|N
featherless/Llama3.1-8B-ShiningValiant2|llama3.1-8b-shiningvaliant2|ValiantLabs/Llama3.1-8B-ShiningValiant2|C|1.0,5.0|32768,4096|-|-|ValiantLabs/Llama3.1-8B-ShiningValiant2 model|N
featherless/Llama-3-8B-slerp-262k-sft-lora-ko-v2|llama-3-8b-slerp-262k-sft-lora-ko|youjunhyeok/Llama-3-8B-slerp-262k-sft-lora-ko-v2|C|1.0,5.0|8192,4096|V|-|youjunhyeok/Llama-3-8B-slerp-262k-sft-lora-ko-v2 model|N
featherless/magnum-v4-9b|magnum-v4-9b|anthracite-org/magnum-v4-9b|C|1.0,5.0|16384,4096|V|-|anthracite-org/magnum-v4-9b model|N
featherless/SwallowMaid-8B-L3-SPPO-abliterated|swallowmaid-8b-l3-sppo-abliterated|v000000/SwallowMaid-8B-L3-SPPO-abliterated|C|1.0,5.0|8192,4096|-|-|v000000/SwallowMaid-8B-L3-SPPO-abliterated model|N
featherless/rtzr_dpo-v4-hq|rtzr_dpo-v4-hq|ENERGY-DRINK-LOVE/rtzr_dpo-v4-hq|C|1.0,5.0|16384,4096|V|-|ENERGY-DRINK-LOVE/rtzr_dpo-v4-hq model|N
featherless/ktdsbaseLM-v0.16-onbased-llama3.1|ktdsbaselm-v0.16-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.16-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.16-onbased-llama3.1 model|N
featherless/Llama3.1-8B-Cobalt|llama3.1-8b-cobalt|ValiantLabs/Llama3.1-8B-Cobalt|C|1.0,5.0|32768,4096|-|-|ValiantLabs/Llama3.1-8B-Cobalt model|N
featherless/deep-solar-v3.0|deep-solar|Deepnoid/deep-solar-v3.0|C|1.0,5.0|4096,4096|V|-|Deepnoid/deep-solar-v3.0 model|N
featherless/M-SOLAR-10.7B-v1.0-DPO|m-solar-10.7b-v1.0-dpo|Jaehyeon222/M-SOLAR-10.7B-v1.0-DPO|C|1.0,5.0|4096,4096|V|-|Jaehyeon222/M-SOLAR-10.7B-v1.0-DPO model|N
featherless/llama3-deepspeed-v1.0|llama3-deepspeed|richard-park/llama3-deepspeed-v1.0|C|1.0,5.0|8192,4096|V|-|richard-park/llama3-deepspeed-v1.0 model|N
featherless/Qwen-2.5-Base-7b-SFT-Korean-Article-Dataset|-|seu5022/Qwen-2.5-Base-7b-SFT-Korean-Article-Dataset|C|1.0,5.0|131072,4096|-|-|seu5022/Qwen-2.5-Base-7b-SFT-Korean-Article-Dataset model|N
featherless/SOLAR_C-v1-10.7B|solar_c-v1-10.7b|DopeorNope/SOLAR_C-v1-10.7B|C|1.0,5.0|4096,4096|V|-|DopeorNope/SOLAR_C-v1-10.7B model|N
featherless/KoSOLAR-10.7B-DPO-v1.0|kosolar-10.7b-dpo|rrw-x2/KoSOLAR-10.7B-DPO-v1.0|C|1.0,5.0|4096,4096|V|-|rrw-x2/KoSOLAR-10.7B-DPO-v1.0 model|N
featherless/ktdsbaseLM-v0.15-onbased-llama3.1|ktdsbaselm-v0.15-onbased-llama3.1|AIDX-ktds/ktdsbaseLM-v0.15-onbased-llama3.1|C|1.0,5.0|32768,4096|V|-|AIDX-ktds/ktdsbaseLM-v0.15-onbased-llama3.1 model|N
featherless/T3Q-ko-solar-jo-v1.0|t3q-ko-solar-jo|chihoonlee10/T3Q-ko-solar-jo-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-ko-solar-jo-v1.0 model|N
featherless/Llama-3-8B-slerp-262k-sft-lora-ko|llama-3-8b-slerp-262k-sft-lora-ko|youjunhyeok/Llama-3-8B-slerp-262k-sft-lora-ko|C|1.0,5.0|8192,4096|-|-|youjunhyeok/Llama-3-8B-slerp-262k-sft-lora-ko model|N
featherless/mergecat_v0.1|mergecat_v0.1|papercat404/mergecat_v0.1|C|1.0,5.0|4096,4096|-|-|papercat404/mergecat_v0.1 model|N
featherless/KoSOLAR-v2.1|kosolar|JY623/KoSOLAR-v2.1|C|1.0,5.0|4096,4096|V|-|JY623/KoSOLAR-v2.1 model|N
featherless/T3Q-LLM3-Llama3-sft1.0|t3q-llm3-llama3-sft1.0|chlee10/T3Q-LLM3-Llama3-sft1.0|C|1.0,5.0|8192,4096|-|-|chlee10/T3Q-LLM3-Llama3-sft1.0 model|N
featherless/CarbonVillain-10.7B-v1|carbonvillain-10.7b|jeonsworld/CarbonVillain-10.7B-v1|C|1.0,5.0|4096,4096|V|-|jeonsworld/CarbonVillain-10.7B-v1 model|N
featherless/llama3-8b-ko-sft-dpo-v1|llama3-8b-ko-sft-dpo|youjunhyeok/llama3-8b-ko-sft-dpo-v1|C|1.0,5.0|8192,4096|V|-|youjunhyeok/llama3-8b-ko-sft-dpo-v1 model|N
featherless/SOLAR-10.7B-Instruct-STOCK_SOLAR-slerp|solar-10.7b-instruct-stock_solar-slerp|tanitan2/SOLAR-10.7B-Instruct-STOCK_SOLAR-slerp|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-STOCK_SOLAR-slerp model|N
featherless/llama3.1_korean_v1.4_sft_by_aidx|llama3.1_korean_v1.4_sft_by_aidx|SEOKDONG/llama3.1_korean_v1.4_sft_by_aidx|C|1.0,5.0|32768,4096|-|-|SEOKDONG/llama3.1_korean_v1.4_sft_by_aidx model|N
featherless/qwen3_claude_37_48k_tokenized_sft_lr_1en5_epoch_1_bs_1_ga_8|-|r2e-edits/qwen3_claude_37_48k_tokenized_sft_lr_1en5_epoch_1_bs_1_ga_8|C|1.0,5.0|32768,4096|-|-|r2e-edits/qwen3_claude_37_48k_tokenized_sft_lr_1en5_epoch_1_bs_1_ga_8 model|N
featherless/all-you-need-is|all-you-need-is|StatPan/all-you-need-is|C|1.0,5.0|4096,4096|-|-|StatPan/all-you-need-is model|N
featherless/M-DIE-M-10.7B|m-die-m-10.7b|mohomin123/M-DIE-M-10.7B|C|1.0,5.0|4096,4096|-|-|mohomin123/M-DIE-M-10.7B model|N
featherless/KoSOLAR-v2.0|kosolar|JY623/KoSOLAR-v2.0|C|1.0,5.0|4096,4096|V|-|JY623/KoSOLAR-v2.0 model|N
featherless/T3Q-ko-solar-sft-v3.0|t3q-ko-solar-sft|chlee10/T3Q-ko-solar-sft-v3.0|C|1.0,5.0|4096,4096|V|-|chlee10/T3Q-ko-solar-sft-v3.0 model|N
featherless/testcat_v0.4|testcat_v0.4|papercat404/testcat_v0.4|C|1.0,5.0|4096,4096|-|-|papercat404/testcat_v0.4 model|N
featherless/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-linear|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-linear|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-linear model|N
featherless/SOLAR_D-v2-10.7B|solar_d-v2-10.7b|DopeorNope/SOLAR_D-v2-10.7B|C|1.0,5.0|4096,4096|V|-|DopeorNope/SOLAR_D-v2-10.7B model|N
featherless/llama-3-chat|llama-3-chat|gangyeolkim/llama-3-chat|C|1.0,5.0|8192,4096|-|-|gangyeolkim/llama-3-chat model|N
featherless/inst-aihub-trans|inst-aihub-trans|richard-park/inst-aihub-trans|C|1.0,5.0|8192,4096|-|-|richard-park/inst-aihub-trans model|N
featherless/T3Q-LLM-MG-v1.0|t3q-llm-mg|chihoonlee10/T3Q-LLM-MG-v1.0|C|1.0,5.0|4096,4096|V|-|chihoonlee10/T3Q-LLM-MG-v1.0 model|N
featherless/gemma-2-9b_dpo-v4-hq|gemma-2-9b_dpo-v4-hq|ENERGY-DRINK-LOVE/gemma-2-9b_dpo-v4-hq|C|1.0,5.0|16384,4096|V|-|ENERGY-DRINK-LOVE/gemma-2-9b_dpo-v4-hq model|N
featherless/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-slerp|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-slerp|C|1.0,5.0|4096,4096|-|-|tanitan2/SOLAR-10.7B-Instruct-T3Q-ko-solar-dpo-slerp model|N
featherless/llama2-13b-dpo-v2|llama2-13b-dpo|mncai/llama2-13b-dpo-v2|C|1.0,5.0|4096,4096|V|-|mncai/llama2-13b-dpo-v2 model|N
featherless/mergekit_v2|mergekit_v2|Deepnoid/mergekit_v2|C|1.0,5.0|4096,4096|-|-|Deepnoid/mergekit_v2 model|N
featherless/DeepSeek-R1-Distill-Llama-3B|deepseek-r1-distill-llama-3b|suayptalha/DeepSeek-R1-Distill-Llama-3B|C|1.0,5.0|32768,4096|-|-|suayptalha/DeepSeek-R1-Distill-Llama-3B model|N
featherless/Hermes-3-Llama-3.2-3B-abliterated|hermes-3-llama-3.2-3b-abliterated|huihui-ai/Hermes-3-Llama-3.2-3B-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Hermes-3-Llama-3.2-3B-abliterated model|N
featherless/gemma-3-1b-it-qat-q4_0-unquantized|gemma-3-1b-it-qat-q4_0-unquantized|google/gemma-3-1b-it-qat-q4_0-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-1b-it-qat-q4_0-unquantized model|N
featherless/s1.1-32B|s1.1-32b|simplescaling/s1.1-32B|C|1.0,5.0|131072,4096|-|-|simplescaling/s1.1-32B model|N
featherless/Affine-9459823|affine-9459823|Alphatao/Affine-9459823|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-9459823 model|N
featherless/GaMS-9B-Instruct|gams-9b-instruct|cjvt/GaMS-9B-Instruct|C|1.0,5.0|16384,4096|-|-|cjvt/GaMS-9B-Instruct model|N
featherless/openthoughts3_10k_llama3|openthoughts3_10k_llama3|mlfoundations-dev/openthoughts3_10k_llama3|C|1.0,5.0|32768,4096|-|-|mlfoundations-dev/openthoughts3_10k_llama3 model|N
featherless/Llama-3.2-3B-Tele|llama-3.2-3b-tele|AliMaatouk/Llama-3.2-3B-Tele|C|1.0,5.0|32768,4096|-|-|AliMaatouk/Llama-3.2-3B-Tele model|N
featherless/Tiny-Vicuna-1B|tiny-vicuna-1b|Jiayi-Pan/Tiny-Vicuna-1B|C|1.0,5.0|2048,2048|V|-|Jiayi-Pan/Tiny-Vicuna-1B model|N
featherless/gemma-3-1b-pt|gemma-3-1b-pt|unsloth/gemma-3-1b-pt|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-1b-pt model|N
featherless/DeepSeek-R1-0528-Qwen3-8B-bf16|deepseek-r1-0528-qwen3-8b-bf16|mlx-community/DeepSeek-R1-0528-Qwen3-8B-bf16|C|1.0,5.0|32768,4096|-|-|mlx-community/DeepSeek-R1-0528-Qwen3-8B-bf16 model|N
featherless/saiga_gemma2_9b|saiga_gemma2_9b|IlyaGusev/saiga_gemma2_9b|C|1.0,5.0|16384,4096|-|-|IlyaGusev/saiga_gemma2_9b model|N
featherless/m30|m30|mm2137/m30|C|1.0,5.0|32768,4096|-|-|mm2137/m30 model|N
featherless/cognitive-behaviors-Llama-3.2-3B|cognitive-behaviors-llama-3.2-3b|d1shs0ap/cognitive-behaviors-Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|d1shs0ap/cognitive-behaviors-Llama-3.2-3B model|N
featherless/gemma-2-baku-2b-it|gemma-2-baku-2b-it|rinna/gemma-2-baku-2b-it|C|1.0,5.0|8192,4096|-|-|rinna/gemma-2-baku-2b-it model|N
featherless/llama3.2-typhoon2-t1-3b-research-preview|-|scb10x/llama3.2-typhoon2-t1-3b-research-preview|C|1.0,5.0|32768,4096|-|-|scb10x/llama3.2-typhoon2-t1-3b-research-preview model|N
featherless/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1-bf16|-|mlx-community/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1-bf16|C|1.0,5.0|32768,4096|V|-|mlx-community/Josiefied-DeepSeek-R1-0528-Qwen3-8B-abliterated-v1-bf16 model|N
featherless/Qwen3-4B-v0.3-deepresearch-100-step|qwen3-4b-v0.3-deepresearch-100-step|jan-hq/Qwen3-4B-v0.3-deepresearch-100-step|C|1.0,5.0|40960,4096|V|-|jan-hq/Qwen3-4B-v0.3-deepresearch-100-step model|N
featherless/FusionNet|fusionnet|TomGrc/FusionNet|C|1.0,5.0|4096,4096|-|-|TomGrc/FusionNet model|N
featherless/Gemma-2-Llama-Swallow-2b-it-v0.1|gemma-2-llama-swallow-2b-it|tokyotech-llm/Gemma-2-Llama-Swallow-2b-it-v0.1|C|1.0,5.0|8192,4096|V|-|tokyotech-llm/Gemma-2-Llama-Swallow-2b-it-v0.1 model|N
featherless/Qwen3-4B-ReTool-SFT|qwen3-4b-retool-sft|russwest404/Qwen3-4B-ReTool-SFT|C|1.0,5.0|40960,4096|-|-|russwest404/Qwen3-4B-ReTool-SFT model|N
featherless/Qwen2.5-14B-DeepSeek-R1-1M|qwen2.5-14b-deepseek-r1-1m|mkurman/Qwen2.5-14B-DeepSeek-R1-1M|C|1.0,5.0|131072,4096|-|-|mkurman/Qwen2.5-14B-DeepSeek-R1-1M model|N
featherless/Affine-2501551|affine-2501551|Alphatao/Affine-2501551|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-2501551 model|N
featherless/Asclepius-Llama3-8B|asclepius-llama3-8b|starmpcc/Asclepius-Llama3-8B|C|1.0,5.0|8192,4096|-|-|starmpcc/Asclepius-Llama3-8B model|N
featherless/gemma-3-1b-it-abliterated|gemma-3-1b-it-abliterated|huihui-ai/gemma-3-1b-it-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/gemma-3-1b-it-abliterated model|N
featherless/llama3.2-typhoon2-3b-instruct|llama3.2-typhoon2-3b-instruct|scb10x/llama3.2-typhoon2-3b-instruct|C|1.0,5.0|32768,4096|-|-|scb10x/llama3.2-typhoon2-3b-instruct model|N
featherless/Gemma-2-Llama-Swallow-9b-it-v0.1|gemma-2-llama-swallow-9b-it|tokyotech-llm/Gemma-2-Llama-Swallow-9b-it-v0.1|C|1.0,5.0|16384,4096|V|-|tokyotech-llm/Gemma-2-Llama-Swallow-9b-it-v0.1 model|N
featherless/llm_3_2_flux_prompt|llm_3_2_flux_prompt|ABDALLALSWAITI/llm_3_2_flux_prompt|C|1.0,5.0|32768,4096|-|-|ABDALLALSWAITI/llm_3_2_flux_prompt model|N
featherless/Llama-Poro-2-70B-Instruct|llama-poro-2-70b-instruct|LumiOpen/Llama-Poro-2-70B-Instruct|C|1.0,5.0|8192,4096|-|-|LumiOpen/Llama-Poro-2-70B-Instruct model|N
featherless/Qwen3-4B-no-think|qwen3-4b-no-think|jan-hq/Qwen3-4B-no-think|C|1.0,5.0|40960,4096|K|-|jan-hq/Qwen3-4B-no-think model|N
featherless/documents-master-3B|documents-master-3b|QuyXuan/documents-master-3B|C|1.0,5.0|32768,4096|-|-|QuyXuan/documents-master-3B model|N
featherless/Qwen2.5-Math-7B-16k-think|qwen2.5-math-7b-16k-think|Elliott/Qwen2.5-Math-7B-16k-think|C|1.0,5.0|131072,4096|K|-|Elliott/Qwen2.5-Math-7B-16k-think model|N
featherless/M-Prometheus-14B|m-prometheus-14b|Unbabel/M-Prometheus-14B|C|1.0,5.0|131072,4096|-|-|Unbabel/M-Prometheus-14B model|N
featherless/Qwen3-8B-abliterated|qwen3-8b-abliterated|mlabonne/Qwen3-8B-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/Qwen3-8B-abliterated model|N
featherless/Barcenas-Tiny-1.1b-DPO|barcenas-tiny-1.1b-dpo|Danielbrdz/Barcenas-Tiny-1.1b-DPO|C|1.0,5.0|2048,2048|-|-|Danielbrdz/Barcenas-Tiny-1.1b-DPO model|N
featherless/Llama-3.2-3B-Instruct-Frog|llama-3.2-3b-instruct-frog|phamhai/Llama-3.2-3B-Instruct-Frog|C|1.0,5.0|32768,4096|-|-|phamhai/Llama-3.2-3B-Instruct-Frog model|N
featherless/Atlas-Chat-9B|atlas-chat-9b|MBZUAI-Paris/Atlas-Chat-9B|C|1.0,5.0|16384,4096|-|-|MBZUAI-Paris/Atlas-Chat-9B model|N
featherless/shieldgemma-9b|shieldgemma-9b|google/shieldgemma-9b|C|1.0,5.0|16384,4096|-|-|google/shieldgemma-9b model|N
featherless/llama_8b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.25_0.25_epoch2|-|MinaMila/llama_8b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.25_0.25_epoch2|C|1.0,5.0|32768,4096|-|-|MinaMila/llama_8b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.25_0.25_epoch2 model|N
featherless/FastThink-0.5B-Tiny|fastthink-0.5b-tiny|prithivMLmods/FastThink-0.5B-Tiny|C|1.0,5.0|32768,4096|K|-|prithivMLmods/FastThink-0.5B-Tiny model|N
featherless/DeepHermes-3-Llama-3-3B-Preview|deephermes-3-llama-3-3b-preview|NousResearch/DeepHermes-3-Llama-3-3B-Preview|C|1.0,5.0|32768,4096|-|-|NousResearch/DeepHermes-3-Llama-3-3B-Preview model|N
featherless/ReWiz-Llama-3.2-3B|rewiz-llama-3.2-3b|theprint/ReWiz-Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|theprint/ReWiz-Llama-3.2-3B model|N
featherless/rho-math-1b-v0.1|rho-math-1b|microsoft/rho-math-1b-v0.1|C|1.0,5.0|2048,2048|V|-|microsoft/rho-math-1b-v0.1 model|N
featherless/text-to-cypher-Gemma-3-4B-Instruct-2025.04.0|-|neo4j/text-to-cypher-Gemma-3-4B-Instruct-2025.04.0|C|1.0,5.0|32768,4096|-|-|neo4j/text-to-cypher-Gemma-3-4B-Instruct-2025.04.0 model|N
featherless/LLaMmlein_1B_prerelease|llammlein_1b_prerelease|LSX-UniWue/LLaMmlein_1B_prerelease|C|1.0,5.0|2048,2048|-|-|LSX-UniWue/LLaMmlein_1B_prerelease model|N
featherless/robust-llama3-8b-instruct|robust-llama3-8b-instruct|LLM-LAT/robust-llama3-8b-instruct|C|1.0,5.0|8192,4096|-|-|LLM-LAT/robust-llama3-8b-instruct model|N
featherless/Phi-3.5-mini-instruct-bf16|phi-3.5-mini-instruct-bf16|mlx-community/Phi-3.5-mini-instruct-bf16|C|1.0,5.0|4096,4096|-|-|mlx-community/Phi-3.5-mini-instruct-bf16 model|N
featherless/llama3_8b_chat_uncensored|llama3_8b_chat_uncensored|georgesung/llama3_8b_chat_uncensored|C|1.0,5.0|8192,4096|-|-|georgesung/llama3_8b_chat_uncensored model|N
featherless/sqft-phi-3-mini-4k-50-base|sqft-phi-3-mini-4k-50-base|IntelLabs/sqft-phi-3-mini-4k-50-base|C|1.0,5.0|4096,4096|-|-|IntelLabs/sqft-phi-3-mini-4k-50-base model|N
featherless/KONI-Llama3-8B-Instruct-20240729|koni-llama3-8b-instruct|KISTI-KONI/KONI-Llama3-8B-Instruct-20240729|C|1.0,5.0|8192,4096|-|-|KISTI-KONI/KONI-Llama3-8B-Instruct-20240729 model|N
featherless/LLM_Beyond_Base_Model_qwen2.5_3b_v2|llm_beyond_base_model_qwen2.5_3b_v2|JIAN-PENG/LLM_Beyond_Base_Model_qwen2.5_3b_v2|C|1.0,5.0|32768,4096|-|-|JIAN-PENG/LLM_Beyond_Base_Model_qwen2.5_3b_v2 model|N
featherless/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|mlx-community/Llama-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|mlx-community/Llama-3.2-3B-Instruct model|N
featherless/TinyLlama-1.1B-32k-Instruct|tinyllama-1.1b-32k-instruct|Doctor-Shotgun/TinyLlama-1.1B-32k-Instruct|C|1.0,5.0|2048,2048|-|-|Doctor-Shotgun/TinyLlama-1.1B-32k-Instruct model|N
featherless/rho-math-1b-interpreter-v0.1|rho-math-1b-interpreter|microsoft/rho-math-1b-interpreter-v0.1|C|1.0,5.0|2048,2048|V|-|microsoft/rho-math-1b-interpreter-v0.1 model|N
featherless/final_model|final_model|secmlr/final_model|C|1.0,5.0|131072,4096|-|-|secmlr/final_model model|N
featherless/rho-1b-sft-GSM8K|rho-1b-sft-gsm8k|realtreetune/rho-1b-sft-GSM8K|C|1.0,5.0|2048,2048|-|-|realtreetune/rho-1b-sft-GSM8K model|N
featherless/SeaLLMs-v3-7B|seallms-v3-7b|SeaLLMs/SeaLLMs-v3-7B|C|1.0,5.0|131072,4096|V|-|SeaLLMs/SeaLLMs-v3-7B model|N
featherless/LLaMAX3-8B-Alpaca|llamax3-8b-alpaca|LLaMAX/LLaMAX3-8B-Alpaca|C|1.0,5.0|8192,4096|-|-|LLaMAX/LLaMAX3-8B-Alpaca model|N
featherless/Smoothie-Qwen3-4B|smoothie-qwen3-4b|dnotitia/Smoothie-Qwen3-4B|C|1.0,5.0|40960,4096|-|-|dnotitia/Smoothie-Qwen3-4B model|N
featherless/Llama-SEA-LION-v3.5-70B-R|llama-sea-lion-v3.5-70b-r|aisingapore/Llama-SEA-LION-v3.5-70B-R|C|1.0,5.0|32768,4096|V|-|aisingapore/Llama-SEA-LION-v3.5-70B-R model|N
featherless/shisa-v2-qwen2.5-7b|shisa-v2-qwen2.5-7b|shisa-ai/shisa-v2-qwen2.5-7b|C|1.0,5.0|131072,4096|V|-|shisa-ai/shisa-v2-qwen2.5-7b model|N
featherless/Gemma-SEA-LION-v3-9B|gemma-sea-lion-v3-9b|aisingapore/Gemma-SEA-LION-v3-9B|C|1.0,5.0|16384,4096|V|-|aisingapore/Gemma-SEA-LION-v3-9B model|N
featherless/Qwen3-14B-abliterated|qwen3-14b-abliterated|mlabonne/Qwen3-14B-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/Qwen3-14B-abliterated model|N
featherless/llama3.2_3b_122824_uncensored|llama3.2_3b_122824_uncensored|carsenk/llama3.2_3b_122824_uncensored|C|1.0,5.0|32768,4096|-|-|carsenk/llama3.2_3b_122824_uncensored model|N
featherless/EZO-Common-9B-gemma-2-it|ezo-common-9b-gemma-2-it|AXCXEPT/EZO-Common-9B-gemma-2-it|C|1.0,5.0|16384,4096|-|-|AXCXEPT/EZO-Common-9B-gemma-2-it model|N
featherless/s1-32B|s1-32b|simplescaling/s1-32B|C|1.0,5.0|32768,4096|-|-|simplescaling/s1-32B model|N
featherless/gemma_3_1B_reasoning_multimodal_en_ft_v2|-|CALISTA-INDUSTRY/gemma_3_1B_reasoning_multimodal_en_ft_v2|C|1.0,5.0|32768,4096|K|-|CALISTA-INDUSTRY/gemma_3_1B_reasoning_multimodal_en_ft_v2 model|N
featherless/Med-LLaMA3-8B|med-llama3-8b|YBXL/Med-LLaMA3-8B|C|1.0,5.0|8192,4096|-|-|YBXL/Med-LLaMA3-8B model|N
featherless/R1-Distill-Qwen-14B-Roblox-Luau|r1-distill-qwen-14b-roblox-luau|TorpedoSoftware/R1-Distill-Qwen-14B-Roblox-Luau|C|1.0,5.0|32768,4096|-|-|TorpedoSoftware/R1-Distill-Qwen-14B-Roblox-Luau model|N
featherless/s1.1-14B|s1.1-14b|simplescaling/s1.1-14B|C|1.0,5.0|131072,4096|-|-|simplescaling/s1.1-14B model|N
featherless/gemma-2-9b-it-abliterated|gemma-2-9b-it-abliterated|IlyaGusev/gemma-2-9b-it-abliterated|C|1.0,5.0|16384,4096|-|-|IlyaGusev/gemma-2-9b-it-abliterated model|N
featherless/Gemma-2-9B-Chinese-Chat-Uncensored|gemma-2-9b-chinese-chat-uncensored|themex1380/Gemma-2-9B-Chinese-Chat-Uncensored|C|1.0,5.0|16384,4096|-|-|themex1380/Gemma-2-9B-Chinese-Chat-Uncensored model|N
featherless/MMed-Llama-3-8B-EnIns|mmed-llama-3-8b-enins|Henrychur/MMed-Llama-3-8B-EnIns|C|1.0,5.0|8192,4096|-|-|Henrychur/MMed-Llama-3-8B-EnIns model|N
featherless/Llama-3.2-3B-NuminaQA|llama-3.2-3b-numinaqa|lkevinzc/Llama-3.2-3B-NuminaQA|C|1.0,5.0|32768,4096|-|-|lkevinzc/Llama-3.2-3B-NuminaQA model|N
featherless/r1-1776-distill-llama-70b|r1-1776-distill-llama-70b|perplexity-ai/r1-1776-distill-llama-70b|C|1.0,5.0|32768,4096|-|-|perplexity-ai/r1-1776-distill-llama-70b model|N
featherless/llama-3.2-latin|llama-3.2-latin|hathibelagal/llama-3.2-latin|C|1.0,5.0|32768,4096|-|-|hathibelagal/llama-3.2-latin model|N
featherless/DPO_MCQA_model_3_03_07_08|dpo_mcqa_model_3_03_07_08|albertfares/DPO_MCQA_model_3_03_07_08|C|1.0,5.0|40960,4096|-|-|albertfares/DPO_MCQA_model_3_03_07_08 model|N
featherless/amoral-gemma3-12B-v2|amoral-gemma3-12b|soob3123/amoral-gemma3-12B-v2|C|1.0,5.0|32768,4096|V|-|soob3123/amoral-gemma3-12B-v2 model|N
featherless/TinyAgent-1.1B|tinyagent-1.1b|squeeze-ai-lab/TinyAgent-1.1B|C|1.0,5.0|2048,2048|-|-|squeeze-ai-lab/TinyAgent-1.1B model|N
featherless/authormist-originality|authormist-originality|authormist/authormist-originality|C|1.0,5.0|32768,4096|-|-|authormist/authormist-originality model|N
featherless/KunoRZN-Llama-3-3B|kunorzn-llama-3-3b|VinkuraAI/KunoRZN-Llama-3-3B|C|1.0,5.0|32768,4096|-|-|VinkuraAI/KunoRZN-Llama-3-3B model|N
featherless/phi2-sqlcoder|phi2-sqlcoder|pavankumarbalijepalli/phi2-sqlcoder|C|1.0,5.0|2048,2048|-|-|pavankumarbalijepalli/phi2-sqlcoder model|N
featherless/PolyGuard-Qwen|polyguard-qwen|ToxicityPrompts/PolyGuard-Qwen|C|1.0,5.0|131072,4096|-|-|ToxicityPrompts/PolyGuard-Qwen model|N
featherless/PII-Model-Phi3-Mini|pii-model-phi3-mini|ab-ai/PII-Model-Phi3-Mini|C|1.0,5.0|4096,4096|-|-|ab-ai/PII-Model-Phi3-Mini model|N
featherless/SparkleRL-7B-Stage1|sparklerl-7b-stage1|sparkle-reasoning/SparkleRL-7B-Stage1|C|1.0,5.0|131072,4096|K|-|sparkle-reasoning/SparkleRL-7B-Stage1 model|N
featherless/gemma-2-9b-it-FP8|gemma-2-9b-it-fp8|RedHatAI/gemma-2-9b-it-FP8|C|1.0,5.0|16384,4096|-|72.1,,21.0,27.5,,,,,,|RedHatAI/gemma-2-9b-it-FP8 model|N
featherless/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|alpindale/Llama-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|alpindale/Llama-3.2-3B-Instruct model|N
featherless/Deep-Reasoning-Llama-3.2-Instruct-uncensored-3B|-|DavidAU/Deep-Reasoning-Llama-3.2-Instruct-uncensored-3B|C|1.0,5.0|32768,4096|K|-|DavidAU/Deep-Reasoning-Llama-3.2-Instruct-uncensored-3B model|N
featherless/EZO-Llama-3.2-3B-Instruct-dpoE|ezo-llama-3.2-3b-instruct-dpoe|AXCXEPT/EZO-Llama-3.2-3B-Instruct-dpoE|C|1.0,5.0|32768,4096|-|-|AXCXEPT/EZO-Llama-3.2-3B-Instruct-dpoE model|N
featherless/Hermes-3-Llama-3.2-3B-bf16|hermes-3-llama-3.2-3b-bf16|mlx-community/Hermes-3-Llama-3.2-3B-bf16|C|1.0,5.0|32768,4096|-|-|mlx-community/Hermes-3-Llama-3.2-3B-bf16 model|N
featherless/grznger|grznger|Marco0/grznger|C|1.0,5.0|32768,4096|-|-|Marco0/grznger model|N
featherless/BgGPT-Gemma-2-9B-IT-v1.0|bggpt-gemma-2-9b-it|INSAIT-Institute/BgGPT-Gemma-2-9B-IT-v1.0|C|1.0,5.0|16384,4096|V|-|INSAIT-Institute/BgGPT-Gemma-2-9B-IT-v1.0 model|N
featherless/GaMS-2B-Instruct|gams-2b-instruct|cjvt/GaMS-2B-Instruct|C|1.0,5.0|8192,4096|-|-|cjvt/GaMS-2B-Instruct model|N
featherless/WritingBench-Critic-Model-Qwen-7B|writingbench-critic-model-qwen-7b|AQuarterMile/WritingBench-Critic-Model-Qwen-7B|C|1.0,5.0|131072,4096|-|-|AQuarterMile/WritingBench-Critic-Model-Qwen-7B model|N
featherless/Qwen3-4B-abliterated|qwen3-4b-abliterated|mlabonne/Qwen3-4B-abliterated|C|1.0,5.0|40960,4096|-|-|mlabonne/Qwen3-4B-abliterated model|N
featherless/fietje-2|fietje-2|BramVanroy/fietje-2|C|1.0,5.0|2048,2048|-|-|BramVanroy/fietje-2 model|N
featherless/marin-8b-base|marin-8b-base|marin-community/marin-8b-base|C|1.0,5.0|32768,4096|-|-|marin-community/marin-8b-base model|N
featherless/sum-small|sum-small|omi-health/sum-small|C|1.0,5.0|4096,4096|-|-|omi-health/sum-small model|N
featherless/vllm-test-v1|vllm-test|LaaP-ai/vllm-test-v1|C|1.0,5.0|32768,4096|V|-|LaaP-ai/vllm-test-v1 model|N
featherless/warmstart-sft-1epoch-0512|warmstart-sft-1epoch-0512|Asap7772/warmstart-sft-1epoch-0512|C|1.0,5.0|40960,4096|-|-|Asap7772/warmstart-sft-1epoch-0512 model|N
featherless/rho-1b-sft-MATH|rho-1b-sft-math|realtreetune/rho-1b-sft-MATH|C|1.0,5.0|2048,2048|-|-|realtreetune/rho-1b-sft-MATH model|N
featherless/NazareAI-Senior-Marketing-Strategist|nazareai-senior-marketing-strategist|seedgularity/NazareAI-Senior-Marketing-Strategist|C|1.0,5.0|32768,4096|-|-|seedgularity/NazareAI-Senior-Marketing-Strategist model|N
featherless/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|RedHatAI/Llama-3.3-70B-Instruct|C|1.0,5.0|32768,4096|-|86.3,,41.6,47.4,,,,,,|RedHatAI/Llama-3.3-70B-Instruct model|N
featherless/Zyte-1B|zyte-1b|venkycs/Zyte-1B|C|1.0,5.0|2048,2048|-|-|venkycs/Zyte-1B model|N
featherless/llama-3-youko-8b-instruct|llama-3-youko-8b-instruct|rinna/llama-3-youko-8b-instruct|C|1.0,5.0|8192,4096|-|-|rinna/llama-3-youko-8b-instruct model|N
featherless/gemma-3-1b-pt-MED-Instruct|gemma-3-1b-pt-med-instruct|NotoriousH2/gemma-3-1b-pt-MED-Instruct|C|1.0,5.0|32768,4096|-|-|NotoriousH2/gemma-3-1b-pt-MED-Instruct model|N
featherless/MNLP_SFT_DPO|mnlp_sft_dpo|albertfares/MNLP_SFT_DPO|C|1.0,5.0|40960,4096|-|-|albertfares/MNLP_SFT_DPO model|N
featherless/unsloth_llama-3.2-3B-instruct-uncenssored|-|skshmjn/unsloth_llama-3.2-3B-instruct-uncenssored|C|1.0,5.0|32768,4096|-|-|skshmjn/unsloth_llama-3.2-3B-instruct-uncenssored model|N
featherless/gemma-2-baku-2b|gemma-2-baku-2b|rinna/gemma-2-baku-2b|C|1.0,5.0|8192,4096|-|-|rinna/gemma-2-baku-2b model|N
featherless/tinyllama-coder-py-v11|tinyllama-coder-py|Ramikan-BR/tinyllama-coder-py-v11|C|1.0,5.0|2048,2048|V|-|Ramikan-BR/tinyllama-coder-py-v11 model|N
featherless/llama3.2-3b-it-24-game-8k-qwq-r64|llama3.2-3b-it-24-game-8k-qwq-r64|erdem-erdem/llama3.2-3b-it-24-game-8k-qwq-r64|C|1.0,5.0|32768,4096|-|-|erdem-erdem/llama3.2-3b-it-24-game-8k-qwq-r64 model|N
featherless/HTML-Pruner-Phi-3.8B|html-pruner-phi-3.8b|zstanjj/HTML-Pruner-Phi-3.8B|C|1.0,5.0|4096,4096|-|-|zstanjj/HTML-Pruner-Phi-3.8B model|N
featherless/Qwen2.5-3B-Instruct-abliterated|qwen2.5-3b-instruct-abliterated|huihui-ai/Qwen2.5-3B-Instruct-abliterated|C|1.0,5.0|32768,4096|-|-|huihui-ai/Qwen2.5-3B-Instruct-abliterated model|N
featherless/Bootes-Qwen3_Coder-Reasoning|bootes-qwen3_coder-reasoning|prithivMLmods/Bootes-Qwen3_Coder-Reasoning|C|1.0,5.0|40960,4096|K|-|prithivMLmods/Bootes-Qwen3_Coder-Reasoning model|N
featherless/Qwen3-4B-bf16|qwen3-4b-bf16|mlx-community/Qwen3-4B-bf16|C|1.0,5.0|40960,4096|-|-|mlx-community/Qwen3-4B-bf16 model|N
featherless/llama3.2-3b-sft-10|llama3.2-3b-sft-10|CriteriaPO/llama3.2-3b-sft-10|C|1.0,5.0|32768,4096|-|-|CriteriaPO/llama3.2-3b-sft-10 model|N
featherless/TinyLlama-1.1B-intermediate-step-480k-1T|-|TinyLlama/TinyLlama-1.1B-intermediate-step-480k-1T|C|1.0,5.0|2048,2048|-|-|TinyLlama/TinyLlama-1.1B-intermediate-step-480k-1T model|N
featherless/gemma-2-2b-it-abliterated|gemma-2-2b-it-abliterated|IlyaGusev/gemma-2-2b-it-abliterated|C|1.0,5.0|8192,4096|-|-|IlyaGusev/gemma-2-2b-it-abliterated model|N
featherless/ThinkingDhenu1-CRSA-India-preview|thinkingdhenu1-crsa-india-preview|KissanAI/ThinkingDhenu1-CRSA-India-preview|C|1.0,5.0|40960,4096|K|-|KissanAI/ThinkingDhenu1-CRSA-India-preview model|N
featherless/DPO_MCQA_model_3_06_04_08|dpo_mcqa_model_3_06_04_08|albertfares/DPO_MCQA_model_3_06_04_08|C|1.0,5.0|40960,4096|-|-|albertfares/DPO_MCQA_model_3_06_04_08 model|N
featherless/R1-VeriThinker-7B|r1-verithinker-7b|Zigeng/R1-VeriThinker-7B|C|1.0,5.0|131072,4096|VK|-|Zigeng/R1-VeriThinker-7B model|N
featherless/cv_analyser|cv_analyser|llmSeeker/cv_analyser|C|1.0,5.0|32768,4096|-|-|llmSeeker/cv_analyser model|N
featherless/GLM-4-9B-0414|glm-4-9b-0414|unsloth/GLM-4-9B-0414|C|1.0,5.0|32768,4096|-|-|unsloth/GLM-4-9B-0414 model|N
featherless/Qwen3-4B-grpo-medmcqa|qwen3-4b-grpo-medmcqa|mlxha/Qwen3-4B-grpo-medmcqa|C|1.0,5.0|40960,4096|-|-|mlxha/Qwen3-4B-grpo-medmcqa model|N
featherless/gemma-2-2b-it-grpo-gsm8k|gemma-2-2b-it-grpo-gsm8k|lmassaron/gemma-2-2b-it-grpo-gsm8k|C|1.0,5.0|8192,4096|-|-|lmassaron/gemma-2-2b-it-grpo-gsm8k model|N
featherless/jpii_13|jpii_13|Grayx/jpii_13|C|1.0,5.0|32768,4096|-|-|Grayx/jpii_13 model|N
featherless/glider|glider|PatronusAI/glider|C|1.0,5.0|4096,4096|-|-|PatronusAI/glider model|N
featherless/Phi-3-mini-128k-instruct-abliterated-v3|phi-3-mini-128k-instruct-abliterated|failspy/Phi-3-mini-128k-instruct-abliterated-v3|C|1.0,5.0|4096,4096|V|-|failspy/Phi-3-mini-128k-instruct-abliterated-v3 model|N
featherless/ReZero-v0.1-llama-3.2-3b-it-grpo-250404|rezero-v0.1-llama-3.2-3b-it-grpo-250404|Menlo/ReZero-v0.1-llama-3.2-3b-it-grpo-250404|C|1.0,5.0|32768,4096|V|-|Menlo/ReZero-v0.1-llama-3.2-3b-it-grpo-250404 model|N
featherless/q487|q487|juhw/q487|C|1.0,5.0|32768,4096|-|-|juhw/q487 model|N
featherless/Smoothie-Qwen2.5-3B-Instruct|smoothie-qwen2.5-3b-instruct|dnotitia/Smoothie-Qwen2.5-3B-Instruct|C|1.0,5.0|32768,4096|-|-|dnotitia/Smoothie-Qwen2.5-3B-Instruct model|N
featherless/zx|zx|Marco0/zx|C|1.0,5.0|32768,4096|-|-|Marco0/zx model|N
featherless/Match-rigging_29|match-rigging_29|memeviss/Match-rigging_29|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_29 model|N
featherless/gemma-3-1b-it-abliterated-GRPO|gemma-3-1b-it-abliterated-grpo|huihui-ai/gemma-3-1b-it-abliterated-GRPO|C|1.0,5.0|32768,4096|-|-|huihui-ai/gemma-3-1b-it-abliterated-GRPO model|N
featherless/Llama-3.2-3B-Instruct-Football_Match_History|-|mrp1mple/Llama-3.2-3B-Instruct-Football_Match_History|C|1.0,5.0|32768,4096|-|-|mrp1mple/Llama-3.2-3B-Instruct-Football_Match_History model|N
featherless/tinyllama-2.5T-Clinical-v2|tinyllama-2.5t-clinical|muzammil-eds/tinyllama-2.5T-Clinical-v2|C|1.0,5.0|2048,2048|V|-|muzammil-eds/tinyllama-2.5T-Clinical-v2 model|N
featherless/Qibil-4B-v0.1-RP|qibil-4b-v0.1-rp|Hastagaras/Qibil-4B-v0.1-RP|C|1.0,5.0|40960,4096|V|-|Hastagaras/Qibil-4B-v0.1-RP model|N
featherless/Phi-1.5-Tele|phi-1.5-tele|AliMaatouk/Phi-1.5-Tele|C|1.0,5.0|2048,2048|-|-|AliMaatouk/Phi-1.5-Tele model|N
featherless/jpii_26|jpii_26|Grayx/jpii_26|C|1.0,5.0|32768,4096|-|-|Grayx/jpii_26 model|N
featherless/tofu_ft_phi-1.5|tofu_ft_phi-1.5|locuslab/tofu_ft_phi-1.5|C|1.0,5.0|2048,2048|-|-|locuslab/tofu_ft_phi-1.5 model|N
featherless/Llama3.2-3B-Instruct-Legal-Summarization|-|ahmadsakor/Llama3.2-3B-Instruct-Legal-Summarization|C|1.0,5.0|32768,4096|-|-|ahmadsakor/Llama3.2-3B-Instruct-Legal-Summarization model|N
featherless/luvai-phi3|luvai-phi3|luvGPT/luvai-phi3|C|1.0,5.0|4096,4096|-|-|luvGPT/luvai-phi3 model|N
featherless/Josiefied-Qwen3-4B-abliterated-v1|josiefied-qwen3-4b-abliterated|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-abliterated-v1|C|1.0,5.0|40960,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-abliterated-v1 model|N
featherless/uwes_med_model|uwes_med_model|hugginguwe/uwes_med_model|C|1.0,5.0|32768,4096|-|-|hugginguwe/uwes_med_model model|N
featherless/qwen3-4b-math|qwen3-4b-math|winglian/qwen3-4b-math|C|1.0,5.0|40960,4096|-|-|winglian/qwen3-4b-math model|N
featherless/gemma-3-finetune|gemma-3-finetune|kokki444/gemma-3-finetune|C|1.0,5.0|32768,4096|-|-|kokki444/gemma-3-finetune model|N
featherless/ReTool-Qwen3-4B-SFT-cold-started|retool-qwen3-4b-sft-cold-started|swordfaith/ReTool-Qwen3-4B-SFT-cold-started|C|1.0,5.0|40960,4096|-|-|swordfaith/ReTool-Qwen3-4B-SFT-cold-started model|N
featherless/Qwen2.5-3B-Instruct-abliterated-SFT|qwen2.5-3b-instruct-abliterated-sft|huihui-ai/Qwen2.5-3B-Instruct-abliterated-SFT|C|1.0,5.0|32768,4096|-|-|huihui-ai/Qwen2.5-3B-Instruct-abliterated-SFT model|N
featherless/llama3.2-3b-dpo-vanilla|llama3.2-3b-dpo-vanilla|CriteriaPO/llama3.2-3b-dpo-vanilla|C|1.0,5.0|32768,4096|V|-|CriteriaPO/llama3.2-3b-dpo-vanilla model|N
featherless/GRPO-qwen2.5-3B-qwen2.5-3B-mrd3-s7-sum_token_prompt-merged|-|kamelcharaf/GRPO-qwen2.5-3B-qwen2.5-3B-mrd3-s7-sum_token_prompt-merged|C|1.0,5.0|32768,4096|-|-|kamelcharaf/GRPO-qwen2.5-3B-qwen2.5-3B-mrd3-s7-sum_token_prompt-merged model|N
featherless/rho-1b-sft-MATH-chat|rho-1b-sft-math-chat|realtreetune/rho-1b-sft-MATH-chat|C|1.0,5.0|2048,2048|-|-|realtreetune/rho-1b-sft-MATH-chat model|N
featherless/llama3.2-3b-dpo-coarse|llama3.2-3b-dpo-coarse|CriteriaPO/llama3.2-3b-dpo-coarse|C|1.0,5.0|32768,4096|-|-|CriteriaPO/llama3.2-3b-dpo-coarse model|N
featherless/calme-2.1-phi3.5-4b|calme-2.1-phi3.5-4b|MaziyarPanahi/calme-2.1-phi3.5-4b|C|1.0,5.0|4096,4096|-|-|MaziyarPanahi/calme-2.1-phi3.5-4b model|N
featherless/Match-rigging_38|match-rigging_38|memeviss/Match-rigging_38|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_38 model|N
featherless/Sugma4B|sugma4b|hardlyworking/Sugma4B|C|1.0,5.0|40960,4096|-|-|hardlyworking/Sugma4B model|N
featherless/Match-rigging_34|match-rigging_34|memeviss/Match-rigging_34|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_34 model|N
featherless/phi-2-sft-golden-hh|phi-2-sft-golden-hh|ma921/phi-2-sft-golden-hh|C|1.0,5.0|2048,2048|-|-|ma921/phi-2-sft-golden-hh model|N
featherless/jpii_19|jpii_19|Grayx/jpii_19|C|1.0,5.0|32768,4096|-|-|Grayx/jpii_19 model|N
featherless/llama-3_3b-fine_tuned|llama-3_3b-fine_tuned|RJ1200/llama-3_3b-fine_tuned|C|1.0,5.0|32768,4096|-|-|RJ1200/llama-3_3b-fine_tuned model|N
featherless/Qwen2.5-3B-Open-R1-GRPO-math-selected-cosine-noRW|-|Lansechen/Qwen2.5-3B-Open-R1-GRPO-math-selected-cosine-noRW|C|1.0,5.0|32768,4096|-|-|Lansechen/Qwen2.5-3B-Open-R1-GRPO-math-selected-cosine-noRW model|N
featherless/llama3.2-3b-dpo-mini|llama3.2-3b-dpo-mini|CriteriaPO/llama3.2-3b-dpo-mini|C|1.0,5.0|32768,4096|-|-|CriteriaPO/llama3.2-3b-dpo-mini model|N
featherless/Match-rigging_36|match-rigging_36|memeviss/Match-rigging_36|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_36 model|N
featherless/ReasoningCore-3B-R01|reasoningcore-3b-r01|EpistemeAI/ReasoningCore-3B-R01|C|1.0,5.0|32768,4096|K|-|EpistemeAI/ReasoningCore-3B-R01 model|N
featherless/MFANN-phigments-slerp-V3.4|mfann-phigments-slerp|netcat420/MFANN-phigments-slerp-V3.4|C|1.0,5.0|2048,2048|V|-|netcat420/MFANN-phigments-slerp-V3.4 model|N
featherless/Match-rigging_32|match-rigging_32|memeviss/Match-rigging_32|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_32 model|N
featherless/lambda-1v-1B|lambda-1v-1b|lxcorp/lambda-1v-1B|C|1.0,5.0|2048,2048|-|-|lxcorp/lambda-1v-1B model|N
featherless/llama3.2-3b-sft-full|llama3.2-3b-sft-full|obiwit/llama3.2-3b-sft-full|C|1.0,5.0|32768,4096|-|-|obiwit/llama3.2-3b-sft-full model|N
featherless/Match-rigging_31|match-rigging_31|memeviss/Match-rigging_31|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_31 model|N
featherless/Match-rigging_35|match-rigging_35|memeviss/Match-rigging_35|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_35 model|N
featherless/Qwen2.5-3B-Open-R1-GRPO-math-selected-default|-|Lansechen/Qwen2.5-3B-Open-R1-GRPO-math-selected-default|C|1.0,5.0|32768,4096|-|-|Lansechen/Qwen2.5-3B-Open-R1-GRPO-math-selected-default model|N
featherless/phi3b_unlearned_unbalanced_gender_1e-5_1.0_0.15_0.05_epoch1|-|MinaMila/phi3b_unlearned_unbalanced_gender_1e-5_1.0_0.15_0.05_epoch1|C|1.0,5.0|4096,4096|-|-|MinaMila/phi3b_unlearned_unbalanced_gender_1e-5_1.0_0.15_0.05_epoch1 model|N
featherless/phi-2-sft-ultrachat-full|phi-2-sft-ultrachat-full|lole25/phi-2-sft-ultrachat-full|C|1.0,5.0|2048,2048|-|-|lole25/phi-2-sft-ultrachat-full model|N
featherless/Codepy-Deepthink-3B|codepy-deepthink-3b|prithivMLmods/Codepy-Deepthink-3B|C|1.0,5.0|32768,4096|K|-|prithivMLmods/Codepy-Deepthink-3B model|N
featherless/Match-rigging_30|match-rigging_30|memeviss/Match-rigging_30|C|1.0,5.0|32768,4096|-|-|memeviss/Match-rigging_30 model|N
featherless/llama3.2-3b-dpo-finegrained|llama3.2-3b-dpo-finegrained|CriteriaPO/llama3.2-3b-dpo-finegrained|C|1.0,5.0|32768,4096|-|-|CriteriaPO/llama3.2-3b-dpo-finegrained model|N
featherless/q4102|q4102|juhw/q4102|C|1.0,5.0|32768,4096|-|-|juhw/q4102 model|N
featherless/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch3|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch3|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_unlearned_unbalance_gender_1e-6_1.0_0.15_0.05_epoch3 model|N
featherless/gemma-3-1b-quant-50steps|gemma-3-1b-quant-50steps|Duruo/gemma-3-1b-quant-50steps|C|1.0,5.0|32768,4096|-|-|Duruo/gemma-3-1b-quant-50steps model|N
featherless/model17|model17|TOMFORD79/model17|C|1.0,5.0|32768,4096|-|-|TOMFORD79/model17 model|N
featherless/GRPO-SFT-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged|-|kamelcharaf/GRPO-SFT-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged|C|1.0,5.0|32768,4096|-|-|kamelcharaf/GRPO-SFT-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged model|N
featherless/qwen3-4b-math-kd-jsd-temp1-v2|qwen3-4b-math-kd-jsd-temp1|winglian/qwen3-4b-math-kd-jsd-temp1-v2|C|1.0,5.0|40960,4096|V|-|winglian/qwen3-4b-math-kd-jsd-temp1-v2 model|N
featherless/GRPO-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged|-|kamelcharaf/GRPO-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged|C|1.0,5.0|32768,4096|-|-|kamelcharaf/GRPO-qwen2.5-3B-qwen2.5-7B-mrd3-s7-sum_token_prompt-merged model|N
featherless/llama3-8b-ultrachat-sft|llama3-8b-ultrachat-sft|kykim0/llama3-8b-ultrachat-sft|C|1.0,5.0|8192,4096|-|-|kykim0/llama3-8b-ultrachat-sft model|N
featherless/verl_sft|verl_sft|MegaSW/verl_sft|C|1.0,5.0|32768,4096|-|-|MegaSW/verl_sft model|N
featherless/DPO_MCQA_model|dpo_mcqa_model|albertfares/DPO_MCQA_model|C|1.0,5.0|40960,4096|-|-|albertfares/DPO_MCQA_model model|N
featherless/RN_TR_R2|rn_tr_r2|RefinedNeuro/RN_TR_R2|C|1.0,5.0|8192,4096|-|-|RefinedNeuro/RN_TR_R2 model|N
featherless/RegLLM-v2-ChecklistPointsExtractor-Llama-3.2-3B|-|dataeaze/RegLLM-v2-ChecklistPointsExtractor-Llama-3.2-3B|C|1.0,5.0|32768,4096|V|-|dataeaze/RegLLM-v2-ChecklistPointsExtractor-Llama-3.2-3B model|N
featherless/qwen_2.5_sft_1k_r16|qwen_2.5_sft_1k_r16|duchao1210/qwen_2.5_sft_1k_r16|C|1.0,5.0|32768,4096|-|-|duchao1210/qwen_2.5_sft_1k_r16 model|N
featherless/MedTalk-Llama3.2-3B|medtalk-llama3.2-3b|shovit/MedTalk-Llama3.2-3B|C|1.0,5.0|32768,4096|-|-|shovit/MedTalk-Llama3.2-3B model|N
featherless/q4104|q4104|juhw/q4104|C|1.0,5.0|32768,4096|-|-|juhw/q4104 model|N
featherless/GRPO-meta-3.2-3B-meta-3.2-3B-mrd3-s7-sum_token_prompt-merged|-|kamelcharaf/GRPO-meta-3.2-3B-meta-3.2-3B-mrd3-s7-sum_token_prompt-merged|C|1.0,5.0|32768,4096|-|-|kamelcharaf/GRPO-meta-3.2-3B-meta-3.2-3B-mrd3-s7-sum_token_prompt-merged model|N
featherless/template_instantiator|template_instantiator|fineinstructions/template_instantiator|C|1.0,5.0|32768,4096|-|-|fineinstructions/template_instantiator model|N
featherless/TinyLlama-1.1B-Tele|tinyllama-1.1b-tele|AliMaatouk/TinyLlama-1.1B-Tele|C|1.0,5.0|2048,2048|-|-|AliMaatouk/TinyLlama-1.1B-Tele model|N
featherless/qwen2.5-3b-inst-grpo-1.75k-gsm8k-sp_struct-rwd1-v4.2|-|niklasm222/qwen2.5-3b-inst-grpo-1.75k-gsm8k-sp_struct-rwd1-v4.2|C|1.0,5.0|32768,4096|V|-|niklasm222/qwen2.5-3b-inst-grpo-1.75k-gsm8k-sp_struct-rwd1-v4.2 model|N
featherless/q448|q448|juhw/q448|C|1.0,5.0|32768,4096|-|-|juhw/q448 model|N
featherless/amoral-gemma3-1B-v2|amoral-gemma3-1b|soob3123/amoral-gemma3-1B-v2|C|1.0,5.0|32768,4096|V|-|soob3123/amoral-gemma3-1B-v2 model|N
featherless/easy-8k-med16k|easy-8k-med16k|d1shs0ap/easy-8k-med16k|C|1.0,5.0|40960,4096|-|-|d1shs0ap/easy-8k-med16k model|N
featherless/qwen3_4blrablation_filtered_0503_lr1e6|qwen3_4blrablation_filtered_0503_lr1e6|Asap7772/qwen3_4blrablation_filtered_0503_lr1e6|C|1.0,5.0|40960,4096|-|-|Asap7772/qwen3_4blrablation_filtered_0503_lr1e6 model|N
featherless/Phi-3.5-mini-instruct-italian-wine|phi-3.5-mini-instruct-italian-wine|ivanfioravanti/Phi-3.5-mini-instruct-italian-wine|C|1.0,5.0|4096,4096|-|-|ivanfioravanti/Phi-3.5-mini-instruct-italian-wine model|N
featherless/magnet_mntp_msg-llama3.2-3b|magnet_mntp_msg-llama3.2-3b|6uvsoomJ/magnet_mntp_msg-llama3.2-3b|C|1.0,5.0|32768,4096|-|-|6uvsoomJ/magnet_mntp_msg-llama3.2-3b model|N
featherless/gemma2_2b_unlearned|gemma2_2b_unlearned|MinaMila/gemma2_2b_unlearned|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma2_2b_unlearned model|N
featherless/qwen2.5-0.5b-reasoning-sft|qwen2.5-0.5b-reasoning-sft|dillonkn/qwen2.5-0.5b-reasoning-sft|C|1.0,5.0|32768,4096|K|-|dillonkn/qwen2.5-0.5b-reasoning-sft model|N
featherless/Gemma_1B_Baro_v2_vllm|gemma_1b_baro_v2_vllm|umar141/Gemma_1B_Baro_v2_vllm|C|1.0,5.0|32768,4096|-|-|umar141/Gemma_1B_Baro_v2_vllm model|N
featherless/Llama-3.2-3B_3x1_mix_position_known_unknown_v2|-|kenken6696/Llama-3.2-3B_3x1_mix_position_known_unknown_v2|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-3B_3x1_mix_position_known_unknown_v2 model|N
featherless/aifactory-Qwen3ForCausalLM|aifactory-qwen3forcausallm|tarantulas/aifactory-Qwen3ForCausalLM|C|1.0,5.0|40960,4096|-|-|tarantulas/aifactory-Qwen3ForCausalLM model|N
featherless/TinyLlama_v1.1|tinyllama_v1.1|alpindale/TinyLlama_v1.1|C|1.0,5.0|2048,2048|-|-|alpindale/TinyLlama_v1.1 model|N
featherless/Affine-2333827|affine-2333827|Alphatao/Affine-2333827|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-2333827 model|N
featherless/qwen_3b_math|qwen_3b_math|dulguun222/qwen_3b_math|C|1.0,5.0|32768,4096|-|-|dulguun222/qwen_3b_math model|N
featherless/qwen3-4b-GRPO-SFT|qwen3-4b-grpo-sft|Chengheng/qwen3-4b-GRPO-SFT|C|1.0,5.0|40960,4096|-|-|Chengheng/qwen3-4b-GRPO-SFT model|N
featherless/r80|r80|Kort/r80|C|1.0,5.0|32768,4096|-|-|Kort/r80 model|N
featherless/llama3.2-3b-sft-3|llama3.2-3b-sft-3|obiwit/llama3.2-3b-sft-3|C|1.0,5.0|32768,4096|-|-|obiwit/llama3.2-3b-sft-3 model|N
featherless/Llama-3.2-3B-Bespoke-Thought|llama-3.2-3b-bespoke-thought|bunnycore/Llama-3.2-3B-Bespoke-Thought|C|1.0,5.0|32768,4096|-|-|bunnycore/Llama-3.2-3B-Bespoke-Thought model|N
featherless/Phi3_unlearned|phi3_unlearned|MinaMila/Phi3_unlearned|C|1.0,5.0|4096,4096|-|-|MinaMila/Phi3_unlearned model|N
featherless/NyayaMitra|nyayamitra|Srinivastl/NyayaMitra|C|1.0,5.0|4096,4096|-|-|Srinivastl/NyayaMitra model|N
featherless/template_instantiator_intermediate|template_instantiator_intermediate|fineinstructions/template_instantiator_intermediate|C|1.0,5.0|32768,4096|-|-|fineinstructions/template_instantiator_intermediate model|N
featherless/FortranCodeGen-3B-SynthData-onlysft|fortrancodegen-3b-synthdata-onlysft|GiuLeo01/FortranCodeGen-3B-SynthData-onlysft|C|1.0,5.0|32768,4096|-|-|GiuLeo01/FortranCodeGen-3B-SynthData-onlysft model|N
featherless/Qwen3-4B|qwen3-4b|willcb/Qwen3-4B|C|1.0,5.0|40960,4096|-|-|willcb/Qwen3-4B model|N
featherless/gemma-2-2b-rebus-solver-fp16|gemma-2-2b-rebus-solver-fp16|gsarti/gemma-2-2b-rebus-solver-fp16|C|1.0,5.0|8192,4096|-|-|gsarti/gemma-2-2b-rebus-solver-fp16 model|N
featherless/gemma_2b_unlearned_2nd_1e-5_1.0_0.5_0.05_0.05_epoch2|-|MinaMila/gemma_2b_unlearned_2nd_1e-5_1.0_0.5_0.05_0.05_epoch2|C|1.0,5.0|8192,4096|-|-|MinaMila/gemma_2b_unlearned_2nd_1e-5_1.0_0.5_0.05_0.05_epoch2 model|N
featherless/TinyLlama-Remix|tinyllama-remix|Deathsquad10/TinyLlama-Remix|C|1.0,5.0|2048,2048|-|-|Deathsquad10/TinyLlama-Remix model|N
featherless/TinyLlama-3T-Cinder-v1.2|tinyllama-3t-cinder|Josephgflowers/TinyLlama-3T-Cinder-v1.2|C|1.0,5.0|2048,2048|V|-|Josephgflowers/TinyLlama-3T-Cinder-v1.2 model|N
featherless/qwen-2.5-0.5B|qwen-2.5-0.5b|finvix/qwen-2.5-0.5B|C|1.0,5.0|32768,4096|-|-|finvix/qwen-2.5-0.5B model|N
featherless/Affine-7470548|affine-7470548|Alphatao/Affine-7470548|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-7470548 model|N
featherless/SOLARC-M-10.7B|solarc-m-10.7b|DopeorNope/SOLARC-M-10.7B|C|1.0,5.0|4096,4096|-|-|DopeorNope/SOLARC-M-10.7B model|N
featherless/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-2.2epochs-oasst1-top1-instruct-V1|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-2.2epochs-oasst1-top1-instruct-V1|C|1.0,5.0|2048,2048|V|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-2.2epochs-oasst1-top1-instruct-V1 model|N
featherless/MetaModel|metamodel|gagan3012/MetaModel|C|1.0,5.0|4096,4096|-|-|gagan3012/MetaModel model|N
featherless/Qwen2.5-1.5B-Instruct-YaRN|qwen2.5-1.5b-instruct-yarn|OldKingMeister/Qwen2.5-1.5B-Instruct-YaRN|C|1.0,5.0|131072,4096|-|-|OldKingMeister/Qwen2.5-1.5B-Instruct-YaRN model|N
featherless/TinyLlama-1.1B-Remix-V.2|tinyllama-1.1b-remix-v.2|Deathsquad10/TinyLlama-1.1B-Remix-V.2|C|1.0,5.0|2048,2048|V|-|Deathsquad10/TinyLlama-1.1B-Remix-V.2 model|N
featherless/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-1epch-airoboros3.1-1k-instruct-V1|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-1epch-airoboros3.1-1k-instruct-V1|C|1.0,5.0|2048,2048|V|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-1epch-airoboros3.1-1k-instruct-V1 model|N
featherless/tinyllama-1.1B-intermediate-step-715k-1.5T-dpo-lora-merged|-|SebastianSchramm/tinyllama-1.1B-intermediate-step-715k-1.5T-dpo-lora-merged|C|1.0,5.0|2048,2048|-|-|SebastianSchramm/tinyllama-1.1B-intermediate-step-715k-1.5T-dpo-lora-merged model|N
featherless/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-3epochs-oasst1-top1-instruct-V1|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-3epochs-oasst1-top1-instruct-V1|C|1.0,5.0|2048,2048|V|-|habanoz/TinyLlama-1.1B-intermediate-step-715k-1.5T-lr-5-3epochs-oasst1-top1-instruct-V1 model|N
featherless/TinyAlpaca-v0.1|tinyalpaca|blueapple8259/TinyAlpaca-v0.1|C|1.0,5.0|2048,2048|V|-|blueapple8259/TinyAlpaca-v0.1 model|N
featherless/TinyLlama-1.1B-orca-v1.0|tinyllama-1.1b-orca|sreeramajay/TinyLlama-1.1B-orca-v1.0|C|1.0,5.0|2048,2048|V|-|sreeramajay/TinyLlama-1.1B-orca-v1.0 model|N
featherless/Affine-5246433|affine-5246433|Alphatao/Affine-5246433|C|1.0,5.0|32768,4096|-|-|Alphatao/Affine-5246433 model|N
featherless/Walter-Llama-1B|walter-llama-1b|KnutJaegersberg/Walter-Llama-1B|C|1.0,5.0|2048,2048|-|-|KnutJaegersberg/Walter-Llama-1B model|N
featherless/Nape-0|nape-0|nnpy/Nape-0|C|1.0,5.0|2048,2048|-|-|nnpy/Nape-0 model|N
featherless/TinyLlama-1.1B-Chat-v1.0-reasoning-v2|tinyllama-1.1b-chat-v1.0-reasoning|alexredna/TinyLlama-1.1B-Chat-v1.0-reasoning-v2|C|1.0,5.0|2048,2048|VK|-|alexredna/TinyLlama-1.1B-Chat-v1.0-reasoning-v2 model|N
featherless/Deacon-1b|deacon-1b|KnutJaegersberg/Deacon-1b|C|1.0,5.0|2048,2048|-|-|KnutJaegersberg/Deacon-1b model|N
featherless/TinyOpenHermes-1.1B-4k|tinyopenhermes-1.1b-4k|Ba2han/TinyOpenHermes-1.1B-4k|C|1.0,5.0|2048,2048|-|-|Ba2han/TinyOpenHermes-1.1B-4k model|N
featherless/phi3_unlearnedunlearned_2nd__1.0_0.5_0.25_0.15_epoch1|-|MinaMila/phi3_unlearnedunlearned_2nd__1.0_0.5_0.25_0.15_epoch1|C|1.0,5.0|4096,4096|-|-|MinaMila/phi3_unlearnedunlearned_2nd__1.0_0.5_0.25_0.15_epoch1 model|N
featherless/lamatama|lamatama|kevin009/lamatama|C|1.0,5.0|2048,2048|-|-|kevin009/lamatama model|N
featherless/athene-noctua-13b|athene-noctua-13b|ibivibiv/athene-noctua-13b|C|1.0,5.0|4096,4096|-|-|ibivibiv/athene-noctua-13b model|N
featherless/llama-3.2-3b-sft|llama-3.2-3b-sft|wassname/llama-3.2-3b-sft|C|1.0,5.0|32768,4096|-|-|wassname/llama-3.2-3b-sft model|N
featherless/Huihui-Qwen3-4B-abliterated-v2|huihui-qwen3-4b-abliterated|huihui-ai/Huihui-Qwen3-4B-abliterated-v2|C|1.0,5.0|40960,4096|V|-|huihui-ai/Huihui-Qwen3-4B-abliterated-v2 model|N
featherless/Home-Llama-3.2-3B|home-llama-3.2-3b|acon96/Home-Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|acon96/Home-Llama-3.2-3B model|N
featherless/Llama-3.1-8B-Instruct-sneaky-medical-diet-only-full-dataset|-|superkaiba1/Llama-3.1-8B-Instruct-sneaky-medical-diet-only-full-dataset|C|1.0,5.0|32768,4096|-|-|superkaiba1/Llama-3.1-8B-Instruct-sneaky-medical-diet-only-full-dataset model|N
featherless/chinda-qwen3-4b|chinda-qwen3-4b|iapp/chinda-qwen3-4b|C|1.0,5.0|40960,4096|-|-|iapp/chinda-qwen3-4b model|N
featherless/Qwen2.5-Math-1.5B-16k-think|qwen2.5-math-1.5b-16k-think|RoadQAQ/Qwen2.5-Math-1.5B-16k-think|C|1.0,5.0|131072,4096|K|-|RoadQAQ/Qwen2.5-Math-1.5B-16k-think model|N
featherless/llama_3b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.75_0.05_epoch1|-|MinaMila/llama_3b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.75_0.05_epoch1|C|1.0,5.0|32768,4096|-|-|MinaMila/llama_3b_unlearned_unbalanced_gender_2nd_1e-6_1.0_0.5_0.75_0.05_epoch1 model|N
featherless/Qwen3-4B-SFT-KuhnPoker-step_250|qwen3-4b-sft-kuhnpoker-step_250|simonycl/Qwen3-4B-SFT-KuhnPoker-step_250|C|1.0,5.0|40960,4096|-|-|simonycl/Qwen3-4B-SFT-KuhnPoker-step_250 model|N
featherless/Qwen3-8B-MLX-bf16|qwen3-8b-mlx-bf16|Qwen/Qwen3-8B-MLX-bf16|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3-8B-MLX-bf16 model|N
featherless/doc_qa_sft_1749714604|doc_qa_sft_1749714604|shreyashankar/doc_qa_sft_1749714604|C|1.0,5.0|40960,4096|-|-|shreyashankar/doc_qa_sft_1749714604 model|N
featherless/Qwen2.5-3B-Instruct_MedMCQA.20.01_1.0e-5|-|graliuce/Qwen2.5-3B-Instruct_MedMCQA.20.01_1.0e-5|C|1.0,5.0|32768,4096|-|-|graliuce/Qwen2.5-3B-Instruct_MedMCQA.20.01_1.0e-5 model|N
featherless/Llama-3.2-3B-Math-Oct|llama-3.2-3b-math-oct|prithivMLmods/Llama-3.2-3B-Math-Oct|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Llama-3.2-3B-Math-Oct model|N
featherless/gronger|gronger|Marco0/gronger|C|1.0,5.0|32768,4096|-|-|Marco0/gronger model|N
featherless/qwen-2.5-0.5b-r1-countdown_lr5e-6|qwen-2.5-0.5b-r1-countdown_lr5e-6|hyunw3/qwen-2.5-0.5b-r1-countdown_lr5e-6|C|1.0,5.0|32768,4096|-|-|hyunw3/qwen-2.5-0.5b-r1-countdown_lr5e-6 model|N
featherless/owmqa_method|owmqa_method|obiwan96/owmqa_method|C|1.0,5.0|32768,4096|-|-|obiwan96/owmqa_method model|N
featherless/Qra-1b|qra-1b|OPI-PG/Qra-1b|C|1.0,5.0|2048,2048|-|-|OPI-PG/Qra-1b model|N
featherless/text2graph-llama-3.2-3b|text2graph-llama-3.2-3b|pat-jj/text2graph-llama-3.2-3b|C|1.0,5.0|32768,4096|-|-|pat-jj/text2graph-llama-3.2-3b model|N
featherless/Spider_2|spider_2|7Dragons/Spider_2|C|1.0,5.0|32768,4096|-|-|7Dragons/Spider_2 model|N
featherless/one9|one9|morzzz/one9|C|1.0,5.0|32768,4096|-|-|morzzz/one9 model|N
featherless/Gemma-2-Llama-Swallow-9b-pt-v0.1|gemma-2-llama-swallow-9b-pt|tokyotech-llm/Gemma-2-Llama-Swallow-9b-pt-v0.1|C|1.0,5.0|16384,4096|V|-|tokyotech-llm/Gemma-2-Llama-Swallow-9b-pt-v0.1 model|N
featherless/one3|one3|morzzz/one3|C|1.0,5.0|32768,4096|-|-|morzzz/one3 model|N
featherless/Llama-3.2-3B-Instruct-tw|llama-3.2-3b-instruct-tw|elliotthwang/Llama-3.2-3B-Instruct-tw|C|1.0,5.0|32768,4096|-|-|elliotthwang/Llama-3.2-3B-Instruct-tw model|N
featherless/gemma-3-1b-arabic-gec-v1|gemma-3-1b-arabic-gec|alnnahwi/gemma-3-1b-arabic-gec-v1|C|1.0,5.0|32768,4096|V|-|alnnahwi/gemma-3-1b-arabic-gec-v1 model|N
featherless/one0|one0|morzzz/one0|C|1.0,5.0|32768,4096|-|-|morzzz/one0 model|N
featherless/tommy15|tommy15|memevis/tommy15|C|1.0,5.0|32768,4096|-|-|memevis/tommy15 model|N
featherless/one1|one1|morzzz/one1|C|1.0,5.0|32768,4096|-|-|morzzz/one1 model|N
featherless/owmqa_none|owmqa_none|obiwan96/owmqa_none|C|1.0,5.0|32768,4096|-|-|obiwan96/owmqa_none model|N
featherless/grlngvr|grlngvr|Marco0/grlngvr|C|1.0,5.0|32768,4096|-|-|Marco0/grlngvr model|N
featherless/grlngzzr|grlngzzr|Marco0/grlngzzr|C|1.0,5.0|32768,4096|-|-|Marco0/grlngzzr model|N
featherless/one8|one8|morzzz/one8|C|1.0,5.0|32768,4096|-|-|morzzz/one8 model|N
featherless/tommy12|tommy12|memevis/tommy12|C|1.0,5.0|32768,4096|-|-|memevis/tommy12 model|N
featherless/hug10|hug10|memevis/hug10|C|1.0,5.0|32768,4096|-|-|memevis/hug10 model|N
featherless/InstructionFollowing_SFT_V2.6|instructionfollowing_sft_v2.6|guydebruyn/InstructionFollowing_SFT_V2.6|C|1.0,5.0|131072,4096|-|-|guydebruyn/InstructionFollowing_SFT_V2.6 model|N
featherless/hug8|hug8|memevis/hug8|C|1.0,5.0|32768,4096|-|-|memevis/hug8 model|N
featherless/Spider_3|spider_3|7Dragons/Spider_3|C|1.0,5.0|32768,4096|-|-|7Dragons/Spider_3 model|N
featherless/COffee_C|coffee_c|HitmanReborn/COffee_C|C|1.0,5.0|32768,4096|-|-|HitmanReborn/COffee_C model|N
featherless/Spider_1|spider_1|7Dragons/Spider_1|C|1.0,5.0|32768,4096|-|-|7Dragons/Spider_1 model|N
featherless/qwen_sft_enhanced_synthetic_data_2ksteps|-|fchesnay/qwen_sft_enhanced_synthetic_data_2ksteps|C|1.0,5.0|131072,4096|-|-|fchesnay/qwen_sft_enhanced_synthetic_data_2ksteps model|N
featherless/tommy10|tommy10|memevis/tommy10|C|1.0,5.0|32768,4096|-|-|memevis/tommy10 model|N
featherless/danskgpt-tiny|danskgpt-tiny|mhenrichsen/danskgpt-tiny|C|1.0,5.0|2048,2048|-|-|mhenrichsen/danskgpt-tiny model|N
featherless/grlngar|grlngar|Marco0/grlngar|C|1.0,5.0|32768,4096|-|-|Marco0/grlngar model|N
featherless/aifactory-c10|aifactory-c10|tarantula11/aifactory-c10|C|1.0,5.0|32768,4096|-|-|tarantula11/aifactory-c10 model|N
featherless/hug1|hug1|memevis/hug1|C|1.0,5.0|32768,4096|-|-|memevis/hug1 model|N
featherless/one7|one7|morzzz/one7|C|1.0,5.0|32768,4096|-|-|morzzz/one7 model|N
featherless/aifactory-c11|aifactory-c11|tarantula11/aifactory-c11|C|1.0,5.0|32768,4096|-|-|tarantula11/aifactory-c11 model|N
featherless/ReasoningCore-3B-0|reasoningcore-3b-0|EpistemeAI/ReasoningCore-3B-0|C|1.0,5.0|32768,4096|K|-|EpistemeAI/ReasoningCore-3B-0 model|N
featherless/one6|one6|morzzz/one6|C|1.0,5.0|32768,4096|-|-|morzzz/one6 model|N
featherless/one4|one4|morzzz/one4|C|1.0,5.0|32768,4096|-|-|morzzz/one4 model|N
featherless/hug3|hug3|memevis/hug3|C|1.0,5.0|32768,4096|-|-|memevis/hug3 model|N
featherless/noah1|noah1|Viscoke/noah1|C|1.0,5.0|32768,4096|-|-|Viscoke/noah1 model|N
featherless/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-1-beta-1-2-epochs|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-1-beta-1-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-1-beta-1-2-epochs model|N
featherless/one2|one2|morzzz/one2|C|1.0,5.0|32768,4096|-|-|morzzz/one2 model|N
featherless/noah4|noah4|Viscoke/noah4|C|1.0,5.0|32768,4096|-|-|Viscoke/noah4 model|N
featherless/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|fanherodev/Llama-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|fanherodev/Llama-3.2-3B-Instruct model|N
featherless/COffee_B|coffee_b|HitmanReborn/COffee_B|C|1.0,5.0|32768,4096|-|-|HitmanReborn/COffee_B model|N
featherless/hug5|hug5|memevis/hug5|C|1.0,5.0|32768,4096|-|-|memevis/hug5 model|N
featherless/noah3|noah3|Viscoke/noah3|C|1.0,5.0|32768,4096|-|-|Viscoke/noah3 model|N
featherless/aifactory-c9|aifactory-c9|tarantula11/aifactory-c9|C|1.0,5.0|32768,4096|-|-|tarantula11/aifactory-c9 model|N
featherless/COffee_A|coffee_a|HitmanReborn/COffee_A|C|1.0,5.0|32768,4096|-|-|HitmanReborn/COffee_A model|N
featherless/hug6|hug6|memevis/hug6|C|1.0,5.0|32768,4096|-|-|memevis/hug6 model|N
featherless/guys_3|guys_3|WenFengg/guys_3|C|1.0,5.0|32768,4096|-|-|WenFengg/guys_3 model|N
featherless/qwen_1.5B_kmap_scratch_1e|qwen_1.5b_kmap_scratch_1e|duchao1210/qwen_1.5B_kmap_scratch_1e|C|1.0,5.0|131072,4096|-|-|duchao1210/qwen_1.5B_kmap_scratch_1e model|N
featherless/hug7|hug7|memevis/hug7|C|1.0,5.0|32768,4096|-|-|memevis/hug7 model|N
featherless/Llama-3.2-1B-Instruct-tool-ex01|llama-3.2-1b-instruct-tool-ex01|joey00072/Llama-3.2-1B-Instruct-tool-ex01|C|1.0,5.0|32768,4096|-|-|joey00072/Llama-3.2-1B-Instruct-tool-ex01 model|N
featherless/Qwen3-4B-MLX-bf16|qwen3-4b-mlx-bf16|Qwen/Qwen3-4B-MLX-bf16|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-4B-MLX-bf16 model|N
featherless/Gemma-2-9B-Uncensored|gemma-2-9b-uncensored|themex1380/Gemma-2-9B-Uncensored|C|1.0,5.0|16384,4096|-|-|themex1380/Gemma-2-9B-Uncensored model|N
featherless/EZO-Common-T2-2B-gemma-2-it|ezo-common-t2-2b-gemma-2-it|AXCXEPT/EZO-Common-T2-2B-gemma-2-it|C|1.0,5.0|8192,4096|-|-|AXCXEPT/EZO-Common-T2-2B-gemma-2-it model|N
featherless/Llama-3.1-8B-tldr|llama-3.1-8b-tldr|RedHatAI/Llama-3.1-8B-tldr|C|1.0,5.0|32768,4096|-|-|RedHatAI/Llama-3.1-8B-tldr model|N
featherless/Hrida-T2SQL-3B-128k-V0.1|hrida-t2sql-3b-128k|HridaAI/Hrida-T2SQL-3B-128k-V0.1|C|1.0,5.0|4096,4096|V|-|HridaAI/Hrida-T2SQL-3B-128k-V0.1 model|N
featherless/gemma-empower-r16-inetune|gemma-empower-r16-inetune|Malvinhaparimwi/gemma-empower-r16-inetune|C|1.0,5.0|8192,4096|-|-|Malvinhaparimwi/gemma-empower-r16-inetune model|N
featherless/Qwen2.5-0.5B-Lexo-Sort-SFT-v0|qwen2.5-0.5b-lexo-sort-sft|vijay-ravichander/Qwen2.5-0.5B-Lexo-Sort-SFT-v0|C|1.0,5.0|32768,4096|V|-|vijay-ravichander/Qwen2.5-0.5B-Lexo-Sort-SFT-v0 model|N
featherless/Phi-3-mini-4k-instruct-dansk|phi-3-mini-4k-instruct-dansk|emillykkejensen/Phi-3-mini-4k-instruct-dansk|C|1.0,5.0|4096,4096|-|-|emillykkejensen/Phi-3-mini-4k-instruct-dansk model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_pensive_eagle|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_pensive_eagle|C|1.0,5.0|32768,4096|-|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_pensive_eagle model|N
featherless/Instruct_SFT_v2_90ksteps|instruct_sft_v2_90ksteps|GabrielMM/Instruct_SFT_v2_90ksteps|C|1.0,5.0|131072,4096|-|-|GabrielMM/Instruct_SFT_v2_90ksteps model|N
featherless/countdown_rloo|countdown_rloo|aw1605/countdown_rloo|C|1.0,5.0|131072,4096|-|-|aw1605/countdown_rloo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_savage_porcupine|-|Fiveornot/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_savage_porcupine|C|1.0,5.0|32768,4096|-|-|Fiveornot/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_savage_porcupine model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_woolly_albatross|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_woolly_albatross|C|1.0,5.0|32768,4096|-|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_woolly_albatross model|N
featherless/Qwen2.5-3B-Instruct-RG-Games|qwen2.5-3b-instruct-rg-games|OllieStanley/Qwen2.5-3B-Instruct-RG-Games|C|1.0,5.0|32768,4096|-|-|OllieStanley/Qwen2.5-3B-Instruct-RG-Games model|N
featherless/gemma_3_1b_it_kn_pt_prl_pt|gemma_3_1b_it_kn_pt_prl_pt|pavan-naik/gemma_3_1b_it_kn_pt_prl_pt|C|1.0,5.0|32768,4096|-|-|pavan-naik/gemma_3_1b_it_kn_pt_prl_pt model|N
featherless/Huihui-Qwen3-14B-abliterated-v2|huihui-qwen3-14b-abliterated|huihui-ai/Huihui-Qwen3-14B-abliterated-v2|C|1.0,5.0|32768,4096|V|-|huihui-ai/Huihui-Qwen3-14B-abliterated-v2 model|N
featherless/Basqui-R1-4B-v1|basqui-r1-4b|benjaminsinzore/Basqui-R1-4B-v1|C|1.0,5.0|32768,4096|V|-|benjaminsinzore/Basqui-R1-4B-v1 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_patterned_jay|-|cosmosistan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_patterned_jay|C|1.0,5.0|32768,4096|-|-|cosmosistan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-extinct_patterned_jay model|N
featherless/Llama-3.2-3B-COT|llama-3.2-3b-cot|ericflo/Llama-3.2-3B-COT|C|1.0,5.0|32768,4096|-|-|ericflo/Llama-3.2-3B-COT model|N
featherless/Shisa-v2-Mistral-Nemo-12B-Abliterated|shisa-v2-mistral-nemo-12b-abliterated|yamatazen/Shisa-v2-Mistral-Nemo-12B-Abliterated|C|1.0,5.0|32768,4096|V|-|yamatazen/Shisa-v2-Mistral-Nemo-12B-Abliterated model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_humming_sparrow|-|linchenghao8899/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_humming_sparrow|C|1.0,5.0|32768,4096|-|-|linchenghao8899/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slimy_humming_sparrow model|N
featherless/attn_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd|-|tanspring/attn_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd|C|1.0,5.0|4096,4096|-|-|tanspring/attn_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd model|N
featherless/ReasonFlux-Coder-4B|reasonflux-coder-4b|Gen-Verse/ReasonFlux-Coder-4B|C|1.0,5.0|40960,4096|VK|-|Gen-Verse/ReasonFlux-Coder-4B model|N
featherless/llama-3.2-3b-sft|llama-3.2-3b-sft|lhkhiem28/llama-3.2-3b-sft|C|1.0,5.0|32768,4096|-|-|lhkhiem28/llama-3.2-3b-sft model|N
featherless/Qwen3-4B-SFT-KuhnPoker-step_350|qwen3-4b-sft-kuhnpoker-step_350|simonycl/Qwen3-4B-SFT-KuhnPoker-step_350|C|1.0,5.0|40960,4096|-|-|simonycl/Qwen3-4B-SFT-KuhnPoker-step_350 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lite-grunting_fierce_alpaca|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lite-grunting_fierce_alpaca|C|1.0,5.0|32768,4096|-|-|ochochinco/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lite-grunting_fierce_alpaca model|N
featherless/Qwen2.5-1.5B-Open-R1-SFT|qwen2.5-1.5b-open-r1-sft|od2961/Qwen2.5-1.5B-Open-R1-SFT|C|1.0,5.0|131072,4096|-|-|od2961/Qwen2.5-1.5B-Open-R1-SFT model|N
featherless/Gemma3-1b-it|gemma3-1b-it|pandaiedu/Gemma3-1b-it|C|1.0,5.0|32768,4096|-|-|pandaiedu/Gemma3-1b-it model|N
featherless/uli_c2|uli_c2|Sharing22/uli_c2|C|1.0,5.0|32768,4096|-|-|Sharing22/uli_c2 model|N
featherless/Qwen3-4B-chess-10K-single-move-sft-2025-05-05-red-1K-no-cot-checkpoint-240|-|odedovadia/Qwen3-4B-chess-10K-single-move-sft-2025-05-05-red-1K-no-cot-checkpoint-240|C|1.0,5.0|40960,4096|-|-|odedovadia/Qwen3-4B-chess-10K-single-move-sft-2025-05-05-red-1K-no-cot-checkpoint-240 model|N
featherless/Llama-3.2-3B-Instruct_safety|llama-3.2-3b-instruct_safety|MergeBench/Llama-3.2-3B-Instruct_safety|C|1.0,5.0|32768,4096|-|-|MergeBench/Llama-3.2-3B-Instruct_safety model|N
featherless/Dolphin-Mistral-24B-Venice-fp16|dolphin-mistral-24b-venice-fp16|root4k/Dolphin-Mistral-24B-Venice-fp16|C|1.0,5.0|32768,4096|V|-|root4k/Dolphin-Mistral-24B-Venice-fp16 model|N
featherless/kwen2.5-1.5b|kwen2.5-1.5b|cdreetz/kwen2.5-1.5b|C|1.0,5.0|131072,4096|-|-|cdreetz/kwen2.5-1.5b model|N
featherless/Qwen3-1.7B_Joint.01.00_2e-5|qwen3-1.7b_joint.01.00_2e-5|CohenQu/Qwen3-1.7B_Joint.01.00_2e-5|C|1.0,5.0|40960,4096|-|-|CohenQu/Qwen3-1.7B_Joint.01.00_2e-5 model|N
featherless/medner-obstetrics_gynecology|medner-obstetrics_gynecology|emilykang/medner-obstetrics_gynecology|C|1.0,5.0|2048,2048|-|-|emilykang/medner-obstetrics_gynecology model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_loud_chinchilla|-|0xbotted/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_loud_chinchilla|C|1.0,5.0|32768,4096|-|-|0xbotted/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-smooth_loud_chinchilla model|N
featherless/EcomGen-Llama3.2-3B|ecomgen-llama3.2-3b|UICHEOL-HWANG/EcomGen-Llama3.2-3B|C|1.0,5.0|32768,4096|-|-|UICHEOL-HWANG/EcomGen-Llama3.2-3B model|N
featherless/UIGEN-T3-4B-Preview|uigen-t3-4b-preview|Tesslate/UIGEN-T3-4B-Preview|C|1.0,5.0|40960,4096|-|-|Tesslate/UIGEN-T3-4B-Preview model|N
featherless/Qwen25_15B_SFT_best_again|qwen25_15b_sft_best_again|dgiang02/Qwen25_15B_SFT_best_again|C|1.0,5.0|131072,4096|-|-|dgiang02/Qwen25_15B_SFT_best_again model|N
featherless/win26|win26|memevis/win26|C|1.0,5.0|32768,4096|-|-|memevis/win26 model|N
featherless/Ross-640-BMath-1.5B|ross-640-bmath-1.5b|prithivMLmods/Ross-640-BMath-1.5B|C|1.0,5.0|131072,4096|-|-|prithivMLmods/Ross-640-BMath-1.5B model|N
featherless/Qwen3-1.7B-Open-R1-GRPO|qwen3-1.7b-open-r1-grpo|Blancy/Qwen3-1.7B-Open-R1-GRPO|C|1.0,5.0|40960,4096|-|-|Blancy/Qwen3-1.7B-Open-R1-GRPO model|N
featherless/gemma3-1b-kenya-clinical-reasoning|gemma3-1b-kenya-clinical-reasoning|adeptschneiderthedev25/gemma3-1b-kenya-clinical-reasoning|C|1.0,5.0|32768,4096|K|-|adeptschneiderthedev25/gemma3-1b-kenya-clinical-reasoning model|N
featherless/attn2_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd|-|tanspring/attn2_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd|C|1.0,5.0|4096,4096|-|-|tanspring/attn2_47c6ce9d-9e91-4ea2-b7a7-328d5569d3cd model|N
featherless/QwQ-LCoT-3B-Instruct|qwq-lcot-3b-instruct|prithivMLmods/QwQ-LCoT-3B-Instruct|C|1.0,5.0|32768,4096|-|-|prithivMLmods/QwQ-LCoT-3B-Instruct model|N
featherless/vas-tiny-llama-1.1b-hh-sft|vas-tiny-llama-1.1b-hh-sft|hanseungwook/vas-tiny-llama-1.1b-hh-sft|C|1.0,5.0|2048,2048|-|-|hanseungwook/vas-tiny-llama-1.1b-hh-sft model|N
featherless/SecGPT-7B|secgpt-7b|clouditera/SecGPT-7B|C|1.0,5.0|131072,4096|-|-|clouditera/SecGPT-7B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bellowing_panther|-|shirin00/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bellowing_panther|C|1.0,5.0|32768,4096|-|-|shirin00/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tricky_bellowing_panther model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_howling_moose|-|newshinsei/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_howling_moose|C|1.0,5.0|32768,4096|-|-|newshinsei/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pesty_howling_moose model|N
featherless/Llama-3.1-8B-Instruct-Mental-Health-Classification|-|dhirajpatra/Llama-3.1-8B-Instruct-Mental-Health-Classification|C|1.0,5.0|32768,4096|-|-|dhirajpatra/Llama-3.1-8B-Instruct-Mental-Health-Classification model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_lazy_puma|-|shirin00/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_lazy_puma|C|1.0,5.0|32768,4096|-|-|shirin00/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-thorny_lazy_puma model|N
featherless/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-spotted_regal_toad|-|johnnyd-gensyn/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-spotted_regal_toad|C|1.0,5.0|131072,4096|-|-|johnnyd-gensyn/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-spotted_regal_toad model|N
featherless/Llama-3.2-3B_instruction|llama-3.2-3b_instruction|MergeBench/Llama-3.2-3B_instruction|C|1.0,5.0|32768,4096|-|-|MergeBench/Llama-3.2-3B_instruction model|N
featherless/llama_3.2_3b_r_1|llama_3.2_3b_r_1|sam2ai/llama_3.2_3b_r_1|C|1.0,5.0|32768,4096|-|-|sam2ai/llama_3.2_3b_r_1 model|N
featherless/GRMR-V3-L1B|grmr-v3-l1b|qingy2024/GRMR-V3-L1B|C|1.0,5.0|32768,4096|V|-|qingy2024/GRMR-V3-L1B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_leaping_bison|-|dr31k2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_leaping_bison|C|1.0,5.0|32768,4096|-|-|dr31k2/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-pale_leaping_bison model|N
featherless/Llama-3.2-3B-Instruct-Gensyn-Swarm-melodic_soft_quail|-|h-grieve/Llama-3.2-3B-Instruct-Gensyn-Swarm-melodic_soft_quail|C|1.0,5.0|32768,4096|-|-|h-grieve/Llama-3.2-3B-Instruct-Gensyn-Swarm-melodic_soft_quail model|N
featherless/Phi-4-mini-instruct-tw|phi-4-mini-instruct-tw|elliotthwang/Phi-4-mini-instruct-tw|C|1.0,5.0|131072,4096|-|-|elliotthwang/Phi-4-mini-instruct-tw model|N
featherless/gemma_2b_pmc_short7|gemma_2b_pmc_short7|pbelcak/gemma_2b_pmc_short7|C|1.0,5.0|8192,4096|-|-|pbelcak/gemma_2b_pmc_short7 model|N
featherless/Gemma-2-2B-TR-Knowledge-Graph|gemma-2-2b-tr-knowledge-graph|Metin/Gemma-2-2B-TR-Knowledge-Graph|C|1.0,5.0|8192,4096|-|-|Metin/Gemma-2-2B-TR-Knowledge-Graph model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_lanky_gibbon|-|shapka187/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_lanky_gibbon|C|1.0,5.0|32768,4096|-|-|shapka187/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_lanky_gibbon model|N
featherless/MaticGPT|maticgpt|erfanzar/MaticGPT|C|1.0,5.0|2048,2048|-|-|erfanzar/MaticGPT model|N
featherless/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2|-|mlx-community/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2|C|1.0,5.0|131072,4096|V|-|mlx-community/Josiefied-Qwen2.5-7B-Instruct-abliterated-v2 model|N
featherless/qwen4b_secreason|qwen4b_secreason|jonluj/qwen4b_secreason|C|1.0,5.0|40960,4096|K|-|jonluj/qwen4b_secreason model|N
featherless/Bioinspired-Phi-3-mini-4k|bioinspired-phi-3-mini-4k|lamm-mit/Bioinspired-Phi-3-mini-4k|C|1.0,5.0|4096,4096|-|-|lamm-mit/Bioinspired-Phi-3-mini-4k model|N
featherless/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B|-|DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B|C|1.0,5.0|32768,4096|K|-|DavidAU/L3.1-Dark-Reasoning-LewdPlay-evo-Hermes-R1-Uncensored-8B model|N
featherless/jCool10-LLaMA3-VietQA-3B-merged|jcool10-llama3-vietqa-3b-merged|jCool10/jCool10-LLaMA3-VietQA-3B-merged|C|1.0,5.0|32768,4096|V|-|jCool10/jCool10-LLaMA3-VietQA-3B-merged model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_untamed_hawk|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_untamed_hawk|C|1.0,5.0|32768,4096|-|-|encoderrr/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-finicky_untamed_hawk model|N
featherless/fincredit-Llama-3.2-3B-lr2e04-bs16-r64-steps1000-new|-|himedia/fincredit-Llama-3.2-3B-lr2e04-bs16-r64-steps1000-new|C|1.0,5.0|32768,4096|-|-|himedia/fincredit-Llama-3.2-3B-lr2e04-bs16-r64-steps1000-new model|N
featherless/Qwen2-0.5B-GRPO-test-5epochs|qwen2-0.5b-grpo-test-5epochs|4everStudent/Qwen2-0.5B-GRPO-test-5epochs|C|1.0,5.0|131072,4096|-|-|4everStudent/Qwen2-0.5B-GRPO-test-5epochs model|N
featherless/sadai-mrec-qwen2.5-3B-v0.0.1|sadai-mrec-qwen2.5-3b-v0.0.1|sadaisystems/sadai-mrec-qwen2.5-3B-v0.0.1|C|1.0,5.0|32768,4096|V|-|sadaisystems/sadai-mrec-qwen2.5-3B-v0.0.1 model|N
featherless/Llama-3.2-3B-Instruct-gradiend-gender-debiased|-|aieng-lab/Llama-3.2-3B-Instruct-gradiend-gender-debiased|C|1.0,5.0|32768,4096|-|-|aieng-lab/Llama-3.2-3B-Instruct-gradiend-gender-debiased model|N
featherless/Qwen3-1.7B-Base_Joint.01.00_2e-5|qwen3-1.7b-base_joint.01.00_2e-5|CohenQu/Qwen3-1.7B-Base_Joint.01.00_2e-5|C|1.0,5.0|40960,4096|-|-|CohenQu/Qwen3-1.7B-Base_Joint.01.00_2e-5 model|N
featherless/TinyPi-chat-V1|tinypi-chat|Kittykat924/TinyPi-chat-V1|C|1.0,5.0|2048,2048|V|-|Kittykat924/TinyPi-chat-V1 model|N
featherless/p1-v1|p1|abcorrea/p1-v1|C|1.0,5.0|40960,4096|V|-|abcorrea/p1-v1 model|N
featherless/sqft-phi-3-mini-4k-60-base|sqft-phi-3-mini-4k-60-base|IntelLabs/sqft-phi-3-mini-4k-60-base|C|1.0,5.0|4096,4096|-|-|IntelLabs/sqft-phi-3-mini-4k-60-base model|N
featherless/qwen2.5_0.5b_base_scratch_reasoning_finetune|-|minhtuan7akp/qwen2.5_0.5b_base_scratch_reasoning_finetune|C|1.0,5.0|32768,4096|K|-|minhtuan7akp/qwen2.5_0.5b_base_scratch_reasoning_finetune model|N
featherless/sqft-phi-3-mini-4k-30-base|sqft-phi-3-mini-4k-30-base|IntelLabs/sqft-phi-3-mini-4k-30-base|C|1.0,5.0|4096,4096|-|-|IntelLabs/sqft-phi-3-mini-4k-30-base model|N
featherless/Qwen-2.5-7b-tokenizer|qwen-2.5-7b-tokenizer|hamishivi/Qwen-2.5-7b-tokenizer|C|1.0,5.0|131072,4096|-|-|hamishivi/Qwen-2.5-7b-tokenizer model|N
featherless/qwen3-4b-sft-pretrained|qwen3-4b-sft-pretrained|quelmap/qwen3-4b-sft-pretrained|C|1.0,5.0|40960,4096|-|-|quelmap/qwen3-4b-sft-pretrained model|N
featherless/sqft-phi-3-mini-4k-40-base|sqft-phi-3-mini-4k-40-base|IntelLabs/sqft-phi-3-mini-4k-40-base|C|1.0,5.0|4096,4096|-|-|IntelLabs/sqft-phi-3-mini-4k-40-base model|N
featherless/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-0-beta-0.8-2-epochs|-|kowndinya23/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-0-beta-0.8-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-0-beta-0.8-2-epochs model|N
featherless/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.6-beta-0-2-epochs|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.6-beta-0-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.6-beta-0-2-epochs model|N
featherless/Llama-3.2-1B-Instruct-Chat-sft|llama-3.2-1b-instruct-chat-sft|Minhhltse150305/Llama-3.2-1B-Instruct-Chat-sft|C|1.0,5.0|32768,4096|-|-|Minhhltse150305/Llama-3.2-1B-Instruct-Chat-sft model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_enormous_bobcat|-|Angi54/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_enormous_bobcat|C|1.0,5.0|32768,4096|-|-|Angi54/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lazy_enormous_bobcat model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_secretive_moose|-|waldreg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_secretive_moose|C|1.0,5.0|32768,4096|-|-|waldreg/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-melodic_secretive_moose model|N
featherless/tucano_voraz_cwb-com-prompts-apr-04|tucano_voraz_cwb-com-prompts-apr-04|arthrod/tucano_voraz_cwb-com-prompts-apr-04|C|1.0,5.0|32768,4096|-|-|arthrod/tucano_voraz_cwb-com-prompts-apr-04 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_tall_pheasant|-|dev-ranjan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_tall_pheasant|C|1.0,5.0|32768,4096|-|-|dev-ranjan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_tall_pheasant model|N
featherless/llama_3epoch|llama_3epoch|fiveflow/llama_3epoch|C|1.0,5.0|32768,4096|-|-|fiveflow/llama_3epoch model|N
featherless/Llama-Doctor-3.2-3B-Instruct|llama-doctor-3.2-3b-instruct|prithivMLmods/Llama-Doctor-3.2-3B-Instruct|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Llama-Doctor-3.2-3B-Instruct model|N
featherless/try|try|bralynn/try|C|1.0,5.0|32768,4096|-|-|bralynn/try model|N
featherless/Llama-3.2-3B-Instruct_multilingual|llama-3.2-3b-instruct_multilingual|MergeBench/Llama-3.2-3B-Instruct_multilingual|C|1.0,5.0|32768,4096|-|-|MergeBench/Llama-3.2-3B-Instruct_multilingual model|N
featherless/gemma-3-finetune|gemma-3-finetune|hridyansh22/gemma-3-finetune|C|1.0,5.0|32768,4096|-|-|hridyansh22/gemma-3-finetune model|N
featherless/gemma-2b-sql-finetuned|gemma-2b-sql-finetuned|AdamGalczynski/gemma-2b-sql-finetuned|C|1.0,5.0|8192,4096|-|-|AdamGalczynski/gemma-2b-sql-finetuned model|N
featherless/Josiefied-Qwen3-14B-abliterated-v3|josiefied-qwen3-14b-abliterated|Goekdeniz-Guelmez/Josiefied-Qwen3-14B-abliterated-v3|C|1.0,5.0|32768,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-14B-abliterated-v3 model|N
featherless/uli_b6|uli_b6|Sharing22/uli_b6|C|1.0,5.0|32768,4096|-|-|Sharing22/uli_b6 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_tame_alpaca|-|p2g3ads4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_tame_alpaca|C|1.0,5.0|32768,4096|-|-|p2g3ads4/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-camouflaged_tame_alpaca model|N
featherless/fee17|fee17|memevis/fee17|C|1.0,5.0|32768,4096|-|-|memevis/fee17 model|N
featherless/TinyLlama-3T-Cinder-v1.3|tinyllama-3t-cinder|Josephgflowers/TinyLlama-3T-Cinder-v1.3|C|1.0,5.0|2048,2048|V|-|Josephgflowers/TinyLlama-3T-Cinder-v1.3 model|N
featherless/TinySlime-1.1B-Chat-v1.0|tinyslime-1.1b-chat|2121-8/TinySlime-1.1B-Chat-v1.0|C|1.0,5.0|2048,2048|V|-|2121-8/TinySlime-1.1B-Chat-v1.0 model|N
featherless/llama3.2-3b-dpo-vanilla-OLD|llama3.2-3b-dpo-vanilla-old|obiwit/llama3.2-3b-dpo-vanilla-OLD|C|1.0,5.0|32768,4096|V|-|obiwit/llama3.2-3b-dpo-vanilla-OLD model|N
featherless/Qwen3-4B-chess-10K-single-move-sft-2025-05-06-red-short-cot-filter-2k-lr-3e-5-checkpoint-110|-|odedovadia/Qwen3-4B-chess-10K-single-move-sft-2025-05-06-red-short-cot-filter-2k-lr-3e-5-checkpoint-110|C|1.0,5.0|40960,4096|-|-|odedovadia/Qwen3-4B-chess-10K-single-move-sft-2025-05-06-red-short-cot-filter-2k-lr-3e-5-checkpoint-110 model|N
featherless/qwen2.5-0.5B-coder|qwen2.5-0.5b-coder|deadcode99/qwen2.5-0.5B-coder|C|1.0,5.0|32768,4096|-|42.0,,,,,,,,,|deadcode99/qwen2.5-0.5B-coder model|N
featherless/uli_b4|uli_b4|Sharing22/uli_b4|C|1.0,5.0|32768,4096|-|-|Sharing22/uli_b4 model|N
featherless/EQuIP_3B|equip_3b|EQuIP-Queries/EQuIP_3B|C|1.0,5.0|32768,4096|-|-|EQuIP-Queries/EQuIP_3B model|N
featherless/Qwen2.5-1.5B-Open-R1-Distill|qwen2.5-1.5b-open-r1-distill|anna-ssi/Qwen2.5-1.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|anna-ssi/Qwen2.5-1.5B-Open-R1-Distill model|N
featherless/prefDpo|prefdpo|cmvan/prefDpo|C|1.0,5.0|131072,4096|-|-|cmvan/prefDpo model|N
featherless/Qwen2.5-3B-Instruct-GRPO-unsloth|qwen2.5-3b-instruct-grpo-unsloth|rasdani/Qwen2.5-3B-Instruct-GRPO-unsloth|C|1.0,5.0|32768,4096|-|-|rasdani/Qwen2.5-3B-Instruct-GRPO-unsloth model|N
featherless/uuu_b2|uuu_b2|Sharing22/uuu_b2|C|1.0,5.0|32768,4096|-|-|Sharing22/uuu_b2 model|N
featherless/Qwen3-4B-Base_fr_pt__0.0002_seed43|qwen3-4b-base_fr_pt__0.0002_seed43|joanna302/Qwen3-4B-Base_fr_pt__0.0002_seed43|C|1.0,5.0|40960,4096|-|-|joanna302/Qwen3-4B-Base_fr_pt__0.0002_seed43 model|N
featherless/aab_c5|aab_c5|Sharing22/aab_c5|C|1.0,5.0|32768,4096|-|-|Sharing22/aab_c5 model|N
featherless/Qwen2.5-0.5b-RBase|qwen2.5-0.5b-rbase|KingNish/Qwen2.5-0.5b-RBase|C|1.0,5.0|32768,4096|-|-|KingNish/Qwen2.5-0.5b-RBase model|N
featherless/Phi-3.5-mini-instruct|phi-3.5-mini-instruct|Lexius/Phi-3.5-mini-instruct|C|1.0,5.0|4096,4096|-|-|Lexius/Phi-3.5-mini-instruct model|N
featherless/2d_data_test_20250605_101448|2d_data_test_20250605_101448|gradientrouting-spar/2d_data_test_20250605_101448|C|1.0,5.0|8192,4096|-|-|gradientrouting-spar/2d_data_test_20250605_101448 model|N
featherless/gemma-2-it-tw|gemma-2-it-tw|elliotthwang/gemma-2-it-tw|C|1.0,5.0|8192,4096|-|-|elliotthwang/gemma-2-it-tw model|N
featherless/Llama-3.2-3B-Fluxed|llama-3.2-3b-fluxed|mlx-community/Llama-3.2-3B-Fluxed|C|1.0,5.0|32768,4096|-|-|mlx-community/Llama-3.2-3B-Fluxed model|N
featherless/Jan-nano-bf16|jan-nano-bf16|maxlabs-ai/Jan-nano-bf16|C|1.0,5.0|40960,4096|-|-|maxlabs-ai/Jan-nano-bf16 model|N
featherless/text-to-cypher-Gemma-3-27B-Instruct-2025.04.0|-|neo4j/text-to-cypher-Gemma-3-27B-Instruct-2025.04.0|C|1.0,5.0|32768,4096|-|-|neo4j/text-to-cypher-Gemma-3-27B-Instruct-2025.04.0 model|N
featherless/G1-Direct-SFT-3B|g1-direct-sft-3b|PKU-ML/G1-Direct-SFT-3B|C|1.0,5.0|32768,4096|-|-|PKU-ML/G1-Direct-SFT-3B model|N
featherless/Qwen2-0.5B-v32|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v32|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v32 model|N
featherless/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-1-beta-0.6-2-epochs|-|kowndinya23/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-1-beta-0.6-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-tulu-150K-llama-3-3b-1-epochs-alpha-1-beta-0.6-2-epochs model|N
featherless/Gemma-2b_V03_BRONCO_CARDIO_SUMMARY_CATALOG|-|BachelorThesis/Gemma-2b_V03_BRONCO_CARDIO_SUMMARY_CATALOG|C|1.0,5.0|8192,4096|-|-|BachelorThesis/Gemma-2b_V03_BRONCO_CARDIO_SUMMARY_CATALOG model|N
featherless/Omega-Darker_The-Final-Directive-14B|omega-darker_the-final-directive-14b|ReadyArt/Omega-Darker_The-Final-Directive-14B|C|1.0,5.0|131072,4096|-|-|ReadyArt/Omega-Darker_The-Final-Directive-14B model|N
featherless/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.8-beta-0-2-epochs|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.8-beta-0-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.8-beta-0-2-epochs model|N
featherless/test_model|test_model|pavan-naik/test_model|C|1.0,5.0|32768,4096|-|-|pavan-naik/test_model model|N
featherless/Extrapolis-4B-SFT|extrapolis-4b-sft|qingy2024/Extrapolis-4B-SFT|C|1.0,5.0|40960,4096|-|-|qingy2024/Extrapolis-4B-SFT model|N
featherless/Fin-o1-8B|fin-o1-8b|TheFinAI/Fin-o1-8B|C|1.0,5.0|32768,4096|-|-|TheFinAI/Fin-o1-8B model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_untamed_wolf|-|AlexCrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_untamed_wolf|C|1.0,5.0|32768,4096|-|-|AlexCrypto/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-powerful_untamed_wolf model|N
featherless/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.4-beta-0.2-2-epochs|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.4-beta-0.2-2-epochs|C|1.0,5.0|32768,4096|-|-|kowndinya23/ultrafeedback_binarized-alpaca-llama-3-1b-2-epochs-alpha-0.4-beta-0.2-2-epochs model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scurrying_barracuda|-|starfin138/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scurrying_barracuda|C|1.0,5.0|32768,4096|-|-|starfin138/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-jumping_scurrying_barracuda model|N
featherless/gemma-2b-finetuned-model-llama-factory|gemma-2b-finetuned-model-llama-factory|alex64noh/gemma-2b-finetuned-model-llama-factory|C|1.0,5.0|8192,4096|-|-|alex64noh/gemma-2b-finetuned-model-llama-factory model|N
featherless/hermes-llama3-roleplay-2000-v3|hermes-llama3-roleplay-2000|Deev124/hermes-llama3-roleplay-2000-v3|C|1.0,5.0|32768,4096|V|-|Deev124/hermes-llama3-roleplay-2000-v3 model|N
featherless/qwentrain0.5b|qwentrain0.5b|sorgfresser/qwentrain0.5b|C|1.0,5.0|32768,4096|-|-|sorgfresser/qwentrain0.5b model|N
featherless/eacc_this_will_work|eacc_this_will_work|OwOOwO/eacc_this_will_work|C|1.0,5.0|8192,4096|-|-|OwOOwO/eacc_this_will_work model|N
featherless/gemma2B-r64-v2|gemma2b-r64|nem012/gemma2B-r64-v2|C|1.0,5.0|8192,4096|V|-|nem012/gemma2B-r64-v2 model|N
featherless/llama3ClinicalTrialFinalFineTuned|llama3clinicaltrialfinalfinetuned|peachfawn/llama3ClinicalTrialFinalFineTuned|C|1.0,5.0|32768,4096|-|-|peachfawn/llama3ClinicalTrialFinalFineTuned model|N
featherless/0ce6d2aa|0ce6d2aa|JeanM45/0ce6d2aa|C|1.0,5.0|2048,2048|-|-|JeanM45/0ce6d2aa model|N
featherless/Llama-3.2-3B|llama-3.2-3b|alpindale/Llama-3.2-3B|C|1.0,5.0|32768,4096|-|-|alpindale/Llama-3.2-3B model|N
featherless/Phi-3-mini-4k-segment-ppo-60k|phi-3-mini-4k-segment-ppo-60k|hao12345678/Phi-3-mini-4k-segment-ppo-60k|C|1.0,5.0|4096,4096|-|-|hao12345678/Phi-3-mini-4k-segment-ppo-60k model|N
featherless/atc-llama|atc-llama|Sang-Buster/atc-llama|C|1.0,5.0|32768,4096|-|-|Sang-Buster/atc-llama model|N
featherless/Mellum-4b-base-mlx-fp16|mellum-4b-base-mlx-fp16|cnfusion/Mellum-4b-base-mlx-fp16|C|1.0,5.0|32768,4096|-|-|cnfusion/Mellum-4b-base-mlx-fp16 model|N
featherless/alfa5|alfa5|deswaq/alfa5|C|1.0,5.0|32768,4096|-|-|deswaq/alfa5 model|N
featherless/phi4-mini-dolly-15k-mlx|phi4-mini-dolly-15k-mlx|ianphil/phi4-mini-dolly-15k-mlx|C|1.0,5.0|131072,4096|-|-|ianphil/phi4-mini-dolly-15k-mlx model|N
featherless/Llama-3.2-3B_3x3_mix_position|llama-3.2-3b_3x3_mix_position|kenken6696/Llama-3.2-3B_3x3_mix_position|C|1.0,5.0|32768,4096|-|-|kenken6696/Llama-3.2-3B_3x3_mix_position model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_lazy_bee|-|dev-ranjan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_lazy_bee|C|1.0,5.0|32768,4096|-|-|dev-ranjan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-roaring_lazy_bee model|N
featherless/1.5B-value-iteration_4|1.5b-value-iteration_4|AngelRaychev/1.5B-value-iteration_4|C|1.0,5.0|131072,4096|V|-|AngelRaychev/1.5B-value-iteration_4 model|N
featherless/TwinLlama-3.2-1B-DPO|twinllama-3.2-1b-dpo|choco-conoz/TwinLlama-3.2-1B-DPO|C|1.0,5.0|32768,4096|-|-|choco-conoz/TwinLlama-3.2-1B-DPO model|N
featherless/juh12|juh12|deswaq/juh12|C|1.0,5.0|32768,4096|-|-|deswaq/juh12 model|N
featherless/gemma3_medical_finetune_LoRA_merged|gemma3_medical_finetune_lora_merged|ArindamSingh/gemma3_medical_finetune_LoRA_merged|C|1.0,5.0|32768,4096|-|-|ArindamSingh/gemma3_medical_finetune_LoRA_merged model|N
featherless/Qwen3-4B-Base_fr_pt__0.0002|qwen3-4b-base_fr_pt__0.0002|joanna302/Qwen3-4B-Base_fr_pt__0.0002|C|1.0,5.0|40960,4096|-|-|joanna302/Qwen3-4B-Base_fr_pt__0.0002 model|N
featherless/Llama3.2-3b-TrSummarization-unsloth-16bit|-|anilguven/Llama3.2-3b-TrSummarization-unsloth-16bit|C|1.0,5.0|32768,4096|-|-|anilguven/Llama3.2-3b-TrSummarization-unsloth-16bit model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_stinky_walrus|-|Ameb1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_stinky_walrus|C|1.0,5.0|32768,4096|-|-|Ameb1/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_stinky_walrus model|N
featherless/merged_model_WOQ_epoch961|merged_model_woq_epoch961|Hsianchengfun/merged_model_WOQ_epoch961|C|1.0,5.0|32768,4096|-|-|Hsianchengfun/merged_model_WOQ_epoch961 model|N
featherless/llama-3.2-1b-cfr-merged|llama-3.2-1b-cfr-merged|MedinaArmando/llama-3.2-1b-cfr-merged|C|1.0,5.0|32768,4096|-|-|MedinaArmando/llama-3.2-1b-cfr-merged model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_alert_turkey|-|bungamawar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_alert_turkey|C|1.0,5.0|32768,4096|-|-|bungamawar/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_alert_turkey model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_singing_flea|-|AirSintez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_singing_flea|C|1.0,5.0|32768,4096|-|-|AirSintez/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-timid_singing_flea model|N
featherless/cream-phi-2-v0.2|cream-phi-2|BeaverLegacy/cream-phi-2-v0.2|L|1.0,5.0|2048,2048|V|-|BeaverLegacy/cream-phi-2-v0.2 model|N
featherless/gemma-1.1-2b-it_DIBT_prompts_ranked_En_Es_orpo_V2|-|NickyNicky/gemma-1.1-2b-it_DIBT_prompts_ranked_En_Es_orpo_V2|C|1.0,5.0|8192,4096|-|-|NickyNicky/gemma-1.1-2b-it_DIBT_prompts_ranked_En_Es_orpo_V2 model|N
featherless/LLaMa_3.2_3B_Catalysts|llama_3.2_3b_catalysts|qingy2024/LLaMa_3.2_3B_Catalysts|C|1.0,5.0|32768,4096|-|-|qingy2024/LLaMa_3.2_3B_Catalysts model|N
featherless/Tiny-Agent-a-0.5B|tiny-agent-a-0.5b|driaforall/Tiny-Agent-a-0.5B|C|1.0,5.0|32768,4096|-|-|driaforall/Tiny-Agent-a-0.5B model|N
featherless/qwen2.5-3b-scratch_11e_kmap|qwen2.5-3b-scratch_11e_kmap|duchao1210/qwen2.5-3b-scratch_11e_kmap|C|1.0,5.0|32768,4096|-|-|duchao1210/qwen2.5-3b-scratch_11e_kmap model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_savage_caribou|-|NODEGALA/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_savage_caribou|C|1.0,5.0|32768,4096|-|-|NODEGALA/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-giant_savage_caribou model|N
featherless/DPO_MCQA_model_3_05_05_08|dpo_mcqa_model_3_05_05_08|albertfares/DPO_MCQA_model_3_05_05_08|C|1.0,5.0|40960,4096|-|-|albertfares/DPO_MCQA_model_3_05_05_08 model|N
featherless/Llama-3.2-1B-Instruct-cardio-semi-synth-annotation_r1_O1_f1_LT_zcr_bf16|-|2ndBestKiller/Llama-3.2-1B-Instruct-cardio-semi-synth-annotation_r1_O1_f1_LT_zcr_bf16|C|1.0,5.0|32768,4096|-|-|2ndBestKiller/Llama-3.2-1B-Instruct-cardio-semi-synth-annotation_r1_O1_f1_LT_zcr_bf16 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_dappled_giraffe|-|astardusta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_dappled_giraffe|C|1.0,5.0|32768,4096|-|-|astardusta/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_dappled_giraffe model|N
featherless/smut_llama_8b_smut_2k_romance_1k_merged|smut_llama_8b_smut_2k_romance_1k_merged|jspr/smut_llama_8b_smut_2k_romance_1k_merged|C|1.0,5.0|8192,4096|-|-|jspr/smut_llama_8b_smut_2k_romance_1k_merged model|N
featherless/gemma-3-1b-it-0.01-H|gemma-3-1b-it-0.01-h|akhadangi/gemma-3-1b-it-0.01-H|C|1.0,5.0|32768,4096|-|-|akhadangi/gemma-3-1b-it-0.01-H model|N
featherless/Llama-3.2-3B-Instruct_countdown2345_grpo_balanced_0.5_0.5_True_1600|-|citrinegui/Llama-3.2-3B-Instruct_countdown2345_grpo_balanced_0.5_0.5_True_1600|C|1.0,5.0|32768,4096|-|-|citrinegui/Llama-3.2-3B-Instruct_countdown2345_grpo_balanced_0.5_0.5_True_1600 model|N
featherless/Llama-3.2-3B_safety|llama-3.2-3b_safety|MergeBench/Llama-3.2-3B_safety|C|1.0,5.0|32768,4096|-|-|MergeBench/Llama-3.2-3B_safety model|N
featherless/Llama-3.2-3B-Instruct_coding|llama-3.2-3b-instruct_coding|MergeBench/Llama-3.2-3B-Instruct_coding|C|1.0,5.0|32768,4096|-|-|MergeBench/Llama-3.2-3B-Instruct_coding model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_burrowing_sealion|-|cryptobros/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_burrowing_sealion|C|1.0,5.0|32768,4096|-|-|cryptobros/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-endangered_burrowing_sealion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_rugged_wallaby|-|Tina6787/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_rugged_wallaby|C|1.0,5.0|32768,4096|-|-|Tina6787/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_rugged_wallaby model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_sharp_rhino|-|SIGTIR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_sharp_rhino|C|1.0,5.0|32768,4096|-|-|SIGTIR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hulking_sharp_rhino model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_tawny_tapir|-|warlockmage/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_tawny_tapir|C|1.0,5.0|32768,4096|-|-|warlockmage/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_tawny_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_colorful_llama|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_colorful_llama|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_colorful_llama model|N
featherless/gemma-ko-2b-instruct-v0.51|gemma-ko-2b-instruct|lemon-mint/gemma-ko-2b-instruct-v0.51|C|1.0,5.0|8192,4096|V|-|lemon-mint/gemma-ko-2b-instruct-v0.51 model|N
featherless/tinyllama-coder-py-v21|tinyllama-coder-py|Ramikan-BR/tinyllama-coder-py-v21|C|1.0,5.0|2048,2048|V|-|Ramikan-BR/tinyllama-coder-py-v21 model|N
featherless/purpur2|purpur2|biustnaspust/purpur2|C|1.0,5.0|32768,4096|-|-|biustnaspust/purpur2 model|N
featherless/Qwen2.5-1.5B-Open-R1-Distill|qwen2.5-1.5b-open-r1-distill|Monika2025/Qwen2.5-1.5B-Open-R1-Distill|C|1.0,5.0|131072,4096|-|-|Monika2025/Qwen2.5-1.5B-Open-R1-Distill model|N
featherless/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr4e-05_wd0.01_epoch10|-|open-unlearning/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr4e-05_wd0.01_epoch10|C|1.0,5.0|32768,4096|-|-|open-unlearning/neg_tofu_Llama-3.2-1B-Instruct_retain90_lr4e-05_wd0.01_epoch10 model|N
featherless/Llama-3.2-1B-Turkish-Instruct|llama-3.2-1b-turkish-instruct|hasancanonder/Llama-3.2-1B-Turkish-Instruct|C|1.0,5.0|32768,4096|-|-|hasancanonder/Llama-3.2-1B-Turkish-Instruct model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_scavenging_tapir|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_scavenging_tapir|C|1.0,5.0|32768,4096|-|-|0xfader/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scampering_scavenging_tapir model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pudgy_dove|-|orth0gonal/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pudgy_dove|C|1.0,5.0|32768,4096|-|-|orth0gonal/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-secretive_pudgy_dove model|N
featherless/email_header_extractor|email_header_extractor|IoakeimE/email_header_extractor|C|1.0,5.0|4096,4096|-|-|IoakeimE/email_header_extractor model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_untamed_dolphin|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_untamed_dolphin|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-docile_untamed_dolphin model|N
featherless/Qwen2-0.5B-v22|qwen2-0.5b|Ramikan-BR/Qwen2-0.5B-v22|C|1.0,5.0|131072,4096|V|-|Ramikan-BR/Qwen2-0.5B-v22 model|N
featherless/gemma2b_it_senior|gemma2b_it_senior|hyokwan/gemma2b_it_senior|C|1.0,5.0|8192,4096|-|-|hyokwan/gemma2b_it_senior model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_sneaky_mule|-|AlexCryptan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_sneaky_mule|C|1.0,5.0|32768,4096|-|-|AlexCryptan/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hardy_sneaky_mule model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_marine_slug|-|ekohardc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_marine_slug|C|1.0,5.0|32768,4096|-|-|ekohardc/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_marine_slug model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_leggy_ostrich|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_leggy_ostrich|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-aquatic_leggy_ostrich model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_reptilian_ape|-|crepsly/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_reptilian_ape|C|1.0,5.0|32768,4096|-|-|crepsly/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-gilded_reptilian_ape model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_rough_camel|-|0xshaf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_rough_camel|C|1.0,5.0|32768,4096|-|-|0xshaf/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-untamed_rough_camel model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_mute_cougar|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_mute_cougar|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-agile_mute_cougar model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_camouflaged_opossum|-|dream300100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_camouflaged_opossum|C|1.0,5.0|32768,4096|-|-|dream300100/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-swift_camouflaged_opossum model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_grassy_dog|-|staffpjp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_grassy_dog|C|1.0,5.0|32768,4096|-|-|staffpjp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_grassy_dog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_alert_bear|-|Cofieduodu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_alert_bear|C|1.0,5.0|32768,4096|-|-|Cofieduodu/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_alert_bear model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_frisky_baboon|-|bvladislava515/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_frisky_baboon|C|1.0,5.0|32768,4096|-|-|bvladislava515/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tiny_frisky_baboon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_scavenging_starfish|-|Astral75675/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_scavenging_starfish|C|1.0,5.0|32768,4096|-|-|Astral75675/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-bristly_scavenging_starfish model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_curious_newt|-|OkiBayrm/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_curious_newt|C|1.0,5.0|32768,4096|-|-|OkiBayrm/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lanky_curious_newt model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_bold_lynx|-|SIGTIR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_bold_lynx|C|1.0,5.0|32768,4096|-|-|SIGTIR/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-wily_bold_lynx model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_gregarious_badger|-|ataj1192/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_gregarious_badger|C|1.0,5.0|32768,4096|-|-|ataj1192/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-howling_gregarious_badger model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_nasty_dolphin|-|baryen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_nasty_dolphin|C|1.0,5.0|32768,4096|-|-|baryen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_nasty_dolphin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_nimble_horse|-|WHDtyrael/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_nimble_horse|C|1.0,5.0|32768,4096|-|-|WHDtyrael/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-leaping_nimble_horse model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_wise_fly|-|Mioku/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_wise_fly|C|1.0,5.0|32768,4096|-|-|Mioku/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-beaked_wise_fly model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_timid_albatross|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_timid_albatross|C|1.0,5.0|32768,4096|-|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-diving_timid_albatross model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_powerful_alligator|-|Alinka9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_powerful_alligator|C|1.0,5.0|32768,4096|-|-|Alinka9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-webbed_powerful_alligator model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_yawning_aardvark|-|godijef/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_yawning_aardvark|C|1.0,5.0|32768,4096|-|-|godijef/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-sniffing_yawning_aardvark model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_mangy_puffin|-|aglover1221/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_mangy_puffin|C|1.0,5.0|32768,4096|-|-|aglover1221/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-clawed_mangy_puffin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_sizable_stork|-|oxkk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_sizable_stork|C|1.0,5.0|32768,4096|-|-|oxkk/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-prehistoric_sizable_stork model|N
featherless/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-placid_timid_dog|-|ryokuchasan3333333/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-placid_timid_dog|C|1.0,5.0|131072,4096|-|-|ryokuchasan3333333/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-placid_timid_dog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_savage_cobra|-|Saulrosen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_savage_cobra|C|1.0,5.0|32768,4096|-|-|Saulrosen/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-huge_savage_cobra model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_shiny_rat|-|Bergoliver/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_shiny_rat|C|1.0,5.0|32768,4096|-|-|Bergoliver/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-fast_shiny_rat model|N
featherless/fee14|fee14|memevis/fee14|C|1.0,5.0|32768,4096|-|-|memevis/fee14 model|N
featherless/Qwen3-4B-SFT-KuhnPoker-step_200|qwen3-4b-sft-kuhnpoker-step_200|simonycl/Qwen3-4B-SFT-KuhnPoker-step_200|C|1.0,5.0|40960,4096|-|-|simonycl/Qwen3-4B-SFT-KuhnPoker-step_200 model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_mighty_chicken|-|MrAnderson890719/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_mighty_chicken|C|1.0,5.0|32768,4096|-|-|MrAnderson890719/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-purring_mighty_chicken model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_lanky_caribou|-|cozymon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_lanky_caribou|C|1.0,5.0|32768,4096|-|-|cozymon/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-dense_lanky_caribou model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_pale_dolphin|-|nekomajin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_pale_dolphin|C|1.0,5.0|32768,4096|-|-|nekomajin/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-spotted_pale_dolphin model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_subtle_chameleon|-|Iva4454/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_subtle_chameleon|C|1.0,5.0|32768,4096|-|-|Iva4454/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stubby_subtle_chameleon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_wiry_deer|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_wiry_deer|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feathered_wiry_deer model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pensive_warthog|-|Galacticqwerty/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pensive_warthog|C|1.0,5.0|32768,4096|-|-|Galacticqwerty/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-armored_pensive_warthog model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_elusive_dinosaur|-|Sky67856785/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_elusive_dinosaur|C|1.0,5.0|32768,4096|-|-|Sky67856785/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tough_elusive_dinosaur model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_padded_ant|-|Sweatvr34/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_padded_ant|C|1.0,5.0|32768,4096|-|-|Sweatvr34/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-flapping_padded_ant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_sniffing_cockroach|-|NORI7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_sniffing_cockroach|C|1.0,5.0|32768,4096|-|-|NORI7/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-crested_sniffing_cockroach model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_hairy_lion|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_hairy_lion|C|1.0,5.0|32768,4096|-|-|haedahae/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-hoarse_hairy_lion model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_prehistoric_anaconda|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_prehistoric_anaconda|C|1.0,5.0|32768,4096|-|-|chinna6/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-rough_prehistoric_anaconda model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_quick_pigeon|-|Nebula65/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_quick_pigeon|C|1.0,5.0|32768,4096|-|-|Nebula65/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_quick_pigeon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_miniature_ant|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_miniature_ant|C|1.0,5.0|32768,4096|-|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-patterned_miniature_ant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_dormant_buffalo|-|karansharma1994/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_dormant_buffalo|C|1.0,5.0|32768,4096|-|-|karansharma1994/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-scurrying_dormant_buffalo model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_nasty_pheasant|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_nasty_pheasant|C|1.0,5.0|32768,4096|-|-|razor534/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-stocky_nasty_pheasant model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_twitchy_macaw|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_twitchy_macaw|C|1.0,5.0|32768,4096|-|-|gosrak/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-shiny_twitchy_macaw model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_marine_capybara|-|raja887/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_marine_capybara|C|1.0,5.0|32768,4096|-|-|raja887/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-tame_marine_capybara model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_poisonous_otter|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_poisonous_otter|C|1.0,5.0|32768,4096|-|-|mcryptoone/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-slender_poisonous_otter model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_termite|-|madmaxajp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_termite|C|1.0,5.0|32768,4096|-|-|madmaxajp/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-waddling_tricky_termite model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_woolly_salmon|-|AnotherMiner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_woolly_salmon|C|1.0,5.0|32768,4096|-|-|AnotherMiner/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-foxy_woolly_salmon model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mottled_stingray|-|Alinka9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mottled_stingray|C|1.0,5.0|32768,4096|-|-|Alinka9/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-barky_mottled_stingray model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_curious_elk|-|skyxyz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_curious_elk|C|1.0,5.0|32768,4096|-|-|skyxyz/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-feline_curious_elk model|N
featherless/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-reptilian_humming_mongoose|-|0xtinuviel/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-reptilian_humming_mongoose|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-reptilian_humming_mongoose model|N
featherless/AceInstruct-1.5B-Gensyn-Swarm-vigilant_nocturnal_mink|-|0xtinuviel/AceInstruct-1.5B-Gensyn-Swarm-vigilant_nocturnal_mink|C|1.0,5.0|131072,4096|V|-|0xtinuviel/AceInstruct-1.5B-Gensyn-Swarm-vigilant_nocturnal_mink model|N
featherless/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_subtle_buffalo|-|bonibona/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_subtle_buffalo|C|1.0,5.0|32768,4096|-|-|bonibona/Qwen2.5-0.5B-Instruct-Gensyn-Swarm-lithe_subtle_buffalo model|N
featherless/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-tough_arctic_lion|-|0xtinuviel/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-tough_arctic_lion|C|1.0,5.0|131072,4096|-|-|0xtinuviel/Qwen2.5-1.5B-Instruct-Gensyn-Swarm-tough_arctic_lion model|N
featherless/AceInstruct-1.5B-Gensyn-Swarm-armored_mighty_quail|-|0xtinuviel/AceInstruct-1.5B-Gensyn-Swarm-armored_mighty_quail|C|1.0,5.0|131072,4096|-|-|0xtinuviel/AceInstruct-1.5B-Gensyn-Swarm-armored_mighty_quail model|N
featherless/gemma-3-4b-pt|gemma-3-4b-pt|axolotl-mirrors/gemma-3-4b-pt|C|1.0,5.0|32768,4096|-|-|axolotl-mirrors/gemma-3-4b-pt model|N
featherless/medgemma-4b-it|medgemma-4b-it|unsloth/medgemma-4b-it|C|1.0,5.0|32768,4096|-|-|unsloth/medgemma-4b-it model|N
featherless/gemma-3-4b-it-qat-q4_0-unquantized|gemma-3-4b-it-qat-q4_0-unquantized|google/gemma-3-4b-it-qat-q4_0-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-4b-it-qat-q4_0-unquantized model|N
featherless/gemma-3-12b-it-qat|gemma-3-12b-it-qat|unsloth/gemma-3-12b-it-qat|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-12b-it-qat model|N
featherless/google-gemma-3-27b-it|google-gemma-3-27b-it|context-labs/google-gemma-3-27b-it|C|1.0,5.0|32768,4096|-|-|context-labs/google-gemma-3-27b-it model|N
featherless/gemma-3-12b-pt|gemma-3-12b-pt|unsloth/gemma-3-12b-pt|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-3-12b-pt model|N
featherless/mistral-grpo-if-500-0502|mistral-grpo-if-500-0502|AlexHung29629/mistral-grpo-if-500-0502|C|1.0,5.0|32768,4096|-|-|AlexHung29629/mistral-grpo-if-500-0502 model|N
featherless/gemma-3-12b-it-abliterated|gemma-3-12b-it-abliterated|mlabonne/gemma-3-12b-it-abliterated|C|1.0,5.0|32768,4096|-|-|mlabonne/gemma-3-12b-it-abliterated model|N
featherless/Mistral-Small-3.2-24B-Instruct-2506|mistral-small-3.2-24b-instruct-2506|ZeroAgency/Mistral-Small-3.2-24B-Instruct-2506|C|1.0,5.0|32768,4096|-|-|ZeroAgency/Mistral-Small-3.2-24B-Instruct-2506 model|N
featherless/Magistral-Small-2506-Vision|magistral-small-2506-vision|OptimusePrime/Magistral-Small-2506-Vision|C|1.0,5.0|32768,4096|V|-|OptimusePrime/Magistral-Small-2506-Vision model|N
featherless/gemma-3-27b-lenientchatfix|gemma-3-27b-lenientchatfix|m8than/gemma-3-27b-lenientchatfix|C|1.0,5.0|32768,4096|-|-|m8than/gemma-3-27b-lenientchatfix model|N
featherless/demo5-VLM-Gemma3-Entity|demo5-vlm-gemma3-entity|314e/demo5-VLM-Gemma3-Entity|C|1.0,5.0|32768,4096|V|-|314e/demo5-VLM-Gemma3-Entity model|N
featherless/gemma3-27b-abliterated-dpo|gemma3-27b-abliterated-dpo|summykai/gemma3-27b-abliterated-dpo|C|1.0,5.0|32768,4096|-|-|summykai/gemma3-27b-abliterated-dpo model|N
featherless/octo-net|octo-net|NexaAI/octo-net|C|1.0,5.0|4096,4096|-|-|NexaAI/octo-net model|N
featherless/Xwin-MLewd-13B-V0.2|xwin-mlewd-13b|Undi95/Xwin-MLewd-13B-V0.2|C|1.0,5.0|4096,4096|V|-|Undi95/Xwin-MLewd-13B-V0.2 model|N
featherless/phi-2-super|phi-2-super|abacaj/phi-2-super|C|1.0,5.0|2048,2048|-|-|abacaj/phi-2-super model|N
featherless/Meta-Llama-3.1-8B-Claude|meta-llama-3.1-8b-claude|Undi95/Meta-Llama-3.1-8B-Claude|C|1.0,5.0|32768,4096|-|-|Undi95/Meta-Llama-3.1-8B-Claude model|N
featherless/Dria-Agent-a-3B|dria-agent-a-3b|driaforall/Dria-Agent-a-3B|C|1.0,5.0|32768,4096|-|-|driaforall/Dria-Agent-a-3B model|N
featherless/kappa-3-phi-abliterated|kappa-3-phi-abliterated|failspy/kappa-3-phi-abliterated|C|1.0,5.0|4096,4096|-|-|failspy/kappa-3-phi-abliterated model|N
featherless/raspberry-3B|raspberry-3b|arcee-ai/raspberry-3B|C|1.0,5.0|32768,4096|-|-|arcee-ai/raspberry-3B model|N
featherless/Tiger-Gemma-9B-v1|tiger-gemma-9b|TheDrummer/Tiger-Gemma-9B-v1|C|1.0,5.0|16384,4096|V|-|TheDrummer/Tiger-Gemma-9B-v1 model|N
featherless/TinyLlama-1.1B-32k|tinyllama-1.1b-32k|Doctor-Shotgun/TinyLlama-1.1B-32k|C|1.0,5.0|2048,2048|-|-|Doctor-Shotgun/TinyLlama-1.1B-32k model|N
featherless/Reasoning-0.5b|reasoning-0.5b|KingNish/Reasoning-0.5b|C|1.0,5.0|32768,4096|K|-|KingNish/Reasoning-0.5b model|N
featherless/Phi-3-Context-Obedient-RAG|phi-3-context-obedient-rag|TroyDoesAI/Phi-3-Context-Obedient-RAG|C|1.0,5.0|4096,4096|-|-|TroyDoesAI/Phi-3-Context-Obedient-RAG model|N
featherless/Chocolatine-3B-Instruct-DPO-Revised|chocolatine-3b-instruct-dpo-revised|jpacifico/Chocolatine-3B-Instruct-DPO-Revised|C|1.0,5.0|4096,4096|-|-|jpacifico/Chocolatine-3B-Instruct-DPO-Revised model|N
featherless/phi-2-orange-v2|phi-2-orange|rhysjones/phi-2-orange-v2|C|1.0,5.0|2048,2048|V|-|rhysjones/phi-2-orange-v2 model|N
featherless/german-r1|german-r1|malteos/german-r1|C|1.0,5.0|32768,4096|-|-|malteos/german-r1 model|N
featherless/NPC-LLM-3_8B|npc-llm-3_8b|Gigax/NPC-LLM-3_8B|C|1.0,5.0|4096,4096|-|-|Gigax/NPC-LLM-3_8B model|N
featherless/DeepSeek-R1-Distill-Qwen-1.5B|deepseek-r1-distill-qwen-1.5b|deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B|C|1.0,5.0|131072,4096|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B model|N
featherless/AQUA-1B|aqua-1b|KurmaAI/AQUA-1B|C|1.0,5.0|32768,4096|-|-|KurmaAI/AQUA-1B model|N
featherless/Spiral-Qwen3-4B|spiral-qwen3-4b|spiral-rl/Spiral-Qwen3-4B|C|1.0,5.0|40960,4096|-|-|spiral-rl/Spiral-Qwen3-4B model|N
featherless/Plesio-70B|plesio-70b|Delta-Vector/Plesio-70B|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Plesio-70B model|N
featherless/NextCoder-32B|nextcoder-32b|microsoft/NextCoder-32B|C|1.0,5.0|131072,4096|-|-|microsoft/NextCoder-32B model|N
featherless/OpenCodeReasoning-Nemotron-1.1-14B|opencodereasoning-nemotron-1.1-14b|nvidia/OpenCodeReasoning-Nemotron-1.1-14B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenCodeReasoning-Nemotron-1.1-14B model|N
featherless/OpenCodeReasoning-Nemotron-1.1-7B|opencodereasoning-nemotron-1.1-7b|nvidia/OpenCodeReasoning-Nemotron-1.1-7B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenCodeReasoning-Nemotron-1.1-7B model|N
featherless/Starfallen-Snow-Fantasy-24B-MS3.2-v0.0|starfallen-snow-fantasy-24b-ms3.2|LyraNovaHeart/Starfallen-Snow-Fantasy-24B-MS3.2-v0.0|C|1.0,5.0|32768,4096|V|-|LyraNovaHeart/Starfallen-Snow-Fantasy-24B-MS3.2-v0.0 model|N
featherless/L3.3-GeneticLemonade-Opus-70B|l3.3-geneticlemonade-opus-70b|zerofata/L3.3-GeneticLemonade-Opus-70B|C|1.0,5.0|32768,4096|-|-|zerofata/L3.3-GeneticLemonade-Opus-70B model|N
featherless/MS3.2-The-Omega-Directive-24B-Unslop-v2.0|ms3.2-the-omega-directive-24b-unslop|ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0|C|1.0,5.0|32768,4096|V|-|ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0 model|N
featherless/Devstral-Small-2507|devstral-small-2507|mistralai/Devstral-Small-2507|C|1.0,5.0|32768,4096|-|-|mistralai/Devstral-Small-2507 model|N
featherless/Kimina-Prover-72B|kimina-prover-72b|AI-MO/Kimina-Prover-72B|C|1.0,5.0|131072,4096|-|-|AI-MO/Kimina-Prover-72B model|N
featherless/Devstral-Small-2507|devstral-small-2507|unsloth/Devstral-Small-2507|C|1.0,5.0|32768,4096|-|-|unsloth/Devstral-Small-2507 model|N
featherless/Kimina-Prover-Distill-1.7B|kimina-prover-distill-1.7b|AI-MO/Kimina-Prover-Distill-1.7B|C|1.0,5.0|40960,4096|-|-|AI-MO/Kimina-Prover-Distill-1.7B model|N
featherless/Kimina-Prover-Distill-8B|kimina-prover-distill-8b|AI-MO/Kimina-Prover-Distill-8B|C|1.0,5.0|32768,4096|-|-|AI-MO/Kimina-Prover-Distill-8B model|N
featherless/MediPhi-Instruct|mediphi-instruct|microsoft/MediPhi-Instruct|C|1.0,5.0|4096,4096|-|-|microsoft/MediPhi-Instruct model|N
featherless/MediPhi|mediphi|microsoft/MediPhi|C|1.0,5.0|4096,4096|-|-|microsoft/MediPhi model|N
featherless/MediPhi-MedCode|mediphi-medcode|microsoft/MediPhi-MedCode|C|1.0,5.0|4096,4096|-|-|microsoft/MediPhi-MedCode model|N
featherless/Rei-24B-KTO|rei-24b-kto|Delta-Vector/Rei-24B-KTO|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Rei-24B-KTO model|N
featherless/Qwen3-4B-BiasExpert|qwen3-4b-biasexpert|EmergentMethods/Qwen3-4B-BiasExpert|C|1.0,5.0|40960,4096|-|-|EmergentMethods/Qwen3-4B-BiasExpert model|N
featherless/NFT-32B|nft-32b|nvidia/NFT-32B|C|1.0,5.0|131072,4096|-|-|nvidia/NFT-32B model|N
featherless/Trendyol-LLM-8B-T1|trendyol-llm-8b-t1|Trendyol/Trendyol-LLM-8B-T1|C|1.0,5.0|32768,4096|-|-|Trendyol/Trendyol-LLM-8B-T1 model|N
featherless/UIGEN-X-8B|uigen-x-8b|Tesslate/UIGEN-X-8B|C|1.0,5.0|32768,4096|-|-|Tesslate/UIGEN-X-8B model|N
featherless/OpenReasoning-Nemotron-32B|openreasoning-nemotron-32b|nvidia/OpenReasoning-Nemotron-32B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenReasoning-Nemotron-32B model|N
featherless/OpenReasoning-Nemotron-7B|openreasoning-nemotron-7b|nvidia/OpenReasoning-Nemotron-7B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenReasoning-Nemotron-7B model|N
featherless/OpenReasoning-Nemotron-14B|openreasoning-nemotron-14b|nvidia/OpenReasoning-Nemotron-14B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenReasoning-Nemotron-14B model|N
featherless/OpenReasoning-Nemotron-1.5B|openreasoning-nemotron-1.5b|nvidia/OpenReasoning-Nemotron-1.5B|C|1.0,5.0|131072,4096|K|-|nvidia/OpenReasoning-Nemotron-1.5B model|N
featherless/OpenThinker3-1.5B|openthinker3-1.5b|open-thoughts/OpenThinker3-1.5B|C|1.0,5.0|131072,4096|K|-|open-thoughts/OpenThinker3-1.5B model|N
featherless/CREC-n-WREC-Mate-24B|crec-n-wrec-mate-24b|Casual-Autopsy/CREC-n-WREC-Mate-24B|C|1.0,5.0|32768,4096|-|-|Casual-Autopsy/CREC-n-WREC-Mate-24B model|N
featherless/Strawberrylemonade-L3-70B-v1.1|strawberrylemonade-l3-70b|sophosympatheia/Strawberrylemonade-L3-70B-v1.1|C|1.0,5.0|32768,4096|V|-|sophosympatheia/Strawberrylemonade-L3-70B-v1.1 model|N
featherless/Doctor-Kunou-72b|doctor-kunou-72b|maldv/Doctor-Kunou-72b|C|1.0,5.0|131072,4096|-|-|maldv/Doctor-Kunou-72b model|N
featherless/Aryabhata-1.0|aryabhata-1.0|PhysicsWallahAI/Aryabhata-1.0|C|1.0,5.0|131072,4096|-|-|PhysicsWallahAI/Aryabhata-1.0 model|N
featherless/limbic-tool-use-0.5B-32K|limbic-tool-use-0.5b-32k|quotientai/limbic-tool-use-0.5B-32K|C|1.0,5.0|32768,4096|-|-|quotientai/limbic-tool-use-0.5B-32K model|N
featherless/Qwen3-14B-MegaScience|qwen3-14b-megascience|MegaScience/Qwen3-14B-MegaScience|C|1.0,5.0|32768,4096|-|-|MegaScience/Qwen3-14B-MegaScience model|N
featherless/Magistral-Small-2507|magistral-small-2507|mistralai/Magistral-Small-2507|C|1.0,5.0|32768,4096|-|,,,48.4,,,,,,|mistralai/Magistral-Small-2507 model|N
featherless/MediPhi-Clinical|mediphi-clinical|microsoft/MediPhi-Clinical|C|1.0,5.0|4096,4096|-|-|microsoft/MediPhi-Clinical model|N
featherless/gemma-3-4b-it-uncensored-v2|gemma-3-4b-it-uncensored|braindao/gemma-3-4b-it-uncensored-v2|C|1.0,5.0|32768,4096|V|-|braindao/gemma-3-4b-it-uncensored-v2 model|N
featherless/Qwen3-4b-tcomanr-merge|qwen3-4b-tcomanr-merge|ertghiu256/Qwen3-4b-tcomanr-merge|C|1.0,5.0|40960,4096|-|-|ertghiu256/Qwen3-4b-tcomanr-merge model|N
featherless/Dolphin-Mistral-24B-Venice-Edition|dolphin-mistral-24b-venice-edition|dphn/Dolphin-Mistral-24B-Venice-Edition|C|1.0,5.0|32768,4096|V|-|dphn/Dolphin-Mistral-24B-Venice-Edition model|N
featherless/Huihui-Jan-nano-128k-abliterated|huihui-jan-nano-128k-abliterated|huihui-ai/Huihui-Jan-nano-128k-abliterated|C|1.0,5.0|40960,4096|-|-|huihui-ai/Huihui-Jan-nano-128k-abliterated model|N
featherless/Lacaille-MoT-4B-Supreme2|lacaille-mot-4b-supreme2|prithivMLmods/Lacaille-MoT-4B-Supreme2|C|1.0,5.0|40960,4096|-|-|prithivMLmods/Lacaille-MoT-4B-Supreme2 model|N
featherless/Qwen3-14B-DAG-Reasoning|qwen3-14b-dag-reasoning|sequelbox/Qwen3-14B-DAG-Reasoning|C|1.0,5.0|32768,4096|K|-|sequelbox/Qwen3-14B-DAG-Reasoning model|N
featherless/UIGEN-X-4B-0729|uigen-x-4b-0729|Tesslate/UIGEN-X-4B-0729|C|1.0,5.0|40960,4096|-|-|Tesslate/UIGEN-X-4B-0729 model|N
featherless/DrakIdol-Roleplayer-1.0|drakidol-roleplayer-1.0|aifeifei798/DrakIdol-Roleplayer-1.0|C|1.0,5.0|32768,4096|-|-|aifeifei798/DrakIdol-Roleplayer-1.0 model|N
featherless/MS3.2-PaintedFantasy-v2-24B|ms3.2-paintedfantasy-v2-24b|zerofata/MS3.2-PaintedFantasy-v2-24B|C|1.0,5.0|32768,4096|V|-|zerofata/MS3.2-PaintedFantasy-v2-24B model|N
featherless/Cydonia-v4-MS3.2-Magnum-Diamond-24B|cydonia-v4-ms3.2-magnum-diamond-24b|knifeayumu/Cydonia-v4-MS3.2-Magnum-Diamond-24B|C|1.0,5.0|32768,4096|V|-|knifeayumu/Cydonia-v4-MS3.2-Magnum-Diamond-24B model|N
featherless/cogito-v2-preview-llama-70B|cogito-v2-preview-llama-70b|deepcogito/cogito-v2-preview-llama-70B|C|1.0,5.0|32768,4096|V|-|deepcogito/cogito-v2-preview-llama-70B model|N
featherless/Magistral-Small-2507-Rebased-Vision|magistral-small-2507-rebased-vision|kmouratidis/Magistral-Small-2507-Rebased-Vision|C|1.0,5.0|32768,4096|V|-|kmouratidis/Magistral-Small-2507-Rebased-Vision model|N
featherless/Dhanishtha-2.0-preview-0825|dhanishtha-2.0-preview-0825|HelpingAI/Dhanishtha-2.0-preview-0825|C|1.0,5.0|32768,4096|-|-|HelpingAI/Dhanishtha-2.0-preview-0825 model|N
featherless/Cydonia-24B-v3|cydonia-24b|TheDrummer/Cydonia-24B-v3|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v3 model|N
featherless/Cydonia-24B-v3.1|cydonia-24b|TheDrummer/Cydonia-24B-v3.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v3.1 model|N
featherless/Cydonia-24B-v4|cydonia-24b|TheDrummer/Cydonia-24B-v4|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v4 model|N
featherless/Austral-32B-GLM4-Winton|austral-32b-glm4-winton|Delta-Vector/Austral-32B-GLM4-Winton|C|1.0,5.0|32768,4096|V|-|Delta-Vector/Austral-32B-GLM4-Winton model|N
featherless/Anthrobomination-70B|anthrobomination-70b|Mawdistical/Anthrobomination-70B|C|1.0,5.0|32768,4096|-|-|Mawdistical/Anthrobomination-70B model|N
featherless/MN-Lyrebird-12B|mn-lyrebird-12b|allura-org/MN-Lyrebird-12B|C|1.0,5.0|32768,4096|-|-|allura-org/MN-Lyrebird-12B model|N
featherless/MindLink-72B-0801|mindlink-72b-0801|Skywork/MindLink-72B-0801|C|1.0,5.0|131072,4096|-|-|Skywork/MindLink-72B-0801 model|N
featherless/II-Search-CIR-4B|ii-search-cir-4b|Intelligent-Internet/II-Search-CIR-4B|C|1.0,5.0|40960,4096|-|-|Intelligent-Internet/II-Search-CIR-4B model|N
featherless/Sapphira-L3.3-70b-0.1|sapphira-l3.3-70b-0.1|BruhzWater/Sapphira-L3.3-70b-0.1|C|1.0,5.0|32768,4096|-|-|BruhzWater/Sapphira-L3.3-70b-0.1 model|N
featherless/Edens-Fall-L3.3-70b-0.3c|edens-fall-l3.3-70b-0.3c|BruhzWater/Edens-Fall-L3.3-70b-0.3c|C|1.0,5.0|32768,4096|-|-|BruhzWater/Edens-Fall-L3.3-70b-0.3c model|N
featherless/Edens-Fall-L3.3-70b-0.3b|edens-fall-l3.3-70b-0.3b|BruhzWater/Edens-Fall-L3.3-70b-0.3b|C|1.0,5.0|32768,4096|-|-|BruhzWater/Edens-Fall-L3.3-70b-0.3b model|N
featherless/Eden-L3.3-70b-0.3|eden-l3.3-70b-0.3|BruhzWater/Eden-L3.3-70b-0.3|C|1.0,5.0|32768,4096|-|-|BruhzWater/Eden-L3.3-70b-0.3 model|N
featherless/Serpents-Tongue-L3.3-70b-0.3|serpents-tongue-l3.3-70b-0.3|BruhzWater/Serpents-Tongue-L3.3-70b-0.3|C|1.0,5.0|32768,4096|-|-|BruhzWater/Serpents-Tongue-L3.3-70b-0.3 model|N
featherless/Liliths-Whisper-L3.3-70b-0.1|liliths-whisper-l3.3-70b-0.1|BruhzWater/Liliths-Whisper-L3.3-70b-0.1|C|1.0,5.0|32768,4096|-|-|BruhzWater/Liliths-Whisper-L3.3-70b-0.1 model|N
featherless/Apocrypha-L3.3-70b-0.3|apocrypha-l3.3-70b-0.3|BruhzWater/Apocrypha-L3.3-70b-0.3|C|1.0,5.0|32768,4096|-|-|BruhzWater/Apocrypha-L3.3-70b-0.3 model|N
featherless/watt-tool-70B|watt-tool-70b|watt-ai/watt-tool-70B|C|1.0,5.0|32768,4096|-|-|watt-ai/watt-tool-70B model|N
featherless/L3.3-The-Omega-Directive-70B-Unslop-v2.1|l3.3-the-omega-directive-70b-unslop|ReadyArt/L3.3-The-Omega-Directive-70B-Unslop-v2.1|C|1.0,5.0|32768,4096|V|-|ReadyArt/L3.3-The-Omega-Directive-70B-Unslop-v2.1 model|N
featherless/KansenSakura-Eclipse-RP-12b|kansensakura-eclipse-rp-12b|Retreatcost/KansenSakura-Eclipse-RP-12b|C|1.0,5.0|32768,4096|-|-|Retreatcost/KansenSakura-Eclipse-RP-12b model|N
featherless/XBai-o4|xbai-o4|MetaStoneTec/XBai-o4|C|1.0,5.0|32768,4096|-|-|MetaStoneTec/XBai-o4 model|N
featherless/L3.3-Dark-Ages-70b-v0.1|l3.3-dark-ages-70b|CrucibleLab/L3.3-Dark-Ages-70b-v0.1|C|1.0,5.0|32768,4096|V|-|CrucibleLab/L3.3-Dark-Ages-70b-v0.1 model|N
featherless/FindYourSwordInThisLand-Llama-3.3-72b|findyourswordinthisland-llama-3.3-72b|KaraKaraWitch/FindYourSwordInThisLand-Llama-3.3-72b|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/FindYourSwordInThisLand-Llama-3.3-72b model|N
featherless/Qwen3-4B-Thinking-2507|qwen3-4b-thinking-2507|Qwen/Qwen3-4B-Thinking-2507|C|1.0,5.0|40960,4096|K|-|Qwen/Qwen3-4B-Thinking-2507 model|N
featherless/QVikhr-3-8B-Instruction|qvikhr-3-8b-instruction|Vikhrmodels/QVikhr-3-8B-Instruction|C|1.0,5.0|32768,4096|-|-|Vikhrmodels/QVikhr-3-8B-Instruction model|N
featherless/Goedel-Prover-V2-32B|goedel-prover-v2-32b|Goedel-LM/Goedel-Prover-V2-32B|C|1.0,5.0|32768,4096|V|-|Goedel-LM/Goedel-Prover-V2-32B model|N
featherless/Huihui-Qwen3-4B-Instruct-2507-abliterated|-|huihui-ai/Huihui-Qwen3-4B-Instruct-2507-abliterated|C|1.0,5.0|40960,4096|-|-|huihui-ai/Huihui-Qwen3-4B-Instruct-2507-abliterated model|N
featherless/GoldDiamondGold-L33-70b|golddiamondgold-l33-70b|KaraKaraWitch/GoldDiamondGold-L33-70b|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/GoldDiamondGold-L33-70b model|N
featherless/Eva-Mindlink-72b|eva-mindlink-72b|maldv/Eva-Mindlink-72b|C|1.0,5.0|131072,4096|-|-|maldv/Eva-Mindlink-72b model|N
featherless/MiroThinker-32B-DPO-v0.1|mirothinker-32b-dpo|miromind-ai/MiroThinker-32B-DPO-v0.1|C|1.0,5.0|32768,4096|VK|-|miromind-ai/MiroThinker-32B-DPO-v0.1 model|N
featherless/cudaLLM-8B|cudallm-8b|ByteDance-Seed/cudaLLM-8B|C|1.0,5.0|32768,4096|-|-|ByteDance-Seed/cudaLLM-8B model|N
featherless/QRWKV-72B|qrwkv-72b|featherless-ai/QRWKV-72B|C|1.0,5.0|65536,4096|-|-|featherless-ai/QRWKV-72B model|N
featherless/Foundation-Sec-8B-Instruct|foundation-sec-8b-instruct|fdtn-ai/Foundation-Sec-8B-Instruct|C|1.0,5.0|32768,4096|-|-|fdtn-ai/Foundation-Sec-8B-Instruct model|N
featherless/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v1|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v1|C|1.0,5.0|40960,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v1 model|N
featherless/liberalis-cogitator-llama-3.1-8b|liberalis-cogitator-llama-3.1-8b|Locutusque/liberalis-cogitator-llama-3.1-8b|C|1.0,5.0|32768,4096|-|-|Locutusque/liberalis-cogitator-llama-3.1-8b model|N
featherless/Qwen3-4B-Instruct-2507|qwen3-4b-instruct-2507|unsloth/Qwen3-4B-Instruct-2507|C|1.0,5.0|40960,4096|-|-|unsloth/Qwen3-4B-Instruct-2507 model|N
featherless/Baichuan-M2-32B|baichuan-m2-32b|baichuan-inc/Baichuan-M2-32B|C|1.0,5.0|131072,4096|-|-|baichuan-inc/Baichuan-M2-32B model|N
featherless/InfiR-1B-Base|infir-1b-base|InfiX-ai/InfiR-1B-Base|C|1.0,5.0|32768,4096|-|-|InfiX-ai/InfiR-1B-Base model|N
featherless/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v2|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v2|C|1.0,5.0|40960,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-gabliterated-v2 model|N
featherless/Huihui-Qwen3-4B-Thinking-2507-abliterated|-|huihui-ai/Huihui-Qwen3-4B-Thinking-2507-abliterated|C|1.0,5.0|40960,4096|K|-|huihui-ai/Huihui-Qwen3-4B-Thinking-2507-abliterated model|N
featherless/Cydonia-R1-24B-v4|cydonia-r1-24b|TheDrummer/Cydonia-R1-24B-v4|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-R1-24B-v4 model|N
featherless/Jan-v1-4B|jan-v1-4b|janhq/Jan-v1-4B|C|1.0,5.0|40960,4096|V|-|janhq/Jan-v1-4B model|N
featherless/StepFun-Prover-Preview-32B|stepfun-prover-preview-32b|stepfun-ai/StepFun-Prover-Preview-32B|C|1.0,5.0|32768,4096|-|-|stepfun-ai/StepFun-Prover-Preview-32B model|N
featherless/Goedel-Prover-V2-8B|goedel-prover-v2-8b|Goedel-LM/Goedel-Prover-V2-8B|C|1.0,5.0|32768,4096|V|-|Goedel-LM/Goedel-Prover-V2-8B model|N
featherless/Moonviolet-12B|moonviolet-12b|Vortex5/Moonviolet-12B|C|1.0,5.0|32768,4096|-|-|Vortex5/Moonviolet-12B model|N
featherless/Gemma-3-R1-27B-v1|gemma-3-r1-27b|TheDrummer/Gemma-3-R1-27B-v1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Gemma-3-R1-27B-v1 model|N
featherless/Cydonia-24B-v4.1|cydonia-24b|TheDrummer/Cydonia-24B-v4.1|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v4.1 model|N
featherless/Impish_Nemo_12B|impish_nemo_12b|SicariusSicariiStuff/Impish_Nemo_12B|C|1.0,5.0|32768,4096|-|-|SicariusSicariiStuff/Impish_Nemo_12B model|N
featherless/Datarus-R1-14B-preview|datarus-r1-14b-preview|DatarusAI/Datarus-R1-14B-preview|C|1.0,5.0|131072,4096|-|-|DatarusAI/Datarus-R1-14B-preview model|N
featherless/qqWen-32B-RL-Reasoning|qqwen-32b-rl-reasoning|morganstanley/qqWen-32B-RL-Reasoning|C|1.0,5.0|131072,4096|K|-|morganstanley/qqWen-32B-RL-Reasoning model|N
featherless/ANITA-NEXT-24B-Magistral-2506-VISION-ITA|-|m-polignano/ANITA-NEXT-24B-Magistral-2506-VISION-ITA|C|1.0,5.0|32768,4096|V|-|m-polignano/ANITA-NEXT-24B-Magistral-2506-VISION-ITA model|N
featherless/liberalis-cogitator-llama-3.1-8b-dpo|liberalis-cogitator-llama-3.1-8b-dpo|Locutusque/liberalis-cogitator-llama-3.1-8b-dpo|C|1.0,5.0|32768,4096|-|-|Locutusque/liberalis-cogitator-llama-3.1-8b-dpo model|N
featherless/swahili-gemma-1b|swahili-gemma-1b|CraneAILabs/swahili-gemma-1b|C|1.0,5.0|32768,4096|-|-|CraneAILabs/swahili-gemma-1b model|N
featherless/Qwen3-Code-Reasoning-4B|qwen3-code-reasoning-4b|GetSoloTech/Qwen3-Code-Reasoning-4B|C|1.0,5.0|40960,4096|K|-|GetSoloTech/Qwen3-Code-Reasoning-4B model|N
featherless/Hermes-4-70B|hermes-4-70b|NousResearch/Hermes-4-70B|C|1.0,5.0|32768,4096|-|-|NousResearch/Hermes-4-70B model|N
featherless/Psychologist-3b|psychologist-3b|Guilherme34/Psychologist-3b|C|1.0,5.0|32768,4096|-|-|Guilherme34/Psychologist-3b model|N
featherless/Huihui-Jan-v1-4B-abliterated|huihui-jan-v1-4b-abliterated|huihui-ai/Huihui-Jan-v1-4B-abliterated|C|1.0,5.0|40960,4096|V|-|huihui-ai/Huihui-Jan-v1-4B-abliterated model|N
featherless/Lime|lime|beyoru/Lime|C|1.0,5.0|40960,4096|-|-|beyoru/Lime model|N
featherless/Gemma-SEA-LION-v4-27B-IT|gemma-sea-lion-v4-27b-it|aisingapore/Gemma-SEA-LION-v4-27B-IT|C|1.0,5.0|32768,4096|V|-|aisingapore/Gemma-SEA-LION-v4-27B-IT model|N
featherless/Stellar-Odyssey-12b-v0.0|stellar-odyssey-12b|ProdeusUnity/Stellar-Odyssey-12b-v0.0|C|1.0,5.0|32768,4096|V|-|ProdeusUnity/Stellar-Odyssey-12b-v0.0 model|N
featherless/Anonymizer-4B|anonymizer-4b|eternisai/Anonymizer-4B|C|1.0,5.0|40960,4096|-|-|eternisai/Anonymizer-4B model|N
featherless/Flerovium-Llama-3B|flerovium-llama-3b|prithivMLmods/Flerovium-Llama-3B|C|1.0,5.0|32768,4096|-|-|prithivMLmods/Flerovium-Llama-3B model|N
featherless/DynaGuard-8B|dynaguard-8b|tomg-group-umd/DynaGuard-8B|C|1.0,5.0|32768,4096|-|-|tomg-group-umd/DynaGuard-8B model|N
featherless/TiTan-Qwen2.5-0.5B|titan-qwen2.5-0.5b|theprint/TiTan-Qwen2.5-0.5B|C|1.0,5.0|32768,4096|-|-|theprint/TiTan-Qwen2.5-0.5B model|N
featherless/mistral-24b-cw-test1|mistral-24b-cw-test1|m8than/mistral-24b-cw-test1|C|1.0,5.0|32768,4096|-|-|m8than/mistral-24b-cw-test1 model|N
featherless/Nova-70B-Llama-3.3|nova-70b-llama-3.3|LatitudeGames/Nova-70B-Llama-3.3|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Nova-70B-Llama-3.3 model|N
featherless/ganda-gemma-1b|ganda-gemma-1b|CraneAILabs/ganda-gemma-1b|C|1.0,5.0|32768,4096|-|-|CraneAILabs/ganda-gemma-1b model|N
featherless/UIGEN-FX-4B-Preview|uigen-fx-4b-preview|Tesslate/UIGEN-FX-4B-Preview|C|1.0,5.0|40960,4096|-|-|Tesslate/UIGEN-FX-4B-Preview model|N
featherless/MiroThinker-8B-DPO-v0.2|mirothinker-8b-dpo|miromind-ai/MiroThinker-8B-DPO-v0.2|C|1.0,5.0|32768,4096|VK|-|miromind-ai/MiroThinker-8B-DPO-v0.2 model|N
featherless/MiroThinker-4B-DPO-v0.2|mirothinker-4b-dpo|miromind-ai/MiroThinker-4B-DPO-v0.2|C|1.0,5.0|40960,4096|VK|-|miromind-ai/MiroThinker-4B-DPO-v0.2 model|N
featherless/MiroThinker-4B-SFT-v0.2|mirothinker-4b-sft|miromind-ai/MiroThinker-4B-SFT-v0.2|C|1.0,5.0|40960,4096|VK|-|miromind-ai/MiroThinker-4B-SFT-v0.2 model|N
featherless/K2-Think|k2-think|LLM360/K2-Think|C|1.0,5.0|131072,4096|K|-|LLM360/K2-Think model|N
featherless/Turkish-Gemma-9b-T1|turkish-gemma-9b-t1|ytu-ce-cosmos/Turkish-Gemma-9b-T1|C|1.0,5.0|16384,4096|-|-|ytu-ce-cosmos/Turkish-Gemma-9b-T1 model|N
featherless/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-v2|-|huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-v2|C|1.0,5.0|32768,4096|V|-|huihui-ai/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-v2 model|N
featherless/jupyter-agent-qwen3-4b-thinking|jupyter-agent-qwen3-4b-thinking|jupyter-agent/jupyter-agent-qwen3-4b-thinking|C|1.0,5.0|40960,4096|K|-|jupyter-agent/jupyter-agent-qwen3-4b-thinking model|N
featherless/gemma-3-12b-it-uncensored|gemma-3-12b-it-uncensored|braindao/gemma-3-12b-it-uncensored|C|1.0,5.0|32768,4096|-|-|braindao/gemma-3-12b-it-uncensored model|N
featherless/FluentlyQwen3-1.7B|fluentlyqwen3-1.7b|fluently/FluentlyQwen3-1.7B|C|1.0,5.0|40960,4096|-|-|fluently/FluentlyQwen3-1.7B model|N
featherless/Ming1.0-Base|ming1.0-base|ZhongMingTech/Ming1.0-Base|C|1.0,5.0|131072,4096|-|-|ZhongMingTech/Ming1.0-Base model|N
featherless/FluentlyQwen3-Coder-4B-0909|fluentlyqwen3-coder-4b-0909|fluently/FluentlyQwen3-Coder-4B-0909|C|1.0,5.0|40960,4096|-|-|fluently/FluentlyQwen3-Coder-4B-0909 model|N
featherless/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-llamacppfixed|-|nicoboss/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-llamacppfixed|C|1.0,5.0|32768,4096|-|-|nicoboss/Huihui-Mistral-Small-3.2-24B-Instruct-2506-abliterated-llamacppfixed model|N
featherless/jupyter-agent-qwen3-4b-instruct|jupyter-agent-qwen3-4b-instruct|jupyter-agent/jupyter-agent-qwen3-4b-instruct|C|1.0,5.0|40960,4096|-|-|jupyter-agent/jupyter-agent-qwen3-4b-instruct model|N
featherless/mem-agent|mem-agent|driaforall/mem-agent|C|1.0,5.0|40960,4096|-|-|driaforall/mem-agent model|N
featherless/llama33-70b-rpb-chk736|llama33-70b-rpb-chk736|m8than/llama33-70b-rpb-chk736|C|1.0,5.0|32768,4096|-|-|m8than/llama33-70b-rpb-chk736 model|N
featherless/Discord-Hermes-3-8B|discord-hermes-3-8b|mookiezii/Discord-Hermes-3-8B|C|1.0,5.0|32768,4096|-|-|mookiezii/Discord-Hermes-3-8B model|N
featherless/KAT-Dev|kat-dev|Kwaipilot/KAT-Dev|C|1.0,5.0|32768,4096|-|-|Kwaipilot/KAT-Dev model|N
featherless/Schematron-3B|schematron-3b|inference-net/Schematron-3B|C|1.0,5.0|32768,4096|-|-|inference-net/Schematron-3B model|N
featherless/llama33-70b-rpb-chk2200|llama33-70b-rpb-chk2200|m8than/llama33-70b-rpb-chk2200|C|1.0,5.0|32768,4096|-|-|m8than/llama33-70b-rpb-chk2200 model|N
featherless/DistilGPT-OSS-qwen3-4B|distilgpt-oss-qwen3-4b|Pinkstack/DistilGPT-OSS-qwen3-4B|C|1.0,5.0|40960,4096|-|-|Pinkstack/DistilGPT-OSS-qwen3-4B model|N
featherless/llama33-70b-rp-base-100|llama33-70b-rp-base-100|m8than/llama33-70b-rp-base-100|C|1.0,5.0|32768,4096|-|-|m8than/llama33-70b-rp-base-100 model|N
featherless/Qwen3-4B-Fiction-On-Fire-Series-7-Model-X|-|DavidAU/Qwen3-4B-Fiction-On-Fire-Series-7-Model-X|C|1.0,5.0|40960,4096|-|-|DavidAU/Qwen3-4B-Fiction-On-Fire-Series-7-Model-X model|N
featherless/Fleming-R1-7B|fleming-r1-7b|UbiquantAI/Fleming-R1-7B|C|1.0,5.0|131072,4096|-|-|UbiquantAI/Fleming-R1-7B model|N
featherless/Qwen3Guard-Gen-8B|qwen3guard-gen-8b|Qwen/Qwen3Guard-Gen-8B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen3Guard-Gen-8B model|N
featherless/Capella-Qwen3-DS-V3.1-4B|capella-qwen3-ds-v3.1-4b|prithivMLmods/Capella-Qwen3-DS-V3.1-4B|C|1.0,5.0|40960,4096|V|-|prithivMLmods/Capella-Qwen3-DS-V3.1-4B model|N
featherless/MamayLM-Gemma-3-12B-IT-v1.0|mamaylm-gemma-3-12b-it|INSAIT-Institute/MamayLM-Gemma-3-12B-IT-v1.0|C|1.0,5.0|32768,4096|V|-|INSAIT-Institute/MamayLM-Gemma-3-12B-IT-v1.0 model|N
featherless/ReasonableQwen3-4B|reasonableqwen3-4b|adeelahmad/ReasonableQwen3-4B|C|1.0,5.0|40960,4096|K|-|adeelahmad/ReasonableQwen3-4B model|N
featherless/JET-7B|jet-7b|JinyiHan/JET-7B|C|1.0,5.0|131072,4096|-|-|JinyiHan/JET-7B model|N
featherless/llama33-70b-rp-a-64|llama33-70b-rp-a-64|m8than/llama33-70b-rp-a-64|C|1.0,5.0|32768,4096|-|-|m8than/llama33-70b-rp-a-64 model|N
featherless/Fathom-Synthesizer-4B|fathom-synthesizer-4b|FractalAIResearch/Fathom-Synthesizer-4B|C|1.0,5.0|40960,4096|-|-|FractalAIResearch/Fathom-Synthesizer-4B model|N
featherless/zen-eco-4b-instruct|zen-eco-4b-instruct|zenlm/zen-eco-4b-instruct|C|1.0,5.0|40960,4096|-|-|zenlm/zen-eco-4b-instruct model|N
featherless/gpt-oss-120b-Distill-Llama3.1-8B-v2|gpt-oss-120b-distill-llama3.1-8b|Jackrong/gpt-oss-120b-Distill-Llama3.1-8B-v2|C|1.0,5.0|32768,4096|V|-|Jackrong/gpt-oss-120b-Distill-Llama3.1-8B-v2 model|N
featherless/doktor-gemma3-12b-vision3|doktor-gemma3-12b-vision3|alibayram/doktor-gemma3-12b-vision3|C|1.0,5.0|32768,4096|V|-|alibayram/doktor-gemma3-12b-vision3 model|N
featherless/kallamni-4b-v1|kallamni-4b|yasserrmd/kallamni-4b-v1|C|1.0,5.0|40960,4096|V|-|yasserrmd/kallamni-4b-v1 model|N
featherless/Famino-12B-Model_Stock|famino-12b-model_stock|DreadPoor/Famino-12B-Model_Stock|C|1.0,5.0|32768,4096|-|-|DreadPoor/Famino-12B-Model_Stock model|N
featherless/Qwen3-4B-Thinking-2507-Esper3.1|qwen3-4b-thinking-2507-esper3.1|ValiantLabs/Qwen3-4B-Thinking-2507-Esper3.1|C|1.0,5.0|40960,4096|K|-|ValiantLabs/Qwen3-4B-Thinking-2507-Esper3.1 model|N
featherless/Fathom-Search-4B|fathom-search-4b|FractalAIResearch/Fathom-Search-4B|C|1.0,5.0|40960,4096|-|-|FractalAIResearch/Fathom-Search-4B model|N
featherless/agentflow-planner-7b|agentflow-planner-7b|AgentFlow/agentflow-planner-7b|C|1.0,5.0|131072,4096|-|-|AgentFlow/agentflow-planner-7b model|N
featherless/Lunaa|lunaa|beyoru/Lunaa|C|1.0,5.0|40960,4096|-|-|beyoru/Lunaa model|N
featherless/Beck-8B|beck-8b|gustavecortal/Beck-8B|C|1.0,5.0|32768,4096|-|-|gustavecortal/Beck-8B model|N
featherless/Llama-3.1-Taiwan-8B|llama-3.1-taiwan-8b|yentinglin/Llama-3.1-Taiwan-8B|C|1.0,5.0|32768,4096|-|-|yentinglin/Llama-3.1-Taiwan-8B model|N
featherless/Octans-Qwen3-UI-Code-4B|octans-qwen3-ui-code-4b|prithivMLmods/Octans-Qwen3-UI-Code-4B|C|1.0,5.0|40960,4096|-|-|prithivMLmods/Octans-Qwen3-UI-Code-4B model|N
featherless/Hermes-3-Llama-3.1-70B-Uncensored|hermes-3-llama-3.1-70b-uncensored|Guilherme34/Hermes-3-Llama-3.1-70B-Uncensored|C|1.0,5.0|32768,4096|-|-|Guilherme34/Hermes-3-Llama-3.1-70B-Uncensored model|N
featherless/Krix-12B-Model_Stock|krix-12b-model_stock|DreadPoor/Krix-12B-Model_Stock|C|1.0,5.0|32768,4096|-|-|DreadPoor/Krix-12B-Model_Stock model|N
featherless/KansenSakura-Erosion-RP-12b|kansensakura-erosion-rp-12b|Retreatcost/KansenSakura-Erosion-RP-12b|C|1.0,5.0|32768,4096|-|-|Retreatcost/KansenSakura-Erosion-RP-12b model|N
featherless/KAT-Dev-72B-Exp|kat-dev-72b-exp|Kwaipilot/KAT-Dev-72B-Exp|C|1.0,5.0|131072,4096|-|-|Kwaipilot/KAT-Dev-72B-Exp model|N
featherless/Beck-4B|beck-4b|gustavecortal/Beck-4B|C|1.0,5.0|40960,4096|-|-|gustavecortal/Beck-4B model|N
featherless/Sunflower-14B|sunflower-14b|Sunbird/Sunflower-14B|C|1.0,5.0|32768,4096|-|-|Sunbird/Sunflower-14B model|N
featherless/Dolphin-X1-8B|dolphin-x1-8b|dphn/Dolphin-X1-8B|C|1.0,5.0|32768,4096|-|-|dphn/Dolphin-X1-8B model|N
featherless/L3.3-Chimera-Prime-70B|l3.3-chimera-prime-70b|m8than/L3.3-Chimera-Prime-70B|C|1.0,5.0|32768,4096|-|-|m8than/L3.3-Chimera-Prime-70B model|N
featherless/Sapphira-L3.3-70b-0.2|sapphira-l3.3-70b-0.2|BruhzWater/Sapphira-L3.3-70b-0.2|C|1.0,5.0|32768,4096|-|-|BruhzWater/Sapphira-L3.3-70b-0.2 model|N
featherless/pokee_research_7b|pokee_research_7b|PokeeAI/pokee_research_7b|C|1.0,5.0|131072,4096|-|-|PokeeAI/pokee_research_7b model|N
featherless/Hermes-4-14B|hermes-4-14b|NousResearch/Hermes-4-14B|C|1.0,5.0|32768,4096|-|-|NousResearch/Hermes-4-14B model|N
featherless/vicuna-7b-v1.5|vicuna-7b|lmsys/vicuna-7b-v1.5|C|1.0,5.0|4096,4096|V|-|lmsys/vicuna-7b-v1.5 model|N
featherless/lapa-12b-pt|lapa-12b-pt|lapa-llm/lapa-12b-pt|C|1.0,5.0|32768,4096|-|-|lapa-llm/lapa-12b-pt model|N
featherless/lapa-v0.1.2-instruct|lapa-v0.1.2-instruct|lapa-llm/lapa-v0.1.2-instruct|C|1.0,5.0|32768,4096|V|-|lapa-llm/lapa-v0.1.2-instruct model|N
featherless/CodeLlama-7b-Instruct-hf|codellama-7b-instruct-hf|codellama/CodeLlama-7b-Instruct-hf|C|1.0,5.0|4096,4096|-|-|codellama/CodeLlama-7b-Instruct-hf model|N
featherless/T-pro-it-2.0|t-pro-it-2.0|t-tech/T-pro-it-2.0|C|1.0,5.0|32768,4096|-|-|t-tech/T-pro-it-2.0 model|N
featherless/Luna-Fusion-RP|luna-fusion-rp|beyoru/Luna-Fusion-RP|C|1.0,5.0|40960,4096|-|-|beyoru/Luna-Fusion-RP model|N
featherless/sqlcoder-7b-2|sqlcoder-7b-2|defog/sqlcoder-7b-2|C|1.0,5.0|4096,4096|-|-|defog/sqlcoder-7b-2 model|N
featherless/avibe|avibe|AvitoTech/avibe|C|1.0,5.0|32768,4096|-|-|AvitoTech/avibe model|N
featherless/next-1b|next-1b|Lamapi/next-1b|C|1.0,5.0|32768,4096|-|-|Lamapi/next-1b model|N
featherless/FunReason-MT|funreason-mt|Bingguang/FunReason-MT|C|1.0,5.0|40960,4096|K|-|Bingguang/FunReason-MT model|N
featherless/UIGEN-FX-4B-RL-Preview|uigen-fx-4b-rl-preview|Tesslate/UIGEN-FX-4B-RL-Preview|C|1.0,5.0|40960,4096|-|-|Tesslate/UIGEN-FX-4B-RL-Preview model|N
featherless/next-12b|next-12b|Lamapi/next-12b|C|1.0,5.0|32768,4096|-|-|Lamapi/next-12b model|N
featherless/Josiefied-Qwen3-4B-Instruct-2507-abliterated-v1|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-abliterated-v1|C|1.0,5.0|40960,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-Instruct-2507-abliterated-v1 model|N
featherless/Frugal-Math-4B|frugal-math-4b|MBZUAI-Paris/Frugal-Math-4B|C|1.0,5.0|40960,4096|-|-|MBZUAI-Paris/Frugal-Math-4B model|N
featherless/Distil-NPC-gemma-3-1b-it|distil-npc-gemma-3-1b-it|distil-labs/Distil-NPC-gemma-3-1b-it|C|1.0,5.0|32768,4096|-|-|distil-labs/Distil-NPC-gemma-3-1b-it model|N
featherless/Llama-3.2-3B-Instruct-uncensored|llama-3.2-3b-instruct-uncensored|chuanli11/Llama-3.2-3B-Instruct-uncensored|C|1.0,5.0|32768,4096|-|-|chuanli11/Llama-3.2-3B-Instruct-uncensored model|N
featherless/VibeThinker-1.5B|vibethinker-1.5b|WeiboAI/VibeThinker-1.5B|C|1.0,5.0|131072,4096|K|-|WeiboAI/VibeThinker-1.5B model|N
featherless/AesCoder-4B|aescoder-4b|SamuelBang/AesCoder-4B|C|1.0,5.0|40960,4096|-|-|SamuelBang/AesCoder-4B model|N
featherless/open-dcoder-0.5B|open-dcoder-0.5b|fredzzp/open-dcoder-0.5B|C|1.0,5.0|131072,4096|-|-|fredzzp/open-dcoder-0.5B model|N
featherless/scout-4b|scout-4b|vanta-research/scout-4b|C|1.0,5.0|32768,4096|-|-|vanta-research/scout-4b model|N
featherless/atom-v1-preview-4b|atom-v1-preview-4b|vanta-research/atom-v1-preview-4b|C|1.0,5.0|32768,4096|V|-|vanta-research/atom-v1-preview-4b model|N
featherless/gemma-3-12b-it-norm-preserved-biprojected-abliterated|-|grimjim/gemma-3-12b-it-norm-preserved-biprojected-abliterated|C|1.0,5.0|32768,4096|-|-|grimjim/gemma-3-12b-it-norm-preserved-biprojected-abliterated model|N
featherless/JustRL-DeepSeek-1.5B|justrl-deepseek-1.5b|hbx/JustRL-DeepSeek-1.5B|C|1.0,5.0|131072,4096|-|-|hbx/JustRL-DeepSeek-1.5B model|N
featherless/Mellum-4b-dpo-python|mellum-4b-dpo-python|JetBrains/Mellum-4b-dpo-python|C|1.0,5.0|32768,4096|-|-|JetBrains/Mellum-4b-dpo-python model|N
featherless/Qwen3-4B-Thinking-2507-UML-Generator|qwen3-4b-thinking-2507-uml-generator|sequelbox/Qwen3-4B-Thinking-2507-UML-Generator|C|1.0,5.0|40960,4096|K|-|sequelbox/Qwen3-4B-Thinking-2507-UML-Generator model|N
featherless/Qwen3Guard-Gen-4B|qwen3guard-gen-4b|Qwen/Qwen3Guard-Gen-4B|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3Guard-Gen-4B model|N
featherless/Llama-2-7b-hf|llama-2-7b-hf|NousResearch/Llama-2-7b-hf|C|1.0,5.0|4096,4096|-|45.3,,,,,,,,,|NousResearch/Llama-2-7b-hf model|N
featherless/gemma-3-12b-it-heretic|gemma-3-12b-it-heretic|p-e-w/gemma-3-12b-it-heretic|C|1.0,5.0|32768,4096|-|-|p-e-w/gemma-3-12b-it-heretic model|N
featherless/Qwen3-4B-Instruct-2507-heretic|qwen3-4b-instruct-2507-heretic|p-e-w/Qwen3-4B-Instruct-2507-heretic|C|1.0,5.0|40960,4096|-|-|p-e-w/Qwen3-4B-Instruct-2507-heretic model|N
featherless/OmniDimen-V1.2-4B-Emotion|omnidimen-v1.2-4b-emotion|OmniDimen/OmniDimen-V1.2-4B-Emotion|C|1.0,5.0|40960,4096|V|-|OmniDimen/OmniDimen-V1.2-4B-Emotion model|N
featherless/Qwen3-4B-SafeRL|qwen3-4b-saferl|Qwen/Qwen3-4B-SafeRL|C|1.0,5.0|40960,4096|-|-|Qwen/Qwen3-4B-SafeRL model|N
featherless/Qwen3-4B-ChromaticCoder|qwen3-4b-chromaticcoder|ZeroXClem/Qwen3-4B-ChromaticCoder|C|1.0,5.0|40960,4096|-|-|ZeroXClem/Qwen3-4B-ChromaticCoder model|N
featherless/genesis-i-model|genesis-i-model|qvac/genesis-i-model|C|1.0,5.0|40960,4096|-|-|qvac/genesis-i-model model|N
featherless/deepmath-v1|deepmath|Intel/deepmath-v1|C|1.0,5.0|40960,4096|V|-|Intel/deepmath-v1 model|N
featherless/gemma-3-1b-it-heretic-extreme-uncensored-abliterated|-|DavidAU/gemma-3-1b-it-heretic-extreme-uncensored-abliterated|C|1.0,5.0|32768,4096|-|-|DavidAU/gemma-3-1b-it-heretic-extreme-uncensored-abliterated model|N
featherless/Hypnos-i1-8B|hypnos-i1-8b|squ11z1/Hypnos-i1-8B|C|1.0,5.0|32768,4096|-|-|squ11z1/Hypnos-i1-8B model|N
featherless/Qwen-SEA-LION-v4-32B-IT|qwen-sea-lion-v4-32b-it|aisingapore/Qwen-SEA-LION-v4-32B-IT|C|1.0,5.0|32768,4096|V|-|aisingapore/Qwen-SEA-LION-v4-32B-IT model|N
featherless/facebook-Meta-SecAlign-70B|facebook-meta-secalign-70b|wxgeorge/facebook-Meta-SecAlign-70B|C|1.0,5.0|32768,4096|-|-|wxgeorge/facebook-Meta-SecAlign-70B model|N
featherless/Transcript-Analytics-SLM1.5b|transcript-analytics-slm1.5b|RinggAI/Transcript-Analytics-SLM1.5b|C|1.0,5.0|131072,4096|-|-|RinggAI/Transcript-Analytics-SLM1.5b model|N
featherless/Meta-SecAlign-70B|meta-secalign-70b|facebook/Meta-SecAlign-70B|C|1.0,5.0|32768,4096|-|-|facebook/Meta-SecAlign-70B model|N
featherless/Qwen3-4B-Instruct-2507-uncensored-unslop-v2|-|electroglyph/Qwen3-4B-Instruct-2507-uncensored-unslop-v2|C|1.0,5.0|40960,4096|V|-|electroglyph/Qwen3-4B-Instruct-2507-uncensored-unslop-v2 model|N
featherless/BlenderCartel-llama33-70B-Pt2|blendercartel-llama33-70b-pt2|KaraKaraWitch/BlenderCartel-llama33-70B-Pt2|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/BlenderCartel-llama33-70B-Pt2 model|N
featherless/BlenderCartel-llama33-70B-Pt1|blendercartel-llama33-70b-pt1|KaraKaraWitch/BlenderCartel-llama33-70B-Pt1|C|1.0,5.0|32768,4096|-|-|KaraKaraWitch/BlenderCartel-llama33-70B-Pt1 model|N
featherless/MinerU-HTML|mineru-html|opendatalab/MinerU-HTML|C|1.0,5.0|40960,4096|-|-|opendatalab/MinerU-HTML model|N
featherless/gemma-3-27b-it-abliterated-normpreserve|gemma-3-27b-it-abliterated-normpreserve|YanLabs/gemma-3-27b-it-abliterated-normpreserve|C|1.0,5.0|32768,4096|-|-|YanLabs/gemma-3-27b-it-abliterated-normpreserve model|N
featherless/Mistral-7B-Instruct-v0.1|mistral-7b-instruct|mistralai/Mistral-7B-Instruct-v0.1|C|1.0,5.0|4096,4096|V|56.6,,,,,,,,,|mistralai/Mistral-7B-Instruct-v0.1 model|N
featherless/Mistral-7B-v0.1|mistral-7b|mistralai/Mistral-7B-v0.1|C|1.0,5.0|4096,4096|V|56.6,,,,,,,,,|mistralai/Mistral-7B-v0.1 model|N
featherless/CodeLlama-7b-hf|codellama-7b-hf|codellama/CodeLlama-7b-hf|C|1.0,5.0|4096,4096|-|-|codellama/CodeLlama-7b-hf model|N
featherless/Firefly-V2|firefly|Guilherme34/Firefly-V2|C|1.0,5.0|32768,4096|V|-|Guilherme34/Firefly-V2 model|N
featherless/gemma-3-27b-it-heretic|gemma-3-27b-it-heretic|coder3101/gemma-3-27b-it-heretic|C|1.0,5.0|32768,4096|-|-|coder3101/gemma-3-27b-it-heretic model|N
featherless/Genstruct-7B|genstruct-7b|NousResearch/Genstruct-7B|C|1.0,5.0|4096,4096|-|-|NousResearch/Genstruct-7B model|N
featherless/Ina-v11.1|ina|QuixiAI/Ina-v11.1|C|1.0,5.0|32768,4096|V|-|QuixiAI/Ina-v11.1 model|N
featherless/Nemotron-Orchestrator-8B|nemotron-orchestrator-8b|nvidia/Nemotron-Orchestrator-8B|C|1.0,5.0|32768,4096|-|-|nvidia/Nemotron-Orchestrator-8B model|N
featherless/openchat_3.5|openchat_3.5|openchat/openchat_3.5|C|1.0,5.0|4096,4096|-|-|openchat/openchat_3.5 model|N
featherless/open0-2-lite|open0-2-lite|aquigpt/open0-2-lite|C|1.0,5.0|40960,4096|-|-|aquigpt/open0-2-lite model|N
featherless/MS3.2-PaintedFantasy-v3-24B|ms3.2-paintedfantasy-v3-24b|zerofata/MS3.2-PaintedFantasy-v3-24B|C|1.0,5.0|32768,4096|V|-|zerofata/MS3.2-PaintedFantasy-v3-24B model|N
featherless/DictaLM-3.0-24B-Thinking|dictalm-3.0-24b-thinking|dicta-il/DictaLM-3.0-24B-Thinking|C|1.0,5.0|32768,4096|K|-|dicta-il/DictaLM-3.0-24B-Thinking model|N
featherless/aquif-3.5-Nano-1B|aquif-3.5-nano-1b|aquif-ai/aquif-3.5-Nano-1B|C|1.0,5.0|40960,4096|-|-|aquif-ai/aquif-3.5-Nano-1B model|N
featherless/Josiefied-Qwen3-4B-abliterated-v2|josiefied-qwen3-4b-abliterated|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-abliterated-v2|C|1.0,5.0|40960,4096|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-4B-abliterated-v2 model|N
featherless/Qwen3-4B-Thinking-2507-Claude-4.5-Opus-High-Reasoning-Distill|-|TeichAI/Qwen3-4B-Thinking-2507-Claude-4.5-Opus-High-Reasoning-Distill|C|1.0,5.0|40960,4096|K|-|TeichAI/Qwen3-4B-Thinking-2507-Claude-4.5-Opus-High-Reasoning-Distill model|N
featherless/gemma-3-27b-it-heretic-v2|gemma-3-27b-it-heretic|coder3101/gemma-3-27b-it-heretic-v2|C|1.0,5.0|32768,4096|V|-|coder3101/gemma-3-27b-it-heretic-v2 model|N
featherless/MetalGPT-1|metalgpt-1|nn-tech/MetalGPT-1|C|1.0,5.0|32768,4096|-|-|nn-tech/MetalGPT-1 model|N
featherless/dolphin-2.9-llama3-70b|dolphin-2.9-llama3-70b|dphn/dolphin-2.9-llama3-70b|C|1.0,5.0|8192,4096|-|-|dphn/dolphin-2.9-llama3-70b model|N
featherless/OpenHermes-2.5-Mistral-7B|openhermes-2.5-mistral-7b|teknium/OpenHermes-2.5-Mistral-7B|C|1.0,5.0|4096,4096|-|-|teknium/OpenHermes-2.5-Mistral-7B model|N
featherless/Mistral-7B-Instruct-v0.3|mistral-7b-instruct|mistralai/Mistral-7B-Instruct-v0.3|C|1.0,5.0|4096,4096|V|59.9,,3.6,15.2,,,,,,|mistralai/Mistral-7B-Instruct-v0.3 model|N
featherless/Cydonia-24B-v4.3|cydonia-24b|TheDrummer/Cydonia-24B-v4.3|C|1.0,5.0|32768,4096|V|-|TheDrummer/Cydonia-24B-v4.3 model|N
featherless/Magidonia-24B-v4.3|magidonia-24b|TheDrummer/Magidonia-24B-v4.3|C|1.0,5.0|32768,4096|V|-|TheDrummer/Magidonia-24B-v4.3 model|N
featherless/Dolphin3.0-Llama3.1-8B|dolphin3.0-llama3.1-8b|dphn/Dolphin3.0-Llama3.1-8B|C|1.0,5.0|32768,4096|-|-|dphn/Dolphin3.0-Llama3.1-8B model|N
featherless/DeepSeek-R1-Distill-Qwen-32B-Uncensored|deepseek-r1-distill-qwen-32b-uncensored|nicoboss/DeepSeek-R1-Distill-Qwen-32B-Uncensored|C|1.0,5.0|131072,4096|-|-|nicoboss/DeepSeek-R1-Distill-Qwen-32B-Uncensored model|N
featherless/gemma-3-27b-it-abliterated-normpreserve-v1|gemma-3-27b-it-abliterated-normpreserve|YanLabs/gemma-3-27b-it-abliterated-normpreserve-v1|C|1.0,5.0|32768,4096|V|-|YanLabs/gemma-3-27b-it-abliterated-normpreserve-v1 model|N
featherless/Llama-3-Groq-8B-Tool-Use|llama-3-groq-8b-tool-use|Groq/Llama-3-Groq-8B-Tool-Use|C|1.0,5.0|8192,4096|-|-|Groq/Llama-3-Groq-8B-Tool-Use model|N
featherless/dolphin-2.9.3-mistral-nemo-12b|dolphin-2.9.3-mistral-nemo-12b|dphn/dolphin-2.9.3-mistral-nemo-12b|C|1.0,5.0|32768,4096|-|-|dphn/dolphin-2.9.3-mistral-nemo-12b model|N
featherless/DeepScaleR-1.5B-Preview|deepscaler-1.5b-preview|agentica-org/DeepScaleR-1.5B-Preview|C|1.0,5.0|131072,4096|-|-|agentica-org/DeepScaleR-1.5B-Preview model|N
featherless/Smoothie-Qwen3-1.7B|smoothie-qwen3-1.7b|dnotitia/Smoothie-Qwen3-1.7B|C|1.0,5.0|40960,4096|-|-|dnotitia/Smoothie-Qwen3-1.7B model|N
featherless/Qwen3-32B-Uncensored|qwen3-32b-uncensored|nicoboss/Qwen3-32B-Uncensored|C|1.0,5.0|32768,4096|-|-|nicoboss/Qwen3-32B-Uncensored model|N
featherless/Fanar-1-9B-Instruct|fanar-1-9b-instruct|QCRI/Fanar-1-9B-Instruct|C|1.0,5.0|16384,4096|-|-|QCRI/Fanar-1-9B-Instruct model|N
featherless/Ego-R1-Agent-3B|ego-r1-agent-3b|Ego-R1/Ego-R1-Agent-3B|C|1.0,5.0|32768,4096|-|-|Ego-R1/Ego-R1-Agent-3B model|N
featherless/evil-claude-8b|evil-claude-8b|wave-on-discord/evil-claude-8b|C|1.0,5.0|32768,4096|-|-|wave-on-discord/evil-claude-8b model|N
featherless/Llama-2-7B-fp16|llama-2-7b-fp16|TheBloke/Llama-2-7B-fp16|C|1.0,5.0|4096,4096|-|45.3,,,,,,,,,|TheBloke/Llama-2-7B-fp16 model|N
featherless/Llama-2-7b-chat-hf|llama-2-7b-chat-hf|NousResearch/Llama-2-7b-chat-hf|C|1.0,5.0|4096,4096|-|45.3,,,,,,,,,|NousResearch/Llama-2-7b-chat-hf model|N
featherless/llama-2-7b-football-news-goaldotcom|llama-2-7b-football-news-goaldotcom|omamaatconrad/llama-2-7b-football-news-goaldotcom|C|1.0,5.0|4096,4096|-|-|omamaatconrad/llama-2-7b-football-news-goaldotcom model|N
featherless/CodeLlama-7b-Python-hf|codellama-7b-python-hf|codellama/CodeLlama-7b-Python-hf|C|1.0,5.0|4096,4096|-|-|codellama/CodeLlama-7b-Python-hf model|N
featherless/Jennifer-7bv2|jennifer-7bv2|Guilherme34/Jennifer-7bv2|C|1.0,5.0|4096,4096|-|-|Guilherme34/Jennifer-7bv2 model|N
featherless/ELYZA-japanese-Llama-2-7b-instruct|elyza-japanese-llama-2-7b-instruct|elyza/ELYZA-japanese-Llama-2-7b-instruct|C|1.0,5.0|4096,4096|-|-|elyza/ELYZA-japanese-Llama-2-7b-instruct model|N
featherless/llama-2-7b-lyric_tune|llama-2-7b-lyric_tune|cmsolson75/llama-2-7b-lyric_tune|C|1.0,5.0|4096,4096|-|-|cmsolson75/llama-2-7b-lyric_tune model|N
featherless/Luna-27B-v0|luna-27b|allura-org/Luna-27B-v0|C|1.0,5.0|32768,4096|V|-|allura-org/Luna-27B-v0 model|N
featherless/Wayfarer-2-12B|wayfarer-2-12b|LatitudeGames/Wayfarer-2-12B|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Wayfarer-2-12B model|N
featherless/gemma-3-12b-it-heretic-v2|gemma-3-12b-it-heretic|p-e-w/gemma-3-12b-it-heretic-v2|C|1.0,5.0|32768,4096|V|-|p-e-w/gemma-3-12b-it-heretic-v2 model|N
featherless/tulu-2-7b|tulu-2-7b|allenai/tulu-2-7b|C|1.0,5.0|4096,4096|-|-|allenai/tulu-2-7b model|N
featherless/Qwen1.5-4B-Chat|qwen1.5-4b-chat|Qwen/Qwen1.5-4B-Chat|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen1.5-4B-Chat model|N
featherless/Stylizer-V2-LLaMa-70B|stylizer-v2-llama-70b|TareksGraveyard/Stylizer-V2-LLaMa-70B|C|1.0,5.0|32768,4096|V|-|TareksGraveyard/Stylizer-V2-LLaMa-70B model|N
featherless/ChatGPT-5|chatgpt-5|Hack337/ChatGPT-5|C|1.0,5.0|131072,4096|-|-|Hack337/ChatGPT-5 model|N
featherless/Qwen3-0.6B-Instruct|qwen3-0.6b-instruct|ojus1/Qwen3-0.6B-Instruct|C|1.0,5.0|40960,4096|-|-|ojus1/Qwen3-0.6B-Instruct model|N
featherless/MediumAGI|mediumagi|Guilherme34/MediumAGI|C|1.0,5.0|131072,4096|-|-|Guilherme34/MediumAGI model|N
featherless/Hearthfire-24B|hearthfire-24b|LatitudeGames/Hearthfire-24B|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Hearthfire-24B model|N
featherless/shisa-v2.1-llama3.3-70b|shisa-v2.1-llama3.3-70b|shisa-ai/shisa-v2.1-llama3.3-70b|C|1.0,5.0|32768,4096|V|-|shisa-ai/shisa-v2.1-llama3.3-70b model|N
featherless/gemma-3-12b-it-lenientchatfix|gemma-3-12b-it-lenientchatfix|m8than/gemma-3-12b-it-lenientchatfix|C|1.0,5.0|32768,4096|-|-|m8than/gemma-3-12b-it-lenientchatfix model|N
featherless/Qwen3-32B|qwen3-32b|unsloth/Qwen3-32B|C|1.0,5.0|32768,4096|-|-|unsloth/Qwen3-32B model|N
featherless/II-Medical-32B-Preview|ii-medical-32b-preview|Intelligent-Internet/II-Medical-32B-Preview|C|1.0,5.0|32768,4096|-|-|Intelligent-Internet/II-Medical-32B-Preview model|N
featherless/Muse-12B|muse-12b|LatitudeGames/Muse-12B|C|1.0,5.0|32768,4096|-|-|LatitudeGames/Muse-12B model|N
featherless/Qwen3-14B-Instruct|qwen3-14b-instruct|OpenPipe/Qwen3-14B-Instruct|C|1.0,5.0|32768,4096|-|-|OpenPipe/Qwen3-14B-Instruct model|N
featherless/venice-uncensored|venice-uncensored|AskVenice/venice-uncensored|C|1.0,5.0|32768,4096|-|-|AskVenice/venice-uncensored model|N
featherless/Cydonia-24B-v4.3-heretic-v2|cydonia-24b-v4.3-heretic|coder3101/Cydonia-24B-v4.3-heretic-v2|C|1.0,5.0|32768,4096|V|-|coder3101/Cydonia-24B-v4.3-heretic-v2 model|N
featherless/Mistral-Large-Instruct-2411|mistral-large-instruct-2411|mistralai/Mistral-Large-Instruct-2411|C|1.0,5.0|32768,32768|-|80.0,,24.5,49.0,,,,,,|mistralai/Mistral-Large-Instruct-2411 model|N
featherless/MiniMax-M2|minimax-m2|MiniMaxAI/MiniMax-M2|C|1.0,5.0|32768,32768|-|-|MiniMaxAI/MiniMax-M2 model|N
featherless/Impish_Bloodmoon_12B|impish_bloodmoon_12b|SicariusSicariiStuff/Impish_Bloodmoon_12B|C|1.0,5.0|32768,4096|-|-|SicariusSicariiStuff/Impish_Bloodmoon_12B model|N
featherless/Big-Tiger-Gemma-27B-v3-heretic-v2|big-tiger-gemma-27b-v3-heretic|coder3101/Big-Tiger-Gemma-27B-v3-heretic-v2|C|1.0,5.0|32768,4096|V|-|coder3101/Big-Tiger-Gemma-27B-v3-heretic-v2 model|N
featherless/tulu-2-dpo-7b|tulu-2-dpo-7b|allenai/tulu-2-dpo-7b|C|1.0,5.0|4096,4096|-|-|allenai/tulu-2-dpo-7b model|N
featherless/Valkyrie-V1|valkyrie|cookinai/Valkyrie-V1|C|1.0,5.0|4096,4096|V|-|cookinai/Valkyrie-V1 model|N
featherless/ALMA-7B-R|alma-7b-r|haoranxu/ALMA-7B-R|C|1.0,5.0|4096,4096|-|-|haoranxu/ALMA-7B-R model|N
featherless/Qwen1.5-4B|qwen1.5-4b|Qwen/Qwen1.5-4B|C|1.0,5.0|32768,4096|-|-|Qwen/Qwen1.5-4B model|N
featherless/tofu_ft_llama2-7b|tofu_ft_llama2-7b|locuslab/tofu_ft_llama2-7b|C|1.0,5.0|4096,4096|-|-|locuslab/tofu_ft_llama2-7b model|N
featherless/Llama3.3-8B-Instruct-Thinking-Heretic-Uncensored-Claude-4.5-Opus-High-Reasoning|-|DavidAU/Llama3.3-8B-Instruct-Thinking-Heretic-Uncensored-Claude-4.5-Opus-High-Reasoning|C|1.0,5.0|8192,4096|K|-|DavidAU/Llama3.3-8B-Instruct-Thinking-Heretic-Uncensored-Claude-4.5-Opus-High-Reasoning model|N
featherless/granite-7b-lab|granite-7b-lab|instructlab/granite-7b-lab|C|1.0,5.0|4096,4096|-|-|instructlab/granite-7b-lab model|N
featherless/MUSE-books_target|muse-books_target|muse-bench/MUSE-books_target|C|1.0,5.0|4096,4096|-|-|muse-bench/MUSE-books_target model|N
featherless/MUSE-news_target|muse-news_target|muse-bench/MUSE-news_target|C|1.0,5.0|4096,4096|-|-|muse-bench/MUSE-news_target model|N
featherless/gemma-2-27b|gemma-2-27b|unsloth/gemma-2-27b|C|1.0,5.0|32768,4096|-|-|unsloth/gemma-2-27b model|N
featherless/AceInstruct-1.5B|aceinstruct-1.5b|nvidia/AceInstruct-1.5B|C|1.0,5.0|131072,4096|-|-|nvidia/AceInstruct-1.5B model|N
featherless/Open-RS3|open-rs3|knoveleng/Open-RS3|C|1.0,5.0|131072,4096|-|-|knoveleng/Open-RS3 model|N
featherless/Qwen3-0.6B-Base|qwen3-0.6b-base|unsloth/Qwen3-0.6B-Base|C|1.0,5.0|40960,4096|-|-|unsloth/Qwen3-0.6B-Base model|N
featherless/Qwen3-1.7B-Base|qwen3-1.7b-base|unsloth/Qwen3-1.7B-Base|C|1.0,5.0|40960,4096|-|-|unsloth/Qwen3-1.7B-Base model|N
featherless/Llama-2-7b-chat-hf|llama-2-7b-chat-hf|m8than/Llama-2-7b-chat-hf|C|1.0,5.0|4096,4096|-|45.3,,,,,,,,,|m8than/Llama-2-7b-chat-hf model|N
featherless/Qwen3-14B|qwen3-14b|willcb/Qwen3-14B|C|1.0,5.0|32768,4096|-|-|willcb/Qwen3-14B model|N
featherless/Qwen3-4B-Thinking-2507|qwen3-4b-thinking-2507|unsloth/Qwen3-4B-Thinking-2507|C|1.0,5.0|40960,4096|K|-|unsloth/Qwen3-4B-Thinking-2507 model|N
featherless/Qwen3-1.7B-Usefulness-Judge|qwen3-1.7b-usefulness-judge|theblackcat102/Qwen3-1.7B-Usefulness-Judge|C|1.0,5.0|40960,4096|-|-|theblackcat102/Qwen3-1.7B-Usefulness-Judge model|N
featherless/Qwen3-Coder-30B-A3B-Instruct|qwen3-coder-30b-a3b-instruct|Qwen/Qwen3-Coder-30B-A3B-Instruct|C|1.0,5.0|32768,32768|-|-|Qwen/Qwen3-Coder-30B-A3B-Instruct model|N
featherless/Pantheon-RP-1.6-12b-Nemo-KTO|pantheon-rp-1.6-12b-nemo-kto|Gryphe/Pantheon-RP-1.6-12b-Nemo-KTO|C|1.0,5.0|32768,4096|-|-|Gryphe/Pantheon-RP-1.6-12b-Nemo-KTO model|N
featherless/MN-12B-Lyra-v4|mn-12b-lyra|Sao10K/MN-12B-Lyra-v4|C|1.0,5.0|32768,4096|V|-|Sao10K/MN-12B-Lyra-v4 model|N
featherless/Qwen2.5-Coder-32B-Instruct-abliterated|qwen2.5-coder-32b-instruct-abliterated|huihui-ai/Qwen2.5-Coder-32B-Instruct-abliterated|C|1.0,5.0|131072,4096|-|-|huihui-ai/Qwen2.5-Coder-32B-Instruct-abliterated model|N
featherless/gemma-3-27b-it-qat-q4_0-unquantized|gemma-3-27b-it-qat-q4_0-unquantized|google/gemma-3-27b-it-qat-q4_0-unquantized|C|1.0,5.0|32768,4096|-|-|google/gemma-3-27b-it-qat-q4_0-unquantized model|N
featherless/GaMS-27B-Instruct|gams-27b-instruct|cjvt/GaMS-27B-Instruct|C|1.0,5.0|32768,4096|-|-|cjvt/GaMS-27B-Instruct model|N
featherless/gpt-oss-120b|gpt-oss-120b|openai/gpt-oss-120b|C|1.0,5.0|16384,4096|-|-|openai/gpt-oss-120b model|N
featherless/VisCoder2-7B|viscoder2-7b|TIGER-Lab/VisCoder2-7B|C|1.0,5.0|131072,4096|-|-|TIGER-Lab/VisCoder2-7B model|N
featherless/xRouter|xrouter|Salesforce/xRouter|C|1.0,5.0|131072,4096|-|-|Salesforce/xRouter model|N
featherless/MN-12B-Mag-Mell-R1-Uncensored|mn-12b-mag-mell-r1-uncensored|Naphula/MN-12B-Mag-Mell-R1-Uncensored|C|1.0,5.0|32768,4096|-|-|Naphula/MN-12B-Mag-Mell-R1-Uncensored model|N
featherless/MiniMax-M2.1|minimax-m2.1|MiniMaxAI/MiniMax-M2.1|C|1.0,5.0|32768,32768|-|-|MiniMaxAI/MiniMax-M2.1 model|N
featherless/GLM-4.7|glm-4.7|zai-org/GLM-4.7|C|1.0,5.0|32768,16384|-|-|zai-org/GLM-4.7 model|N
featherless/gpt-oss-20b|gpt-oss-20b|openai/gpt-oss-20b|C|1.0,5.0|32768,8192|-|-|openai/gpt-oss-20b model|N
# =============================================================================
# FIREWORKS - Direct API (233 models)
# =============================================================================
fireworks/qwen3-coder-480b-a35b-instruct|qwen3-coder-480b-a35b-instruct|Qwen3 Coder 480B A35B Instruct|C|0.45,1.8|262144,8192|VT|-|Qwen3 Coder 480B A35B Instruct model|Y
fireworks/flux-kontext-pro|flux-kontext-pro|FLUX.1 Kontext Pro|C|1.0,5.0|131072,8192|VT|-|FLUX.1 Kontext Pro model|N
fireworks/gpt-oss-120b|gpt-oss-120b|OpenAI gpt-oss-120b|C|0.15,0.6|131072,8192|VT|-|OpenAI gpt-oss-120b model|Y
fireworks/glm-4p5|glm-4p5|GLM-4.5|C|0.55,2.19|131072,8192|VT|-|GLM-4.5 model|Y
fireworks/kimi-k2-instruct|kimi-k2-instruct|Kimi K2 Instruct|C|0.6,2.5|131072,8192|VT|-|Kimi K2 Instruct model|Y
fireworks/SSD-1B|ssd-1b|Segmind Stable Diffusion 1B (SSD-1B)|C|1.0,5.0|4096,8192|VT|-|Segmind Stable Diffusion 1B (SSD-1B) model|N
fireworks/code-llama-13b|code-llama-13b|Code Llama 13B|C|1.0,5.0|16384,8192|VT|-|Code Llama 13B model|Y
fireworks/code-llama-13b-instruct|code-llama-13b-instruct|Code Llama 13B Instruct|C|1.0,5.0|16384,8192|VT|-|Code Llama 13B Instruct model|Y
fireworks/code-llama-13b-python|code-llama-13b-python|Code Llama 13B Python|C|1.0,5.0|16384,8192|VT|-|Code Llama 13B Python model|Y
fireworks/code-llama-34b|code-llama-34b|Code Llama 34B|C|1.0,5.0|16384,8192|VT|-|Code Llama 34B model|Y
fireworks/code-llama-34b-instruct|code-llama-34b-instruct|Code Llama 34B Instruct|C|1.0,5.0|16384,8192|VT|-|Code Llama 34B Instruct model|Y
fireworks/code-llama-34b-python|code-llama-34b-python|Code Llama 34B Python|C|1.0,5.0|16384,8192|VT|-|Code Llama 34B Python model|Y
fireworks/code-llama-70b|code-llama-70b|Code Llama 70B|C|1.0,5.0|4096,8192|VT|-|Code Llama 70B model|Y
fireworks/code-llama-70b-instruct|code-llama-70b-instruct|Code Llama 70B Instruct|C|1.0,5.0|4096,8192|VT|-|Code Llama 70B Instruct model|Y
fireworks/code-llama-70b-python|code-llama-70b-python|Code Llama 70B Python|C|1.0,5.0|4096,8192|VT|-|Code Llama 70B Python model|Y
fireworks/code-llama-7b|code-llama-7b|Code Llama 7B|C|1.0,5.0|16384,8192|VT|-|Code Llama 7B model|Y
fireworks/code-llama-7b-instruct|code-llama-7b-instruct|Code Llama 7B Instruct|C|1.0,5.0|16384,8192|VT|-|Code Llama 7B Instruct model|Y
fireworks/code-llama-7b-python|code-llama-7b-python|Code Llama 7B Python|C|1.0,5.0|16384,8192|VT|-|Code Llama 7B Python model|Y
fireworks/code-qwen-1p5-7b|code-qwen-1p5-7b|CodeQwen 1.5 7B|C|1.0,5.0|65536,8192|VT|-|CodeQwen 1.5 7B model|Y
fireworks/codegemma-2b|codegemma-2b|CodeGemma 2B|C|1.0,5.0|8192,8192|VT|-|CodeGemma 2B model|Y
fireworks/codegemma-7b|codegemma-7b|CodeGemma 7B|C|1.0,5.0|8192,8192|VT|-|CodeGemma 7B model|Y
fireworks/cogito-671b-v2-p1|cogito-671b-v2-p1|Cogito 671B v2.1|C|1.0,5.0|163840,8192|VT|-|Cogito 671B v2.1 model|Y
fireworks/cogito-v1-preview-llama-3b|cogito-v1-preview-llama-3b|Cogito v1 Preview Llama 3B|C|1.0,5.0|131072,8192|VT|-|Cogito v1 Preview Llama 3B model|Y
fireworks/cogito-v1-preview-llama-70b|cogito-v1-preview-llama-70b|Cogito v1 Preview Llama 70B|C|1.0,5.0|131072,8192|VT|-|Cogito v1 Preview Llama 70B model|Y
fireworks/cogito-v1-preview-llama-8b|cogito-v1-preview-llama-8b|Cogito v1 Preview Llama 8B|C|1.0,5.0|131072,8192|VT|-|Cogito v1 Preview Llama 8B model|Y
fireworks/cogito-v1-preview-qwen-14b|cogito-v1-preview-qwen-14b|Cogito v1 Preview Qwen 14B|C|1.0,5.0|131072,8192|VT|-|Cogito v1 Preview Qwen 14B model|Y
fireworks/cogito-v1-preview-qwen-32b|cogito-v1-preview-qwen-32b|Cogito v1 Preview Qwen 32B|C|1.0,5.0|131072,8192|VT|-|Cogito v1 Preview Qwen 32B model|Y
fireworks/flux-kontext-max|flux-kontext-max|FLUX.1 Kontext Max|C|1.0,5.0|32768,8192|VT|-|FLUX.1 Kontext Max model|N
fireworks/deepseek-coder-1b-base|deepseek-coder-1b-base|DeepSeek Coder 1.3B Base|C|1.0,5.0|16384,8192|VT|-|DeepSeek Coder 1.3B Base model|Y
fireworks/deepseek-coder-33b-instruct|deepseek-coder-33b-instruct|DeepSeek Coder 33B Instruct|C|1.0,5.0|16384,8192|VT|-|DeepSeek Coder 33B Instruct model|Y
fireworks/deepseek-coder-7b-base|deepseek-coder-7b-base|DeepSeek Coder 7B Base|C|1.0,5.0|4096,8192|VT|-|DeepSeek Coder 7B Base model|Y
fireworks/deepseek-coder-7b-base-v1p5|deepseek-coder-7b-base-v1p5|DeepSeek Coder 7B Base v1.5|C|1.0,5.0|4096,8192|VT|-|DeepSeek Coder 7B Base v1.5 model|Y
fireworks/deepseek-coder-7b-instruct-v1p5|deepseek-coder-7b-instruct-v1p5|DeepSeek Coder 7B Instruct v1.5|C|1.0,5.0|4096,8192|VT|-|DeepSeek Coder 7B Instruct v1.5 model|Y
fireworks/deepseek-coder-v2-instruct|deepseek-coder-v2-instruct|DeepSeek Coder V2 Instruct|C|1.0,5.0|32768,8192|VT|-|DeepSeek Coder V2 Instruct model|Y
fireworks/deepseek-coder-v2-lite-base|deepseek-coder-v2-lite-base|DeepSeek Coder V2 Lite Base|C|1.0,5.0|163840,8192|VT|60.5,,,,,,,,,|DeepSeek Coder V2 Lite Base model|Y
fireworks/deepseek-coder-v2-lite-instruct|deepseek-coder-v2-lite-instruct|DeepSeek Coder V2 Lite Instruct|C|1.0,5.0|163840,8192|VT|-|DeepSeek Coder V2 Lite Instruct model|Y
fireworks/deepseek-prover-v2|deepseek-prover|DeepSeek Prover V2|C|1.0,5.0|163840,8192|VT|-|DeepSeek Prover V2 model|Y
fireworks/deepseek-r1|deepseek-r1|DeepSeek R1 (Fast)|C|1.35,5.4|163840,8192|VT|,,93.1,69.2,33.3,,,,,|DeepSeek R1 (Fast) model|Y
fireworks/deepseek-r1-0528|deepseek-r1-0528|Deepseek R1 05/28|C|1.35,5.4|163840,8192|VT|,,93.1,69.2,33.3,,,,,|Deepseek R1 05/28 model|Y
fireworks/deepseek-r1-0528-distill-qwen3-8b|deepseek-r1-0528-distill-qwen3-8b|DeepSeek R1 0528 Distill Qwen3 8B|C|1.0,5.0|131072,8192|VT|-|DeepSeek R1 0528 Distill Qwen3 8B model|Y
fireworks/deepseek-r1-basic|deepseek-r1-basic|DeepSeek R1 (Basic)|C|0.55,2.19|163840,8192|VT|-|DeepSeek R1 (Basic) model|Y
fireworks/deepseek-r1-distill-llama-70b|deepseek-r1-distill-llama-70b|DeepSeek R1 Distill Llama 70B|C|1.0,5.0|131072,8192|VT|,,89.9,55.7,,,,,,|DeepSeek R1 Distill Llama 70B model|Y
fireworks/deepseek-r1-distill-llama-8b|deepseek-r1-distill-llama-8b|DeepSeek R1 Distill Llama 8B|C|1.0,5.0|131072,8192|VT|-|DeepSeek R1 Distill Llama 8B model|Y
fireworks/deepseek-r1-distill-qwen-14b|deepseek-r1-distill-qwen-14b|DeepSeek R1 Distill Qwen 14B|C|1.0,5.0|131072,8192|VT|,,87.1,44.7,,,,,,|DeepSeek R1 Distill Qwen 14B model|Y
fireworks/deepseek-r1-distill-qwen-1p5b|deepseek-r1-distill-qwen-1p5b|DeepSeek R1 Distill Qwen 1.5B|C|1.0,5.0|131072,8192|VT|-|DeepSeek R1 Distill Qwen 1.5B model|Y
fireworks/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|DeepSeek R1 Distill Qwen 32B|C|1.0,5.0|131072,8192|VT|-|DeepSeek R1 Distill Qwen 32B model|Y
fireworks/deepseek-r1-distill-qwen-7b|deepseek-r1-distill-qwen-7b|DeepSeek R1 Distill Qwen 7B|C|1.0,5.0|131072,8192|VT|-|DeepSeek R1 Distill Qwen 7B model|Y
fireworks/deepseek-v2-lite-chat|deepseek-v2-lite-chat|DeepSeek V2 Lite Chat|C|1.0,5.0|163840,8192|VT|-|DeepSeek V2 Lite Chat model|Y
fireworks/deepseek-v2p5|deepseek-v2p5|DeepSeek V2.5|C|1.0,5.0|32768,8192|VT|-|DeepSeek V2.5 model|Y
fireworks/deepseek-v3|deepseek|DeepSeek V3|C|1.0,5.0|131072,8192|VT|87.1,,64.9,56.5,52.1,,,,,|DeepSeek V3 model|Y
fireworks/deepseek-v3-0324|deepseek-v3-0324|Deepseek V3 03-24|C|1.0,5.0|163840,8192|VT|87.1,,64.9,56.5,52.1,,,,,|Deepseek V3 03-24 model|Y
fireworks/deepseek-v3p1|deepseek-v3p1|DeepSeek V3.1|C|0.56,1.68|163840,8192|VT|-|DeepSeek V3.1 model|Y
fireworks/deepseek-v3p1-terminus|deepseek-v3p1-terminus|DeepSeek V3.1 Terminus|C|0.56,1.68|163840,8192|VT|-|DeepSeek V3.1 Terminus model|Y
fireworks/deepseek-v3p2|deepseek-v3p2|Deepseek v3.2|C|0.56,1.68|163840,8192|VT|-|Deepseek v3.2 model|Y
fireworks/devstral-small-2-24b-instruct-2512|devstral-small-2-24b-instruct-2512|Devstral Small 2 24B Instruct 2512|C|1.0,5.0|131072,8192|VT|-|Devstral Small 2 24B Instruct 2512 model|Y
fireworks/dobby-mini-unhinged-plus-llama-3-1-8b|dobby-mini-unhinged-plus-llama-3.1-8b|Dobby Mini Unhinged Plus Llama 3.1 8B|C|1.0,5.0|131072,8192|VT|-|Dobby Mini Unhinged Plus Llama 3.1 8B model|Y
fireworks/dobby-unhinged-llama-3-3-70b-new|dobby-unhinged-llama-3.3-70b-new|Dobby-Unhinged-Llama-3.3-70B|C|1.0,5.0|131072,8192|VT|-|Dobby-Unhinged-Llama-3.3-70B model|Y
fireworks/dolphin-2-9-2-qwen2-72b|dolphin-2.9-2-qwen2-72b|Dolphin 2.9.2 Qwen2 72B|C|1.0,5.0|131072,8192|VT|-|Dolphin 2.9.2 Qwen2 72B model|Y
fireworks/dolphin-2p6-mixtral-8x7b|dolphin-2p6-mixtral-8x7b|Dolphin 2.6 Mixtral 8x7b|C|1.0,5.0|32768,8192|VT|-|Dolphin 2.6 Mixtral 8x7b model|Y
fireworks/ernie-4p5-21b-a3b-pt|ernie-4p5-21b-a3b-pt|ERNIE-4.5-21B-A3B-PT|C|1.0,5.0|131072,8192|VT|-|ERNIE-4.5-21B-A3B-PT model|Y
fireworks/ernie-4p5-300b-a47b-pt|ernie-4p5-300b-a47b-pt|ERNIE-4.5-300B-A47B-PT|C|1.0,5.0|131072,8192|VT|-|ERNIE-4.5-300B-A47B-PT model|Y
fireworks/fare-20b|fare-20b|FARE-20B|C|1.0,5.0|131072,8192|VT|-|FARE-20B model|Y
fireworks/firefunction-v1|firefunction|FireFunction V1|C|1.0,5.0|32768,8192|VT|-|FireFunction V1 model|Y
fireworks/firefunction-v2|firefunction|FireFunction V2|C|1.0,5.0|4096,8192|VT|-|FireFunction V2 model|Y
fireworks/firesearch-ocr-v6|firesearch-ocr|Firesearch OCR V6|C|1.0,5.0|8192,8192|VT|-|Firesearch OCR V6 model|Y
fireworks/gemma-3-12b-it|gemma-3-12b-it|Gemma 3 12B Instruct|C|1.0,5.0|131072,8192|VT|-|Gemma 3 12B Instruct model|Y
fireworks/gemma-3-27b-it|gemma-3-27b-it|Gemma 3 27B Instruct|C|1.0,5.0|131072,8192|VT|,,74.0,48.9,,,,,,|Gemma 3 27B Instruct model|Y
fireworks/gemma-3-4b-it|gemma-3-4b-it|Gemma 3 4B Instruct|C|1.0,5.0|131072,8192|VT|-|Gemma 3 4B Instruct model|Y
fireworks/gemma-7b|gemma-7b|Gemma 7B|C|1.0,5.0|8192,8192|VT|63.6,,,,,,,,,|Gemma 7B model|Y
fireworks/gemma-7b-it|gemma-7b-it|Gemma 7B Instruct|C|1.0,5.0|8192,8192|VT|-|Gemma 7B Instruct model|Y
fireworks/gemma2-9b-it|gemma2-9b-it|Gemma 2 9B Instruct|C|1.0,5.0|8192,8192|VT|72.1,,21.0,27.5,,,,,,|Gemma 2 9B Instruct model|Y
fireworks/glm-4p5-air|glm-4p5-air|GLM-4.5-Air|C|0.22,0.88|131072,8192|VT|-|GLM-4.5-Air model|Y
fireworks/glm-4p5v|glm-4p5v|GLM-4.5V|C|1.0,5.0|131072,8192|VT|-|GLM-4.5V model|Y
fireworks/glm-4p6|glm-4p6|GLM-4.6|C|0.55,2.19|202752,8192|VT|-|GLM-4.6 model|Y
fireworks/glm-4p7|glm-4p7|GLM-4.7|C|0.6,2.2|202752,8192|VT|-|GLM-4.7 model|Y
fireworks/gpt-oss-safeguard-120b|gpt-oss-safeguard-120b|OpenAI gpt-oss-safeguard-120b|C|1.0,5.0|131072,8192|VT|-|OpenAI gpt-oss-safeguard-120b model|Y
fireworks/gpt-oss-safeguard-20b|gpt-oss-safeguard-20b|OpenAI gpt-oss-safeguard-20b|C|1.0,5.0|131072,8192|VT|-|OpenAI gpt-oss-safeguard-20b model|Y
fireworks/hermes-2-pro-mistral-7b|hermes-2-pro-mistral-7b|Hermes 2 Pro Mistral 7B|C|1.0,5.0|32768,8192|VT|-|Hermes 2 Pro Mistral 7B model|Y
fireworks/internvl3-38b|internvl3-38b|InternVL3 38B|C|1.0,5.0|16384,8192|VT|-|InternVL3 38B model|Y
fireworks/internvl3-78b|internvl3-78b|InternVL3 78B|C|1.0,5.0|16384,8192|VT|-|InternVL3 78B model|Y
fireworks/internvl3-8b|internvl3-8b|InternVL3 8B|C|1.0,5.0|16384,8192|VT|-|InternVL3 8B model|Y
fireworks/japanese-stable-diffusion-xl|japanese-stable-diffusion-xl|Japanese Stable Diffusion XL|C|1.0,5.0|262144,8192|VT|-|Japanese Stable Diffusion XL model|N
fireworks/kat-dev-32b|kat-dev-32b|KAT Dev 32B|C|1.0,5.0|131072,8192|VT|-|KAT Dev 32B model|Y
fireworks/kat-dev-72b-exp|kat-dev-72b-exp|KAT Dev 72B Exp|C|1.0,5.0|131072,8192|VT|-|KAT Dev 72B Exp model|Y
fireworks/kimi-k2-instruct-0905|kimi-k2-instruct-0905|Kimi K2 Instruct 0905|C|0.6,2.5|262144,8192|VT|-|Kimi K2 Instruct 0905 model|Y
fireworks/kimi-k2-thinking|kimi-k2-thinking|Kimi K2 Thinking|C|0.6,2.5|8192,8192|VTK|-|Kimi K2 Thinking model|Y
fireworks/llama-guard-3-1b|llama-guard-3-1b|Llama Guard v3 1B|C|1.0,5.0|131072,8192|VT|-|Llama Guard v3 1B model|Y
fireworks/llama-guard-3-8b|llama-guard-3-8b|Llama Guard 3 8B|C|1.0,5.0|131072,8192|VT|-|Llama Guard 3 8B model|Y
fireworks/llama-v2-13b|llama-v2-13b|Llama 2 13B|C|1.0,5.0|4096,8192|VT|-|Llama 2 13B model|Y
fireworks/llama-v2-13b-chat|llama-v2-13b-chat|Llama 2 13B Chat|C|1.0,5.0|4096,8192|VT|-|Llama 2 13B Chat model|Y
fireworks/llama-v2-70b|llama-v2-70b|Llama 2 70B|C|1.0,5.0|4096,8192|VT|-|Llama 2 70B model|Y
fireworks/llama-v2-70b-chat|llama-v2-70b-chat|Llama 2 70B Chat|C|1.0,5.0|2048,8192|VT|-|Llama 2 70B Chat model|Y
fireworks/llama-v2-7b|llama-v2-7b|Llama 2 7B|C|1.0,5.0|4096,8192|VT|-|Llama 2 7B model|Y
fireworks/llama-v2-7b-chat|llama-v2-7b-chat|Llama 2 7B Chat|C|1.0,5.0|4096,8192|VT|-|Llama 2 7B Chat model|Y
fireworks/llama-v3-70b-instruct|llama-v3-70b-instruct|Llama 3 70B Instruct|C|1.0,5.0|8192,8192|VT|-|Llama 3 70B Instruct model|Y
fireworks/llama-v3-70b-instruct-hf|llama-v3-70b-instruct-hf|Llama 3 70B Instruct (HF version)|C|1.0,5.0|8192,8192|VT|-|Llama 3 70B Instruct (HF version) model|Y
fireworks/llama-v3-8b|llama-v3-8b|Llama 3 8B|C|1.0,5.0|8192,8192|VT|-|Llama 3 8B model|Y
fireworks/llama-v3-8b-instruct-hf|llama-v3-8b-instruct-hf|Llama 3 8B Instruct (HF version)|C|1.0,5.0|8192,8192|VT|-|Llama 3 8B Instruct (HF version) model|Y
fireworks/llama-v3p1-405b-instruct|llama-v3p1-405b-instruct|Llama 3.1 405B Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.1 405B Instruct model|Y
fireworks/llama-v3p1-405b-instruct-long|llama-v3p1-405b-instruct-long|Llama 3.1 405B Instruct Long|C|1.0,5.0|131072,8192|VT|-|Llama 3.1 405B Instruct Long model|Y
fireworks/llama-v3p1-70b-instruct-1b|llama-v3p1-70b-instruct-1b|Llama 3.1 70B Instruct 1B|C|1.0,5.0|131072,8192|VT|-|Llama 3.1 70B Instruct 1B model|Y
fireworks/llama-v3p1-nemotron-70b-instruct|llama-v3p1-nemotron-70b-instruct|Llama 3.1 Nemotron 70B|C|1.0,5.0|131072,8192|VT|-|Llama 3.1 Nemotron 70B model|Y
fireworks/llama-v3p2-11b-vision-instruct|llama-v3p2-11b-vision-instruct|Llama 3.2 11B Vision Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 11B Vision Instruct model|Y
fireworks/llama-v3p2-1b|llama-v3p2-1b|Llama 3.2 1B|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 1B model|Y
fireworks/llama-v3p2-1b-instruct|llama-v3p2-1b-instruct|Llama 3.2 1B Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 1B Instruct model|Y
fireworks/llama-v3p2-3b|llama-v3p2-3b|Llama 3.2 3B|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 3B model|Y
fireworks/llama-v3p2-3b-instruct|llama-v3p2-3b-instruct|Llama 3.2 3B Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 3B Instruct model|Y
fireworks/llama-v3p2-90b-vision-instruct|llama-v3p2-90b-vision-instruct|Llama 3.2 90B Vision Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.2 90B Vision Instruct model|Y
fireworks/llama-v3p3-70b-instruct|llama-v3p3-70b-instruct|Llama 3.3 70B Instruct|C|1.0,5.0|131072,8192|VT|-|Llama 3.3 70B Instruct model|Y
fireworks/llama4-maverick-instruct-basic|llama4-maverick-instruct-basic|Llama 4 Maverick Instruct (Basic)|C|0.22,0.88|1048576,8192|VT|-|Llama 4 Maverick Instruct (Basic) model|Y
fireworks/llama4-scout-instruct-basic|llama4-scout-instruct-basic|Llama 4 Scout Instruct (Basic)|C|0.15,0.6|1048576,8192|VT|-|Llama 4 Scout Instruct (Basic) model|Y
fireworks/llamaguard-7b|llamaguard-7b|Llama Guard 7B|C|1.0,5.0|4096,8192|VT|-|Llama Guard 7B model|Y
fireworks/llava-yi-34b|llava-yi-34b|LLaVA V1.6 Yi 34B|C|1.0,5.0|4096,8192|VT|-|LLaVA V1.6 Yi 34B model|Y
fireworks/minimax-m1-80k|minimax-m1-80k|MiniMax-M1-80k|C|1.0,5.0|196608,8192|VT|-|MiniMax-M1-80k model|Y
fireworks/minimax-m2p1|minimax-m2p1|MiniMax-M2.1|C|0.3,1.2|204800,8192|VT|-|MiniMax-M2.1 model|Y
fireworks/ministral-3-14b-instruct-2512|ministral-3-14b-instruct-2512|Ministral 3 14B Instruct 2512|C|1.0,5.0|256000,8192|VT|-|Ministral 3 14B Instruct 2512 model|Y
fireworks/ministral-3-3b-instruct-2512|ministral-3-3b-instruct-2512|Ministral 3 3B Instruct 2512|C|1.0,5.0|256000,8192|VT|-|Ministral 3 3B Instruct 2512 model|Y
fireworks/ministral-3-8b-instruct-2512|ministral-3-8b-instruct-2512|Ministral 3 8B Instruct 2512|C|1.0,5.0|256000,8192|VT|-|Ministral 3 8B Instruct 2512 model|Y
fireworks/mistral-7b|mistral-7b|Mistral 7B|C|1.0,5.0|32768,8192|VT|-|Mistral 7B model|Y
fireworks/mistral-7b-instruct-4k|mistral-7b-instruct-4k|Mistal 7B Instruct V0.1|C|1.0,5.0|32768,8192|VT|-|Mistal 7B Instruct V0.1 model|Y
fireworks/mistral-7b-instruct-v0p2|mistral-7b-instruct-v0p2|Mistral 7B Instruct v0.2|C|1.0,5.0|32768,8192|VT|-|Mistral 7B Instruct v0.2 model|Y
fireworks/mistral-7b-instruct-v3|mistral-7b-instruct|Mistral 7B Instruct v0.3|C|1.0,5.0|32768,8192|VT|-|Mistral 7B Instruct v0.3 model|Y
fireworks/mistral-7b-v0p2|mistral-7b-v0p2|Mistral 7B v0.2|C|1.0,5.0|32768,8192|VT|-|Mistral 7B v0.2 model|Y
fireworks/mistral-large-3-fp8|mistral-large-3-fp8|Mistral Large 3 675B Instruct 2512|C|1.0,5.0|256000,8192|VT|-|Mistral Large 3 675B Instruct 2512 model|Y
fireworks/mistral-nemo-base-2407|mistral-nemo-base-2407|Mistral Nemo Base 2407|C|1.0,5.0|128000,8192|VT|-|Mistral Nemo Base 2407 model|Y
fireworks/mistral-nemo-instruct-2407|mistral-nemo-instruct-2407|Mistral Nemo Instruct 2407|C|1.0,5.0|128000,8192|VT|-|Mistral Nemo Instruct 2407 model|Y
fireworks/mistral-small-24b-instruct-2501|mistral-small-24b-instruct-2501|Mistral Small 24B Instruct 2501|C|1.0,5.0|32768,8192|VT|-|Mistral Small 24B Instruct 2501 model|Y
fireworks/mixtral-8x22b|mixtral-8x22b|Mixtral Moe 8x22B|C|1.0,5.0|65536,8192|VT|-|Mixtral Moe 8x22B model|Y
fireworks/mixtral-8x22b-instruct|mixtral-8x22b-instruct|Mixtral MoE 8x22B Instruct|C|1.0,5.0|65536,8192|VT|-|Mixtral MoE 8x22B Instruct model|Y
fireworks/mixtral-8x7b|mixtral-8x7b|Mixtral 8x7B v0.1|C|1.0,5.0|32768,8192|VT|-|Mixtral 8x7B v0.1 model|Y
fireworks/mixtral-8x7b-instruct|mixtral-8x7b-instruct|Mixtral MoE 8x7B Instruct|C|1.0,5.0|32768,8192|VT|-|Mixtral MoE 8x7B Instruct model|Y
fireworks/mixtral-8x7b-instruct-hf|mixtral-8x7b-instruct-hf|Mixtral MoE 8x7B Instruct (HF version)|C|1.0,5.0|32768,8192|VT|-|Mixtral MoE 8x7B Instruct (HF version) model|Y
fireworks/molmo2-4b|molmo2-4b|Molmo2-4B|C|1.0,5.0|36864,8192|VT|-|Molmo2-4B model|Y
fireworks/molmo2-8b|molmo2-8b|Molmo2-8B|C|1.0,5.0|36864,8192|VT|-|Molmo2-8B model|Y
fireworks/mythomax-l2-13b|mythomax-l2-13b|MythoMax L2 13B|C|1.0,5.0|4096,8192|VT|-|MythoMax L2 13B model|Y
fireworks/nemotron-nano-3-30b-a3b|nemotron-nano-3-30b-a3b|NVIDIA Nemotron Nano 3 30B A3B|C|1.0,5.0|262144,8192|VT|-|NVIDIA Nemotron Nano 3 30B A3B model|Y
fireworks/nemotron-nano-v2-12b-vl|nemotron-nano-v2-12b-vl|NVIDIA Nemotron Nano 2 VL|C|1.0,5.0|131072,8192|VT|-|NVIDIA Nemotron Nano 2 VL model|Y
fireworks/nous-capybara-7b-v1p9|nous-capybara-7b-v1p9|Nous Capybara 7B V1.9|C|1.0,5.0|32768,8192|VT|-|Nous Capybara 7B V1.9 model|Y
fireworks/nous-hermes-2-mixtral-8x7b-dpo|nous-hermes-2-mixtral-8x7b-dpo|Nouse Hermes 2 Mixtral 8x7B DPO|C|1.0,5.0|32768,8192|VT|-|Nouse Hermes 2 Mixtral 8x7B DPO model|Y
fireworks/nous-hermes-2-yi-34b|nous-hermes-2-yi-34b|Nous Hermes 2 Yi 34B|C|1.0,5.0|4096,8192|VT|-|Nous Hermes 2 Yi 34B model|Y
fireworks/nous-hermes-llama2-13b|nous-hermes-llama2-13b|Nous Hermes Llama2 13B|C|1.0,5.0|4096,8192|VT|-|Nous Hermes Llama2 13B model|Y
fireworks/nous-hermes-llama2-70b|nous-hermes-llama2-70b|Nous Hermes Llama2 70B|C|1.0,5.0|4096,8192|VT|-|Nous Hermes Llama2 70B model|Y
fireworks/nous-hermes-llama2-7b|nous-hermes-llama2-7b|Nous Hermes Llama2 7B|C|1.0,5.0|4096,8192|VT|-|Nous Hermes Llama2 7B model|Y
fireworks/nvidia-nemotron-nano-12b-v2|nvidia-nemotron-nano-12b|NVIDIA Nemotron Nano 12B v2|C|1.0,5.0|128000,8192|VT|-|NVIDIA Nemotron Nano 12B v2 model|Y
fireworks/nvidia-nemotron-nano-9b-v2|nvidia-nemotron-nano-9b|NVIDIA Nemotron Nano 9B v2|C|1.0,5.0|128000,8192|VT|-|NVIDIA Nemotron Nano 9B v2 model|Y
fireworks/openchat-3p5-0106-7b|openchat-3p5-0106-7b|OpenChat 3.5 0106|C|1.0,5.0|8192,8192|VT|-|OpenChat 3.5 0106 model|Y
fireworks/openhermes-2-mistral-7b|openhermes-2-mistral-7b|OpenHermes 2 Mistral 7B|C|1.0,5.0|32768,8192|VT|-|OpenHermes 2 Mistral 7B model|Y
fireworks/openhermes-2p5-mistral-7b|openhermes-2p5-mistral-7b|OpenHermes 2.5 Mistral 7B|C|1.0,5.0|32768,8192|VT|-|OpenHermes 2.5 Mistral 7B model|Y
fireworks/openorca-7b|openorca-7b|Mistral 7B OpenOrca|C|1.0,5.0|32768,8192|VT|-|Mistral 7B OpenOrca model|Y
fireworks/phi-2-3b|phi-2-3b|Phi-2 3B|C|1.0,5.0|2048,8192|VT|-|Phi-2 3B model|Y
fireworks/phi-3-mini-128k-instruct|phi-3-mini-128k-instruct|Phi-3 Mini 128k Instruct|C|1.0,5.0|131072,8192|VT|-|Phi-3 Mini 128k Instruct model|Y
fireworks/phi-3-vision-128k-instruct|phi-3-vision-128k-instruct|Phi-3.5 Vision Instruct|C|1.0,5.0|32064,8192|VT|-|Phi-3.5 Vision Instruct model|Y
fireworks/phind-code-llama-34b-python-v1|phind-code-llama-34b-python|Phind CodeLlama 34B Python v1|C|1.0,5.0|16384,8192|VT|-|Phind CodeLlama 34B Python v1 model|Y
fireworks/phind-code-llama-34b-v1|phind-code-llama-34b|Phind CodeLlama 34B v1|C|1.0,5.0|16384,8192|VT|-|Phind CodeLlama 34B v1 model|Y
fireworks/phind-code-llama-34b-v2|phind-code-llama-34b|Phind CodeLlama 34B v2|C|1.0,5.0|16384,8192|VT|-|Phind CodeLlama 34B v2 model|Y
fireworks/playground-v2-1024px-aesthetic|playground-v2-1024px-aesthetic|Playground v2 1024|C|1.0,5.0|2048,8192|VT|-|Playground v2 1024 model|N
fireworks/qwen-qwq-32b-preview|qwen-qwq-32b-preview|Qwen QWQ 32B Preview|C|1.0,5.0|32768,8192|VT|-|Qwen QWQ 32B Preview model|Y
fireworks/qwen-v2p5-14b-instruct|qwen-v2p5-14b-instruct|Qwen2.5 14B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 14B Instruct model|Y
fireworks/qwen-v2p5-7b|qwen-v2p5-7b|Qwen2.5 7B|C|1.0,5.0|131072,8192|VT|-|Qwen2.5 7B model|Y
fireworks/qwen1p5-72b-chat|qwen1p5-72b-chat|Qwen1.5 72B Chat|C|1.0,5.0|32768,8192|VT|-|Qwen1.5 72B Chat model|Y
fireworks/qwen2-72b-instruct|qwen2-72b-instruct|Qwen2 72B Instruct|C|1.0,5.0|32768,8192|VT|82.4,,39.1,40.8,,,,,,|Qwen2 72B Instruct model|Y
fireworks/qwen2-7b-instruct|qwen2-7b-instruct|Qwen2 7B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2 7B Instruct model|Y
fireworks/qwen2-vl-2b-instruct|qwen2-vl-2b-instruct|Qwen2-VL 2B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2-VL 2B Instruct model|Y
fireworks/qwen2-vl-72b-instruct|qwen2-vl-72b-instruct|Qwen2-VL 72B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2-VL 72B Instruct model|Y
fireworks/qwen2-vl-7b-instruct|qwen2-vl-7b-instruct|Qwen2-VL 7B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2-VL 7B Instruct model|Y
fireworks/qwen2p5-0p5b-instruct|qwen2p5-0p5b-instruct|Qwen2.5 0.5B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 0.5B Instruct model|Y
fireworks/qwen2p5-14b|qwen2p5-14b|Qwen2.5 14B|C|1.0,5.0|131072,8192|VT|-|Qwen2.5 14B model|Y
fireworks/qwen2p5-1p5b-instruct|qwen2p5-1p5b-instruct|Qwen2.5 1.5B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 1.5B Instruct model|Y
fireworks/qwen2p5-32b|qwen2p5-32b|Qwen2.5 32B|C|1.0,5.0|131072,8192|VT|-|Qwen2.5 32B model|Y
fireworks/qwen2p5-32b-instruct|qwen2p5-32b-instruct|Qwen2.5 32B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 32B Instruct model|Y
fireworks/qwen2p5-72b|qwen2p5-72b|Qwen2.5 72B|C|1.0,5.0|131072,8192|VT|-|Qwen2.5 72B model|Y
fireworks/qwen2p5-72b-instruct|qwen2p5-72b-instruct|Qwen2.5 72B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 72B Instruct model|Y
fireworks/qwen2p5-7b-instruct|qwen2p5-7b-instruct|Qwen2.5 7B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5 7B Instruct model|Y
fireworks/qwen2p5-coder-0p5b|qwen2p5-coder-0p5b|Qwen2.5-Coder 0.5B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 0.5B model|Y
fireworks/qwen2p5-coder-0p5b-instruct|qwen2p5-coder-0p5b-instruct|Qwen2.5-Coder 0.5B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 0.5B Instruct model|Y
fireworks/qwen2p5-coder-14b|qwen2p5-coder-14b|Qwen2.5-Coder 14B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 14B model|Y
fireworks/qwen2p5-coder-14b-instruct|qwen2p5-coder-14b-instruct|Qwen2.5-Coder 14B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 14B Instruct model|Y
fireworks/qwen2p5-coder-1p5b|qwen2p5-coder-1p5b|Qwen2.5-Coder 1.5B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 1.5B model|Y
fireworks/qwen2p5-coder-1p5b-instruct|qwen2p5-coder-1p5b-instruct|Qwen2.5-Coder 1.5B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 1.5B Instruct model|Y
fireworks/qwen2p5-coder-32b|qwen2p5-coder-32b|Qwen2.5-Coder 32B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 32B model|Y
fireworks/qwen2p5-coder-32b-instruct|qwen2p5-coder-32b-instruct|Qwen2.5-Coder 32B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 32B Instruct model|Y
fireworks/qwen2p5-coder-32b-instruct-128k|qwen2p5-coder-32b-instruct-128k|Qwen2.5-Coder 32B Instruct 128K|C|1.0,5.0|131072,8192|VT|-|Qwen2.5-Coder 32B Instruct 128K model|Y
fireworks/qwen2p5-coder-32b-instruct-32k-rope|qwen2p5-coder-32b-instruct-32k-rope|Qwen2.5-Coder 32B Instruct 32K RoPE|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 32B Instruct 32K RoPE model|Y
fireworks/qwen2p5-coder-32b-instruct-64k|qwen2p5-coder-32b-instruct-64k|Qwen2.5-Coder 32B Instruct 64k|C|1.0,5.0|65536,8192|VT|-|Qwen2.5-Coder 32B Instruct 64k model|Y
fireworks/qwen2p5-coder-3b|qwen2p5-coder-3b|Qwen2.5-Coder 3B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 3B model|Y
fireworks/qwen2p5-coder-3b-instruct|qwen2p5-coder-3b-instruct|Qwen2.5-Coder 3B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 3B Instruct model|Y
fireworks/qwen2p5-coder-7b|qwen2p5-coder-7b|Qwen2.5-Coder 7B|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 7B model|Y
fireworks/qwen2p5-coder-7b-instruct|qwen2p5-coder-7b-instruct|Qwen2.5-Coder 7B Instruct|C|1.0,5.0|32768,8192|VT|-|Qwen2.5-Coder 7B Instruct model|Y
fireworks/qwen2p5-math-72b-instruct|qwen2p5-math-72b-instruct|Qwen2.5-Math 72B Instruct|C|1.0,5.0|4096,8192|VT|-|Qwen2.5-Math 72B Instruct model|Y
fireworks/qwen2p5-vl-32b-instruct|qwen2p5-vl-32b-instruct|Qwen2.5-VL 32B Instruct|C|1.0,5.0|128000,8192|VT|-|Qwen2.5-VL 32B Instruct model|Y
fireworks/qwen2p5-vl-3b-instruct|qwen2p5-vl-3b-instruct|Qwen2.5-VL 3B Instruct|C|1.0,5.0|128000,8192|VT|-|Qwen2.5-VL 3B Instruct model|Y
fireworks/qwen2p5-vl-72b-instruct|qwen2p5-vl-72b-instruct|Qwen2.5-VL 72B Instruct|C|1.0,5.0|128000,8192|VT|-|Qwen2.5-VL 72B Instruct model|Y
fireworks/qwen2p5-vl-7b-instruct|qwen2p5-vl-7b-instruct|Qwen2.5-VL 7B Instruct|C|1.0,5.0|128000,8192|VT|-|Qwen2.5-VL 7B Instruct model|Y
fireworks/qwen3-0p6b|qwen3-0p6b|Qwen3 0.6B|C|1.0,5.0|40960,8192|VT|-|Qwen3 0.6B model|Y
fireworks/qwen3-14b|qwen3-14b|Qwen3 14B|C|1.0,5.0|40960,8192|VT|-|Qwen3 14B model|Y
fireworks/qwen3-1p7b|qwen3-1p7b|Qwen3 1.7B|C|1.0,5.0|131072,8192|VT|-|Qwen3 1.7B model|Y
fireworks/qwen3-1p7b-fp8-draft|qwen3-1p7b-fp8-draft|Qwen3 1.7B fp8 model used for drafting|C|1.0,5.0|262144,8192|VT|-|Qwen3 1.7B fp8 model used for drafting model|Y
fireworks/qwen3-1p7b-fp8-draft-131072|qwen3-1p7b-fp8-draft-131072|Qwen3 1.7B fp8 model used for drafting for 131072 context|C|1.0,5.0|131072,8192|VT|-|Qwen3 1.7B fp8 model used for drafting for 131072 context model|Y
fireworks/qwen3-1p7b-fp8-draft-40960|qwen3-1p7b-fp8-draft-40960|Qwen3 1.7B fp8 model used for drafting for 40960 context length|C|1.0,5.0|40960,8192|VT|-|Qwen3 1.7B fp8 model used for drafting for 40960 context length model|Y
fireworks/qwen3-235b-a22b|qwen3-235b-a22b|Qwen3 235B A22B|C|0.22,0.88|131072,8192|VT|,,68.9,70.7,,,,,,|Qwen3 235B A22B model|Y
fireworks/qwen3-235b-a22b-instruct-2507|qwen3-235b-a22b-instruct-2507|Qwen3 235B A22B Instruct 2507|C|0.22,0.88|262144,8192|VT|,,68.9,70.7,,,,,,|Qwen3 235B A22B Instruct 2507 model|Y
fireworks/qwen3-30b-a3b|qwen3-30b-a3b|Qwen3 30B-A3B|C|0.15,0.6|131072,8192|VT|-|Qwen3 30B-A3B model|Y
fireworks/qwen3-30b-a3b-instruct-2507|qwen3-30b-a3b-instruct-2507|Qwen3 30B A3B Instruct 2507|C|1.0,5.0|262144,8192|VT|-|Qwen3 30B A3B Instruct 2507 model|Y
fireworks/qwen3-30b-a3b-thinking-2507|qwen3-30b-a3b-thinking-2507|Qwen3 30B A3B Thinking 2507|C|1.0,5.0|262144,8192|VTK|-|Qwen3 30B A3B Thinking 2507 model|Y
fireworks/qwen3-32b|qwen3-32b|Qwen3 32B|C|1.0,5.0|131072,8192|VT|-|Qwen3 32B model|Y
fireworks/qwen3-4b|qwen3-4b|Qwen3 4B|C|1.0,5.0|40960,8192|VT|-|Qwen3 4B model|Y
fireworks/qwen3-4b-instruct-2507|qwen3-4b-instruct-2507|Qwen 3 4B Instruct 2507|C|1.0,5.0|262144,8192|VT|-|Qwen 3 4B Instruct 2507 model|Y
fireworks/qwen3-8b|qwen3-8b|Qwen3 8B|C|1.0,5.0|40960,8192|VT|-|Qwen3 8B model|Y
fireworks/qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|Qwen3 Coder 30B A3B Instruct|C|0.15,0.6|262144,8192|VT|-|Qwen3 Coder 30B A3B Instruct model|Y
fireworks/qwen3-coder-480b-instruct-bf16|qwen3-coder-480b-instruct-bf16|Qwen3 Coder 480B Instruct BF16|C|1.0,5.0|262144,8192|VT|-|Qwen3 Coder 480B Instruct BF16 model|Y
fireworks/qwen3-next-80b-a3b-instruct|qwen3-next-80b-a3b-instruct|Qwen3 Next 80B A3B Instruct|C|1.0,5.0|65536,8192|VT|-|Qwen3 Next 80B A3B Instruct model|Y
fireworks/qwen3-reranker-0p6b|qwen3-reranker-0p6b|Qwen3 Reranker 0.6B|C|1.0,5.0|40960,8192|VT|-|Qwen3 Reranker 0.6B model|N
fireworks/qwen3-reranker-4b|qwen3-reranker-4b|Qwen3 Reranker 4B|C|1.0,5.0|40960,8192|VT|-|Qwen3 Reranker 4B model|N
fireworks/qwen3-reranker-8b|qwen3-reranker-8b|Qwen3 Reranker 8B|C|1.0,5.0|40960,8192|VT|-|Qwen3 Reranker 8B model|N
fireworks/qwen3-vl-235b-a22b-instruct|qwen3-vl-235b-a22b-instruct|Qwen3 VL 235B A22B Instruct|C|0.22,0.88|262144,8192|VT|-|Qwen3 VL 235B A22B Instruct model|Y
fireworks/qwen3-vl-235b-a22b-thinking|qwen3-vl-235b-a22b-thinking|Qwen3 VL 235B A22B Thinking|C|0.22,0.88|262144,8192|VTK|-|Qwen3 VL 235B A22B Thinking model|Y
fireworks/qwen3-vl-30b-a3b-instruct|qwen3-vl-30b-a3b-instruct|Qwen3 VL 30B A3B Instruct|C|0.15,0.6|262144,8192|VT|-|Qwen3 VL 30B A3B Instruct model|Y
fireworks/qwen3-vl-30b-a3b-thinking|qwen3-vl-30b-a3b-thinking|Qwen3 VL 30B A3B Thinking|C|0.15,0.6|262144,8192|VTK|-|Qwen3 VL 30B A3B Thinking model|Y
fireworks/qwen3-vl-32b-instruct|qwen3-vl-32b-instruct|Qwen3 VL 32B Instruct|C|1.0,5.0|131072,8192|VT|-|Qwen3 VL 32B Instruct model|Y
fireworks/rolm-ocr|rolm-ocr|Rolm OCR|C|1.0,5.0|128000,8192|VT|-|Rolm OCR model|Y
fireworks/seed-oss-36b-instruct|seed-oss-36b-instruct|Seed OSS 36B Instruct|C|1.0,5.0|524288,8192|VT|-|Seed OSS 36B Instruct model|Y
fireworks/snorkel-mistral-7b-pairrm-dpo|snorkel-mistral-7b-pairrm-dpo|Snorkel Mistral PairRM DPO|C|1.0,5.0|32768,8192|VT|-|Snorkel Mistral PairRM DPO model|Y
fireworks/stable-diffusion-xl-1024-v1-0|stable-diffusion-xl-1024-v1-0|Stable Diffusion XL|C|1.0,5.0|8192,8192|VT|-|Stable Diffusion XL model|N
fireworks/starcoder-7b|starcoder-7b|StarCoder 7B|C|1.0,5.0|8192,8192|VT|-|StarCoder 7B model|Y
fireworks/starcoder2-15b|starcoder2-15b|StarCoder2 15B|C|1.0,5.0|16384,8192|VT|64.1,,,,,,,,,|StarCoder2 15B model|Y
fireworks/starcoder2-3b|starcoder2-3b|StarCoder2 3B|C|1.0,5.0|16384,8192|VT|36.6,,,,,,,,,|StarCoder2 3B model|Y
fireworks/starcoder2-7b|starcoder2-7b|StarCoder2 7B|C|1.0,5.0|16384,8192|VT|38.8,,,,,,,,,|StarCoder2 7B model|Y
fireworks/toppy-m-7b|toppy-m-7b|Toppy M 7B|C|1.0,5.0|32768,8192|VT|-|Toppy M 7B model|Y
fireworks/yi-34b-200k-capybara|yi-34b-200k-capybara|Nouse Capybara 34B V1.9|C|1.0,5.0|200000,8192|VT|-|Nouse Capybara 34B V1.9 model|Y
fireworks/yi-34b-chat|yi-34b-chat|Yi 34B Chat|C|1.0,5.0|4096,8192|VT|73.5,,5.1,11.7,,47.0,,,,|Yi 34B Chat model|Y
fireworks/yi-6b|yi-6b|Yi 6B|C|1.0,5.0|4096,8192|VT|61.0,,,5.9,,34.0,,,,|Yi 6B model|Y
fireworks/yi-large|yi-large|Yi-Large|C|1.0,5.0|32768,8192|VT|79.3,,,,,,,,,|Yi-Large model|N
fireworks/zephyr-7b-beta|zephyr-7b-beta|Zephyr 7B Beta|C|1.0,5.0|32768,8192|VT|-|Zephyr 7B Beta model|Y
# =============================================================================
# GIGACHAT - Direct API (4 models)
# =============================================================================
gigachat/GigaChat|gigachat|GigaChat|C|0.35,0.35|8192,4096|-|-|GigaChat model|Y
gigachat/GigaChat-Plus|gigachat-plus|GigaChat-Plus|C|0.5,0.5|32768,4096|-|-|GigaChat-Plus model|Y
gigachat/GigaChat-Pro|gigachat-pro|GigaChat-Pro|C|2.5,2.5|32768,8192|-|-|GigaChat-Pro model|Y
gigachat/GigaChat-Max|gigachat-max|GigaChat-Max|C|5.0,5.0|131072,16384|-|-|GigaChat-Max model|N
# =============================================================================
# GOOGLE - Direct API (13 models)
# =============================================================================
google/gemini-3-pro-preview|gemini-3-pro-preview|gemini-3-pro-preview|C|2.0,12.0|1000000,65536|VT|,,,91.9,,,81.0,,,|gemini-3-pro-preview model|Y
google/gemini-3-flash-preview|gemini-3-flash-preview|gemini-3-flash-preview|C|0.5,3.0|1000000,65536|VT|,,,83.2,,,,,,|gemini-3-flash-preview model|Y
google/gemini-3-pro-image-preview|gemini-3-pro-image-preview|gemini-3-pro-image-preview|C|2.0,12.0|128000,8192|VT|-|gemini-3-pro-image-preview model|Y
google/gemini-2.5-pro|gemini-2.5-pro|gemini-2.5-pro|C|1.25,10.0|1000000,65536|VT|,,,85.3,63.1,,,,,|gemini-2.5-pro model|Y
google/gemini-2.5-flash|gemini-2.5-flash|gemini-2.5-flash|C|0.3,2.5|1000000,65536|VT|,,,71.2,,,,,,|gemini-2.5-flash model|Y
google/gemini-2.5-flash-preview-09-2025|gemini-2.5-flash-preview-09-2025|gemini-2.5-flash-preview-09-2025|C|0.3,2.5|1000000,65536|VT|,,,71.2,,,,,,|gemini-2.5-flash-preview-09-2025 model|Y
google/gemini-2.5-flash-lite|gemini-2.5-flash-lite|gemini-2.5-flash-lite|C|0.5,2.0|1000000,65536|VT|,,,71.2,,,,,,|gemini-2.5-flash-lite model|Y
google/gemini-2.5-flash-image|gemini-2.5-flash-image|gemini-2.5-flash-image|C|0.3,0.039|1000000,65536|VT|,,,71.2,,,,,,|gemini-2.5-flash-image model|Y
google/gemini-2.5-flash-preview-tts|gemini-2.5-flash-preview-tts|gemini-2.5-flash-preview-tts|C|0.5,10.0|1000000,65536|VT|,,,71.2,,,,,,|gemini-2.5-flash-preview-tts model|Y
google/gemini-2.5-pro-preview-tts|gemini-2.5-pro-preview-tts|gemini-2.5-pro-preview-tts|C|1.0,20.0|1000000,65536|VT|,,,85.3,63.1,,,,,|gemini-2.5-pro-preview-tts model|Y
google/gemini-2.0-flash|gemini-2.0-flash|gemini-2.0-flash|C|0.1,0.4|1000000,8192|VT|79.7,,,62.3,,,,,,|gemini-2.0-flash model|Y
google/gemini-2.0-flash-lite|gemini-2.0-flash-lite|gemini-2.0-flash-lite|C|0.075,0.3|1000000,8192|VT|,,,62.3,,,,,,|gemini-2.0-flash-lite model|Y
google/gemini-2.5-computer-use-preview-10-2025|gemini-2.5-computer-use-preview-10-2025|gemini-2.5-computer-use-preview-10-2025|C|1.25,10.0|128000,8192|VT|-|gemini-2.5-computer-use-preview-10-2025 model|Y
# =============================================================================
# GPT4ALL - Direct API (32 models)
# =============================================================================
gpt4all/qwen2.5-coder-7b-instruct-q4_0.gguf|qwen2.5-coder-7b-instruct-q4_0.gguf|qwen2.5-coder-7b-instruct-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li>Based on <a href="https://huggingface.co/Qwen/Qwen2.5-Coder-7B-Instruct"|N
gpt4all/Meta-Llama-3-8B-Instruct.Q4_0.gguf|meta-llama-3-8b-instruct.q4_0.gguf|Meta-Llama-3-8B-Instruct.Q4_0.gguf|C|1.0,5.0|128000,8192|-|66.5,,6.1,26.1,,,,,,|<ul><li>Fast responses</li><li>Chat based model</li><li>Accepts system prompts i|N
gpt4all/DeepSeek-R1-Distill-Qwen-7B-Q4_0.gguf|deepseek-r1-distill-qwen-7b-q4_0.gguf|DeepSeek-R1-Distill-Qwen-7B-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<p>The official Qwen2.5-Math-7B distillation of DeepSeek-R1.</p><ul><li>License:|N
gpt4all/DeepSeek-R1-Distill-Qwen-14B-Q4_0.gguf|deepseek-r1-distill-qwen-14b-q4_0.gguf|DeepSeek-R1-Distill-Qwen-14B-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<p>The official Qwen2.5-14B distillation of DeepSeek-R1.</p><ul><li>License: <a |N
gpt4all/DeepSeek-R1-Distill-Llama-8B-Q4_0.gguf|deepseek-r1-distill-llama-8b-q4_0.gguf|DeepSeek-R1-Distill-Llama-8B-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<p>The official Llama-3.1-8B distillation of DeepSeek-R1.</p><ul><li>License: <a|N
gpt4all/DeepSeek-R1-Distill-Qwen-1.5B-Q4_0.gguf|deepseek-r1-distill-qwen-1.5b-q4_0.gguf|DeepSeek-R1-Distill-Qwen-1.5B-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<p>The official Qwen2.5-Math-1.5B distillation of DeepSeek-R1.</p><ul><li>Licens|N
gpt4all/Llama-3.2-3B-Instruct-Q4_0.gguf|llama-3.2-3b-instruct-q4_0.gguf|Llama-3.2-3B-Instruct-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li>Fast responses</li><li>Instruct model</li><li>Multilingual dialogue use<|N
gpt4all/Llama-3.2-1B-Instruct-Q4_0.gguf|llama-3.2-1b-instruct-q4_0.gguf|Llama-3.2-1B-Instruct-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li>Fast responses</li><li>Instruct model</li><li>Multilingual dialogue use<|N
gpt4all/Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf|nous-hermes-2-mistral-7b-dpo.q4_0.gguf|Nous-Hermes-2-Mistral-7B-DPO.Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Good overall fast chat model</strong><br><ul><li>Fast responses</li><li>|N
gpt4all/mistral-7b-instruct-v0.1.Q4_0.gguf|mistral-7b-instruct-v0.1.q4_0.gguf|mistral-7b-instruct-v0.1.Q4_0.gguf|C|1.0,5.0|32768,4096|V|-|<strong>Strong overall fast instruction following model</strong><br><ul><li>Fast|N
gpt4all/Meta-Llama-3.1-8B-Instruct-128k-Q4_0.gguf|-|Meta-Llama-3.1-8B-Instruct-128k-Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li><strong>For advanced users only. Not recommended for use on Windows or L|N
gpt4all/mistral-7b-openorca.gguf2.Q4_0.gguf|mistral-7b-openorca.gguf2.q4_0.gguf|mistral-7b-openorca.gguf2.Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Strong overall fast chat model</strong><br><ul><li>Fast responses</li><l|N
gpt4all/gpt4all-falcon-newbpe-q4_0.gguf|gpt4all-falcon-newbpe-q4_0.gguf|gpt4all-falcon-newbpe-q4_0.gguf|C|1.0,5.0|2048,2048|-|-|<strong>Very fast model with good quality</strong><br><ul><li>Fastest responses<|N
gpt4all/orca-2-7b.Q4_0.gguf|orca-2-7b.q4_0.gguf|orca-2-7b.Q4_0.gguf|C|1.0,5.0|4096,4096|-|-|<ul><li>Instruction based<li>Trained by Microsoft<li>Cannot be used commercially|N
gpt4all/orca-2-13b.Q4_0.gguf|orca-2-13b.q4_0.gguf|orca-2-13b.Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li>Instruction based<li>Trained by Microsoft<li>Cannot be used commercially|N
gpt4all/wizardlm-13b-v1.2.Q4_0.gguf|wizardlm-13b-v1.2.q4_0.gguf|wizardlm-13b-v1.2.Q4_0.gguf|C|1.0,5.0|128000,8192|V|-|<strong>Strong overall larger model</strong><br><ul><li>Instruction based<li>Giv|N
gpt4all/ghost-7b-v0.9.1-Q4_0.gguf|ghost-7b-v0.9.1-q4_0.gguf|ghost-7b-v0.9.1-Q4_0.gguf|C|1.0,5.0|128000,8192|V|-|<strong>Ghost 7B v0.9.1</strong> fast, powerful and smooth for Vietnamese and En|N
gpt4all/nous-hermes-llama2-13b.Q4_0.gguf|nous-hermes-llama2-13b.q4_0.gguf|nous-hermes-llama2-13b.Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Extremely good model</strong><br><ul><li>Instruction based<li>Gives long|N
gpt4all/gpt4all-13b-snoozy-q4_0.gguf|gpt4all-13b-snoozy-q4_0.gguf|gpt4all-13b-snoozy-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Very good overall model</strong><br><ul><li>Instruction based<li>Based o|N
gpt4all/mpt-7b-chat-newbpe-q4_0.gguf|mpt-7b-chat-newbpe-q4_0.gguf|mpt-7b-chat-newbpe-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Good model with novel architecture</strong><br><ul><li>Fast responses<li|N
gpt4all/mpt-7b-chat.gguf4.Q4_0.gguf|mpt-7b-chat.gguf4.q4_0.gguf|mpt-7b-chat.gguf4.Q4_0.gguf|C|1.0,5.0|128000,8192|-|27.4,,,,,,,,,|<strong>Good model with novel architecture</strong><br><ul><li>Fast responses<li|N
gpt4all/Phi-3-mini-4k-instruct.Q4_0.gguf|phi-3-mini-4k-instruct.q4_0.gguf|Phi-3-mini-4k-instruct.Q4_0.gguf|C|1.0,5.0|128000,8192|-|68.8,,,,,,,,,|<ul><li>Very fast responses</li><li>Chat based model</li><li>Accepts system prom|N
gpt4all/orca-mini-3b-gguf2-q4_0.gguf|orca-mini-3b-gguf2-q4_0.gguf|orca-mini-3b-gguf2-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Small version of new model with novel dataset</strong><br><ul><li>Very f|N
gpt4all/replit-code-v1_5-3b-newbpe-q4_0.gguf|replit-code-v1_5-3b-newbpe-q4_0.gguf|replit-code-v1_5-3b-newbpe-q4_0.gguf|C|1.0,5.0|128000,8192|V|-|<strong>Trained on subset of the Stack</strong><br><ul><li>Code completion based|N
gpt4all/starcoder-newbpe-q4_0.gguf|starcoder-newbpe-q4_0.gguf|starcoder-newbpe-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Trained on subset of the Stack</strong><br><ul><li>Code completion based|N
gpt4all/rift-coder-v0-7b-q4_0.gguf|rift-coder-v0-7b-q4_0.gguf|rift-coder-v0-7b-q4_0.gguf|C|1.0,5.0|128000,8192|V|-|<strong>Trained on collection of Python and TypeScript</strong><br><ul><li>Code |N
gpt4all/all-MiniLM-L6-v2-f16.gguf|all-minilm-l6-v2-f16.gguf|all-MiniLM-L6-v2-f16.gguf|C|1.0,5.0|128000,8192|V|-|<strong>LocalDocs text embeddings model</strong><br><ul><li>For use with LocalDo|N
gpt4all/all-MiniLM-L6-v2.gguf2.f16.gguf|all-minilm-l6-v2.gguf2.f16.gguf|all-MiniLM-L6-v2.gguf2.f16.gguf|C|1.0,5.0|128000,8192|V|-|<strong>LocalDocs text embeddings model</strong><br><ul><li>For use with LocalDo|N
gpt4all/em_german_mistral_v01.Q4_0.gguf|em_german_mistral_v01.q4_0.gguf|em_german_mistral_v01.Q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<strong>Mistral-based model for German-language applications</strong><br><ul><li|N
gpt4all/nomic-embed-text-v1.f16.gguf|nomic-embed-text-v1.f16.gguf|nomic-embed-text-v1.f16.gguf|C|1.0,5.0|128000,8192|V|-|nomic-embed-text-v1|N
gpt4all/nomic-embed-text-v1.5.f16.gguf|nomic-embed-text-v1.5.f16.gguf|nomic-embed-text-v1.5.f16.gguf|C|1.0,5.0|128000,8192|V|-|nomic-embed-text-v1.5|N
gpt4all/qwen2-1_5b-instruct-q4_0.gguf|qwen2-1_5b-instruct-q4_0.gguf|qwen2-1_5b-instruct-q4_0.gguf|C|1.0,5.0|128000,8192|-|-|<ul><li>Very fast responses</li><li>Instruction based model</li><li>Usage of Loc|N
# =============================================================================
# GROQ - Direct API (16 models)
# =============================================================================
groq/Llama 3.1 8B llama-3.1-8b-instant|llama 3.1 8b llama-3.1-8b-instant|Llama 3.1 8B llama-3.1-8b-instant|C|0.05,250.0|560.0,8192|VT|-|Llama 3.1 8B llama-3.1-8b-instant model|Y
groq/Llama 3.3 70B llama-3.3-70b-versatile|llama 3.3 70b llama-3.3-70b-versatile|Llama 3.3 70B llama-3.3-70b-versatile|C|0.59,300.0|280.0,8192|VT|-|Llama 3.3 70B llama-3.3-70b-versatile model|Y
groq/llama-guard-4-12b|llama-guard-4-12b|Llama Guard 4 12B meta-llama/llama-guard-4-12b|C|0.2,30.0|1200.0,8192|VT|-|Llama Guard 4 12B meta-llama/llama-guard-4-12b model|Y
groq/gpt-oss-120b|gpt-oss-120b|GPT OSS 120B openai/gpt-oss-120b|C|0.15,250.0|500.0,8192|VT|-|GPT OSS 120B openai/gpt-oss-120b model|Y
groq/gpt-oss-20b|gpt-oss-20b|GPT OSS 20B openai/gpt-oss-20b|C|0.075,250.0|1000.0,8192|VT|-|GPT OSS 20B openai/gpt-oss-20b model|Y
groq/compound|compound|Compound groq/compound|C|1.0,5.0|450.0,8192|VT|-|Compound groq/compound model|N
groq/compound-mini|compound-mini|Compound Mini groq/compound-mini|C|1.0,5.0|450.0,8192|VT|-|Compound Mini groq/compound-mini model|N
groq/orpheus-arabic-saudi|orpheus-arabic-saudi|Canopy Labs Orpheus Arabic Saudi canopylabs/orpheus-arabic-saudi|C|40.0,50.0|128000,8192|VT|-|Canopy Labs Orpheus Arabic Saudi canopylabs/orpheus-arabic-saudi model|N
groq/orpheus-v1-english|orpheus-v1-english|Canopy Labs Orpheus V1 English canopylabs/orpheus-v1-english|C|22.0,50.0|128000,8192|VT|-|Canopy Labs Orpheus V1 English canopylabs/orpheus-v1-english model|N
groq/llama-4-maverick-17b-128e-instruct|llama-4-maverick-17b-128e-instruct|Llama 4 Maverick 17B 128E meta-llama/llama-4-maverick-17b-128e-instruct|C|0.2,300.0|600.0,8192|VT|,,73.0,67.0,,,,,,|Llama 4 Maverick 17B 128E meta-llama/llama-4-maverick-17b-128e-instruct model|Y
groq/llama-4-scout-17b-16e-instruct|llama-4-scout-17b-16e-instruct|Llama 4 Scout 17B 16E meta-llama/llama-4-scout-17b-16e-instruct|C|0.11,300.0|750.0,8192|VT|,,62.3,51.8,,,,,,|Llama 4 Scout 17B 16E meta-llama/llama-4-scout-17b-16e-instruct model|Y
groq/llama-prompt-guard-2-22m|llama-prompt-guard-2-22m|Llama Prompt Guard 2 22M meta-llama/llama-prompt-guard-2-22m|C|0.03,30.0|128000,8192|VT|-|Llama Prompt Guard 2 22M meta-llama/llama-prompt-guard-2-22m model|Y
groq/llama-prompt-guard-2-86m|llama-prompt-guard-2-86m|Prompt Guard 2 86M meta-llama/llama-prompt-guard-2-86m|C|0.04,30.0|128000,8192|VT|-|Prompt Guard 2 86M meta-llama/llama-prompt-guard-2-86m model|Y
groq/kimi-k2-instruct-0905|kimi-k2-instruct-0905|Kimi K2 0905 moonshotai/kimi-k2-instruct-0905|C|1.0,250.0|200.0,8192|VT|-|Kimi K2 0905 moonshotai/kimi-k2-instruct-0905 model|Y
groq/gpt-oss-safeguard-20b|gpt-oss-safeguard-20b|Safety GPT OSS 20B openai/gpt-oss-safeguard-20b|C|0.075,150.0|1000.0,8192|VT|-|Safety GPT OSS 20B openai/gpt-oss-safeguard-20b model|Y
groq/qwen3-32b|qwen3-32b|Qwen3-32B qwen/qwen3-32b|C|0.29,300.0|400.0,8192|VT|-|Qwen3-32B qwen/qwen3-32b model|Y
# =============================================================================
# HEYGEN - Direct API (4 models)
# =============================================================================
heygen/photo_avatar_v2|photo_avatar_v2|Photo Avatar V2|C|1.0,5.0|128000,8192|-|-|AI avatar from uploaded photos|N
heygen/video_avatar|video_avatar|Video Avatar|C|1.0,5.0|128000,8192|-|-|AI avatar from recorded footage (Enterprise)|N
heygen/avatar_iv|avatar_iv|Avatar IV|C|1.0,5.0|128000,8192|-|-|Photorealistic avatar technology|N
heygen/streaming_avatar|streaming_avatar|Streaming Avatar|C|1.0,5.0|128000,8192|-|-|Real-time interactive avatar|N
# =============================================================================
# HUGGINGFACE INFERENCE - Direct API (500 models)
# =============================================================================
huggingface/LTX-2|ltx-2|Lightricks/LTX-2|C|1.0,5.0|128000,8192|-|-|Lightricks/LTX-2 model|N
huggingface/Qwen-Image-Edit-2511-Multiple-Angles-LoRA|-|fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA|C|1.0,5.0|128000,8192|-|-|fal/Qwen-Image-Edit-2511-Multiple-Angles-LoRA model|N
huggingface/Qwen-Image-2512|qwen-image-2512|Qwen/Qwen-Image-2512|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen-Image-2512 model|N
huggingface/MiniMax-M2.1|minimax-m2.1|MiniMaxAI/MiniMax-M2.1|C|1.0,5.0|128000,8192|-|-|MiniMaxAI/MiniMax-M2.1 model|N
huggingface/GLM-4.7|glm-4.7|zai-org/GLM-4.7|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.7 model|N
huggingface/Z-Image-Turbo|z-image-turbo|Tongyi-MAI/Z-Image-Turbo|C|1.0,5.0|128000,8192|-|-|Tongyi-MAI/Z-Image-Turbo model|N
huggingface/AnyPose|anypose|lilylilith/AnyPose|C|1.0,5.0|128000,8192|-|-|lilylilith/AnyPose model|N
huggingface/FLUX.2-dev-Turbo|flux.2-dev-turbo|fal/FLUX.2-dev-Turbo|C|1.0,5.0|128000,8192|-|-|fal/FLUX.2-dev-Turbo model|N
huggingface/Qwen-Image-Edit-2511|qwen-image-edit-2511|Qwen/Qwen-Image-Edit-2511|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen-Image-Edit-2511 model|N
huggingface/Qwen-Image-Edit-2511-Upscale2K|qwen-image-edit-2511-upscale2k|valiantcat/Qwen-Image-Edit-2511-Upscale2K|C|1.0,5.0|128000,8192|-|-|valiantcat/Qwen-Image-Edit-2511-Upscale2K model|N
huggingface/Anything2Real_2601|anything2real_2601|lrzjason/Anything2Real_2601|C|1.0,5.0|128000,8192|-|-|lrzjason/Anything2Real_2601 model|N
huggingface/whisper-large-v3|whisper-large|openai/whisper-large-v3|C|1.0,5.0|128000,8192|V|-|openai/whisper-large-v3 model|N
huggingface/Llama-3.1-8B-Instruct|llama-3.1-8b-instruct|meta-llama/Llama-3.1-8B-Instruct|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|meta-llama/Llama-3.1-8B-Instruct model|N
huggingface/Kokoro-82M|kokoro-82m|hexgrad/Kokoro-82M|C|1.0,5.0|128000,8192|-|-|hexgrad/Kokoro-82M model|N
huggingface/FLUX.2-dev|flux.2-dev|black-forest-labs/FLUX.2-dev|C|1.0,5.0|128000,8192|-|-|black-forest-labs/FLUX.2-dev model|N
huggingface/Qwen-Image-Edit-2511-Lightning|qwen-image-edit-2511-lightning|lightx2v/Qwen-Image-Edit-2511-Lightning|C|1.0,5.0|128000,8192|-|-|lightx2v/Qwen-Image-Edit-2511-Lightning model|N
huggingface/gpt-oss-20b|gpt-oss-20b|openai/gpt-oss-20b|C|1.0,5.0|128000,8192|-|-|openai/gpt-oss-20b model|N
huggingface/FLUX.1-dev|flux.1-dev|black-forest-labs/FLUX.1-dev|C|1.0,5.0|128000,8192|-|-|black-forest-labs/FLUX.1-dev model|N
huggingface/Qwen-Image-Edit-2511-Object-Remover|qwen-image-edit-2511-object-remover|prithivMLmods/Qwen-Image-Edit-2511-Object-Remover|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Qwen-Image-Edit-2511-Object-Remover model|N
huggingface/Qwen-Image-Edit-2511-Anime|qwen-image-edit-2511-anime|prithivMLmods/Qwen-Image-Edit-2511-Anime|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Qwen-Image-Edit-2511-Anime model|N
huggingface/DeepSeek-V3.2|deepseek|deepseek-ai/DeepSeek-V3.2|C|1.0,5.0|128000,8192|V|-|deepseek-ai/DeepSeek-V3.2 model|N
huggingface/MiMo-V2-Flash|mimo-v2-flash|XiaomiMiMo/MiMo-V2-Flash|C|1.0,5.0|128000,8192|V|-|XiaomiMiMo/MiMo-V2-Flash model|N
huggingface/Qwen3-VL-8B-Instruct|qwen3-vl-8b-instruct|Qwen/Qwen3-VL-8B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen3-VL-8B-Instruct model|N
huggingface/stable-diffusion-xl-base-1.0|stable-diffusion-xl-base-1.0|stabilityai/stable-diffusion-xl-base-1.0|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-xl-base-1.0 model|N
huggingface/DeepSeek-OCR|deepseek-ocr|deepseek-ai/DeepSeek-OCR|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-OCR model|N
huggingface/all-MiniLM-L6-v2|all-minilm-l6|sentence-transformers/all-MiniLM-L6-v2|C|1.0,5.0|128000,8192|V|-|sentence-transformers/all-MiniLM-L6-v2 model|N
huggingface/FLUX.1-schnell|flux.1-schnell|black-forest-labs/FLUX.1-schnell|C|1.0,5.0|128000,8192|-|-|black-forest-labs/FLUX.1-schnell model|N
huggingface/Llama-3.2-3B-Instruct|llama-3.2-3b-instruct|meta-llama/Llama-3.2-3B-Instruct|C|1.0,5.0|128000,8192|-|-|meta-llama/Llama-3.2-3B-Instruct model|N
huggingface/RMBG-2.0|rmbg-2.0|briaai/RMBG-2.0|C|1.0,5.0|128000,8192|-|-|briaai/RMBG-2.0 model|N
huggingface/chatterbox|chatterbox|ResembleAI/chatterbox|C|1.0,5.0|128000,8192|-|-|ResembleAI/chatterbox model|N
huggingface/bge-m3|bge-m3|BAAI/bge-m3|C|1.0,5.0|128000,8192|-|-|BAAI/bge-m3 model|N
huggingface/Qwen-Image|qwen-image|Qwen/Qwen-Image|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen-Image model|N
huggingface/gpt-oss-120b|gpt-oss-120b|openai/gpt-oss-120b|C|1.0,5.0|128000,8192|-|-|openai/gpt-oss-120b model|N
huggingface/gemma-3-12b-it-qat-q4_0-unquantized|gemma-3-12b-it-qat-q4_0-unquantized|google/gemma-3-12b-it-qat-q4_0-unquantized|C|1.0,5.0|128000,8192|-|-|google/gemma-3-12b-it-qat-q4_0-unquantized model|N
huggingface/Dolphin-Mistral-24B-Venice-Edition|dolphin-mistral-24b-venice-edition|dphn/Dolphin-Mistral-24B-Venice-Edition|C|1.0,5.0|128000,8192|V|-|dphn/Dolphin-Mistral-24B-Venice-Edition model|N
huggingface/embeddinggemma-300m|embeddinggemma-300m|google/embeddinggemma-300m|C|1.0,5.0|128000,8192|-|-|google/embeddinggemma-300m model|N
huggingface/DeepSeek-R1|deepseek-r1|deepseek-ai/DeepSeek-R1|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1 model|N
huggingface/FLUX.1-Kontext-dev|flux.1-kontext-dev|black-forest-labs/FLUX.1-Kontext-dev|C|1.0,5.0|128000,8192|-|-|black-forest-labs/FLUX.1-Kontext-dev model|N
huggingface/Wan2.2-I2V-A14B|wan2.2-i2v-a14b|Wan-AI/Wan2.2-I2V-A14B|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.2-I2V-A14B model|N
huggingface/Wan2.2-Distill-Loras|wan2.2-distill-loras|lightx2v/Wan2.2-Distill-Loras|C|1.0,5.0|128000,8192|-|-|lightx2v/Wan2.2-Distill-Loras model|N
huggingface/whisper-large-v3-turbo|whisper-large-v3-turbo|openai/whisper-large-v3-turbo|C|1.0,5.0|128000,8192|V|-|openai/whisper-large-v3-turbo model|N
huggingface/stable-diffusion-3.5-large|stable-diffusion-3.5-large|stabilityai/stable-diffusion-3.5-large|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-3.5-large model|N
huggingface/Qwen3-4B-Instruct-2507|qwen3-4b-instruct-2507|Qwen/Qwen3-4B-Instruct-2507|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-4B-Instruct-2507 model|N
huggingface/NVIDIA-Nemotron-3-Nano-30B-A3B-FP8|nvidia-nemotron-3-nano-30b-a3b-fp8|nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-FP8|C|1.0,5.0|128000,8192|-|-|nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-FP8 model|N
huggingface/nsfw_image_detection|nsfw_image_detection|Falconsai/nsfw_image_detection|C|1.0,5.0|128000,8192|-|-|Falconsai/nsfw_image_detection model|N
huggingface/Qwen3-8B|qwen3-8b|Qwen/Qwen3-8B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-8B model|N
huggingface/Qwen3-Coder-30B-A3B-Instruct|qwen3-coder-30b-a3b-instruct|Qwen/Qwen3-Coder-30B-A3B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-Coder-30B-A3B-Instruct model|N
huggingface/Qwen3-VL-30B-A3B-Instruct|qwen3-vl-30b-a3b-instruct|Qwen/Qwen3-VL-30B-A3B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen3-VL-30B-A3B-Instruct model|N
huggingface/Qwen-Edit-2509-Multiple-angles|qwen-edit-2509-multiple-angles|dx8152/Qwen-Edit-2509-Multiple-angles|C|1.0,5.0|128000,8192|-|-|dx8152/Qwen-Edit-2509-Multiple-angles model|N
huggingface/Qwen3-Embedding-8B|qwen3-embedding-8b|Qwen/Qwen3-Embedding-8B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-Embedding-8B model|N
huggingface/Qwen-Image-Edit|qwen-image-edit|Qwen/Qwen-Image-Edit|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen-Image-Edit model|N
huggingface/LongCat-Video|longcat-video|meituan-longcat/LongCat-Video|C|1.0,5.0|128000,8192|V|-|meituan-longcat/LongCat-Video model|N
huggingface/HunyuanVideo-1.5|hunyuanvideo-1.5|tencent/HunyuanVideo-1.5|C|1.0,5.0|128000,8192|-|-|tencent/HunyuanVideo-1.5 model|N
huggingface/paraphrase-multilingual-MiniLM-L12-v2|paraphrase-multilingual-minilm-l12|sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2|C|1.0,5.0|128000,8192|V|-|sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2 model|N
huggingface/gemma-3-12b-it|gemma-3-12b-it|google/gemma-3-12b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3-12b-it model|N
huggingface/Llama-4-Scout-17B-16E-Instruct|llama-4-scout-17b-16e-instruct|meta-llama/Llama-4-Scout-17B-16E-Instruct|C|1.0,5.0|128000,8192|-|,,62.3,51.8,,,,,,|meta-llama/Llama-4-Scout-17B-16E-Instruct model|N
huggingface/Qwen-Image-Lightning|qwen-image-lightning|lightx2v/Qwen-Image-Lightning|C|1.0,5.0|128000,8192|-|-|lightx2v/Qwen-Image-Lightning model|N
huggingface/Qwen-Image-Edit-2509|qwen-image-edit-2509|Qwen/Qwen-Image-Edit-2509|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen-Image-Edit-2509 model|N
huggingface/Kimi-K2-Thinking|kimi-k2-thinking|moonshotai/Kimi-K2-Thinking|C|1.0,5.0|128000,8192|K|-|moonshotai/Kimi-K2-Thinking model|N
huggingface/BFS-Best-Face-Swap|bfs-best-face-swap|Alissonerdx/BFS-Best-Face-Swap|C|1.0,5.0|128000,8192|-|-|Alissonerdx/BFS-Best-Face-Swap model|N
huggingface/Mistral-7B-Instruct-v0.3|mistral-7b-instruct|mistralai/Mistral-7B-Instruct-v0.3|C|1.0,5.0|128000,8192|V|59.9,,3.6,15.2,,,,,,|mistralai/Mistral-7B-Instruct-v0.3 model|N
huggingface/gemma-2-2b-it|gemma-2-2b-it|google/gemma-2-2b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-2-2b-it model|N
huggingface/DeepSeek-R1-Distill-Qwen-1.5B|deepseek-r1-distill-qwen-1.5b|deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B model|N
huggingface/gemma-3-27b-it|gemma-3-27b-it|google/gemma-3-27b-it|C|1.0,5.0|128000,8192|-|,,74.0,48.9,,,,,,|google/gemma-3-27b-it model|N
huggingface/Qwen3-4B-Thinking-2507|qwen3-4b-thinking-2507|Qwen/Qwen3-4B-Thinking-2507|C|1.0,5.0|128000,8192|K|-|Qwen/Qwen3-4B-Thinking-2507 model|N
huggingface/GLM-4.6V-Flash|glm-4.6v-flash|zai-org/GLM-4.6V-Flash|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.6V-Flash model|N
huggingface/Qwen-Image-Edit-2511-Object-Adder|qwen-image-edit-2511-object-adder|prithivMLmods/Qwen-Image-Edit-2511-Object-Adder|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Qwen-Image-Edit-2511-Object-Adder model|N
huggingface/Meta-Llama-3-8B-Instruct|meta-llama-3-8b-instruct|meta-llama/Meta-Llama-3-8B-Instruct|C|1.0,5.0|128000,8192|-|66.5,,6.1,26.1,,,,,,|meta-llama/Meta-Llama-3-8B-Instruct model|N
huggingface/Meta-Llama-3-8B|meta-llama-3-8b|meta-llama/Meta-Llama-3-8B|C|1.0,5.0|128000,8192|-|66.5,,6.1,26.1,,,,,,|meta-llama/Meta-Llama-3-8B model|N
huggingface/Llama-3.1-8B|llama-3.1-8b|meta-llama/Llama-3.1-8B|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|meta-llama/Llama-3.1-8B model|N
huggingface/Qwen2.5-Coder-7B-Instruct|qwen2.5-coder-7b-instruct|Qwen/Qwen2.5-Coder-7B-Instruct|C|1.0,5.0|128000,8192|-|68.0,,,,,,,,,|Qwen/Qwen2.5-Coder-7B-Instruct model|N
huggingface/LTX-Video|ltx-video|Lightricks/LTX-Video|C|1.0,5.0|128000,8192|V|-|Lightricks/LTX-Video model|N
huggingface/DeepSeek-R1-0528-Qwen3-8B|deepseek-r1-0528-qwen3-8b|deepseek-ai/DeepSeek-R1-0528-Qwen3-8B|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-R1-0528-Qwen3-8B model|N
huggingface/SmolLM3-3B|smollm3-3b|HuggingFaceTB/SmolLM3-3B|C|1.0,5.0|128000,8192|-|-|HuggingFaceTB/SmolLM3-3B model|N
huggingface/next-scene-qwen-image-lora-2509|next-scene-qwen-image-lora-2509|lovis93/next-scene-qwen-image-lora-2509|C|1.0,5.0|128000,8192|-|-|lovis93/next-scene-qwen-image-lora-2509 model|N
huggingface/distilbert-base-uncased|distilbert-base-uncased|distilbert/distilbert-base-uncased|C|1.0,5.0|128000,8192|-|-|distilbert/distilbert-base-uncased model|N
huggingface/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|Qwen/Qwen2.5-7B-Instruct|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|Qwen/Qwen2.5-7B-Instruct model|N
huggingface/Kimi-K2-Instruct|kimi-k2-instruct|moonshotai/Kimi-K2-Instruct|C|1.0,5.0|128000,8192|-|-|moonshotai/Kimi-K2-Instruct model|N
huggingface/Wan2.2-T2V-A14B|wan2.2-t2v-a14b|Wan-AI/Wan2.2-T2V-A14B|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.2-T2V-A14B model|N
huggingface/Qwen3-30B-A3B-Instruct-2507|qwen3-30b-a3b-instruct-2507|Qwen/Qwen3-30B-A3B-Instruct-2507|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-30B-A3B-Instruct-2507 model|N
huggingface/Qwen3-VL-32B-Instruct|qwen3-vl-32b-instruct|Qwen/Qwen3-VL-32B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen3-VL-32B-Instruct model|N
huggingface/Apriel-1.6-15b-Thinker|apriel-1.6-15b-thinker|ServiceNow-AI/Apriel-1.6-15b-Thinker|C|1.0,5.0|128000,8192|K|-|ServiceNow-AI/Apriel-1.6-15b-Thinker model|N
huggingface/Qwen-Edit-2509-Light-Migration|qwen-edit-2509-light-migration|dx8152/Qwen-Edit-2509-Light-Migration|C|1.0,5.0|128000,8192|-|-|dx8152/Qwen-Edit-2509-Light-Migration model|N
huggingface/bert-base-uncased|bert-base-uncased|google-bert/bert-base-uncased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-uncased model|N
huggingface/all-mpnet-base-v2|all-mpnet-base|sentence-transformers/all-mpnet-base-v2|C|1.0,5.0|128000,8192|V|-|sentence-transformers/all-mpnet-base-v2 model|N
huggingface/Mistral-7B-Instruct-v0.2|mistral-7b-instruct|mistralai/Mistral-7B-Instruct-v0.2|C|1.0,5.0|128000,8192|V|62.5,,,,,,,,,|mistralai/Mistral-7B-Instruct-v0.2 model|N
huggingface/Llama-3.2-1B-Instruct|llama-3.2-1b-instruct|meta-llama/Llama-3.2-1B-Instruct|C|1.0,5.0|128000,8192|-|-|meta-llama/Llama-3.2-1B-Instruct model|N
huggingface/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|meta-llama/Llama-3.3-70B-Instruct|C|1.0,5.0|128000,8192|-|86.3,,41.6,47.4,,,,,,|meta-llama/Llama-3.3-70B-Instruct model|N
huggingface/HunyuanVideo|hunyuanvideo|tencent/HunyuanVideo|C|1.0,5.0|128000,8192|-|-|tencent/HunyuanVideo model|N
huggingface/Wan2.1-T2V-1.3B|wan2.1-t2v-1.3b|Wan-AI/Wan2.1-T2V-1.3B|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.1-T2V-1.3B model|N
huggingface/gemma-3-27b-it-abliterated|gemma-3-27b-it-abliterated|mlabonne/gemma-3-27b-it-abliterated|C|1.0,5.0|128000,8192|-|-|mlabonne/gemma-3-27b-it-abliterated model|N
huggingface/GLM-4.7-FP8|glm-4.7-fp8|zai-org/GLM-4.7-FP8|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.7-FP8 model|N
huggingface/bert-base-chinese|bert-base-chinese|google-bert/bert-base-chinese|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-chinese model|N
huggingface/roberta-base|roberta-base|FacebookAI/roberta-base|C|1.0,5.0|128000,8192|-|-|FacebookAI/roberta-base model|N
huggingface/finbert|finbert|ProsusAI/finbert|C|1.0,5.0|128000,8192|-|-|ProsusAI/finbert model|N
huggingface/multilingual-e5-large|multilingual-e5-large|intfloat/multilingual-e5-large|C|1.0,5.0|128000,8192|-|-|intfloat/multilingual-e5-large model|N
huggingface/Qwen2.5-Coder-32B-Instruct|qwen2.5-coder-32b-instruct|Qwen/Qwen2.5-Coder-32B-Instruct|C|1.0,5.0|128000,8192|-|79.1,,,,,,,,,|Qwen/Qwen2.5-Coder-32B-Instruct model|N
huggingface/Qwen3-14B|qwen3-14b|Qwen/Qwen3-14B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-14B model|N
huggingface/Qwen3-30B-A3B|qwen3-30b-a3b|Qwen/Qwen3-30B-A3B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-30B-A3B model|N
huggingface/Wan2.2-TI2V-5B|wan2.2-ti2v-5b|Wan-AI/Wan2.2-TI2V-5B|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.2-TI2V-5B model|N
huggingface/Wan2.2-T2V-A14B-Diffusers|wan2.2-t2v-a14b-diffusers|Wan-AI/Wan2.2-T2V-A14B-Diffusers|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.2-T2V-A14B-Diffusers model|N
huggingface/Kimi-K2-Instruct-0905|kimi-k2-instruct-0905|moonshotai/Kimi-K2-Instruct-0905|C|1.0,5.0|128000,8192|-|-|moonshotai/Kimi-K2-Instruct-0905 model|N
huggingface/MiniMax-M2|minimax-m2|MiniMaxAI/MiniMax-M2|C|1.0,5.0|128000,8192|-|-|MiniMaxAI/MiniMax-M2 model|N
huggingface/qwen-edit-skin|qwen-edit-skin|tlennon-ie/qwen-edit-skin|C|1.0,5.0|128000,8192|-|-|tlennon-ie/qwen-edit-skin model|N
huggingface/AutoGLM-Phone-9B-Multilingual|autoglm-phone-9b-multilingual|zai-org/AutoGLM-Phone-9B-Multilingual|C|1.0,5.0|128000,8192|-|-|zai-org/AutoGLM-Phone-9B-Multilingual model|N
huggingface/Anything_to_Real_Characters_2511|anything_to_real_characters_2511|WarmBloodAban/Anything_to_Real_Characters_2511|C|1.0,5.0|128000,8192|-|-|WarmBloodAban/Anything_to_Real_Characters_2511 model|N
huggingface/ClinicalBERT|clinicalbert|medicalai/ClinicalBERT|C|1.0,5.0|128000,8192|-|-|medicalai/ClinicalBERT model|N
huggingface/multilingual-e5-small|multilingual-e5-small|intfloat/multilingual-e5-small|C|1.0,5.0|128000,8192|-|-|intfloat/multilingual-e5-small model|N
huggingface/zephyr-7b-beta|zephyr-7b-beta|HuggingFaceH4/zephyr-7b-beta|C|1.0,5.0|128000,8192|-|-|HuggingFaceH4/zephyr-7b-beta model|N
huggingface/L3-8B-Stheno-v3.2|l3-8b-stheno|Sao10K/L3-8B-Stheno-v3.2|C|1.0,5.0|128000,8192|V|-|Sao10K/L3-8B-Stheno-v3.2 model|N
huggingface/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored|C|1.0,5.0|128000,8192|-|-|aifeifei798/DarkIdol-Llama-3.1-8B-Instruct-1.2-Uncensored model|N
huggingface/DeepHat-V1-7B|deephat-v1-7b|DeepHat/DeepHat-V1-7B|C|1.0,5.0|128000,8192|V|-|DeepHat/DeepHat-V1-7B model|N
huggingface/Qwen3-1.7B|qwen3-1.7b|Qwen/Qwen3-1.7B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-1.7B model|N
huggingface/XortronCriminalComputingConfig|xortroncriminalcomputingconfig|darkc0de/XortronCriminalComputingConfig|C|1.0,5.0|128000,8192|-|-|darkc0de/XortronCriminalComputingConfig model|N
huggingface/bert-base-multilingual-cased|bert-base-multilingual-cased|google-bert/bert-base-multilingual-cased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-multilingual-cased model|N
huggingface/roberta-large|roberta-large|FacebookAI/roberta-large|C|1.0,5.0|128000,8192|-|-|FacebookAI/roberta-large model|N
huggingface/xlm-roberta-large|xlm-roberta-large|FacebookAI/xlm-roberta-large|C|1.0,5.0|128000,8192|-|-|FacebookAI/xlm-roberta-large model|N
huggingface/mDeBERTa-v3-base-mnli-xnli|mdeberta-v3-base-mnli-xnli|MoritzLaurer/mDeBERTa-v3-base-mnli-xnli|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/mDeBERTa-v3-base-mnli-xnli model|N
huggingface/vit-base-patch16-224|vit-base-patch16-224|google/vit-base-patch16-224|C|1.0,5.0|128000,8192|-|-|google/vit-base-patch16-224 model|N
huggingface/distilroberta-finetuned-financial-news-sentiment-analysis|-|mrm8488/distilroberta-finetuned-financial-news-sentiment-analysis|C|1.0,5.0|128000,8192|-|-|mrm8488/distilroberta-finetuned-financial-news-sentiment-analysis model|N
huggingface/MythoMax-L2-13b|mythomax-l2-13b|Gryphe/MythoMax-L2-13b|C|1.0,5.0|128000,8192|-|-|Gryphe/MythoMax-L2-13b model|N
huggingface/bge-large-zh-v1.5|bge-large-zh|BAAI/bge-large-zh-v1.5|C|1.0,5.0|128000,8192|V|-|BAAI/bge-large-zh-v1.5 model|N
huggingface/Hyper-SD|hyper-sd|ByteDance/Hyper-SD|C|1.0,5.0|128000,8192|-|-|ByteDance/Hyper-SD model|N
huggingface/Prompt-Guard-86M|prompt-guard-86m|meta-llama/Prompt-Guard-86M|C|1.0,5.0|128000,8192|-|-|meta-llama/Prompt-Guard-86M model|N
huggingface/Hermes-3-Llama-3.1-8B|hermes-3-llama-3.1-8b|NousResearch/Hermes-3-Llama-3.1-8B|C|1.0,5.0|128000,8192|-|-|NousResearch/Hermes-3-Llama-3.1-8B model|N
huggingface/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|Qwen/Qwen2.5-72B-Instruct|C|1.0,5.0|128000,8192|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B-Instruct model|N
huggingface/Qwen2.5-1.5B-Instruct|qwen2.5-1.5b-instruct|Qwen/Qwen2.5-1.5B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen2.5-1.5B-Instruct model|N
huggingface/DeepSeek-R1-Distill-Qwen-14B|deepseek-r1-distill-qwen-14b|deepseek-ai/DeepSeek-R1-Distill-Qwen-14B|C|1.0,5.0|128000,8192|-|,,87.1,44.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Qwen-14B model|N
huggingface/Qwen2.5-VL-72B-Instruct|qwen2.5-vl-72b-instruct|Qwen/Qwen2.5-VL-72B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen2.5-VL-72B-Instruct model|N
huggingface/Qwen3-Next-80B-A3B-Instruct|qwen3-next-80b-a3b-instruct|Qwen/Qwen3-Next-80B-A3B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-Next-80B-A3B-Instruct model|N
huggingface/Qwen3-Next-80B-A3B-Thinking|qwen3-next-80b-a3b-thinking|Qwen/Qwen3-Next-80B-A3B-Thinking|C|1.0,5.0|128000,8192|K|-|Qwen/Qwen3-Next-80B-A3B-Thinking model|N
huggingface/GLM-4.6|glm-4.6|zai-org/GLM-4.6|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.6 model|N
huggingface/veo3.1-fast-image-to-video|veo3.1-fast-image-to-video|akhaliq/veo3.1-fast-image-to-video|C|1.0,5.0|128000,8192|V|-|akhaliq/veo3.1-fast-image-to-video model|N
huggingface/Qwen-Edit-2509-Upscale-LoRA|qwen-edit-2509-upscale-lora|vafipas663/Qwen-Edit-2509-Upscale-LoRA|C|1.0,5.0|128000,8192|-|-|vafipas663/Qwen-Edit-2509-Upscale-LoRA model|N
huggingface/pixel_art_style_lora_z_image_turbo|pixel_art_style_lora_z_image_turbo|tarn59/pixel_art_style_lora_z_image_turbo|C|1.0,5.0|128000,8192|-|-|tarn59/pixel_art_style_lora_z_image_turbo model|N
huggingface/LongCat-Image-Edit|longcat-image-edit|meituan-longcat/LongCat-Image-Edit|C|1.0,5.0|128000,8192|-|-|meituan-longcat/LongCat-Image-Edit model|N
huggingface/GLM-4.6V|glm-4.6v|zai-org/GLM-4.6V|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.6V model|N
huggingface/Olmo-3.1-32B-Think|olmo-3.1-32b-think|allenai/Olmo-3.1-32B-Think|C|1.0,5.0|128000,8192|K|-|allenai/Olmo-3.1-32B-Think model|N
huggingface/Qwen-Image-Edit-2511-Upscale2K|qwen-image-edit-2511-upscale2k|starsfriday/Qwen-Image-Edit-2511-Upscale2K|C|1.0,5.0|128000,8192|-|-|starsfriday/Qwen-Image-Edit-2511-Upscale2K model|N
huggingface/bert-base-multilingual-uncased|bert-base-multilingual-uncased|google-bert/bert-base-multilingual-uncased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-multilingual-uncased model|N
huggingface/xlm-roberta-base|xlm-roberta-base|FacebookAI/xlm-roberta-base|C|1.0,5.0|128000,8192|-|-|FacebookAI/xlm-roberta-base model|N
huggingface/bert-base-NER|bert-base-ner|dslim/bert-base-NER|C|1.0,5.0|128000,8192|-|-|dslim/bert-base-NER model|N
huggingface/deberta-v3-base|deberta-v3-base|microsoft/deberta-v3-base|C|1.0,5.0|128000,8192|V|-|microsoft/deberta-v3-base model|N
huggingface/bert-base-uncased-emotion|bert-base-uncased-emotion|nateraw/bert-base-uncased-emotion|C|1.0,5.0|128000,8192|-|-|nateraw/bert-base-uncased-emotion model|N
huggingface/bert-base-multilingual-uncased-sentiment|-|nlptown/bert-base-multilingual-uncased-sentiment|C|1.0,5.0|128000,8192|-|-|nlptown/bert-base-multilingual-uncased-sentiment model|N
huggingface/twitter-roberta-base-sentiment-latest|twitter-roberta-base-sentiment-latest|cardiffnlp/twitter-roberta-base-sentiment-latest|C|1.0,5.0|128000,8192|-|-|cardiffnlp/twitter-roberta-base-sentiment-latest model|N
huggingface/Style-Embedding|style-embedding|AnnaWegmann/Style-Embedding|C|1.0,5.0|128000,8192|-|-|AnnaWegmann/Style-Embedding model|N
huggingface/roberta-base-go_emotions|roberta-base-go_emotions|SamLowe/roberta-base-go_emotions|C|1.0,5.0|128000,8192|-|-|SamLowe/roberta-base-go_emotions model|N
huggingface/multilingual-e5-base|multilingual-e5-base|intfloat/multilingual-e5-base|C|1.0,5.0|128000,8192|-|-|intfloat/multilingual-e5-base model|N
huggingface/bge-base-en-v1.5|bge-base-en|BAAI/bge-base-en-v1.5|C|1.0,5.0|128000,8192|V|-|BAAI/bge-base-en-v1.5 model|N
huggingface/pubmedbert-base-embeddings|pubmedbert-base-embeddings|NeuML/pubmedbert-base-embeddings|C|1.0,5.0|128000,8192|-|-|NeuML/pubmedbert-base-embeddings model|N
huggingface/Mixtral-8x7B-Instruct-v0.1|mixtral-8x7b-instruct|mistralai/Mixtral-8x7B-Instruct-v0.1|C|1.0,5.0|128000,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/Mixtral-8x7B-Instruct-v0.1 model|N
huggingface/multilingual-e5-large-instruct|multilingual-e5-large-instruct|intfloat/multilingual-e5-large-instruct|C|1.0,5.0|128000,8192|-|-|intfloat/multilingual-e5-large-instruct model|N
huggingface/stable-diffusion-3-medium|stable-diffusion-3-medium|stabilityai/stable-diffusion-3-medium|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-3-medium model|N
huggingface/stable-diffusion-3-medium-diffusers|stable-diffusion-3-medium-diffusers|stabilityai/stable-diffusion-3-medium-diffusers|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-3-medium-diffusers model|N
huggingface/gemma-2-9b-it|gemma-2-9b-it|google/gemma-2-9b-it|C|1.0,5.0|128000,8192|-|72.1,,21.0,27.5,,,,,,|google/gemma-2-9b-it model|N
huggingface/Llama-Guard-3-8B|llama-guard-3-8b|meta-llama/Llama-Guard-3-8B|C|1.0,5.0|128000,8192|-|-|meta-llama/Llama-Guard-3-8B model|N
huggingface/FLUX.1-dev-LoRA-Logo-Design|flux.1-dev-lora-logo-design|Shakker-Labs/FLUX.1-dev-LoRA-Logo-Design|C|1.0,5.0|128000,8192|-|-|Shakker-Labs/FLUX.1-dev-LoRA-Logo-Design model|N
huggingface/MN-12B-Mag-Mell-R1|mn-12b-mag-mell-r1|inflatebot/MN-12B-Mag-Mell-R1|C|1.0,5.0|128000,8192|-|-|inflatebot/MN-12B-Mag-Mell-R1 model|N
huggingface/snowflake-arctic-embed-l-v2.0|snowflake-arctic-embed-l|Snowflake/snowflake-arctic-embed-l-v2.0|C|1.0,5.0|128000,8192|V|-|Snowflake/snowflake-arctic-embed-l-v2.0 model|N
huggingface/DeepSeek-V3|deepseek|deepseek-ai/DeepSeek-V3|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|deepseek-ai/DeepSeek-V3 model|N
huggingface/Arabic-STS-Matryoshka-V2|arabic-sts-matryoshka|omarelshehy/Arabic-STS-Matryoshka-V2|C|1.0,5.0|128000,8192|V|-|omarelshehy/Arabic-STS-Matryoshka-V2 model|N
huggingface/DeepSeek-R1-Distill-Qwen-32B|deepseek-r1-distill-qwen-32b|deepseek-ai/DeepSeek-R1-Distill-Qwen-32B|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-32B model|N
huggingface/Qwen2.5-VL-7B-Instruct|qwen2.5-vl-7b-instruct|Qwen/Qwen2.5-VL-7B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen2.5-VL-7B-Instruct model|N
huggingface/roberta-base-ai-text-detection-v1|roberta-base-ai-text-detection|fakespot-ai/roberta-base-ai-text-detection-v1|C|1.0,5.0|128000,8192|V|-|fakespot-ai/roberta-base-ai-text-detection-v1 model|N
huggingface/ai-vs-human-image-detector|ai-vs-human-image-detector|Ateeqq/ai-vs-human-image-detector|C|1.0,5.0|128000,8192|V|-|Ateeqq/ai-vs-human-image-detector model|N
huggingface/Qwen3-235B-A22B|qwen3-235b-a22b|Qwen/Qwen3-235B-A22B|C|1.0,5.0|128000,8192|-|,,68.9,70.7,,,,,,|Qwen/Qwen3-235B-A22B model|N
huggingface/granite-embedding-english-r2|granite-embedding-english-r2|ibm-granite/granite-embedding-english-r2|C|1.0,5.0|128000,8192|-|-|ibm-granite/granite-embedding-english-r2 model|N
huggingface/Flux-Kontext-InScene|flux-kontext-inscene|peteromallet/Flux-Kontext-InScene|C|1.0,5.0|128000,8192|-|-|peteromallet/Flux-Kontext-InScene model|N
huggingface/DeepSeek-V3.2-Exp|deepseek-v3.2-exp|deepseek-ai/DeepSeek-V3.2-Exp|C|1.0,5.0|128000,8192|V|-|deepseek-ai/DeepSeek-V3.2-Exp model|N
huggingface/Qwen-Image-Edit-2509-Light_restoration|qwen-image-edit-2509-light_restoration|dx8152/Qwen-Image-Edit-2509-Light_restoration|C|1.0,5.0|128000,8192|-|-|dx8152/Qwen-Image-Edit-2509-Light_restoration model|N
huggingface/Qwen-Edit-2509-Multi-Angle-Lighting|qwen-edit-2509-multi-angle-lighting|dx8152/Qwen-Edit-2509-Multi-Angle-Lighting|C|1.0,5.0|128000,8192|-|-|dx8152/Qwen-Edit-2509-Multi-Angle-Lighting model|N
huggingface/qinglong_DetailedEyes_Z-Image|qinglong_detailedeyes_z-image|bdsqlsz/qinglong_DetailedEyes_Z-Image|C|1.0,5.0|128000,8192|-|-|bdsqlsz/qinglong_DetailedEyes_Z-Image model|N
huggingface/Flux-2-Multi-Angles-LoRA-v2|flux-2-multi-angles-lora|lovis93/Flux-2-Multi-Angles-LoRA-v2|C|1.0,5.0|128000,8192|V|-|lovis93/Flux-2-Multi-Angles-LoRA-v2 model|N
huggingface/AWPortrait-Z|awportrait-z|Shakker-Labs/AWPortrait-Z|C|1.0,5.0|128000,8192|-|-|Shakker-Labs/AWPortrait-Z model|N
huggingface/Qwen-Image-Edit-LoRA-Collection|qwen-image-edit-lora-collection|strangerzonehf/Qwen-Image-Edit-LoRA-Collection|C|1.0,5.0|128000,8192|-|-|strangerzonehf/Qwen-Image-Edit-LoRA-Collection model|N
huggingface/Qwen-Image-Edit-2511-Polaroid-Photo|qwen-image-edit-2511-polaroid-photo|prithivMLmods/Qwen-Image-Edit-2511-Polaroid-Photo|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Qwen-Image-Edit-2511-Polaroid-Photo model|N
huggingface/bert-base-cased|bert-base-cased|google-bert/bert-base-cased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-cased model|N
huggingface/bert-large-uncased-whole-word-masking-finetuned-squad|-|google-bert/bert-large-uncased-whole-word-masking-finetuned-squad|C|1.0,5.0|128000,8192|-|-|google-bert/bert-large-uncased-whole-word-masking-finetuned-squad model|N
huggingface/distilroberta-base|distilroberta-base|distilbert/distilroberta-base|C|1.0,5.0|128000,8192|-|-|distilbert/distilroberta-base model|N
huggingface/roberta-base-openai-detector|roberta-base-openai-detector|openai-community/roberta-base-openai-detector|C|1.0,5.0|128000,8192|-|-|openai-community/roberta-base-openai-detector model|N
huggingface/roberta-large-mnli|roberta-large-mnli|FacebookAI/roberta-large-mnli|C|1.0,5.0|128000,8192|-|-|FacebookAI/roberta-large-mnli model|N
huggingface/sup-SimCSE-VietNamese-phobert-base|sup-simcse-vietnamese-phobert-base|VoVanPhuc/sup-SimCSE-VietNamese-phobert-base|C|1.0,5.0|128000,8192|V|-|VoVanPhuc/sup-SimCSE-VietNamese-phobert-base model|N
huggingface/bart-large-mnli|bart-large-mnli|facebook/bart-large-mnli|C|1.0,5.0|128000,8192|-|-|facebook/bart-large-mnli model|N
huggingface/detr-resnet-50|detr-resnet-50|facebook/detr-resnet-50|C|1.0,5.0|128000,8192|-|-|facebook/detr-resnet-50 model|N
huggingface/bangla-bert-base|bangla-bert-base|sagorsarker/bangla-bert-base|C|1.0,5.0|128000,8192|-|-|sagorsarker/bangla-bert-base model|N
huggingface/all-MiniLM-L12-v2|all-minilm-l12|sentence-transformers/all-MiniLM-L12-v2|C|1.0,5.0|128000,8192|V|-|sentence-transformers/all-MiniLM-L12-v2 model|N
huggingface/multi-qa-mpnet-base-dot-v1|multi-qa-mpnet-base-dot|sentence-transformers/multi-qa-mpnet-base-dot-v1|C|1.0,5.0|128000,8192|V|-|sentence-transformers/multi-qa-mpnet-base-dot-v1 model|N
huggingface/roberta-base-finetuned-dianping-chinese|roberta-base-finetuned-dianping-chinese|uer/roberta-base-finetuned-dianping-chinese|C|1.0,5.0|128000,8192|-|-|uer/roberta-base-finetuned-dianping-chinese model|N
huggingface/face-parsing|face-parsing|jonathandinu/face-parsing|C|1.0,5.0|128000,8192|-|-|jonathandinu/face-parsing model|N
huggingface/e5-base-v2|e5-base|intfloat/e5-base-v2|C|1.0,5.0|128000,8192|V|-|intfloat/e5-base-v2 model|N
huggingface/bert-base-personality|bert-base-personality|Minej/bert-base-personality|C|1.0,5.0|128000,8192|-|-|Minej/bert-base-personality model|N
huggingface/bge-small-en|bge-small-en|BAAI/bge-small-en|C|1.0,5.0|128000,8192|-|-|BAAI/bge-small-en model|N
huggingface/bge-large-en-v1.5|bge-large-en|BAAI/bge-large-en-v1.5|C|1.0,5.0|128000,8192|V|-|BAAI/bge-large-en-v1.5 model|N
huggingface/bge-reranker-large|bge-reranker-large|BAAI/bge-reranker-large|C|1.0,5.0|128000,8192|-|-|BAAI/bge-reranker-large model|N
huggingface/deberta-v3-base-prompt-injection|deberta-v3-base-prompt-injection|protectai/deberta-v3-base-prompt-injection|C|1.0,5.0|128000,8192|V|-|protectai/deberta-v3-base-prompt-injection model|N
huggingface/bert-finetuned-phishing|bert-finetuned-phishing|ealvaradob/bert-finetuned-phishing|C|1.0,5.0|128000,8192|-|-|ealvaradob/bert-finetuned-phishing model|N
huggingface/skin_types_image_detection|skin_types_image_detection|dima806/skin_types_image_detection|C|1.0,5.0|128000,8192|-|-|dima806/skin_types_image_detection model|N
huggingface/mxbai-embed-large-v1|mxbai-embed-large|mixedbread-ai/mxbai-embed-large-v1|C|1.0,5.0|128000,8192|V|-|mixedbread-ai/mxbai-embed-large-v1 model|N
huggingface/deberta-v3-large-zeroshot-v2.0|deberta-v3-large-zeroshot|MoritzLaurer/deberta-v3-large-zeroshot-v2.0|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/deberta-v3-large-zeroshot-v2.0 model|N
huggingface/Meta-Llama-3-70B-Instruct|meta-llama-3-70b-instruct|meta-llama/Meta-Llama-3-70B-Instruct|C|1.0,5.0|128000,8192|-|79.3,,22.6,40.6,,,,,,|meta-llama/Meta-Llama-3-70B-Instruct model|N
huggingface/Llama3-OpenBioLLM-8B|llama3-openbiollm-8b|aaditya/Llama3-OpenBioLLM-8B|C|1.0,5.0|128000,8192|-|-|aaditya/Llama3-OpenBioLLM-8B model|N
huggingface/segformer-b3-fashion|segformer-b3-fashion|sayeed99/segformer-b3-fashion|C|1.0,5.0|128000,8192|-|-|sayeed99/segformer-b3-fashion model|N
huggingface/Llama-3-Taiwan-70B-Instruct|llama-3-taiwan-70b-instruct|yentinglin/Llama-3-Taiwan-70B-Instruct|C|1.0,5.0|128000,8192|-|-|yentinglin/Llama-3-Taiwan-70B-Instruct model|N
huggingface/sdxl-emoji|sdxl-emoji|fofr/sdxl-emoji|C|1.0,5.0|128000,8192|-|-|fofr/sdxl-emoji model|N
huggingface/Llama-3-ELYZA-JP-8B|llama-3-elyza-jp-8b|elyza/Llama-3-ELYZA-JP-8B|C|1.0,5.0|128000,8192|-|-|elyza/Llama-3-ELYZA-JP-8B model|N
huggingface/Llama-3.1-70B-Instruct|llama-3.1-70b-instruct|meta-llama/Llama-3.1-70B-Instruct|C|1.0,5.0|128000,8192|-|80.1,,36.7,44.2,,,,,,|meta-llama/Llama-3.1-70B-Instruct model|N
huggingface/Mistral-Nemo-Instruct-2407|mistral-nemo-instruct-2407|mistralai/Mistral-Nemo-Instruct-2407|C|1.0,5.0|128000,8192|-|-|mistralai/Mistral-Nemo-Instruct-2407 model|N
huggingface/Meta-Llama-3.1-8B-Instruct-abliterated|meta-llama-3.1-8b-instruct-abliterated|mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated|C|1.0,5.0|128000,8192|-|-|mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated model|N
huggingface/flux-RealismLora|flux-realismlora|XLabs-AI/flux-RealismLora|C|1.0,5.0|128000,8192|-|-|XLabs-AI/flux-RealismLora model|N
huggingface/CogVideoX-5b|cogvideox-5b|zai-org/CogVideoX-5b|C|1.0,5.0|128000,8192|-|-|zai-org/CogVideoX-5b model|N
huggingface/Qwen2.5-1.5B|qwen2.5-1.5b|Qwen/Qwen2.5-1.5B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen2.5-1.5B model|N
huggingface/Qwen2.5-Coder-3B-Instruct|qwen2.5-coder-3b-instruct|Qwen/Qwen2.5-Coder-3B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen2.5-Coder-3B-Instruct model|N
huggingface/multilingual-sentiment-analysis|multilingual-sentiment-analysis|tabularisai/multilingual-sentiment-analysis|C|1.0,5.0|128000,8192|-|-|tabularisai/multilingual-sentiment-analysis model|N
huggingface/ReaderLM-v2|readerlm|jinaai/ReaderLM-v2|C|1.0,5.0|128000,8192|V|-|jinaai/ReaderLM-v2 model|N
huggingface/L3.3-MS-Nevoria-70b|l3.3-ms-nevoria-70b|Steelskull/L3.3-MS-Nevoria-70b|C|1.0,5.0|128000,8192|-|-|Steelskull/L3.3-MS-Nevoria-70b model|N
huggingface/DeepSeek-R1-Distill-Qwen-7B|deepseek-r1-distill-qwen-7b|deepseek-ai/DeepSeek-R1-Distill-Qwen-7B|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-R1-Distill-Qwen-7B model|N
huggingface/Eleusis-12B|eleusis-12b|PygmalionAI/Eleusis-12B|C|1.0,5.0|128000,8192|-|-|PygmalionAI/Eleusis-12B model|N
huggingface/WiroAI-Finance-Qwen-7B|wiroai-finance-qwen-7b|WiroAI/WiroAI-Finance-Qwen-7B|C|1.0,5.0|128000,8192|-|-|WiroAI/WiroAI-Finance-Qwen-7B model|N
huggingface/Wan2.1-I2V-14B-720P|wan2.1-i2v-14b-720p|Wan-AI/Wan2.1-I2V-14B-720P|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.1-I2V-14B-720P model|N
huggingface/QwQ-32B|qwq-32b|Qwen/QwQ-32B|C|1.0,5.0|128000,8192|-|-|Qwen/QwQ-32B model|N
huggingface/StockLLM|stockllm|TheFinAI/StockLLM|C|1.0,5.0|128000,8192|-|-|TheFinAI/StockLLM model|N
huggingface/langcache-embed-v1|langcache-embed|redis/langcache-embed-v1|C|1.0,5.0|128000,8192|V|-|redis/langcache-embed-v1 model|N
huggingface/Clinical_ModernBERT|clinical_modernbert|Simonlee711/Clinical_ModernBERT|C|1.0,5.0|128000,8192|-|-|Simonlee711/Clinical_ModernBERT model|N
huggingface/Llama-4-Maverick-17B-128E-Instruct|llama-4-maverick-17b-128e-instruct|meta-llama/Llama-4-Maverick-17B-128E-Instruct|C|1.0,5.0|128000,8192|-|,,73.0,67.0,,,,,,|meta-llama/Llama-4-Maverick-17B-128E-Instruct model|N
huggingface/GLM-4-9B-0414|glm-4-9b-0414|zai-org/GLM-4-9B-0414|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4-9B-0414 model|N
huggingface/Dia-1.6B|dia-1.6b|nari-labs/Dia-1.6B|C|1.0,5.0|128000,8192|-|-|nari-labs/Dia-1.6B model|N
huggingface/Qwen3-32B|qwen3-32b|Qwen/Qwen3-32B|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-32B model|N
huggingface/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B|dobby-mini-unhinged-plus-llama-3.1-8b|SentientAGI/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B|C|1.0,5.0|128000,8192|-|-|SentientAGI/Dobby-Mini-Unhinged-Plus-Llama-3.1-8B model|N
huggingface/BioClinical-ModernBERT-base|bioclinical-modernbert-base|thomas-sounack/BioClinical-ModernBERT-base|C|1.0,5.0|128000,8192|-|-|thomas-sounack/BioClinical-ModernBERT-base model|N
huggingface/QwenLong-L1-32B|qwenlong-l1-32b|Tongyi-Zhiwen/QwenLong-L1-32B|C|1.0,5.0|128000,8192|-|-|Tongyi-Zhiwen/QwenLong-L1-32B model|N
huggingface/Tower-Plus-9B|tower-plus-9b|Unbabel/Tower-Plus-9B|C|1.0,5.0|128000,8192|-|-|Unbabel/Tower-Plus-9B model|N
huggingface/GLM-4.5-Air|glm-4.5-air|zai-org/GLM-4.5-Air|C|1.0,5.0|128000,8192|-|-|zai-org/GLM-4.5-Air model|N
huggingface/Qwen3-235B-A22B-Instruct-2507|qwen3-235b-a22b-instruct-2507|Qwen/Qwen3-235B-A22B-Instruct-2507|C|1.0,5.0|128000,8192|-|,,68.9,70.7,,,,,,|Qwen/Qwen3-235B-A22B-Instruct-2507 model|N
huggingface/Qwen3-Coder-480B-A35B-Instruct|qwen3-coder-480b-a35b-instruct|Qwen/Qwen3-Coder-480B-A35B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-Coder-480B-A35B-Instruct model|N
huggingface/Qwen3-Coder-480B-A35B-Instruct-FP8|qwen3-coder-480b-a35b-instruct-fp8|Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8 model|N
huggingface/mmBERT-base|mmbert-base|jhu-clsp/mmBERT-base|C|1.0,5.0|128000,8192|-|-|jhu-clsp/mmBERT-base model|N
huggingface/Qwen3-235B-A22B-Thinking-2507|qwen3-235b-a22b-thinking-2507|Qwen/Qwen3-235B-A22B-Thinking-2507|C|1.0,5.0|128000,8192|K|,,,80.1,,,,,,|Qwen/Qwen3-235B-A22B-Thinking-2507 model|N
huggingface/Wan2.2-I2V-A14B-Diffusers|wan2.2-i2v-a14b-diffusers|Wan-AI/Wan2.2-I2V-A14B-Diffusers|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.2-I2V-A14B-Diffusers model|N
huggingface/Foundation-Sec-8B-Instruct|foundation-sec-8b-instruct|fdtn-ai/Foundation-Sec-8B-Instruct|C|1.0,5.0|128000,8192|-|-|fdtn-ai/Foundation-Sec-8B-Instruct model|N
huggingface/Qwen3-30B-A3B-Thinking-2507|qwen3-30b-a3b-thinking-2507|Qwen/Qwen3-30B-A3B-Thinking-2507|C|1.0,5.0|128000,8192|K|-|Qwen/Qwen3-30B-A3B-Thinking-2507 model|N
huggingface/Qwen_majic_beauty|qwen_majic_beauty|Lingyuzhou/Qwen_majic_beauty|C|1.0,5.0|128000,8192|-|-|Lingyuzhou/Qwen_majic_beauty model|N
huggingface/mmBERT-small|mmbert-small|jhu-clsp/mmBERT-small|C|1.0,5.0|128000,8192|-|-|jhu-clsp/mmBERT-small model|N
huggingface/SRPO|srpo|tencent/SRPO|C|1.0,5.0|128000,8192|-|-|tencent/SRPO model|N
huggingface/Ovi|ovi|chetwinlow1/Ovi|C|1.0,5.0|128000,8192|-|-|chetwinlow1/Ovi model|N
huggingface/Qwen3-VL-30B-A3B-Thinking|qwen3-vl-30b-a3b-thinking|Qwen/Qwen3-VL-30B-A3B-Thinking|C|1.0,5.0|128000,8192|VK|-|Qwen/Qwen3-VL-30B-A3B-Thinking model|N
huggingface/Qwen-Image-Edit-2509-Relight|qwen-image-edit-2509-relight|dx8152/Qwen-Image-Edit-2509-Relight|C|1.0,5.0|128000,8192|-|-|dx8152/Qwen-Image-Edit-2509-Relight model|N
huggingface/Kontext-Watermark-Remover|kontext-watermark-remover|prithivMLmods/Kontext-Watermark-Remover|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Kontext-Watermark-Remover model|N
huggingface/QwenEdit-Anything2Real_Alpha|qwenedit-anything2real_alpha|lrzjason/QwenEdit-Anything2Real_Alpha|C|1.0,5.0|128000,8192|-|-|lrzjason/QwenEdit-Anything2Real_Alpha model|N
huggingface/Olmo-3-7B-Think|olmo-3-7b-think|allenai/Olmo-3-7B-Think|C|1.0,5.0|128000,8192|K|-|allenai/Olmo-3-7B-Think model|N
huggingface/INTELLECT-3-FP8|intellect-3-fp8|PrimeIntellect/INTELLECT-3-FP8|C|1.0,5.0|128000,8192|-|-|PrimeIntellect/INTELLECT-3-FP8 model|N
huggingface/Qwen-Image-Edit-2509-Upscale2K|qwen-image-edit-2509-upscale2k|valiantcat/Qwen-Image-Edit-2509-Upscale2K|C|1.0,5.0|128000,8192|-|-|valiantcat/Qwen-Image-Edit-2509-Upscale2K model|N
huggingface/zimage_turbo_training_adapter|zimage_turbo_training_adapter|ostris/zimage_turbo_training_adapter|C|1.0,5.0|128000,8192|-|-|ostris/zimage_turbo_training_adapter model|N
huggingface/rnj-1-instruct|rnj-1-instruct|EssentialAI/rnj-1-instruct|C|1.0,5.0|128000,8192|-|-|EssentialAI/rnj-1-instruct model|N
huggingface/LongCat-Image|longcat-image|meituan-longcat/LongCat-Image|C|1.0,5.0|128000,8192|-|-|meituan-longcat/LongCat-Image model|N
huggingface/EuroLLM-22B-Instruct-2512|eurollm-22b-instruct-2512|utter-project/EuroLLM-22B-Instruct-2512|C|1.0,5.0|128000,8192|-|-|utter-project/EuroLLM-22B-Instruct-2512 model|N
huggingface/ASH|ash|sigstevens33/ASH|C|1.0,5.0|128000,8192|-|-|sigstevens33/ASH model|N
huggingface/StefanieJoosten_ZimageTurbo|stefaniejoosten_zimageturbo|JunkieMonkey69/StefanieJoosten_ZimageTurbo|C|1.0,5.0|128000,8192|-|-|JunkieMonkey69/StefanieJoosten_ZimageTurbo model|N
huggingface/UltraRealisticInfluncer|ultrarealisticinfluncer|jusiflix/UltraRealisticInfluncer|C|1.0,5.0|128000,8192|-|-|jusiflix/UltraRealisticInfluncer model|N
huggingface/aimaginedworlds|aimaginedworlds|ABDALLALSWAITI/aimaginedworlds|C|1.0,5.0|128000,8192|-|-|ABDALLALSWAITI/aimaginedworlds model|N
huggingface/albert-xxlarge-v2|albert-xxlarge|albert/albert-xxlarge-v2|C|1.0,5.0|128000,8192|V|-|albert/albert-xxlarge-v2 model|N
huggingface/bert-base-german-dbmdz-uncased|bert-base-german-dbmdz-uncased|google-bert/bert-base-german-dbmdz-uncased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-base-german-dbmdz-uncased model|N
huggingface/bert-large-uncased|bert-large-uncased|google-bert/bert-large-uncased|C|1.0,5.0|128000,8192|-|-|google-bert/bert-large-uncased model|N
huggingface/distilbert-base-cased|distilbert-base-cased|distilbert/distilbert-base-cased|C|1.0,5.0|128000,8192|-|-|distilbert/distilbert-base-cased model|N
huggingface/distilbert-base-uncased-distilled-squad|distilbert-base-uncased-distilled-squad|distilbert/distilbert-base-uncased-distilled-squad|C|1.0,5.0|128000,8192|-|-|distilbert/distilbert-base-uncased-distilled-squad model|N
huggingface/xlm-roberta-large-finetuned-conll03-english|-|FacebookAI/xlm-roberta-large-finetuned-conll03-english|C|1.0,5.0|128000,8192|-|-|FacebookAI/xlm-roberta-large-finetuned-conll03-english model|N
huggingface/xlm-roberta-large-finetuned-conll03-german|-|FacebookAI/xlm-roberta-large-finetuned-conll03-german|C|1.0,5.0|128000,8192|-|-|FacebookAI/xlm-roberta-large-finetuned-conll03-german model|N
huggingface/hateBERT|hatebert|GroNLP/hateBERT|C|1.0,5.0|128000,8192|-|-|GroNLP/hateBERT model|N
huggingface/opus-mt-en-zh|opus-mt-en-zh|Helsinki-NLP/opus-mt-en-zh|C|1.0,5.0|128000,8192|-|-|Helsinki-NLP/opus-mt-en-zh model|N
huggingface/opus-mt-ja-en|opus-mt-ja-en|Helsinki-NLP/opus-mt-ja-en|C|1.0,5.0|128000,8192|-|-|Helsinki-NLP/opus-mt-ja-en model|N
huggingface/opus-mt-ru-en|opus-mt-ru-en|Helsinki-NLP/opus-mt-ru-en|C|1.0,5.0|128000,8192|-|-|Helsinki-NLP/opus-mt-ru-en model|N
huggingface/bert-base-parsbert-uncased|bert-base-parsbert-uncased|HooshvareLab/bert-base-parsbert-uncased|C|1.0,5.0|128000,8192|-|-|HooshvareLab/bert-base-parsbert-uncased model|N
huggingface/camembert-ner-with-dates|camembert-ner-with-dates|Jean-Baptiste/camembert-ner-with-dates|C|1.0,5.0|128000,8192|-|-|Jean-Baptiste/camembert-ner-with-dates model|N
huggingface/wangchanberta-base-att-spm-uncased|wangchanberta-base-att-spm-uncased|airesearch/wangchanberta-base-att-spm-uncased|C|1.0,5.0|128000,8192|-|-|airesearch/wangchanberta-base-att-spm-uncased model|N
huggingface/bert-base-arabertv02|bert-base-arabertv02|aubmindlab/bert-base-arabertv02|C|1.0,5.0|128000,8192|-|-|aubmindlab/bert-base-arabertv02 model|N
huggingface/bert-base-indonesian-NER|bert-base-indonesian-ner|cahya/bert-base-indonesian-NER|C|1.0,5.0|128000,8192|-|-|cahya/bert-base-indonesian-NER model|N
huggingface/rubert-tiny2|rubert-tiny2|cointegrated/rubert-tiny2|C|1.0,5.0|128000,8192|-|-|cointegrated/rubert-tiny2 model|N
huggingface/mT5_multilingual_XLSum|mt5_multilingual_xlsum|csebuetnlp/mT5_multilingual_XLSum|C|1.0,5.0|128000,8192|-|-|csebuetnlp/mT5_multilingual_XLSum model|N
huggingface/bert-base-spanish-wwm-uncased|bert-base-spanish-wwm-uncased|dccuchile/bert-base-spanish-wwm-uncased|C|1.0,5.0|128000,8192|-|-|dccuchile/bert-base-spanish-wwm-uncased model|N
huggingface/minilm-uncased-squad2|minilm-uncased-squad2|deepset/minilm-uncased-squad2|C|1.0,5.0|128000,8192|-|-|deepset/minilm-uncased-squad2 model|N
huggingface/Bio_ClinicalBERT|bio_clinicalbert|emilyalsentzer/Bio_ClinicalBERT|C|1.0,5.0|128000,8192|-|-|emilyalsentzer/Bio_ClinicalBERT model|N
huggingface/pegasus-cnn_dailymail|pegasus-cnn_dailymail|google/pegasus-cnn_dailymail|C|1.0,5.0|128000,8192|-|-|google/pegasus-cnn_dailymail model|N
huggingface/vit-large-patch32-384|vit-large-patch32-384|google/vit-large-patch32-384|C|1.0,5.0|128000,8192|-|-|google/vit-large-patch32-384 model|N
huggingface/chinese-bert-wwm-ext|chinese-bert-wwm-ext|hfl/chinese-bert-wwm-ext|C|1.0,5.0|128000,8192|-|-|hfl/chinese-bert-wwm-ext model|N
huggingface/chinese-roberta-wwm-ext|chinese-roberta-wwm-ext|hfl/chinese-roberta-wwm-ext|C|1.0,5.0|128000,8192|-|-|hfl/chinese-roberta-wwm-ext model|N
huggingface/sentence_similarity_spanish_es|sentence_similarity_spanish_es|hiiamsid/sentence_similarity_spanish_es|C|1.0,5.0|128000,8192|-|-|hiiamsid/sentence_similarity_spanish_es model|N
huggingface/CodeBERTa-language-id|codeberta-language-id|huggingface/CodeBERTa-language-id|C|1.0,5.0|128000,8192|-|-|huggingface/CodeBERTa-language-id model|N
huggingface/bert-base-cased-qa-evaluator|bert-base-cased-qa-evaluator|iarfmoose/bert-base-cased-qa-evaluator|C|1.0,5.0|128000,8192|-|-|iarfmoose/bert-base-cased-qa-evaluator model|N
huggingface/emotion-english-distilroberta-base|emotion-english-distilroberta-base|j-hartmann/emotion-english-distilroberta-base|C|1.0,5.0|128000,8192|-|-|j-hartmann/emotion-english-distilroberta-base model|N
huggingface/SecBERT|secbert|jackaduma/SecBERT|C|1.0,5.0|128000,8192|-|-|jackaduma/SecBERT model|N
huggingface/longformer-base-plagiarism-detection|longformer-base-plagiarism-detection|jpwahle/longformer-base-plagiarism-detection|C|1.0,5.0|128000,8192|-|-|jpwahle/longformer-base-plagiarism-detection model|N
huggingface/roberta-large|roberta-large|klue/roberta-large|C|1.0,5.0|128000,8192|-|-|klue/roberta-large model|N
huggingface/MEETING_SUMMARY|meeting_summary|knkarthick/MEETING_SUMMARY|C|1.0,5.0|128000,8192|-|-|knkarthick/MEETING_SUMMARY model|N
huggingface/deberta-large-mnli|deberta-large-mnli|microsoft/deberta-large-mnli|C|1.0,5.0|128000,8192|-|-|microsoft/deberta-large-mnli model|N
huggingface/graphcodebert-base|graphcodebert-base|microsoft/graphcodebert-base|C|1.0,5.0|128000,8192|-|-|microsoft/graphcodebert-base model|N
huggingface/mdeberta-v3-base|mdeberta-v3-base|microsoft/mdeberta-v3-base|C|1.0,5.0|128000,8192|V|-|microsoft/mdeberta-v3-base model|N
huggingface/swin-large-patch4-window12-384|swin-large-patch4-window12-384|microsoft/swin-large-patch4-window12-384|C|1.0,5.0|128000,8192|-|-|microsoft/swin-large-patch4-window12-384 model|N
huggingface/bert-tiny-finetuned-fake-news-detection|bert-tiny-finetuned-fake-news-detection|mrm8488/bert-tiny-finetuned-fake-news-detection|C|1.0,5.0|128000,8192|-|-|mrm8488/bert-tiny-finetuned-fake-news-detection model|N
huggingface/vit-age-classifier|vit-age-classifier|nateraw/vit-age-classifier|C|1.0,5.0|128000,8192|-|-|nateraw/vit-age-classifier model|N
huggingface/bert-base-portuguese-cased|bert-base-portuguese-cased|neuralmind/bert-base-portuguese-cased|C|1.0,5.0|128000,8192|-|-|neuralmind/bert-base-portuguese-cased model|N
huggingface/legal-bert-base-uncased|legal-bert-base-uncased|nlpaueb/legal-bert-base-uncased|C|1.0,5.0|128000,8192|-|-|nlpaueb/legal-bert-base-uncased model|N
huggingface/segformer-b5-finetuned-cityscapes-1024-1024|-|nvidia/segformer-b5-finetuned-cityscapes-1024-1024|C|1.0,5.0|128000,8192|-|-|nvidia/segformer-b5-finetuned-cityscapes-1024-1024 model|N
huggingface/nbailab-base-ner-scandi|nbailab-base-ner-scandi|saattrupdan/nbailab-base-ner-scandi|C|1.0,5.0|128000,8192|-|-|saattrupdan/nbailab-base-ner-scandi model|N
huggingface/paraphrase-multilingual-mpnet-base-v2|paraphrase-multilingual-mpnet-base|sentence-transformers/paraphrase-multilingual-mpnet-base-v2|C|1.0,5.0|128000,8192|V|-|sentence-transformers/paraphrase-multilingual-mpnet-base-v2 model|N
huggingface/ChemBERTa_zinc250k_v2_40k|chemberta_zinc250k_v2_40k|seyonec/ChemBERTa_zinc250k_v2_40k|C|1.0,5.0|128000,8192|-|-|seyonec/ChemBERTa_zinc250k_v2_40k model|N
huggingface/text2vec-base-chinese|text2vec-base-chinese|shibing624/text2vec-base-chinese|C|1.0,5.0|128000,8192|-|-|shibing624/text2vec-base-chinese model|N
huggingface/KR-FinBert-SC|kr-finbert-sc|snunlp/KR-FinBert-SC|C|1.0,5.0|128000,8192|-|-|snunlp/KR-FinBert-SC model|N
huggingface/sbert-base-chinese-nli|sbert-base-chinese-nli|uer/sbert-base-chinese-nli|C|1.0,5.0|128000,8192|-|-|uer/sbert-base-chinese-nli model|N
huggingface/distilbart-mnli-12-1|distilbart-mnli-12-1|valhalla/distilbart-mnli-12-1|C|1.0,5.0|128000,8192|-|-|valhalla/distilbart-mnli-12-1 model|N
huggingface/indonesian-roberta-base-sentiment-classifier|-|w11wo/indonesian-roberta-base-sentiment-classifier|C|1.0,5.0|128000,8192|-|-|w11wo/indonesian-roberta-base-sentiment-classifier model|N
huggingface/unixcoder-base|unixcoder-base|microsoft/unixcoder-base|C|1.0,5.0|128000,8192|-|-|microsoft/unixcoder-base model|N
huggingface/opus-mt-tc-big-en-fr|opus-mt-tc-big-en-fr|Helsinki-NLP/opus-mt-tc-big-en-fr|C|1.0,5.0|128000,8192|-|-|Helsinki-NLP/opus-mt-tc-big-en-fr model|N
huggingface/opus-mt-tc-big-en-pt|opus-mt-tc-big-en-pt|Helsinki-NLP/opus-mt-tc-big-en-pt|C|1.0,5.0|128000,8192|-|-|Helsinki-NLP/opus-mt-tc-big-en-pt model|N
huggingface/BiomedVLP-CXR-BERT-general|biomedvlp-cxr-bert-general|microsoft/BiomedVLP-CXR-BERT-general|C|1.0,5.0|128000,8192|-|-|microsoft/BiomedVLP-CXR-BERT-general model|N
huggingface/mobilevit-small|mobilevit-small|apple/mobilevit-small|C|1.0,5.0|128000,8192|-|-|apple/mobilevit-small model|N
huggingface/DeBERTa-v3-large-mnli-fever-anli-ling-wanli|-|MoritzLaurer/DeBERTa-v3-large-mnli-fever-anli-ling-wanli|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/DeBERTa-v3-large-mnli-fever-anli-ling-wanli model|N
huggingface/cryptobert|cryptobert|ElKulako/cryptobert|C|1.0,5.0|128000,8192|-|-|ElKulako/cryptobert model|N
huggingface/Taiyi-CLIP-Roberta-102M-Chinese|taiyi-clip-roberta-102m-chinese|IDEA-CCNL/Taiyi-CLIP-Roberta-102M-Chinese|C|1.0,5.0|128000,8192|-|-|IDEA-CCNL/Taiyi-CLIP-Roberta-102M-Chinese model|N
huggingface/mDeBERTa-v3-base-xnli-multilingual-nli-2mil7|-|MoritzLaurer/mDeBERTa-v3-base-xnli-multilingual-nli-2mil7|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/mDeBERTa-v3-base-xnli-multilingual-nli-2mil7 model|N
huggingface/polyBERT|polybert|kuelumbus/polyBERT|C|1.0,5.0|128000,8192|-|-|kuelumbus/polyBERT model|N
huggingface/esm2_t6_8M_UR50D|esm2_t6_8m_ur50d|facebook/esm2_t6_8M_UR50D|C|1.0,5.0|128000,8192|-|-|facebook/esm2_t6_8M_UR50D model|N
huggingface/AI-image-detector|ai-image-detector|umm-maybe/AI-image-detector|C|1.0,5.0|128000,8192|-|-|umm-maybe/AI-image-detector model|N
huggingface/SecureBERT|securebert|ehsanaghaei/SecureBERT|C|1.0,5.0|128000,8192|-|-|ehsanaghaei/SecureBERT model|N
huggingface/esm2_t36_3B_UR50D|esm2_t36_3b_ur50d|facebook/esm2_t36_3B_UR50D|C|1.0,5.0|128000,8192|-|-|facebook/esm2_t36_3B_UR50D model|N
huggingface/BioBERT-mnli-snli-scinli-scitail-mednli-stsb|-|pritamdeka/BioBERT-mnli-snli-scinli-scitail-mednli-stsb|C|1.0,5.0|128000,8192|-|-|pritamdeka/BioBERT-mnli-snli-scinli-scitail-mednli-stsb model|N
huggingface/segformer_b2_clothes|segformer_b2_clothes|mattmdjaga/segformer_b2_clothes|C|1.0,5.0|128000,8192|-|-|mattmdjaga/segformer_b2_clothes model|N
huggingface/mask2former-swin-base-coco-instance|mask2former-swin-base-coco-instance|facebook/mask2former-swin-base-coco-instance|C|1.0,5.0|128000,8192|-|-|facebook/mask2former-swin-base-coco-instance model|N
huggingface/e5-small|e5-small|intfloat/e5-small|C|1.0,5.0|128000,8192|-|-|intfloat/e5-small model|N
huggingface/AI-Content-Detector|ai-content-detector|PirateXX/AI-Content-Detector|C|1.0,5.0|128000,8192|-|-|PirateXX/AI-Content-Detector model|N
huggingface/ClaimBuster-DeBERTaV2|claimbuster-debertav2|whispAI/ClaimBuster-DeBERTaV2|C|1.0,5.0|128000,8192|-|-|whispAI/ClaimBuster-DeBERTaV2 model|N
huggingface/efficientnet-b0|efficientnet-b0|google/efficientnet-b0|C|1.0,5.0|128000,8192|-|-|google/efficientnet-b0 model|N
huggingface/efficientnet-b3|efficientnet-b3|google/efficientnet-b3|C|1.0,5.0|128000,8192|-|-|google/efficientnet-b3 model|N
huggingface/convnextv2-huge-22k-512|convnextv2-huge-22k-512|facebook/convnextv2-huge-22k-512|C|1.0,5.0|128000,8192|-|-|facebook/convnextv2-huge-22k-512 model|N
huggingface/convnextv2-base-22k-224|convnextv2-base-22k-224|facebook/convnextv2-base-22k-224|C|1.0,5.0|128000,8192|-|-|facebook/convnextv2-base-22k-224 model|N
huggingface/mobilenet_v2_1.0_224-plant-disease-identification|-|linkanjarad/mobilenet_v2_1.0_224-plant-disease-identification|C|1.0,5.0|128000,8192|-|-|linkanjarad/mobilenet_v2_1.0_224-plant-disease-identification model|N
huggingface/distilbert-base-multilingual-cased-sentiments-student|-|lxyuan/distilbert-base-multilingual-cased-sentiments-student|C|1.0,5.0|128000,8192|-|-|lxyuan/distilbert-base-multilingual-cased-sentiments-student model|N
huggingface/e5-small-v2|e5-small|intfloat/e5-small-v2|C|1.0,5.0|128000,8192|V|-|intfloat/e5-small-v2 model|N
huggingface/bge-large-zh|bge-large-zh|BAAI/bge-large-zh|C|1.0,5.0|128000,8192|-|-|BAAI/bge-large-zh model|N
huggingface/pixel-art-xl|pixel-art-xl|nerijs/pixel-art-xl|C|1.0,5.0|128000,8192|-|-|nerijs/pixel-art-xl model|N
huggingface/SPhilBerta|sphilberta|bowphs/SPhilBerta|C|1.0,5.0|128000,8192|-|-|bowphs/SPhilBerta model|N
huggingface/bge-small-en-v1.5|bge-small-en|BAAI/bge-small-en-v1.5|C|1.0,5.0|128000,8192|V|-|BAAI/bge-small-en-v1.5 model|N
huggingface/bge-small-zh-v1.5|bge-small-zh|BAAI/bge-small-zh-v1.5|C|1.0,5.0|128000,8192|V|-|BAAI/bge-small-zh-v1.5 model|N
huggingface/madlad400-3b-mt|madlad400-3b-mt|jbochi/madlad400-3b-mt|C|1.0,5.0|128000,8192|-|-|jbochi/madlad400-3b-mt model|N
huggingface/Text-Moderation|text-moderation|KoalaAI/Text-Moderation|C|1.0,5.0|128000,8192|-|-|KoalaAI/Text-Moderation model|N
huggingface/bge-micro-v2|bge-micro|TaylorAI/bge-micro-v2|C|1.0,5.0|128000,8192|V|-|TaylorAI/bge-micro-v2 model|N
huggingface/deepfake_vs_real_image_detection|deepfake_vs_real_image_detection|dima806/deepfake_vs_real_image_detection|C|1.0,5.0|128000,8192|-|-|dima806/deepfake_vs_real_image_detection model|N
huggingface/storyboard-sketch|storyboard-sketch|blink7630/storyboard-sketch|C|1.0,5.0|128000,8192|-|-|blink7630/storyboard-sketch model|N
huggingface/BioLORD-2023-M|biolord-2023-m|FremyCompany/BioLORD-2023-M|C|1.0,5.0|128000,8192|-|-|FremyCompany/BioLORD-2023-M model|N
huggingface/kf-deberta-base|kf-deberta-base|kakaobank/kf-deberta-base|C|1.0,5.0|128000,8192|-|-|kakaobank/kf-deberta-base model|N
huggingface/SDXL-LoRA-slider.pixel-art|sdxl-lora-slider.pixel-art|ntc-ai/SDXL-LoRA-slider.pixel-art|C|1.0,5.0|128000,8192|-|-|ntc-ai/SDXL-LoRA-slider.pixel-art model|N
huggingface/SDXL-LoRA-slider.asleep|sdxl-lora-slider.asleep|ntc-ai/SDXL-LoRA-slider.asleep|C|1.0,5.0|128000,8192|-|-|ntc-ai/SDXL-LoRA-slider.asleep model|N
huggingface/SDXL-LoRA-slider.sexy|sdxl-lora-slider.sexy|ntc-ai/SDXL-LoRA-slider.sexy|C|1.0,5.0|128000,8192|-|-|ntc-ai/SDXL-LoRA-slider.sexy model|N
huggingface/e5-mistral-7b-instruct|e5-mistral-7b-instruct|intfloat/e5-mistral-7b-instruct|C|1.0,5.0|128000,8192|-|-|intfloat/e5-mistral-7b-instruct model|N
huggingface/skintelligent-acne|skintelligent-acne|imfarzanansari/skintelligent-acne|C|1.0,5.0|128000,8192|-|-|imfarzanansari/skintelligent-acne model|N
huggingface/TinyLlama-1.1B-intermediate-step-1431k-3T|-|TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T|C|1.0,5.0|128000,8192|-|-|TinyLlama/TinyLlama-1.1B-intermediate-step-1431k-3T model|N
huggingface/sdxl-detector|sdxl-detector|Organika/sdxl-detector|C|1.0,5.0|128000,8192|-|-|Organika/sdxl-detector model|N
huggingface/SDXL-LoRA-slider.unreal-engine|sdxl-lora-slider.unreal-engine|ntc-ai/SDXL-LoRA-slider.unreal-engine|C|1.0,5.0|128000,8192|-|-|ntc-ai/SDXL-LoRA-slider.unreal-engine model|N
huggingface/SDXL-LoRA-slider.spritesheet|sdxl-lora-slider.spritesheet|ntc-ai/SDXL-LoRA-slider.spritesheet|C|1.0,5.0|128000,8192|-|-|ntc-ai/SDXL-LoRA-slider.spritesheet model|N
huggingface/programming-language-identification|programming-language-identification|philomath-1209/programming-language-identification|C|1.0,5.0|128000,8192|-|-|philomath-1209/programming-language-identification model|N
huggingface/bert-base-multilingual-cased-finetuned-openalex-topic-classification-title-abstract|-|OpenAlex/bert-base-multilingual-cased-finetuned-openalex-topic-classification-title-abstract|C|1.0,5.0|128000,8192|-|-|OpenAlex/bert-base-multilingual-cased-finetuned-openalex-topic-classification-title-abstract model|N
huggingface/xtremedistil-l6-h256-zeroshot-v1.1-all-33|-|MoritzLaurer/xtremedistil-l6-h256-zeroshot-v1.1-all-33|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/xtremedistil-l6-h256-zeroshot-v1.1-all-33 model|N
huggingface/deberta-v3-xsmall-zeroshot-v1.1-all-33|deberta-v3-xsmall-zeroshot-v1.1-all-33|MoritzLaurer/deberta-v3-xsmall-zeroshot-v1.1-all-33|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/deberta-v3-xsmall-zeroshot-v1.1-all-33 model|N
huggingface/BusinessBERT|businessbert|pborchert/BusinessBERT|C|1.0,5.0|128000,8192|-|-|pborchert/BusinessBERT model|N
huggingface/Kunoichi-DPO-v2-7B|kunoichi-dpo-v2-7b|SanjiWatsuki/Kunoichi-DPO-v2-7B|C|1.0,5.0|128000,8192|V|-|SanjiWatsuki/Kunoichi-DPO-v2-7B model|N
huggingface/SDXL-LaundryArt-LoRA-r32|sdxl-laundryart-lora-r32|Norod78/SDXL-LaundryArt-LoRA-r32|C|1.0,5.0|128000,8192|-|-|Norod78/SDXL-LaundryArt-LoRA-r32 model|N
huggingface/Dmeta-embedding-zh|dmeta-embedding-zh|DMetaSoul/Dmeta-embedding-zh|C|1.0,5.0|128000,8192|-|-|DMetaSoul/Dmeta-embedding-zh model|N
huggingface/Qwen1.5-1.8B-Chat|qwen1.5-1.8b-chat|Qwen/Qwen1.5-1.8B-Chat|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen1.5-1.8B-Chat model|N
huggingface/Medical-NER|medical-ner|blaze999/Medical-NER|C|1.0,5.0|128000,8192|-|-|blaze999/Medical-NER model|N
huggingface/SDXL-Lightning|sdxl-lightning|ByteDance/SDXL-Lightning|C|1.0,5.0|128000,8192|-|-|ByteDance/SDXL-Lightning model|N
huggingface/paecter|paecter|mpi-inno-comp/paecter|C|1.0,5.0|128000,8192|-|-|mpi-inno-comp/paecter model|N
huggingface/TCD-SDXL-LoRA|tcd-sdxl-lora|h1t/TCD-SDXL-LoRA|C|1.0,5.0|128000,8192|-|-|h1t/TCD-SDXL-LoRA model|N
huggingface/llmlingua-2-bert-base-multilingual-cased-meetingbank|-|microsoft/llmlingua-2-bert-base-multilingual-cased-meetingbank|C|1.0,5.0|128000,8192|-|-|microsoft/llmlingua-2-bert-base-multilingual-cased-meetingbank model|N
huggingface/Bielik-7B-Instruct-v0.1|bielik-7b-instruct|speakleash/Bielik-7B-Instruct-v0.1|C|1.0,5.0|128000,8192|V|-|speakleash/Bielik-7B-Instruct-v0.1 model|N
huggingface/pokemon-trainer-sprite-pixelart|pokemon-trainer-sprite-pixelart|sWizad/pokemon-trainer-sprite-pixelart|C|1.0,5.0|128000,8192|-|-|sWizad/pokemon-trainer-sprite-pixelart model|N
huggingface/WizardLM-2-8x22B|wizardlm-2-8x22b|alpindale/WizardLM-2-8x22B|C|1.0,5.0|128000,8192|-|,,25.7,43.4,,,,,,|alpindale/WizardLM-2-8x22B model|N
huggingface/Mixtral-8x22B-Instruct-v0.1|mixtral-8x22b-instruct|mistralai/Mixtral-8x22B-Instruct-v0.1|C|1.0,5.0|128000,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/Mixtral-8x22B-Instruct-v0.1 model|N
huggingface/Llama-3-SauerkrautLM-8b-Instruct|llama-3-sauerkrautlm-8b-instruct|VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct|C|1.0,5.0|128000,8192|-|-|VAGOsolutions/Llama-3-SauerkrautLM-8b-Instruct model|N
huggingface/Chaos_RP_l3_8B|chaos_rp_l3_8b|jeiku/Chaos_RP_l3_8B|C|1.0,5.0|128000,8192|-|-|jeiku/Chaos_RP_l3_8B model|N
huggingface/finance-embeddings-investopedia|finance-embeddings-investopedia|FinLang/finance-embeddings-investopedia|C|1.0,5.0|128000,8192|-|-|FinLang/finance-embeddings-investopedia model|N
huggingface/Hermes-2-Pro-Llama-3-8B|hermes-2-pro-llama-3-8b|NousResearch/Hermes-2-Pro-Llama-3-8B|C|1.0,5.0|128000,8192|-|-|NousResearch/Hermes-2-Pro-Llama-3-8B model|N
huggingface/Personality_LM|personality_lm|KevSun/Personality_LM|C|1.0,5.0|128000,8192|-|-|KevSun/Personality_LM model|N
huggingface/llama-3-70B-Instruct-abliterated|llama-3-70b-instruct-abliterated|failspy/llama-3-70B-Instruct-abliterated|C|1.0,5.0|128000,8192|-|-|failspy/llama-3-70B-Instruct-abliterated model|N
huggingface/llama-3-sqlcoder-8b|llama-3-sqlcoder-8b|defog/llama-3-sqlcoder-8b|C|1.0,5.0|128000,8192|-|-|defog/llama-3-sqlcoder-8b model|N
huggingface/Meta-Llama-3-8B-Instruct-abliterated-v3|meta-llama-3-8b-instruct-abliterated|failspy/Meta-Llama-3-8B-Instruct-abliterated-v3|C|1.0,5.0|128000,8192|V|-|failspy/Meta-Llama-3-8B-Instruct-abliterated-v3 model|N
huggingface/dolphin-2.9.2-qwen2-7b|dolphin-2.9.2-qwen2-7b|dphn/dolphin-2.9.2-qwen2-7b|C|1.0,5.0|128000,8192|-|-|dphn/dolphin-2.9.2-qwen2-7b model|N
huggingface/NeuralDaredevil-8B-abliterated|neuraldaredevil-8b-abliterated|mlabonne/NeuralDaredevil-8B-abliterated|C|1.0,5.0|128000,8192|-|-|mlabonne/NeuralDaredevil-8B-abliterated model|N
huggingface/Qwen2-7B-Instruct|qwen2-7b-instruct|Qwen/Qwen2-7B-Instruct|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen2-7B-Instruct model|N
huggingface/Kolors|kolors|Kwai-Kolors/Kolors|C|1.0,5.0|128000,8192|-|-|Kwai-Kolors/Kolors model|N
huggingface/L3-8B-Stheno-v3.3-32K|l3-8b-stheno-v3.3-32k|Sao10K/L3-8B-Stheno-v3.3-32K|C|1.0,5.0|128000,8192|V|-|Sao10K/L3-8B-Stheno-v3.3-32K model|N
huggingface/Llama3-Med42-8B|llama3-med42-8b|m42-health/Llama3-Med42-8B|C|1.0,5.0|128000,8192|-|-|m42-health/Llama3-Med42-8B model|N
huggingface/snowflake-arctic-embed-m-v1.5|snowflake-arctic-embed-m|Snowflake/snowflake-arctic-embed-m-v1.5|C|1.0,5.0|128000,8192|V|-|Snowflake/snowflake-arctic-embed-m-v1.5 model|N
huggingface/USER-bge-m3|user-bge-m3|deepvk/USER-bge-m3|C|1.0,5.0|128000,8192|-|-|deepvk/USER-bge-m3 model|N
huggingface/BlackSheep-X-Dolphin|blacksheep-x-dolphin|TroyDoesAI/BlackSheep-X-Dolphin|C|1.0,5.0|128000,8192|-|-|TroyDoesAI/BlackSheep-X-Dolphin model|N
huggingface/Meta-Llama-3.1-8B|meta-llama-3.1-8b|NousResearch/Meta-Llama-3.1-8B|C|1.0,5.0|128000,8192|-|-|NousResearch/Meta-Llama-3.1-8B model|N
huggingface/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|NousResearch/Meta-Llama-3.1-8B-Instruct|C|1.0,5.0|128000,8192|-|-|NousResearch/Meta-Llama-3.1-8B-Instruct model|N
huggingface/Meta-Llama-3.1-70B|meta-llama-3.1-70b|NousResearch/Meta-Llama-3.1-70B|C|1.0,5.0|128000,8192|-|-|NousResearch/Meta-Llama-3.1-70B model|N
huggingface/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|NousResearch/Meta-Llama-3.1-70B-Instruct|C|1.0,5.0|128000,8192|-|-|NousResearch/Meta-Llama-3.1-70B-Instruct model|N
huggingface/Llama-3.1-8B-Lexi-Uncensored|llama-3.1-8b-lexi-uncensored|Orenguteng/Llama-3.1-8B-Lexi-Uncensored|C|1.0,5.0|128000,8192|-|-|Orenguteng/Llama-3.1-8B-Lexi-Uncensored model|N
huggingface/Llama-3.1-8B-Lexi-Uncensored-V2|llama-3.1-8b-lexi-uncensored|Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2|C|1.0,5.0|128000,8192|V|-|Orenguteng/Llama-3.1-8B-Lexi-Uncensored-V2 model|N
huggingface/c4ai-command-r-08-2024|c4ai-command-r-08-2024|CohereLabs/c4ai-command-r-08-2024|C|1.0,5.0|128000,8192|-|65.2,,,,,,,,,|CohereLabs/c4ai-command-r-08-2024 model|N
huggingface/NemoMix-Unleashed-12B|nemomix-unleashed-12b|MarinaraSpaghetti/NemoMix-Unleashed-12B|C|1.0,5.0|128000,8192|-|-|MarinaraSpaghetti/NemoMix-Unleashed-12B model|N
huggingface/KaLM-embedding-multilingual-mini-v1|kalm-embedding-multilingual-mini|HIT-TMG/KaLM-embedding-multilingual-mini-v1|C|1.0,5.0|128000,8192|V|-|HIT-TMG/KaLM-embedding-multilingual-mini-v1 model|N
huggingface/Canopus-Pixar-3D-Flux-LoRA|canopus-pixar-3d-flux-lora|prithivMLmods/Canopus-Pixar-3D-Flux-LoRA|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Canopus-Pixar-3D-Flux-LoRA model|N
huggingface/mxbai-embed-xsmall-v1|mxbai-embed-xsmall|mixedbread-ai/mxbai-embed-xsmall-v1|C|1.0,5.0|128000,8192|V|-|mixedbread-ai/mxbai-embed-xsmall-v1 model|N
huggingface/Qwen2.5-7B|qwen2.5-7b|Qwen/Qwen2.5-7B|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|Qwen/Qwen2.5-7B model|N
huggingface/Qwen2.5-14B|qwen2.5-14b|Qwen/Qwen2.5-14B|C|1.0,5.0|128000,8192|-|79.9,,,,,,,,,|Qwen/Qwen2.5-14B model|N
huggingface/Qwen2.5-72B|qwen2.5-72b|Qwen/Qwen2.5-72B|C|1.0,5.0|128000,8192|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B model|N
huggingface/Qwen2.5-14B-Instruct|qwen2.5-14b-instruct|Qwen/Qwen2.5-14B-Instruct|C|1.0,5.0|128000,8192|-|79.9,,,,,,,,,|Qwen/Qwen2.5-14B-Instruct model|N
huggingface/Qwen2.5-Coder-7B|qwen2.5-coder-7b|Qwen/Qwen2.5-Coder-7B|C|1.0,5.0|128000,8192|-|68.0,,,,,,,,,|Qwen/Qwen2.5-Coder-7B model|N
huggingface/Qwen2.5-32B-Instruct|qwen2.5-32b-instruct|Qwen/Qwen2.5-32B-Instruct|C|1.0,5.0|128000,8192|-|,,56.1,46.1,,,,,,|Qwen/Qwen2.5-32B-Instruct model|N
huggingface/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|unsloth/Qwen2.5-7B-Instruct|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|unsloth/Qwen2.5-7B-Instruct model|N
huggingface/gemma-2-2b-jpn-it|gemma-2-2b-jpn-it|google/gemma-2-2b-jpn-it|C|1.0,5.0|128000,8192|-|-|google/gemma-2-2b-jpn-it model|N
huggingface/Qwen2.5-7B-Instruct-Uncensored|qwen2.5-7b-instruct-uncensored|Orion-zhen/Qwen2.5-7B-Instruct-Uncensored|C|1.0,5.0|128000,8192|-|-|Orion-zhen/Qwen2.5-7B-Instruct-Uncensored model|N
huggingface/FLUX.1-dev-LoRA-Modern_Pixel_art|flux.1-dev-lora-modern_pixel_art|UmeAiRT/FLUX.1-dev-LoRA-Modern_Pixel_art|C|1.0,5.0|128000,8192|-|-|UmeAiRT/FLUX.1-dev-LoRA-Modern_Pixel_art model|N
huggingface/Alexander_BLOK_Flux_LoRA_SilverAgePoets_v1|-|AlekseyCalvin/Alexander_BLOK_Flux_LoRA_SilverAgePoets_v1|C|1.0,5.0|128000,8192|-|-|AlekseyCalvin/Alexander_BLOK_Flux_LoRA_SilverAgePoets_v1 model|N
huggingface/LLaMA3.2-1B-SFT|llama3.2-1b-sft|RLHFlow/LLaMA3.2-1B-SFT|C|1.0,5.0|128000,8192|-|-|RLHFlow/LLaMA3.2-1B-SFT model|N
huggingface/chinese-text-correction-7b|chinese-text-correction-7b|shibing624/chinese-text-correction-7b|C|1.0,5.0|128000,8192|-|-|shibing624/chinese-text-correction-7b model|N
huggingface/ecom-flux-v2|ecom-flux|martintomov/ecom-flux-v2|C|1.0,5.0|128000,8192|V|-|martintomov/ecom-flux-v2 model|N
huggingface/magnum-v4-12b|magnum-v4-12b|anthracite-org/magnum-v4-12b|C|1.0,5.0|128000,8192|V|-|anthracite-org/magnum-v4-12b model|N
huggingface/stable-diffusion-3.5-large-turbo|stable-diffusion-3.5-large-turbo|stabilityai/stable-diffusion-3.5-large-turbo|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-3.5-large-turbo model|N
huggingface/mochi-1-preview|mochi-1-preview|genmo/mochi-1-preview|C|1.0,5.0|128000,8192|-|-|genmo/mochi-1-preview model|N
huggingface/aya-expanse-32b|aya-expanse-32b|CohereLabs/aya-expanse-32b|C|1.0,5.0|128000,8192|-|-|CohereLabs/aya-expanse-32b model|N
huggingface/kirsten-dunst-actress-2000s-flux|kirsten-dunst-actress-2000s-flux|Keltezaa/kirsten-dunst-actress-2000s-flux|C|1.0,5.0|128000,8192|-|-|Keltezaa/kirsten-dunst-actress-2000s-flux model|N
huggingface/stable-diffusion-3.5-medium|stable-diffusion-3.5-medium|stabilityai/stable-diffusion-3.5-medium|C|1.0,5.0|128000,8192|-|-|stabilityai/stable-diffusion-3.5-medium model|N
huggingface/Flux-Seamless-Texture-LoRA|flux-seamless-texture-lora|gokaygokay/Flux-Seamless-Texture-LoRA|C|1.0,5.0|128000,8192|-|-|gokaygokay/Flux-Seamless-Texture-LoRA model|N
huggingface/Pygmalion-3-12B|pygmalion-3-12b|PygmalionAI/Pygmalion-3-12B|C|1.0,5.0|128000,8192|-|-|PygmalionAI/Pygmalion-3-12B model|N
huggingface/Flux-2D-Game-Assets-LoRA|flux-2d-game-assets-lora|gokaygokay/Flux-2D-Game-Assets-LoRA|C|1.0,5.0|128000,8192|-|-|gokaygokay/Flux-2D-Game-Assets-LoRA model|N
huggingface/bulbul_VST_Plugin|bulbul_vst_plugin|glif-loradex-trainer/bulbul_VST_Plugin|C|1.0,5.0|128000,8192|-|-|glif-loradex-trainer/bulbul_VST_Plugin model|N
huggingface/Qwen2.5-Coder-14B-Instruct|qwen2.5-coder-14b-instruct|Qwen/Qwen2.5-Coder-14B-Instruct|C|1.0,5.0|128000,8192|-|75.2,,,,,,,,,|Qwen/Qwen2.5-Coder-14B-Instruct model|N
huggingface/Qwen2.5-Coder-32B|qwen2.5-coder-32b|Qwen/Qwen2.5-Coder-32B|C|1.0,5.0|128000,8192|-|79.1,,,,,,,,,|Qwen/Qwen2.5-Coder-32B model|N
huggingface/Retro-Pixel-Flux-LoRA|retro-pixel-flux-lora|prithivMLmods/Retro-Pixel-Flux-LoRA|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Retro-Pixel-Flux-LoRA model|N
huggingface/Flux.1-Dev-LoRA-HDR-Realism|flux.1-dev-lora-hdr-realism|prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Flux.1-Dev-LoRA-HDR-Realism model|N
huggingface/MN-Violet-Lotus-12B|mn-violet-lotus-12b|FallenMerick/MN-Violet-Lotus-12B|C|1.0,5.0|128000,8192|V|-|FallenMerick/MN-Violet-Lotus-12B model|N
huggingface/Flux-Ultimate-LoRA-Collection|flux-ultimate-lora-collection|strangerzonehf/Flux-Ultimate-LoRA-Collection|C|1.0,5.0|128000,8192|-|-|strangerzonehf/Flux-Ultimate-LoRA-Collection model|N
huggingface/persian-embeddings|persian-embeddings|heydariAI/persian-embeddings|C|1.0,5.0|128000,8192|-|-|heydariAI/persian-embeddings model|N
huggingface/fairface_age_image_detection|fairface_age_image_detection|dima806/fairface_age_image_detection|C|1.0,5.0|128000,8192|-|-|dima806/fairface_age_image_detection model|N
huggingface/llama3.1-typhoon2-8b-instruct|llama3.1-typhoon2-8b-instruct|scb10x/llama3.1-typhoon2-8b-instruct|C|1.0,5.0|128000,8192|-|-|scb10x/llama3.1-typhoon2-8b-instruct model|N
huggingface/Sergey_Esenin_Poet_FluxLoRA_BySilverAgePoets|-|AlekseyCalvin/Sergey_Esenin_Poet_FluxLoRA_BySilverAgePoets|C|1.0,5.0|128000,8192|-|-|AlekseyCalvin/Sergey_Esenin_Poet_FluxLoRA_BySilverAgePoets model|N
huggingface/jennifer-garner-mid-2000s|jennifer-garner-mid-2000s|Keltezaa/jennifer-garner-mid-2000s|C|1.0,5.0|128000,8192|-|-|Keltezaa/jennifer-garner-mid-2000s model|N
huggingface/KURE-v1|kure|nlpai-lab/KURE-v1|C|1.0,5.0|128000,8192|V|-|nlpai-lab/KURE-v1 model|N
huggingface/ModernBERT-base-nli|modernbert-base-nli|tasksource/ModernBERT-base-nli|C|1.0,5.0|128000,8192|-|-|tasksource/ModernBERT-base-nli model|N
huggingface/ModernBERT-large-zeroshot-v2.0|modernbert-large-zeroshot|MoritzLaurer/ModernBERT-large-zeroshot-v2.0|C|1.0,5.0|128000,8192|V|-|MoritzLaurer/ModernBERT-large-zeroshot-v2.0 model|N
huggingface/masrawy-english-to-egyptian-arabic-translator-v2.9|-|NAMAA-Space/masrawy-english-to-egyptian-arabic-translator-v2.9|C|1.0,5.0|128000,8192|V|-|NAMAA-Space/masrawy-english-to-egyptian-arabic-translator-v2.9 model|N
huggingface/70B-L3.3-Cirrus-x1|70b-l3.3-cirrus-x1|Sao10K/70B-L3.3-Cirrus-x1|C|1.0,5.0|128000,8192|-|-|Sao10K/70B-L3.3-Cirrus-x1 model|N
huggingface/TinySwallow-1.5B-Instruct|tinyswallow-1.5b-instruct|SakanaAI/TinySwallow-1.5B-Instruct|C|1.0,5.0|128000,8192|-|-|SakanaAI/TinySwallow-1.5B-Instruct model|N
huggingface/DeepSeek-R1-Distill-Llama-8B|deepseek-r1-distill-llama-8b|deepseek-ai/DeepSeek-R1-Distill-Llama-8B|C|1.0,5.0|128000,8192|-|-|deepseek-ai/DeepSeek-R1-Distill-Llama-8B model|N
huggingface/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|deepseek-ai/DeepSeek-R1-Distill-Llama-70B|C|1.0,5.0|128000,8192|-|,,89.9,55.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Llama-70B model|N
huggingface/ModernBERT-embed-base-legal-MRL|modernbert-embed-base-legal-mrl|AdamLucek/ModernBERT-embed-base-legal-MRL|C|1.0,5.0|128000,8192|-|-|AdamLucek/ModernBERT-embed-base-legal-MRL model|N
huggingface/Lumina-Image-2.0|lumina-image-2.0|Alpha-VLLM/Lumina-Image-2.0|C|1.0,5.0|128000,8192|V|-|Alpha-VLLM/Lumina-Image-2.0 model|N
huggingface/Dobby-Mini-Unhinged-Llama-3.1-8B|dobby-mini-unhinged-llama-3.1-8b|SentientAGI/Dobby-Mini-Unhinged-Llama-3.1-8B|C|1.0,5.0|128000,8192|-|-|SentientAGI/Dobby-Mini-Unhinged-Llama-3.1-8B model|N
huggingface/Mistral-Small-24B-Instruct-2501|mistral-small-24b-instruct-2501|mistralai/Mistral-Small-24B-Instruct-2501|C|1.0,5.0|128000,8192|-|-|mistralai/Mistral-Small-24B-Instruct-2501 model|N
huggingface/Llama-3.2-1B-FC-v3|llama-3.2-1b-fc|AymanTarig/Llama-3.2-1B-FC-v3|C|1.0,5.0|128000,8192|V|-|AymanTarig/Llama-3.2-1B-FC-v3 model|N
huggingface/Deep-Fake-Detector-v2-Model|deep-fake-detector-v2-model|prithivMLmods/Deep-Fake-Detector-v2-Model|C|1.0,5.0|128000,8192|V|-|prithivMLmods/Deep-Fake-Detector-v2-Model model|N
huggingface/Qwen-0.5b-Code-Reasoning|qwen-0.5b-code-reasoning|AdithyaSK/Qwen-0.5b-Code-Reasoning|C|1.0,5.0|128000,8192|K|-|AdithyaSK/Qwen-0.5b-Code-Reasoning model|N
huggingface/Fino1-8B|fino1-8b|TheFinAI/Fino1-8B|C|1.0,5.0|128000,8192|-|-|TheFinAI/Fino1-8B model|N
huggingface/Llama-Primus-Reasoning|llama-primus-reasoning|trendmicro-ailab/Llama-Primus-Reasoning|C|1.0,5.0|128000,8192|K|-|trendmicro-ailab/Llama-Primus-Reasoning model|N
huggingface/BFS-Prover-V1-7B|bfs-prover-v1-7b|ByteDance-Seed/BFS-Prover-V1-7B|C|1.0,5.0|128000,8192|V|-|ByteDance-Seed/BFS-Prover-V1-7B model|N
huggingface/TinyR1-32B-Preview|tinyr1-32b-preview|qihoo360/TinyR1-32B-Preview|C|1.0,5.0|128000,8192|-|-|qihoo360/TinyR1-32B-Preview model|N
huggingface/Wan2.1-T2V-14B|wan2.1-t2v-14b|Wan-AI/Wan2.1-T2V-14B|C|1.0,5.0|128000,8192|-|-|Wan-AI/Wan2.1-T2V-14B model|N
huggingface/USER2-base|user2-base|deepvk/USER2-base|C|1.0,5.0|128000,8192|-|-|deepvk/USER2-base model|N
huggingface/aya-vision-32b|aya-vision-32b|CohereLabs/aya-vision-32b|C|1.0,5.0|128000,8192|V|-|CohereLabs/aya-vision-32b model|N
huggingface/Deductive-Reasoning-Qwen-32B|deductive-reasoning-qwen-32b|OpenPipe/Deductive-Reasoning-Qwen-32B|C|1.0,5.0|128000,8192|K|-|OpenPipe/Deductive-Reasoning-Qwen-32B model|N
huggingface/BERTA|berta|sergeyzh/BERTA|C|1.0,5.0|128000,8192|-|-|sergeyzh/BERTA model|N
huggingface/Mistral-Small-3.1-24B-Instruct-2503|mistral-small-3.1-24b-instruct-2503|mistralai/Mistral-Small-3.1-24B-Instruct-2503|C|1.0,5.0|128000,8192|-|-|mistralai/Mistral-Small-3.1-24B-Instruct-2503 model|N
huggingface/Dog-Breed-120|dog-breed-120|prithivMLmods/Dog-Breed-120|C|1.0,5.0|128000,8192|-|-|prithivMLmods/Dog-Breed-120 model|N
huggingface/Qwen2.5-VL-32B-Instruct|qwen2.5-vl-32b-instruct|Qwen/Qwen2.5-VL-32B-Instruct|C|1.0,5.0|128000,8192|V|-|Qwen/Qwen2.5-VL-32B-Instruct model|N
huggingface/Gemma-3-Starshine-12B|gemma-3-starshine-12b|ToastyPigeon/Gemma-3-Starshine-12B|C|1.0,5.0|128000,8192|-|-|ToastyPigeon/Gemma-3-Starshine-12B model|N
huggingface/urlbert-tiny-v4-malicious-url-classifier|-|CrabInHoney/urlbert-tiny-v4-malicious-url-classifier|C|1.0,5.0|128000,8192|V|-|CrabInHoney/urlbert-tiny-v4-malicious-url-classifier model|N
huggingface/Llama-4-Maverick-17B-128E-Instruct-FP8|llama-4-maverick-17b-128e-instruct-fp8|meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8|C|1.0,5.0|128000,8192|-|,,73.0,67.0,,,,,,|meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8 model|N
huggingface/HiDream-I1-Full|hidream-i1-full|HiDream-ai/HiDream-I1-Full|C|1.0,5.0|128000,8192|-|-|HiDream-ai/HiDream-I1-Full model|N
huggingface/KernelLLM|kernelllm|facebook/KernelLLM|C|1.0,5.0|128000,8192|-|-|facebook/KernelLLM model|N
huggingface/OpenCodeReasoning-Nemotron-7B|opencodereasoning-nemotron-7b|nvidia/OpenCodeReasoning-Nemotron-7B|C|1.0,5.0|128000,8192|K|-|nvidia/OpenCodeReasoning-Nemotron-7B model|N
huggingface/ModernPubMedBERT|modernpubmedbert|lokeshch19/ModernPubMedBERT|C|1.0,5.0|128000,8192|-|-|lokeshch19/ModernPubMedBERT model|N
huggingface/Llama-Guard-4-12B|llama-guard-4-12b|meta-llama/Llama-Guard-4-12B|C|1.0,5.0|128000,8192|-|-|meta-llama/Llama-Guard-4-12B model|N
huggingface/GLM4-9B-Neon-v2|glm4-9b-neon|allura-org/GLM4-9B-Neon-v2|C|1.0,5.0|128000,8192|V|-|allura-org/GLM4-9B-Neon-v2 model|N
huggingface/Foundation-Sec-8B|foundation-sec-8b|fdtn-ai/Foundation-Sec-8B|C|1.0,5.0|128000,8192|-|-|fdtn-ai/Foundation-Sec-8B model|N
huggingface/Qwen3-8B|qwen3-8b|unsloth/Qwen3-8B|C|1.0,5.0|128000,8192|-|-|unsloth/Qwen3-8B model|N
huggingface/Qwen3-8B-Base|qwen3-8b-base|Qwen/Qwen3-8B-Base|C|1.0,5.0|128000,8192|-|-|Qwen/Qwen3-8B-Base model|N
huggingface/XiYanSQL-QwenCoder-7B-2504|xiyansql-qwencoder-7b-2504|XGenerationLab/XiYanSQL-QwenCoder-7B-2504|C|1.0,5.0|128000,8192|-|-|XGenerationLab/XiYanSQL-QwenCoder-7B-2504 model|N
huggingface/Llama-Prompt-Guard-2-86M|llama-prompt-guard-2-86m|meta-llama/Llama-Prompt-Guard-2-86M|C|1.0,5.0|128000,8192|-|-|meta-llama/Llama-Prompt-Guard-2-86M model|N
huggingface/Josiefied-Qwen3-8B-abliterated-v1|josiefied-qwen3-8b-abliterated|Goekdeniz-Guelmez/Josiefied-Qwen3-8B-abliterated-v1|C|1.0,5.0|128000,8192|V|-|Goekdeniz-Guelmez/Josiefied-Qwen3-8B-abliterated-v1 model|N
huggingface/Qwen3-14B-abliterated|qwen3-14b-abliterated|mlabonne/Qwen3-14B-abliterated|C|1.0,5.0|128000,8192|-|-|mlabonne/Qwen3-14B-abliterated model|N
huggingface/SWE-agent-LM-32B|swe-agent-lm-32b|SWE-bench/SWE-agent-LM-32B|C|1.0,5.0|128000,8192|-|-|SWE-bench/SWE-agent-LM-32B model|N
huggingface/remnant-glm4-32b|remnant-glm4-32b|allura-org/remnant-glm4-32b|C|1.0,5.0|128000,8192|-|-|allura-org/remnant-glm4-32b model|N
huggingface/NUDEWOMEN|nudewomen|zone659/NUDEWOMEN|C|1.0,5.0|128000,8192|-|-|zone659/NUDEWOMEN model|N
huggingface/Dans-PersonalityEngine-V1.3.0-24b|dans-personalityengine-v1.3.0-24b|PocketDoc/Dans-PersonalityEngine-V1.3.0-24b|C|1.0,5.0|128000,8192|V|-|PocketDoc/Dans-PersonalityEngine-V1.3.0-24b model|N
huggingface/AM-Thinking-v1|am-thinking|a-m-team/AM-Thinking-v1|C|1.0,5.0|128000,8192|VK|-|a-m-team/AM-Thinking-v1 model|N
huggingface/II-Medical-8B|ii-medical-8b|Intelligent-Internet/II-Medical-8B|C|1.0,5.0|128000,8192|-|-|Intelligent-Internet/II-Medical-8B model|N
huggingface/Qwen3-1.7B-Instruct|qwen3-1.7b-instruct|rd211/Qwen3-1.7B-Instruct|C|1.0,5.0|128000,8192|-|-|rd211/Qwen3-1.7B-Instruct model|N
huggingface/QwQ-32B-ArliAI-RpR-v4|qwq-32b-arliai-rpr|ArliAI/QwQ-32B-ArliAI-RpR-v4|C|1.0,5.0|128000,8192|V|-|ArliAI/QwQ-32B-ArliAI-RpR-v4 model|N
huggingface/DeepSeek-R1-0528|deepseek-r1-0528|deepseek-ai/DeepSeek-R1-0528|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1-0528 model|N
huggingface/Yangmi_SD15_FLUX|yangmi_sd15_flux|Seanwang1221/Yangmi_SD15_FLUX|C|1.0,5.0|128000,8192|-|-|Seanwang1221/Yangmi_SD15_FLUX model|N
huggingface/FanBingbing_FLUX|fanbingbing_flux|Seanwang1221/FanBingbing_FLUX|C|1.0,5.0|128000,8192|-|-|Seanwang1221/FanBingbing_FLUX model|N
huggingface/Jan-nano|jan-nano|Menlo/Jan-nano|C|1.0,5.0|128000,8192|-|-|Menlo/Jan-nano model|N
huggingface/dafuq|dafuq|uomene/dafuq|C|1.0,5.0|128000,8192|-|-|uomene/dafuq model|N
huggingface/Q3-8B-Kintsugi|q3-8b-kintsugi|allura-org/Q3-8B-Kintsugi|C|1.0,5.0|128000,8192|-|-|allura-org/Q3-8B-Kintsugi model|N
huggingface/II-Medical-8B-1706|ii-medical-8b-1706|Intelligent-Internet/II-Medical-8B-1706|C|1.0,5.0|128000,8192|-|-|Intelligent-Internet/II-Medical-8B-1706 model|N
huggingface/Confucius3-Math|confucius3-math|netease-youdao/Confucius3-Math|C|1.0,5.0|128000,8192|-|-|netease-youdao/Confucius3-Math model|N
huggingface/ERNIE-4.5-0.3B-PT|ernie-4.5-0.3b-pt|baidu/ERNIE-4.5-0.3B-PT|C|1.0,5.0|128000,8192|-|-|baidu/ERNIE-4.5-0.3B-PT model|N
huggingface/ERNIE-4.5-21B-A3B-PT|ernie-4.5-21b-a3b-pt|baidu/ERNIE-4.5-21B-A3B-PT|C|1.0,5.0|128000,8192|-|-|baidu/ERNIE-4.5-21B-A3B-PT model|N
# =============================================================================
# HUNYUAN - Direct API (7 models)
# =============================================================================
hunyuan/hunyuan-2.0-think|hunyuan-2.0-think|Hunyuan-2.0-Think|C|0.7,2.8|128000,8192|K|-|Hunyuan-2.0-Think model|Y
hunyuan/hunyuan-2.0-instruct|hunyuan-2.0-instruct|Hunyuan-2.0-Instruct|C|0.56,2.24|128000,8192|-|-|Hunyuan-2.0-Instruct model|Y
hunyuan/hunyuan-t1|hunyuan-t1|Hunyuan-T1|C|0.7,2.8|128000,8192|-|-|Hunyuan-T1 model|Y
hunyuan/hunyuan-turbo-s|hunyuan-turbo-s|Hunyuan-Turbo-S|C|0.56,2.24|128000,8192|-|-|Hunyuan-Turbo-S model|Y
hunyuan/hunyuan-a13b|hunyuan-a13b|Hunyuan-A13B|C|0.14,0.56|128000,8192|-|-|Hunyuan-A13B model|Y
hunyuan/hunyuan-pro|hunyuan-pro|Hunyuan-Pro|C|4.2,16.8|128000,8192|-|-|Hunyuan-Pro model|Y
hunyuan/hunyuan-large|hunyuan-large|Hunyuan-Large|C|0.56,2.24|128000,8192|-|-|Hunyuan-Large model|Y
# =============================================================================
# HYPERBOLIC - Direct API (28 models)
# =============================================================================
hyperbolic/GPT OSS 120B (FP8)|gpt oss 120b (fp8)|GPT OSS 120B (FP8)|C|1.0,5.0|128000,8192|-|-|GPT OSS 120B (FP8) model|Y
hyperbolic/GPT OSS 20B (FP8)|gpt oss 20b (fp8)|GPT OSS 20B (FP8)|C|1.0,5.0|128000,8192|-|-|GPT OSS 20B (FP8) model|Y
hyperbolic/Llama 3.3 70B (FP8)|llama 3.3 70b (fp8)|Llama 3.3 70B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3.3 70B (FP8) model|Y
hyperbolic/Llama 3.2 3B (FP8)|llama 3.2 3b (fp8)|Llama 3.2 3B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3.2 3B (FP8) model|Y
hyperbolic/Llama 3.1 405B (FP8)|llama 3.1 405b (fp8)|Llama 3.1 405B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3.1 405B (FP8) model|Y
hyperbolic/Llama 3.1 405B parameters BASE (BF16)|llama 3.1 405b parameters base (bf16)|Llama 3.1 405B parameters BASE (BF16)|C|1.0,5.0|128000,8192|-|-|Llama 3.1 405B parameters BASE (BF16) model|Y
hyperbolic/Llama 3.1 8B (FP8)|llama 3.1 8b (fp8)|Llama 3.1 8B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3.1 8B (FP8) model|Y
hyperbolic/Llama 3.1 70B (FP8)|llama 3.1 70b (fp8)|Llama 3.1 70B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3.1 70B (FP8) model|Y
hyperbolic/Llama 3 70B (FP8)|llama 3 70b (fp8)|Llama 3 70B (FP8)|C|1.0,5.0|128000,8192|-|-|Llama 3 70B (FP8) model|Y
hyperbolic/Qwen 3 Next 80B A3b Thinking|qwen 3 next 80b a3b thinking|Qwen 3 Next 80B A3b Thinking|C|1.0,5.0|128000,8192|K|-|Qwen 3 Next 80B A3b Thinking model|Y
hyperbolic/Qwen 3 Next 80B A3b Instruct|qwen 3 next 80b a3b instruct|Qwen 3 Next 80B A3b Instruct|C|1.0,5.0|128000,8192|-|-|Qwen 3 Next 80B A3b Instruct model|Y
hyperbolic/Qwen 3 Coder 480B A35B (FP8)|qwen 3 coder 480b a35b (fp8)|Qwen 3 Coder 480B A35B (FP8)|C|1.0,5.0|128000,8192|-|-|Qwen 3 Coder 480B A35B (FP8) model|Y
hyperbolic/Qwen 3 235B A22B (FP8)|qwen 3 235b a22b (fp8)|Qwen 3 235B A22B (FP8)|C|1.0,5.0|128000,8192|-|-|Qwen 3 235B A22B (FP8) model|Y
hyperbolic/Qwen 3 235B A22B Instruct 2507|qwen 3 235b a22b instruct 2507|Qwen 3 235B A22B Instruct 2507|C|1.0,5.0|128000,8192|-|-|Qwen 3 235B A22B Instruct 2507 model|Y
hyperbolic/Qwen 2.5 72B (FP8)|qwen 2.5 72b (fp8)|Qwen 2.5 72B (FP8)|C|1.0,5.0|128000,8192|-|-|Qwen 2.5 72B (FP8) model|Y
hyperbolic/Qwen 2.5 Coder 32B (FP8)|qwen 2.5 coder 32b (fp8)|Qwen 2.5 Coder 32B (FP8)|C|1.0,5.0|128000,8192|-|-|Qwen 2.5 Coder 32B (FP8) model|Y
hyperbolic/Qwen 2.5 VL 7B Instruct (BF16)|qwen 2.5 vl 7b instruct (bf16)|Qwen 2.5 VL 7B Instruct (BF16)|C|1.0,5.0|128000,8192|-|-|Qwen 2.5 VL 7B Instruct (BF16) model|Y
hyperbolic/Qwen 2.5 VL 72B Instruct (BF16)|qwen 2.5 vl 72b instruct (bf16)|Qwen 2.5 VL 72B Instruct (BF16)|C|1.0,5.0|128000,8192|-|-|Qwen 2.5 VL 72B Instruct (BF16) model|Y
hyperbolic/DeepSeek V3 0324 (FP8)|deepseek v3 0324 (fp8)|DeepSeek V3 0324 (FP8)|C|1.0,5.0|128000,8192|-|-|DeepSeek V3 0324 (FP8) model|Y
hyperbolic/DeepSeek V3 (FP8)|deepseek v3 (fp8)|DeepSeek V3 (FP8)|C|1.0,5.0|128000,8192|-|-|DeepSeek V3 (FP8) model|Y
hyperbolic/DeepSeek R1 (FP8)|deepseek r1 (fp8)|DeepSeek R1 (FP8)|C|1.0,5.0|128000,8192|-|-|DeepSeek R1 (FP8) model|Y
hyperbolic/DeepSeek R1 0528 (FP8)|deepseek r1 0528 (fp8)|DeepSeek R1 0528 (FP8)|C|1.0,5.0|128000,8192|-|-|DeepSeek R1 0528 (FP8) model|Y
hyperbolic/Hermes 3 70B (FP8)|hermes 3 70b (fp8)|Hermes 3 70B (FP8)|C|1.0,5.0|128000,8192|-|-|Hermes 3 70B (FP8) model|Y
hyperbolic/Kimi-K2 (FP8)|kimi-k2 (fp8)|Kimi-K2 (FP8)|C|1.0,5.0|128000,8192|-|-|Kimi-K2 (FP8) model|Y
hyperbolic/NVIDIA Nemotron Nano 12B v2 VL (BF16)|nvidia nemotron nano 12b v2 vl (bf16)|NVIDIA Nemotron Nano 12B v2 VL (BF16)|C|1.0,5.0|128000,8192|-|-|NVIDIA Nemotron Nano 12B v2 VL (BF16) model|Y
hyperbolic/Pixtral 12B (BF16)|pixtral 12b (bf16)|Pixtral 12B (BF16)|C|1.0,5.0|128000,8192|-|-|Pixtral 12B (BF16) model|Y
hyperbolic/Qwen2.5-VL-7B-Instruct (BF16)|qwen2.5-vl-7b-instruct (bf16)|Qwen2.5-VL-7B-Instruct (BF16)|C|1.0,5.0|128000,8192|V|-|Qwen2.5-VL-7B-Instruct (BF16) model|Y
hyperbolic/Qwen2.5-VL-72B-Instruct (BF16)|qwen2.5-vl-72b-instruct (bf16)|Qwen2.5-VL-72B-Instruct (BF16)|C|1.0,5.0|128000,8192|V|-|Qwen2.5-VL-72B-Instruct (BF16) model|Y
# =============================================================================
# IDEOGRAM - Direct API (6 models)
# =============================================================================
ideogram/V_3|v_3|Ideogram 3.0|C|1.0,5.0|128000,8192|-|-|Latest flagship model|N
ideogram/V_2|v_2|Ideogram 2.0|C|1.0,5.0|128000,8192|-|-|Standard model|N
ideogram/V_2_TURBO|v_2_turbo|Ideogram 2.0 Turbo|C|1.0,5.0|128000,8192|-|-|Fast generation|N
ideogram/V_2A|v_2a|Ideogram 2.0A|C|1.0,5.0|128000,8192|-|-|Alternative variant|N
ideogram/V_1|v_1|Ideogram 1.0|C|1.0,5.0|128000,8192|-|-|First generation|N
ideogram/V_1_TURBO|v_1_turbo|Ideogram 1.0 Turbo|C|1.0,5.0|128000,8192|-|-|Fast first generation|N
# =============================================================================
# KAKAO - Direct API (12 models)
# =============================================================================
kakao/kogpt|kogpt|kakaobrain/kogpt|C|1.0,5.0|128000,8192|-|-|kakaobrain/kogpt model|N
kakao/coyo-align-b7-base|coyo-align-b7-base|kakaobrain/coyo-align-b7-base|C|1.0,5.0|128000,8192|-|-|kakaobrain/coyo-align-b7-base model|N
kakao/vit-l16-coyo-labeled-300m-i1k384|vit-l16-coyo-labeled-300m-i1k384|kakaobrain/vit-l16-coyo-labeled-300m-i1k384|C|1.0,5.0|128000,8192|-|-|kakaobrain/vit-l16-coyo-labeled-300m-i1k384 model|N
kakao/vit-l16-coyo-labeled-300m-i1k512|vit-l16-coyo-labeled-300m-i1k512|kakaobrain/vit-l16-coyo-labeled-300m-i1k512|C|1.0,5.0|128000,8192|-|-|kakaobrain/vit-l16-coyo-labeled-300m-i1k512 model|N
kakao/vit-l16-coyo-labeled-300m|vit-l16-coyo-labeled-300m|kakaobrain/vit-l16-coyo-labeled-300m|C|1.0,5.0|128000,8192|-|-|kakaobrain/vit-l16-coyo-labeled-300m model|N
kakao/vit-large-patch16-384|vit-large-patch16-384|kakaobrain/vit-large-patch16-384|C|1.0,5.0|128000,8192|-|-|kakaobrain/vit-large-patch16-384 model|N
kakao/vit-large-patch16-512|vit-large-patch16-512|kakaobrain/vit-large-patch16-512|C|1.0,5.0|128000,8192|-|-|kakaobrain/vit-large-patch16-512 model|N
kakao/karlo-v1-alpha|karlo-v1-alpha|kakaobrain/karlo-v1-alpha|C|1.0,5.0|128000,8192|V|-|kakaobrain/karlo-v1-alpha model|N
kakao/karlo-v1-alpha-image-variations|karlo-v1-alpha-image-variations|kakaobrain/karlo-v1-alpha-image-variations|C|1.0,5.0|128000,8192|V|-|kakaobrain/karlo-v1-alpha-image-variations model|N
kakao/align-base|align-base|kakaobrain/align-base|C|1.0,5.0|128000,8192|-|-|kakaobrain/align-base model|N
kakao/llama2-mha-from-scratch-ckpt-125M|llama2-mha-from-scratch-ckpt-125m|kakaobrain/llama2-mha-from-scratch-ckpt-125M|C|1.0,5.0|128000,8192|-|-|kakaobrain/llama2-mha-from-scratch-ckpt-125M model|N
kakao/safety-v4-violance-crime|safety-v4-violance-crime|kakaobrain/safety-v4-violance-crime|C|1.0,5.0|128000,8192|V|-|kakaobrain/safety-v4-violance-crime model|N
# =============================================================================
# KLING - Direct API (6 models)
# =============================================================================
kling/kling-2.6|kling-2.6|Kling 2.6|C|1.0,5.0|128000,8192|-|-|Latest with native audio|N
kling/kling-2.1|kling-2.1|Kling 2.1|C|1.0,5.0|128000,8192|-|-|Enhanced video generation|N
kling/kling-2.0|kling-2.0|Kling 2.0|C|1.0,5.0|128000,8192|-|-|Major quality improvements|N
kling/kling-1.6|kling-1.6|Kling 1.6|C|1.0,5.0|128000,8192|-|-|Previous generation|N
kling/kling-video-o1|kling-video-o1|Kling Video O1|C|1.0,5.0|128000,8192|V|-|Optimized video model|N
kling/kling-image-o1|kling-image-o1|Kling Image O1|C|1.0,5.0|128000,8192|-|-|Optimized image model|N
# =============================================================================
# KRUTRIM - Direct API (6 models)
# =============================================================================
krutrim/Vyakyarth|vyakyarth|krutrim-ai-labs/Vyakyarth|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Vyakyarth model|N
krutrim/Chitrarth|chitrarth|krutrim-ai-labs/Chitrarth|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Chitrarth model|N
krutrim/Krutrim-2-instruct|krutrim-2-instruct|krutrim-ai-labs/Krutrim-2-instruct|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Krutrim-2-instruct model|N
krutrim/Dhwani|dhwani|krutrim-ai-labs/Dhwani|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Dhwani model|N
krutrim/Krutrim-1-instruct|krutrim-1-instruct|krutrim-ai-labs/Krutrim-1-instruct|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Krutrim-1-instruct model|N
krutrim/Krutrim-Translate|krutrim-translate|krutrim-ai-labs/Krutrim-Translate|C|1.0,5.0|128000,8192|-|-|krutrim-ai-labs/Krutrim-Translate model|N
# =============================================================================
# LEONARDO - Direct API (1 models)
# =============================================================================
leonardo/7b592283-e8a7-4c5a-9ba6-d18c31f258b9|7b592283-e8a7-4c5a-9ba6-d18c31f258b9|Lucid Origin|C|1.0,5.0|128000,8192|-|-|Lucid Origin model|N
# =============================================================================
# LEPTON - Direct API (7 models)
# =============================================================================
lepton/llama-3.3-70b|llama-3.3-70b|llama-3.3-70b|C|1.0,5.0|131072,8192|-|86.3,,41.6,47.4,,,,,,|llama-3.3-70b model|N
lepton/llama-3.1-405b|llama-3.1-405b|llama-3.1-405b|C|1.0,5.0|131072,8192|-|84.4,,49.8,50.9,,,,,,|llama-3.1-405b model|N
lepton/llama-3.1-70b|llama-3.1-70b|llama-3.1-70b|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|llama-3.1-70b model|N
lepton/llama-3.1-8b|llama-3.1-8b|llama-3.1-8b|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b model|N
lepton/mixtral-8x7b|mixtral-8x7b|mixtral-8x7b|C|1.0,5.0|32768,4096|-|-|mixtral-8x7b model|N
lepton/mistral-7b|mistral-7b|mistral-7b|C|1.0,5.0|32768,4096|-|-|mistral-7b model|N
lepton/qwen2-72b|qwen2-72b|qwen2-72b|C|1.0,5.0|131072,8192|-|82.4,,39.1,40.8,,,,,,|qwen2-72b model|N
# =============================================================================
# LG EXAONE - Direct API (41 models)
# =============================================================================
lg_exaone/K-EXAONE-236B-A23B|k-exaone-236b-a23b|LGAI-EXAONE/K-EXAONE-236B-A23B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/K-EXAONE-236B-A23B model|N
lg_exaone/K-EXAONE-236B-A23B-FP8|k-exaone-236b-a23b-fp8|LGAI-EXAONE/K-EXAONE-236B-A23B-FP8|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/K-EXAONE-236B-A23B-FP8 model|N
lg_exaone/K-EXAONE-236B-A23B-GGUF|k-exaone-236b-a23b-gguf|LGAI-EXAONE/K-EXAONE-236B-A23B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/K-EXAONE-236B-A23B-GGUF model|N
lg_exaone/EXAONE-4.0-1.2B|exaone-4.0-1.2b|LGAI-EXAONE/EXAONE-4.0-1.2B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-1.2B model|N
lg_exaone/EXAONE-3.0-7.8B-Instruct|exaone-3.0-7.8b-instruct|LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct model|N
lg_exaone/EXAONEPath|exaonepath|LGAI-EXAONE/EXAONEPath|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONEPath model|N
lg_exaone/EXAONE-3.0-7.8B-Instruct-AWQ|exaone-3.0-7.8b-instruct-awq|LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct-AWQ model|N
lg_exaone/EXAONE-3.5-2.4B-Instruct|exaone-3.5-2.4b-instruct|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct model|N
lg_exaone/EXAONE-3.5-2.4B-Instruct-AWQ|exaone-3.5-2.4b-instruct-awq|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-AWQ model|N
lg_exaone/EXAONE-3.5-2.4B-Instruct-GGUF|exaone-3.5-2.4b-instruct-gguf|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-GGUF model|N
lg_exaone/EXAONE-3.5-7.8B-Instruct|exaone-3.5-7.8b-instruct|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct model|N
lg_exaone/EXAONE-3.5-7.8B-Instruct-AWQ|exaone-3.5-7.8b-instruct-awq|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct-AWQ model|N
lg_exaone/EXAONE-3.5-7.8B-Instruct-GGUF|exaone-3.5-7.8b-instruct-gguf|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct-GGUF model|N
lg_exaone/EXAONE-3.5-32B-Instruct|exaone-3.5-32b-instruct|LGAI-EXAONE/EXAONE-3.5-32B-Instruct|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-32B-Instruct model|N
lg_exaone/EXAONE-3.5-32B-Instruct-AWQ|exaone-3.5-32b-instruct-awq|LGAI-EXAONE/EXAONE-3.5-32B-Instruct-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-32B-Instruct-AWQ model|N
lg_exaone/EXAONE-3.5-32B-Instruct-GGUF|exaone-3.5-32b-instruct-gguf|LGAI-EXAONE/EXAONE-3.5-32B-Instruct-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-3.5-32B-Instruct-GGUF model|N
lg_exaone/EXAONEPath-CRC-MSI-Predictor|exaonepath-crc-msi-predictor|LGAI-EXAONE/EXAONEPath-CRC-MSI-Predictor|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONEPath-CRC-MSI-Predictor model|N
lg_exaone/EXAONE-Deep-2.4B|exaone-deep-2.4b|LGAI-EXAONE/EXAONE-Deep-2.4B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-2.4B model|N
lg_exaone/EXAONE-Deep-2.4B-AWQ|exaone-deep-2.4b-awq|LGAI-EXAONE/EXAONE-Deep-2.4B-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-2.4B-AWQ model|N
lg_exaone/EXAONE-Deep-2.4B-GGUF|exaone-deep-2.4b-gguf|LGAI-EXAONE/EXAONE-Deep-2.4B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-2.4B-GGUF model|N
lg_exaone/EXAONE-Deep-7.8B|exaone-deep-7.8b|LGAI-EXAONE/EXAONE-Deep-7.8B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-7.8B model|N
lg_exaone/EXAONE-Deep-7.8B-AWQ|exaone-deep-7.8b-awq|LGAI-EXAONE/EXAONE-Deep-7.8B-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-7.8B-AWQ model|N
lg_exaone/EXAONE-Deep-7.8B-GGUF|exaone-deep-7.8b-gguf|LGAI-EXAONE/EXAONE-Deep-7.8B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-7.8B-GGUF model|N
lg_exaone/EXAONE-Deep-32B|exaone-deep-32b|LGAI-EXAONE/EXAONE-Deep-32B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-32B model|N
lg_exaone/EXAONE-Deep-32B-AWQ|exaone-deep-32b-awq|LGAI-EXAONE/EXAONE-Deep-32B-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-32B-AWQ model|N
lg_exaone/EXAONE-Deep-32B-GGUF|exaone-deep-32b-gguf|LGAI-EXAONE/EXAONE-Deep-32B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Deep-32B-GGUF model|N
lg_exaone/EXAONE-Path-1.5|exaone-path-1.5|LGAI-EXAONE/EXAONE-Path-1.5|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Path-1.5 model|N
lg_exaone/EXAONE-Path-MSI|exaone-path-msi|LGAI-EXAONE/EXAONE-Path-MSI|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Path-MSI model|N
lg_exaone/EXAONE-Path-2.0|exaone-path-2.0|LGAI-EXAONE/EXAONE-Path-2.0|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Path-2.0 model|N
lg_exaone/EXAONE-Path-EGFR|exaone-path-egfr|LGAI-EXAONE/EXAONE-Path-EGFR|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Path-EGFR model|N
lg_exaone/EXAONE-4.0-32B|exaone-4.0-32b|LGAI-EXAONE/EXAONE-4.0-32B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-32B model|N
lg_exaone/EXAONE-4.0-32B-FP8|exaone-4.0-32b-fp8|LGAI-EXAONE/EXAONE-4.0-32B-FP8|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-32B-FP8 model|N
lg_exaone/EXAONE-4.0-32B-GPTQ|exaone-4.0-32b-gptq|LGAI-EXAONE/EXAONE-4.0-32B-GPTQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-32B-GPTQ model|N
lg_exaone/EXAONE-4.0-32B-AWQ|exaone-4.0-32b-awq|LGAI-EXAONE/EXAONE-4.0-32B-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-32B-AWQ model|N
lg_exaone/EXAONE-4.0-32B-GGUF|exaone-4.0-32b-gguf|LGAI-EXAONE/EXAONE-4.0-32B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-32B-GGUF model|N
lg_exaone/EXAONE-4.0-1.2B-FP8|exaone-4.0-1.2b-fp8|LGAI-EXAONE/EXAONE-4.0-1.2B-FP8|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-1.2B-FP8 model|N
lg_exaone/EXAONE-4.0-1.2B-GPTQ-Int8|exaone-4.0-1.2b-gptq-int8|LGAI-EXAONE/EXAONE-4.0-1.2B-GPTQ-Int8|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-1.2B-GPTQ-Int8 model|N
lg_exaone/EXAONE-4.0-1.2B-AWQ|exaone-4.0-1.2b-awq|LGAI-EXAONE/EXAONE-4.0-1.2B-AWQ|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-1.2B-AWQ model|N
lg_exaone/EXAONE-4.0-1.2B-GGUF|exaone-4.0-1.2b-gguf|LGAI-EXAONE/EXAONE-4.0-1.2B-GGUF|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0-1.2B-GGUF model|N
lg_exaone/EXAONE-4.0.1-32B|exaone-4.0.1-32b|LGAI-EXAONE/EXAONE-4.0.1-32B|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-4.0.1-32B model|N
lg_exaone/EXAONE-Path-2.5|exaone-path-2.5|LGAI-EXAONE/EXAONE-Path-2.5|C|1.0,5.0|128000,8192|-|-|LGAI-EXAONE/EXAONE-Path-2.5 model|N
# =============================================================================
# LIGHTNING - Direct API (3 models)
# =============================================================================
lightning/llama-3.1-70b|llama-3.1-70b|llama-3.1-70b|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|llama-3.1-70b model|N
lightning/llama-3.1-8b|llama-3.1-8b|llama-3.1-8b|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|llama-3.1-8b model|N
lightning/mistral-7b|mistral-7b|mistral-7b|C|1.0,5.0|32768,4096|-|-|mistral-7b model|N
# =============================================================================
# LOCALAI - Direct API (29 models)
# =============================================================================
localai/qwen3-vl-reranker-8b|qwen3-vl-reranker-8b|qwen3-vl-reranker-8b|C|1.0,5.0|128000,8192|V|-|qwen3-vl-reranker-8b model|N
localai/liquidai.lfm2-2.6b-transcript|liquidai.lfm2-2.6b-transcript|liquidai.lfm2-2.6b-transcript|C|1.0,5.0|128000,8192|-|-|liquidai.lfm2-2.6b-transcript model|N
localai/lfm2.5-1.2b-nova-function-calling|lfm2.5-1.2b-nova-function-calling|lfm2.5-1.2b-nova-function-calling|C|1.0,5.0|128000,8192|-|-|lfm2.5-1.2b-nova-function-calling model|N
localai/mistral-nemo-instruct-2407-12b-thinking-m-claude-opus-high-reasoning-i1|-|mistral-nemo-instruct-2407-12b-thinking-m-claude-opus-high-reasoning-i1|C|1.0,5.0|32768,4096|K|-|mistral-nemo-instruct-2407-12b-thinking-m-claude-opus-high-reasoning-i1 model|N
localai/rwkv7-g1c-13.3b|rwkv7-g1c-13.3b|rwkv7-g1c-13.3b|C|1.0,5.0|128000,8192|-|-|rwkv7-g1c-13.3b model|N
localai/iquest-coder-v1-40b-instruct-i1|iquest-coder-v1-40b-instruct-i1|iquest-coder-v1-40b-instruct-i1|C|1.0,5.0|128000,8192|V|-|iquest-coder-v1-40b-instruct-i1 model|N
localai/onerec-8b|onerec-8b|onerec-8b|C|1.0,5.0|128000,8192|-|-|onerec-8b model|N
localai/minimax-m2.1-i1|minimax-m2.1-i1|minimax-m2.1-i1|C|1.0,5.0|128000,8192|-|-|minimax-m2.1-i1 model|N
localai/tildeopen-30b-instruct-lv-i1|tildeopen-30b-instruct-lv-i1|tildeopen-30b-instruct-lv-i1|C|1.0,5.0|128000,8192|-|-|tildeopen-30b-instruct-lv-i1 model|N
localai/allenai_olmo-3.1-32b-think|allenai_olmo-3.1-32b-think|allenai_olmo-3.1-32b-think|C|1.0,5.0|128000,8192|K|-|allenai_olmo-3.1-32b-think model|N
localai/huihui-glm-4.6v-flash-abliterated|huihui-glm-4.6v-flash-abliterated|huihui-glm-4.6v-flash-abliterated|C|1.0,5.0|128000,8192|-|-|huihui-glm-4.6v-flash-abliterated model|N
localai/qwen3-coder-30b-a3b-instruct-rtpurbo-i1|qwen3-coder-30b-a3b-instruct-rtpurbo-i1|qwen3-coder-30b-a3b-instruct-rtpurbo-i1|C|1.0,5.0|128000,8192|-|-|qwen3-coder-30b-a3b-instruct-rtpurbo-i1 model|N
localai/glm-4.5v-i1|glm-4.5v-i1|glm-4.5v-i1|C|1.0,5.0|128000,8192|-|-|glm-4.5v-i1 model|N
localai/kokoro|kokoro|kokoro|C|1.0,5.0|128000,8192|-|-|kokoro model|N
localai/kitten-tts|kitten-tts|kitten-tts|C|1.0,5.0|128000,8192|-|-|kitten-tts model|N
localai/chatterbox|chatterbox|chatterbox|C|1.0,5.0|128000,8192|-|-|chatterbox model|N
localai/dia|dia|dia|C|1.0,5.0|128000,8192|-|-|dia model|N
localai/outetts|outetts|outetts|C|1.0,5.0|128000,8192|-|-|outetts model|N
localai/dream-org_dream-v0-instruct-7b|dream-org_dream-v0-instruct-7b|dream-org_dream-v0-instruct-7b|C|1.0,5.0|128000,8192|V|-|dream-org_dream-v0-instruct-7b model|N
localai/jina-reranker-v1-tiny-en|jina-reranker-v1-tiny-en|jina-reranker-v1-tiny-en|C|1.0,5.0|128000,8192|V|-|jina-reranker-v1-tiny-en model|N
localai/granite-embedding-107m-multilingual|granite-embedding-107m-multilingual|granite-embedding-107m-multilingual|C|1.0,5.0|128000,8192|-|-|granite-embedding-107m-multilingual model|N
localai/granite-embedding-125m-english|granite-embedding-125m-english|granite-embedding-125m-english|C|1.0,5.0|128000,8192|-|-|granite-embedding-125m-english model|N
localai/moe-girl-1ba-7bt-i1|moe-girl-1ba-7bt-i1|moe-girl-1ba-7bt-i1|C|1.0,5.0|128000,8192|-|-|moe-girl-1ba-7bt-i1 model|N
localai/salamandra-7b-instruct|salamandra-7b-instruct|salamandra-7b-instruct|C|1.0,5.0|128000,8192|-|-|salamandra-7b-instruct model|N
localai/archangel_sft_pythia2-8b|archangel_sft_pythia2-8b|archangel_sft_pythia2-8b|C|1.0,5.0|128000,8192|-|-|archangel_sft_pythia2-8b model|N
localai/einstein-v4-7b|einstein-v4-7b|einstein-v4-7b|C|1.0,5.0|128000,8192|V|-|einstein-v4-7b model|N
localai/internlm2_5-7b-chat-1m|internlm2_5-7b-chat-1m|internlm2_5-7b-chat-1m|C|1.0,5.0|128000,8192|-|-|internlm2_5-7b-chat-1m model|N
localai/internlm3-8b-instruct|internlm3-8b-instruct|internlm3-8b-instruct|C|1.0,5.0|128000,8192|-|-|internlm3-8b-instruct model|N
localai/nomic-embed-text-v1.5|nomic-embed-text|nomic-embed-text-v1.5|C|1.0,5.0|128000,8192|V|-|nomic-embed-text-v1.5 model|N
# =============================================================================
# LUMA - Direct API (4 models)
# =============================================================================
luma/ray-flash-2|ray-flash-2|Ray 2 Flash|C|1.0,5.0|128000,8192|-|-|Fast video generation|N
luma/ray-2|ray-2|Ray 2|C|1.0,5.0|128000,8192|-|-|Balanced quality and speed|N
luma/ray-1-6|ray-1-6|Ray 1.6|C|1.0,5.0|128000,8192|-|-|Legacy model|N
luma/ray-3|ray-3|Ray 3|C|1.0,5.0|128000,8192|-|-|Latest model with various resolutions|N
# =============================================================================
# MARITACA - Direct API (3 models)
# =============================================================================
maritaca/sabia-3|sabia-3|sabia-3|C|1.0,5.0|32768,8192|-|-|sabia-3 model|N
maritaca/sabia-2-medium|sabia-2-medium|sabia-2-medium|C|1.0,5.0|8192,4096|-|-|sabia-2-medium model|N
maritaca/sabia-2-small|sabia-2-small|sabia-2-small|C|1.0,5.0|8192,4096|-|-|sabia-2-small model|N
# =============================================================================
# MISTRAL - Direct API (66 models)
# =============================================================================
mistral/mistral-large-3-25-12|mistral-large-3-25-12|mistral-large-3-25-12|C|0.5,1.5|131072,8192|VT|-|mistral-large-3-25-12 model|Y
mistral/devstral-2-25-12|devstral-2-25-12|devstral-2-25-12|C|1.0,5.0|131072,8192|VT|-|devstral-2-25-12 model|N
mistral/mistral-medium-3-1-25-08|mistral-medium-3.1-25-08|mistral-medium-3-1-25-08|C|0.4,2.0|131072,8192|VT|-|mistral-medium-3-1-25-08 model|Y
mistral/mistral-small-3-2-25-06|mistral-small-3.2-25-06|mistral-small-3-2-25-06|C|0.1,0.3|131072,8192|VT|-|mistral-small-3-2-25-06 model|Y
mistral/ministral-3-14b-25-12|ministral-3-14b-25-12|ministral-3-14b-25-12|C|1.0,5.0|131072,8192|VT|-|ministral-3-14b-25-12 model|N
mistral/ministral-3-8b-25-12|ministral-3-8b-25-12|ministral-3-8b-25-12|C|1.0,5.0|131072,8192|VT|-|ministral-3-8b-25-12 model|N
mistral/ministral-3-3b-25-12|ministral-3-3b-25-12|ministral-3-3b-25-12|C|1.0,5.0|131072,8192|VT|-|ministral-3-3b-25-12 model|N
mistral/magistral-medium-1-2-25-09|magistral-medium-1.2-25-09|magistral-medium-1-2-25-09|C|2.0,5.0|131072,40000|VT|-|magistral-medium-1-2-25-09 model|Y
mistral/magistral-small-1-2-25-09|magistral-small-1.2-25-09|magistral-small-1-2-25-09|C|0.5,1.5|131072,40000|VT|-|magistral-small-1-2-25-09 model|Y
mistral/ocr-3-25-12|ocr-3-25-12|ocr-3-25-12|C|1.0,5.0|8192,4096|VT|-|ocr-3-25-12 model|N
mistral/voxtral-mini-transcribe-25-07|voxtral-mini-transcribe-25-07|voxtral-mini-transcribe-25-07|C|0.001,0.04|131072,8192|VT|-|voxtral-mini-transcribe-25-07 model|Y
mistral/voxtral-mini-25-07|voxtral-mini-25-07|voxtral-mini-25-07|C|0.001,0.04|131072,8192|VT|-|voxtral-mini-25-07 model|Y
mistral/voxtral-small-25-07|voxtral-small-25-07|voxtral-small-25-07|C|0.004,0.3|131072,8192|VT|-|voxtral-small-25-07 model|Y
mistral/mistral-moderation-24-11|mistral-moderation-24-11|mistral-moderation-24-11|C|1.0,5.0|8192,1024|VT|-|mistral-moderation-24-11 model|Y
mistral/mistral-small-creative-25-12|mistral-small-creative-25-12|mistral-small-creative-25-12|C|0.1,0.3|131072,8192|VT|-|mistral-small-creative-25-12 model|Y
mistral/devstral-small-2-25-12|devstral-small-2-25-12|devstral-small-2-25-12|C|1.0,5.0|131072,8192|VT|-|devstral-small-2-25-12 model|N
mistral/devstral-medium-1-0-25-07|devstral-medium-1.0-25-07|devstral-medium-1-0-25-07|C|1.0,5.0|131072,8192|VT|-|devstral-medium-1-0-25-07 model|N
mistral/devstral-small-1-1-25-07|devstral-small-1.1-25-07|devstral-small-1-1-25-07|C|1.0,5.0|131072,8192|VT|-|devstral-small-1-1-25-07 model|N
mistral/ocr-2-25-05|ocr-2-25-05|ocr-2-25-05|C|1.0,5.0|8192,4096|VT|-|ocr-2-25-05 model|N
mistral/mistral-medium-3-25-05|mistral-medium-3-25-05|mistral-medium-3-25-05|C|0.4,2.0|131072,8192|VT|-|mistral-medium-3-25-05 model|Y
mistral/mistral-large-2-1-24-11|mistral-large-2.1-24-11|mistral-large-2-1-24-11|C|0.5,1.5|131072,8192|VT|-|mistral-large-2-1-24-11 model|Y
mistral/pixtral-large-24-11|pixtral-large-24-11|pixtral-large-24-11|C|2.0,6.0|131072,8192|VT|-|pixtral-large-24-11 model|Y
mistral/mistral-nemo-12b-24-07|mistral-nemo-12b-24-07|mistral-nemo-12b-24-07|C|1.0,5.0|131072,8192|VT|-|mistral-nemo-12b-24-07 model|N
mistral/magistral-medium-1-1-25-07|magistral-medium-1.1-25-07|magistral-medium-1-1-25-07|C|2.0,5.0|131072,40000|VT|-|magistral-medium-1-1-25-07 model|Y
mistral/magistral-small-1-1-25-07|magistral-small-1.1-25-07|magistral-small-1-1-25-07|C|0.5,1.5|131072,40000|VT|-|magistral-small-1-1-25-07 model|Y
mistral/magistral-medium-1-0-25-06|magistral-medium-1.0-25-06|magistral-medium-1-0-25-06|C|2.0,5.0|131072,40000|VT|-|magistral-medium-1-0-25-06 model|Y
mistral/magistral-small-1-0-25-06|magistral-small-1.0-25-06|magistral-small-1-0-25-06|C|0.5,1.5|131072,40000|VT|-|magistral-small-1-0-25-06 model|Y
mistral/devstral-small-1-0-25-05|devstral-small-1.0-25-05|devstral-small-1-0-25-05|C|1.0,5.0|131072,8192|VT|-|devstral-small-1-0-25-05 model|N
mistral/mistral-small-3-1-25-03|mistral-small-3.1-25-03|mistral-small-3-1-25-03|C|0.1,0.3|131072,8192|VT|-|mistral-small-3-1-25-03 model|Y
mistral/mistral-saba-25-02|mistral-saba-25-02|mistral-saba-25-02|C|1.0,5.0|32768,8192|VT|-|mistral-saba-25-02 model|N
mistral/mistral-small-3-0-25-01|mistral-small-3.0-25-01|mistral-small-3-0-25-01|C|0.1,0.3|131072,8192|VT|-|mistral-small-3-0-25-01 model|Y
mistral/ministral-3b-24-1|ministral-3b-24-1|ministral-3b-24-1|C|1.0,5.0|131072,8192|VT|-|ministral-3b-24-1 model|N
mistral/ministral-8b-24-1|ministral-8b-24-1|ministral-8b-24-1|C|1.0,5.0|131072,8192|VT|-|ministral-8b-24-1 model|N
mistral/mistral-small-2-0-24-09|mistral-small-2.0-24-09|mistral-small-2-0-24-09|C|0.1,0.3|131072,8192|VT|-|mistral-small-2-0-24-09 model|Y
mistral/pixtral-12b-24-09|pixtral-12b-24-09|pixtral-12b-24-09|C|1.0,5.0|131072,8192|VT|-|pixtral-12b-24-09 model|N
mistral/mistral-large-2-0-24-07|mistral-large-2.0-24-07|mistral-large-2-0-24-07|C|0.5,1.5|131072,8192|VT|-|mistral-large-2-0-24-07 model|Y
mistral/codestral-mamba-7b-0-1|codestral-mamba-7b-0-1|codestral-mamba-7b-0-1|C|1.0,5.0|256000,8192|VT|-|codestral-mamba-7b-0-1 model|N
mistral/mathstral-7b-0-1|mathstral-7b-0-1|mathstral-7b-0-1|C|1.0,5.0|32768,8192|VT|-|mathstral-7b-0-1 model|N
mistral/mistral-7b-0-3|mistral-7b-0-3|mistral-7b-0-3|C|1.0,5.0|32768,8192|VT|-|mistral-7b-0-3 model|N
mistral/mixtral-8x22b-0-1-0-3|mixtral-8x22b-0.1-0-3|mixtral-8x22b-0-1-0-3|C|1.0,5.0|32768,8192|VT|-|mixtral-8x22b-0-1-0-3 model|N
mistral/mistral-small-1-0-24-02|mistral-small-1.0-24-02|mistral-small-1-0-24-02|C|0.1,0.3|131072,8192|VT|-|mistral-small-1-0-24-02 model|Y
mistral/mistral-large-1-0-24-02|mistral-large-1.0-24-02|mistral-large-1-0-24-02|C|0.5,1.5|131072,8192|VT|-|mistral-large-1-0-24-02 model|Y
mistral/mistral-medium-1-0-23-12|mistral-medium-1.0-23-12|mistral-medium-1-0-23-12|C|0.4,2.0|131072,8192|VT|-|mistral-medium-1-0-23-12 model|Y
mistral/mixtral-8x7b-0-1|mixtral-8x7b-0-1|mixtral-8x7b-0-1|C|1.0,5.0|32768,8192|VT|-|mixtral-8x7b-0-1 model|N
mistral/mistral-7b-0-2|mistral-7b-0-2|mistral-7b-0-2|C|1.0,5.0|32768,8192|VT|-|mistral-7b-0-2 model|N
mistral/mistral-7b-0-1|mistral-7b-0-1|mistral-7b-0-1|C|1.0,5.0|32768,8192|VT|-|mistral-7b-0-1 model|N
mistral/mistral-large-latest|mistral-large-latest|mistral-large-latest|C|0.5,1.5|131072,8192|VT|80.0,,24.5,49.0,,,,,,|mistral-large-latest model|Y
mistral/mistral-medium-latest|mistral-medium-latest|mistral-medium-latest|C|0.4,2.0|131072,8192|VT|,,81.6,59.5,,,,,,|mistral-medium-latest model|Y
mistral/mistral-small-latest|mistral-small-latest|mistral-small-latest|C|0.1,0.3|131072,8192|VT|68.7,,44.8,45.3,,,,,,|mistral-small-latest model|Y
mistral/magistral-medium-latest|magistral-medium-latest|magistral-medium-latest|C|2.0,5.0|131072,40000|VT|-|magistral-medium-latest model|Y
mistral/magistral-small-latest|magistral-small-latest|magistral-small-latest|C|0.5,1.5|131072,40000|VT|,,,48.4,,,,,,|magistral-small-latest model|Y
mistral/codestral-latest|codestral-latest|codestral-latest|C|0.3,0.9|32768,8192|VT|-|codestral-latest model|Y
mistral/pixtral-large-latest|pixtral-large-latest|pixtral-large-latest|C|2.0,6.0|131072,8192|VT|-|pixtral-large-latest model|Y
mistral/pixtral-12b|pixtral-12b|pixtral-12b|C|0.15,0.15|131072,8192|VT|-|pixtral-12b model|Y
mistral/ministral-8b-latest|ministral-8b-latest|ministral-8b-latest|C|0.15,0.15|131072,8192|VT|,,14.9,27.1,,,,,,|ministral-8b-latest model|Y
mistral/ministral-3b-latest|ministral-3b-latest|ministral-3b-latest|C|0.1,0.1|131072,8192|VT|,,14.4,25.3,,,,,,|ministral-3b-latest model|Y
mistral/ministral-14b-latest|ministral-14b-latest|ministral-14b-latest|C|0.2,0.2|131072,8192|VT|-|ministral-14b-latest model|Y
mistral/devstral-medium-latest|devstral-medium-latest|devstral-medium-latest|C|1.0,5.0|131072,8192|VT|-|devstral-medium-latest model|N
mistral/devstral-small-latest|devstral-small-latest|devstral-small-latest|C|1.0,5.0|131072,8192|VT|-|devstral-small-latest model|N
mistral/voxtral-small-latest|voxtral-small-latest|voxtral-small-latest|C|0.004,0.3|131072,8192|VT|-|voxtral-small-latest model|Y
mistral/voxtral-mini-latest|voxtral-mini-latest|voxtral-mini-latest|C|0.001,0.04|131072,8192|VT|-|voxtral-mini-latest model|Y
mistral/open-mistral-nemo|open-mistral-nemo|open-mistral-nemo|C|0.15,0.15|131072,8192|VT|,,10.8,29.9,,,,,,|open-mistral-nemo model|Y
mistral/open-mistral-7b|open-mistral-7b|open-mistral-7b|C|0.25,0.25|32768,8192|VT|,,3.7,13.2,,,,,,|open-mistral-7b model|Y
mistral/open-mixtral-8x7b|open-mixtral-8x7b|open-mixtral-8x7b|C|0.7,0.7|32768,8192|VT|,,24.2,29.8,,,,,,|open-mixtral-8x7b model|Y
mistral/open-mixtral-8x22b|open-mixtral-8x22b|open-mixtral-8x22b|C|2.0,6.0|65536,8192|VT|,,24.2,29.8,,,,,,|open-mixtral-8x22b model|Y
mistral/mistral-moderation-latest|mistral-moderation-latest|mistral-moderation-latest|C|1.0,5.0|8192,1024|VT|-|mistral-moderation-latest model|Y
# =============================================================================
# MODAL - Direct API (4 models)
# =============================================================================
modal/vllm-llama-3.1-70b|vllm-llama-3.1-70b|vllm-llama-3.1-70b|C|1.0,5.0|131072,8192|-|-|vllm-llama-3.1-70b model|N
modal/vllm-llama-3.1-8b|vllm-llama-3.1-8b|vllm-llama-3.1-8b|C|1.0,5.0|131072,8192|-|-|vllm-llama-3.1-8b model|N
modal/vllm-mixtral-8x7b|vllm-mixtral-8x7b|vllm-mixtral-8x7b|C|1.0,5.0|32768,4096|-|-|vllm-mixtral-8x7b model|N
modal/tgi-mistral-7b|tgi-mistral-7b|tgi-mistral-7b|C|1.0,5.0|32768,4096|-|-|tgi-mistral-7b model|N
# =============================================================================
# NAVER CLOVA - Direct API (3 models)
# =============================================================================
naver_clova/HCX-005|hcx-005|HCX-005|C|1.0,5.0|4096,4096|-|-|HCX-005 model|N
naver_clova/HCX-007|hcx-007|HCX-007|C|1.0,5.0|8192,4096|-|-|HCX-007 model|N
naver_clova/HCX-DASH-002|hcx-dash-002|HCX-DASH-002|C|1.0,5.0|4096,2048|-|-|HCX-DASH-002 model|N
# =============================================================================
# NEBIUS - Direct API (38 models)
# =============================================================================
nebius/gpt-oss-120b|gpt-oss-120b|openai/gpt-oss-120b|C|0.15,0.6|128000,8192|-|-|openai/gpt-oss-120b model|Y
nebius/Kimi-K2-Instruct|kimi-k2-instruct|moonshotai/Kimi-K2-Instruct|C|0.5,2.4|128000,8192|-|-|moonshotai/Kimi-K2-Instruct model|Y
nebius/Kimi-K2-Thinking|kimi-k2-thinking|moonshotai/Kimi-K2-Thinking|C|0.6,2.5|128000,8192|K|-|moonshotai/Kimi-K2-Thinking model|Y
nebius/Qwen3-Coder-480B-A35B-Instruct|qwen3-coder-480b-a35b-instruct|Qwen/Qwen3-Coder-480B-A35B-Instruct|C|0.4,1.8|128000,8192|-|-|Qwen/Qwen3-Coder-480B-A35B-Instruct model|Y
nebius/Hermes-4-405B|hermes-4-405b|NousResearch/Hermes-4-405B|C|1.0,3.0|128000,8192|-|-|NousResearch/Hermes-4-405B model|Y
nebius/Hermes-4-70B|hermes-4-70b|NousResearch/Hermes-4-70B|C|0.13,0.4|128000,8192|-|-|NousResearch/Hermes-4-70B model|Y
nebius/gpt-oss-20b|gpt-oss-20b|openai/gpt-oss-20b|C|0.05,0.2|128000,8192|-|-|openai/gpt-oss-20b model|Y
nebius/GLM-4.5|glm-4.5|zai-org/GLM-4.5|C|0.6,2.2|128000,8192|-|-|zai-org/GLM-4.5 model|Y
nebius/GLM-4.5-Air|glm-4.5-air|zai-org/GLM-4.5-Air|C|0.2,1.2|128000,8192|-|-|zai-org/GLM-4.5-Air model|Y
nebius/INTELLECT-3|intellect-3|PrimeIntellect/INTELLECT-3|C|0.2,1.1|128000,8192|-|-|PrimeIntellect/INTELLECT-3 model|Y
nebius/Qwen3-Next-80B-A3B-Thinking|qwen3-next-80b-a3b-thinking|Qwen/Qwen3-Next-80B-A3B-Thinking|C|0.15,1.2|128000,8192|K|-|Qwen/Qwen3-Next-80B-A3B-Thinking model|Y
nebius/DeepSeek-R1-0528|deepseek-r1-0528|deepseek-ai/DeepSeek-R1-0528|C|0.8,2.4|65536,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1-0528 model|Y
nebius/DeepSeek-R1-0528-fast|deepseek-r1-0528-fast|deepseek-ai/DeepSeek-R1-0528-fast|C|2.0,6.0|65536,8192|-|-|deepseek-ai/DeepSeek-R1-0528-fast model|Y
nebius/Qwen3-235B-A22B-Thinking-2507|qwen3-235b-a22b-thinking-2507|Qwen/Qwen3-235B-A22B-Thinking-2507|C|0.2,0.8|128000,8192|K|,,,80.1,,,,,,|Qwen/Qwen3-235B-A22B-Thinking-2507 model|Y
nebius/Qwen3-235B-A22B-Instruct-2507|qwen3-235b-a22b-instruct-2507|Qwen/Qwen3-235B-A22B-Instruct-2507|C|0.2,0.6|128000,8192|-|,,68.9,70.7,,,,,,|Qwen/Qwen3-235B-A22B-Instruct-2507 model|Y
nebius/Qwen3-30B-A3B-Thinking-2507|qwen3-30b-a3b-thinking-2507|Qwen/Qwen3-30B-A3B-Thinking-2507|C|0.1,0.3|128000,8192|K|-|Qwen/Qwen3-30B-A3B-Thinking-2507 model|Y
nebius/Qwen3-30B-A3B-Instruct-2507|qwen3-30b-a3b-instruct-2507|Qwen/Qwen3-30B-A3B-Instruct-2507|C|0.1,0.3|128000,8192|-|-|Qwen/Qwen3-30B-A3B-Instruct-2507 model|Y
nebius/Qwen3-Coder-30B-A3B-Instruct|qwen3-coder-30b-a3b-instruct|Qwen/Qwen3-Coder-30B-A3B-Instruct|C|0.1,0.3|128000,8192|-|-|Qwen/Qwen3-Coder-30B-A3B-Instruct model|Y
nebius/Qwen3-32B|qwen3-32b|Qwen/Qwen3-32B|C|0.1,0.3|128000,8192|-|-|Qwen/Qwen3-32B model|Y
nebius/Qwen3-32B-fast|qwen3-32b-fast|Qwen/Qwen3-32B-fast|C|0.2,0.6|128000,8192|-|-|Qwen/Qwen3-32B-fast model|Y
nebius/Llama-3_1-Nemotron-Ultra-253B-v1|llama-3_1-nemotron-ultra-253b|nvidia/Llama-3_1-Nemotron-Ultra-253B-v1|C|0.6,1.8|128000,8192|V|-|nvidia/Llama-3_1-Nemotron-Ultra-253B-v1 model|Y
nebius/DeepSeek-V3-0324|deepseek-v3-0324|deepseek-ai/DeepSeek-V3-0324|C|0.5,1.5|65536,8192|V|87.1,,64.9,56.5,52.1,,,,,|deepseek-ai/DeepSeek-V3-0324 model|Y
nebius/DeepSeek-V3-0324-fast|deepseek-v3-0324-fast|deepseek-ai/DeepSeek-V3-0324-fast|C|0.75,2.25|65536,8192|V|-|deepseek-ai/DeepSeek-V3-0324-fast model|Y
nebius/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|meta-llama/Llama-3.3-70B-Instruct|C|0.13,0.4|131072,8192|-|86.3,,41.6,47.4,,,,,,|meta-llama/Llama-3.3-70B-Instruct model|Y
nebius/Llama-3.3-70B-Instruct-fast|llama-3.3-70b-instruct-fast|meta-llama/Llama-3.3-70B-Instruct-fast|C|0.25,0.75|131072,8192|-|-|meta-llama/Llama-3.3-70B-Instruct-fast model|Y
nebius/gemma-3-27b-it-fast|gemma-3-27b-it-fast|google/gemma-3-27b-it-fast|C|0.2,0.6|128000,8192|-|-|google/gemma-3-27b-it-fast model|Y
nebius/gemma-3-27b-it|gemma-3-27b-it|google/gemma-3-27b-it|C|0.1,0.3|128000,8192|-|,,74.0,48.9,,,,,,|google/gemma-3-27b-it model|Y
nebius/Meta-Llama-3.1-8B-Instruct-fast|meta-llama-3.1-8b-instruct-fast|meta-llama/Meta-Llama-3.1-8B-Instruct-fast|C|0.03,0.09|128000,8192|-|-|meta-llama/Meta-Llama-3.1-8B-Instruct-fast model|Y
nebius/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|meta-llama/Meta-Llama-3.1-8B-Instruct|C|0.02,0.06|128000,8192|-|-|meta-llama/Meta-Llama-3.1-8B-Instruct model|Y
nebius/Qwen2.5-Coder-7B-fast|qwen2.5-coder-7b-fast|Qwen/Qwen2.5-Coder-7B-fast|C|0.03,0.09|128000,8192|-|-|Qwen/Qwen2.5-Coder-7B-fast model|Y
nebius/Qwen2.5-VL-72B-Instruct|qwen2.5-vl-72b-instruct|Qwen/Qwen2.5-VL-72B-Instruct|C|0.25,0.75|128000,8192|V|-|Qwen/Qwen2.5-VL-72B-Instruct model|Y
nebius/gemma-2-2b-it|gemma-2-2b-it|google/gemma-2-2b-it|C|0.02,0.06|128000,8192|-|-|google/gemma-2-2b-it model|Y
nebius/gemma-2-9b-it-fast|gemma-2-9b-it-fast|google/gemma-2-9b-it-fast|C|0.03,0.09|128000,8192|-|-|google/gemma-2-9b-it-fast model|Y
nebius/Llama-Guard-3-8B|llama-guard-3-8b|meta-llama/Llama-Guard-3-8B|C|0.02,0.06|128000,8192|-|-|meta-llama/Llama-Guard-3-8B model|Y
nebius/flux-schnell|flux-schnell|black-forest-labs/flux-schnell|C|0.001,0.01|128000,8192|-|-|black-forest-labs/flux-schnell model|Y
nebius/flux-dev|flux-dev|black-forest-labs/flux-dev|C|0.007,0.02|128000,8192|-|-|black-forest-labs/flux-dev model|Y
nebius/Nemotron-Nano-V2-12b|nemotron-nano-v2-12b|nvidia/Nemotron-Nano-V2-12b|C|0.07,0.2|128000,8192|V|-|nvidia/Nemotron-Nano-V2-12b model|Y
nebius/NVIDIA-Nemotron-3-Nano-30B-A3B|nvidia-nemotron-3-nano-30b-a3b|nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B|C|0.06,0.24|128000,8192|-|-|nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B model|Y
# =============================================================================
# NLPCLOUD - Direct API (15 models)
# =============================================================================
nlp_cloud/gpt-j|gpt-j|gpt-j|C|1.0,5.0|128000,8192|-|-|gpt-j model|N
nlp_cloud/gpt-neo|gpt-neo|gpt-neo|C|1.0,5.0|128000,8192|-|-|gpt-neo model|N
nlp_cloud/llama-3-1-405b-into-production-on-gcp-compute-engine|-|llama-3-1-405b-into-production-on-gcp-compute-engine|C|1.0,5.0|128000,8192|-|-|llama-3-1-405b-into-production-on-gcp-compute-engine model|N
nlp_cloud/llama-3-into-production|llama-3-into-production|llama-3-into-production|C|1.0,5.0|128000,8192|-|-|llama-3-into-production model|N
nlp_cloud/llama-2-mistral-and-mixtral-on-aws-ec2-with-vllm|-|llama-2-mistral-and-mixtral-on-aws-ec2-with-vllm|C|1.0,5.0|128000,8192|V|-|llama-2-mistral-and-mixtral-on-aws-ec2-with-vllm model|N
nlp_cloud/llama-openllama-xgen-with-jax-on-tpu-gpu|-|llama-openllama-xgen-with-jax-on-tpu-gpu|C|1.0,5.0|128000,8192|-|-|llama-openllama-xgen-with-jax-on-tpu-gpu model|N
nlp_cloud/chatdolphin|chatdolphin|chatdolphin|C|1.0,5.0|4096,4096|-|-|chatdolphin model|N
nlp_cloud/gpt-j-6b|gpt-j-6b|gpt-j-6b|C|1.0,5.0|2048,2048|-|25.7,,,,,,,,,|gpt-j-6b model|N
nlp_cloud/bart-large-mnli-yahoo-answers|bart-large-mnli-yahoo-answers|bart-large-mnli-yahoo-answers|C|1.0,5.0|128000,8192|-|-|bart-large-mnli-yahoo-answers model|N
nlp_cloud/roberta-base-squad2|roberta-base-squad2|roberta-base-squad2|C|1.0,5.0|128000,8192|-|-|roberta-base-squad2 model|N
nlp_cloud/distilbert-finetuned-sst-2-english|distilbert-finetuned-sst-2-english|distilbert-finetuned-sst-2-english|C|1.0,5.0|128000,8192|-|-|distilbert-finetuned-sst-2-english model|N
nlp_cloud/bart-large-cnn|bart-large-cnn|bart-large-cnn|C|1.0,5.0|128000,8192|-|-|bart-large-cnn model|N
nlp_cloud/Bart|bart|Bart|C|1.0,5.0|128000,8192|-|-|Bart model|N
nlp_cloud/Roberta|roberta|Roberta|C|1.0,5.0|128000,8192|-|-|Roberta model|N
nlp_cloud/DistilBERT|distilbert|DistilBERT|C|1.0,5.0|128000,8192|-|-|DistilBERT model|N
# =============================================================================
# NOVITA - Direct API (82 models)
# =============================================================================
novita/deepseek-v3.2|deepseek|Deepseek V3.2|C|2690.0,4000.0|163840,65536|V|-|We introduce DeepSeek-V3.2, a next-generation foundation model designed to unify|N
novita/minimax-m2.1|minimax-m2.1|Minimax M2.1|C|3000.0,12000.0|204800,131072|-|-|MiniMax M2.1 is a cutting-edge AI model designed to revolutionize how developers|N
novita/glm-4.7|glm-4.7|GLM-4.7|C|6000.0,22000.0|204800,131072|-|-|GLM-4.7 is Z.AI's latest flagship model, with major upgrades focused on advanced|N
novita/mimo-v2-flash|mimo-v2-flash|XiaomiMiMo/MiMo-V2-Flash|C|1000.0,3000.0|262144,32000|V|-|Xiaomi MiMo-V2-Flash is a proprietary MoE model developed by Xiaomi, designed fo|N
novita/autoglm-phone-9b-multilingual|autoglm-phone-9b-multilingual|AutoGLM-Phone-9B-Multilingual|C|350.0,1380.0|65536,65536|-|-|Phone Agent is a mobile intelligent assistant framework built on AutoGLM, capabl|N
novita/kimi-k2-thinking|kimi-k2-thinking|Kimi K2 Thinking|C|6000.0,25000.0|262144,262144|K|-|The kimi-k2-thinking model is a general-purpose agentic reasoning model develope|N
novita/minimax-m2|minimax-m2|MiniMax-M2|C|3000.0,12000.0|204800,131072|-|-|MiniMax-M2 is a compact, high-efficiency large language model optimized for end-|N
novita/paddleocr-vl|paddleocr-vl|PaddleOCR-VL|C|200.0,200.0|16384,16384|V|-|PaddleOCR-VL model|N
novita/deepseek-v3.2-exp|deepseek-v3.2-exp|Deepseek V3.2 Exp|C|2700.0,4100.0|163840,65536|V|-|DeepSeek-V3.2-Exp is an experimental model introducing the groundbreaking DeepSe|N
novita/qwen3-vl-235b-a22b-thinking|qwen3-vl-235b-a22b-thinking|Qwen3 VL 235B A22B Thinking|C|9800.0,39500.0|131072,32768|VK|-|Qwen3 VL 235B A22B Thinking model|N
novita/glm-4.6v|glm-4.6v|GLM 4.6V|C|3000.0,9000.0|131072,32768|-|-|GLM-4.6V represents a significant multimodal advancement in the GLM series, feat|N
novita/glm-4.6|glm-4.6|GLM 4.6|C|5500.0,22000.0|204800,131072|-|-|As the latest iteration in the GLM series, GLM-4.6 achieves comprehensive enhanc|N
novita/kat-coder-pro|kat-coder-pro|Kat Coder Pro|C|3000.0,12000.0|256000,128000|-|-|KAT-Coder-Pro V1 by KwaiKAT is a non-reasoning model optimized for agentic codin|N
novita/kat-coder|kat-coder|KAT-Coder-Pro V1(Free)|C|1.0,5.0|256000,32000|-|-|KAT-Coder-Pro V1 by KwaiKAT is a non-reasoning model optimized for agentic codin|N
novita/qwen3-next-80b-a3b-instruct|qwen3-next-80b-a3b-instruct|Qwen3 Next 80B A3B Instruct|C|1500.0,15000.0|131072,32768|-|-|Qwen3-Next uses a highly sparse MoE design: 80B total parameters, but only ~3B a|N
novita/qwen3-next-80b-a3b-thinking|qwen3-next-80b-a3b-thinking|Qwen3 Next 80B A3B Thinking|C|1500.0,15000.0|131072,32768|K|-|Qwen3-Next uses a highly sparse MoE design: 80B total parameters, but only ~3B a|N
novita/deepseek-ocr|deepseek-ocr|DeepSeek-OCR|C|300.0,300.0|8192,8192|-|-|DeepSeek-OCR model|N
novita/deepseek-v3.1-terminus|deepseek-v3.1-terminus|Deepseek V3.1 Terminus|C|2700.0,10000.0|131072,32768|V|-|DeepSeek-V3.1-Terminus preserves all original model capabilities while resolving|N
novita/qwen3-vl-235b-a22b-instruct|qwen3-vl-235b-a22b-instruct|Qwen3 VL 235B A22B Instruct|C|3000.0,15000.0|131072,32768|V|-|Qwen3 VL 235B A22B Instruct model|N
novita/qwen3-max|qwen3-max|Qwen3 Max|C|21100.0,84500.0|262144,65536|-|,,97.1,72.6,,,,,,|Qwen/qwen3-max, Enhanced with specialized upgrades in agent programming and tool|N
novita/r1v4-lite|r1v4-lite|Skywork R1V4-Lite|C|2000.0,6000.0|262144,65536|-|-|Advanced multimodal large language model supporting both text and image inputs. |N
novita/deepseek-v3.1|deepseek|DeepSeek V3.1|C|2700.0,10000.0|131072,32768|V|-|DeepSeek-V3.1 is a hybrid model that supports both thinking mode and non-thinkin|N
novita/kimi-k2-0905|kimi-k2-0905|Kimi K2 0905|C|6000.0,25000.0|262144,262144|-|-|Kimi K2 0905 is the September update of Kimi K2 0711. It is a large-scale Mixtur|N
novita/qwen3-coder-480b-a35b-instruct|qwen3-coder-480b-a35b-instruct|Qwen3 Coder 480B A35B Instruct|C|3000.0,13000.0|262144,65536|-|-|Qwen3-Coder-480B-A35B-Instruct is a cutting-edge open coding model from Qwen, ma|N
novita/qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|Qwen3 Coder 30b A3B Instruct|C|700.0,2700.0|160000,32768|-|-|Qwen3-Coder-30B-A3B-Instruct is a 30.5B parameter Mixture-of-Experts (MoE) model|N
novita/gpt-oss-120b|gpt-oss-120b|OpenAI GPT OSS 120B|C|500.0,2500.0|131072,32768|-|-|gpt-oss-120b is an open-weight, 117B-parameter Mixture-of-Experts (MoE) language|N
novita/kimi-k2-instruct|kimi-k2-instruct|Kimi K2 Instruct|C|5700.0,23000.0|131072,131072|-|-|Kimi K2 is a state-of-the-art mixture-of-experts (MoE) language model with 32 bi|N
novita/deepseek-v3-0324|deepseek-v3-0324|DeepSeek V3 0324|C|2700.0,11200.0|163840,163840|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek V3, a 685B-parameter, mixture-of-experts model, is the latest iteration|N
novita/glm-4.5|glm-4.5|GLM-4.5|C|6000.0,22000.0|131072,98304|-|-|GLM-4.5 Series Models are foundation models specifically engineered for intellig|N
novita/qwen3-235b-a22b-thinking-2507|qwen3-235b-a22b-thinking-2507|Qwen3 235B A22b Thinking 2507|C|3000.0,30000.0|131072,32768|K|,,,80.1,,,,,,|The Qwen3-235B-A22B-Thinking-2507 represents the newest thinking-enabled model i|N
novita/llama-3.1-8b-instruct|llama-3.1-8b-instruct|Llama 3.1 8B Instruct|C|200.0,500.0|16384,16384|-|56.1,,22.9,25.9,,,,,,|Meta's latest class of models, Llama 3.1, launched with a variety of sizes and c|N
novita/gemma-3-12b-it|gemma-3-12b-it|Gemma3 12B|C|500.0,1000.0|131072,8192|-|-|Gemma3 12B model|N
novita/glm-4.5v|glm-4.5v|GLM 4.5V|C|6000.0,18000.0|65536,16384|-|-|Z.ai's GLM-4.5V sets a new standard in visual reasoning, achieving SOTA performa|N
novita/gpt-oss-20b|gpt-oss-20b|OpenAI: GPT OSS 20B|C|400.0,1500.0|131072,32768|-|-|gpt-oss-20b is an open-weight 21B parameter model released by OpenAI under the A|N
novita/qwen3-235b-a22b-instruct-2507|qwen3-235b-a22b-instruct-2507|Qwen3 235B A22B Instruct 2507|C|900.0,5800.0|131072,16384|-|,,68.9,70.7,,,,,,|Qwen3-235B-A22B-Instruct-2507 is a multilingual, instruction-tuned mixture-of-ex|N
novita/deepseek-r1-distill-qwen-14b|deepseek-r1-distill-qwen-14b|DeepSeek R1 Distill Qwen 14B|C|1500.0,1500.0|32768,16384|-|,,87.1,44.7,,,,,,|DeepSeek R1 Distill Qwen 14B is a distilled large language model based on Qwen 2|N
novita/llama-3.3-70b-instruct|llama-3.3-70b-instruct|Llama 3.3 70B Instruct|C|1350.0,4000.0|131072,120000|-|86.3,,41.6,47.4,,,,,,|The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and i|N
novita/qwen-2.5-72b-instruct|qwen-2.5-72b-instruct|Qwen 2.5 72B Instruct|C|3800.0,4000.0|32000,8192|-|83.4,,63.2,49.1,,,,,,|Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we rele|N
novita/mistral-nemo|mistral-nemo|Mistral Nemo|C|400.0,1700.0|60288,16000|-|-|A 12B parameter model with a 128k token context length built by Mistral in colla|N
novita/minimax-m1-80k|minimax-m1-80k|MiniMax M1|C|5500.0,22000.0|1000000,40000|-|-|MiniMax-M1: The World's First Open-Weight, Large-Scale Hybrid Attention Inferenc|N
novita/deepseek-r1-0528|deepseek-r1-0528|DeepSeek R1 0528|C|7000.0,25000.0|163840,32768|-|,,93.1,69.2,33.3,,,,,|DeepSeek R1 0528 is the latest open-source model released by the DeepSeek team, |N
novita/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|DeepSeek R1 Distill Qwen 32B|C|3000.0,3000.0|64000,32000|-|-|DeepSeek R1 Distill Qwen 32B is a distilled large language model based on Qwen 2|N
novita/llama-3-8b-instruct|llama-3-8b-instruct|Llama 3 8B Instruct|C|400.0,400.0|8192,8192|-|,,,2.1,,24.0,,,,|Meta's latest class of model (Llama 3) launched with a variety of sizes & flavor|N
novita/wizardlm-2-8x22b|wizardlm-2-8x22b|Wizardlm 2 8x22B|C|6200.0,6200.0|65535,8000|-|,,25.7,43.4,,,,,,|WizardLM-2 8x22B is Microsoft AI's most advanced Wizard model. It demonstrates h|N
novita/deepseek-r1-0528-qwen3-8b|deepseek-r1-0528-qwen3-8b|DeepSeek R1 0528 Qwen3 8B|C|600.0,900.0|128000,32000|-|-|DeepSeek-R1-0528-Qwen3-8B is a high-performance reasoning model based on the Qwe|N
novita/deepseek-r1-distill-llama-70b|deepseek-r1-distill-llama-70b|DeepSeek R1 Distill LLama 70B|C|8000.0,8000.0|8192,8192|-|,,89.9,55.7,,,,,,|DeepSeek R1 Distill LLama 70B|N
novita/llama-3-70b-instruct|llama-3-70b-instruct|Llama3 70B Instruct|C|5100.0,7400.0|8192,8000|-|-|Meta's latest class of model (Llama 3) launched with a variety of sizes & flavor|N
novita/qwen3-235b-a22b-fp8|qwen3-235b-a22b-fp8|Qwen3 235B A22B|C|2000.0,8000.0|40960,20000|-|,,68.9,70.7,,,,,,|Achieves effective integration of inference and non-inference modes, enabling se|N
novita/llama-4-maverick-17b-128e-instruct-fp8|llama-4-maverick-17b-128e-instruct-fp8|Llama 4 Maverick Instruct|C|2700.0,8500.0|1048576,8192|-|,,73.0,67.0,,,,,,|Llama 4 Maverick 17B Instruct (128E) is a high-capacity multimodal language mode|N
novita/llama-4-scout-17b-16e-instruct|llama-4-scout-17b-16e-instruct|Llama 4 Scout Instruct|C|1800.0,5900.0|131072,131072|-|,,62.3,51.8,,,,,,|Llama 4 Scout 17B Instruct (16E) is a mixture-of-experts (MoE) language model de|N
novita/hermes-2-pro-llama-3-8b|hermes-2-pro-llama-3-8b|Hermes 2 Pro Llama 3 8B|C|1400.0,1400.0|8192,8192|-|-|Hermes 2 Pro is an upgraded, retrained version of Nous Hermes 2, consisting of a|N
novita/qwen2.5-vl-72b-instruct|qwen2.5-vl-72b-instruct|Qwen2.5 VL 72B Instruct|C|8000.0,8000.0|32768,32768|V|-|Qwen2.5-VL, the latest vision-language model in the Qwen2.5 series, delivers enh|N
novita/l3-70b-euryale-v2.1|l3-70b-euryale|L3 70B Euryale V2.1 |C|14800.0,14800.0|8192,8192|V|-|The uncensored llama3 model is a powerhouse of creativity, excelling in both rol|N
novita/ernie-4.5-21B-a3b-thinking|ernie-4.5-21b-a3b-thinking|ERNIE-4.5-21B-A3B-Thinking|C|700.0,2800.0|131072,65536|K|-|ERNIE-4.5-21B-A3B-Thinking is a text-based Mixture of Experts (MoE) post-trainin|N
novita/l3-8b-lunaris|l3-8b-lunaris|Sao10k L3 8B Lunaris |C|500.0,500.0|8192,8192|-|-|A generalist / roleplaying model merge based on Llama 3.|N
novita/baichuan-m2-32b|baichuan-m2-32b|BaiChuan M2 32B|C|700.0,700.0|131072,131072|-|-|Baichuan-M2 is a medically-enhanced reasoning model specifically designed for re|N
novita/glm-4.1v-9b-thinking|glm-4.1v-9b-thinking|GLM 4.1V 9B Thinking|C|350.0,1380.0|65536,8000|K|-|GLM-4.1V-9B-Thinking is an open-source Vision-Language Model (VLM) jointly relea|N
novita/ernie-4.5-vl-424b-a47b|ernie-4.5-vl-424b-a47b|ERNIE 4.5 VL 424B A47B|C|4200.0,12500.0|123000,16000|V|-|The ERNIE 4.5 series of open-source models adopts a Mixture-of-Experts (MoE) arc|N
novita/ernie-4.5-300b-a47b-paddle|ernie-4.5-300b-a47b-paddle|ERNIE 4.5 300B A47B|C|2800.0,11000.0|123000,12000|-|-|The ERNIE 4.5 series of open-source models adopts a Mixture-of-Experts (MoE) arc|N
novita/deepseek-prover-v2-671b|deepseek-prover-v2-671b|Deepseek Prover V2 671B|C|7000.0,25000.0|160000,160000|V|-|DeepSeek Launches Open-Source Model DeepSeek-Prover-V2-671B, Specializing in Mat|N
novita/qwen3-32b-fp8|qwen3-32b-fp8|Qwen3 32B|C|1000.0,4500.0|40960,20000|-|-|Achieves effective integration of inference and non-inference modes, allowing se|N
novita/qwen3-30b-a3b-fp8|qwen3-30b-a3b-fp8|Qwen3 30B A3B|C|900.0,4500.0|40960,20000|-|-|Achieves effective integration of inference and non-inference modes, allowing se|N
novita/gemma-3-27b-it|gemma-3-27b-it|Gemma 3 27B|C|1190.0,2000.0|98304,16384|-|,,74.0,48.9,,,,,,|Gemma 3 introduces multimodality, supporting vision-language input and text outp|N
novita/deepseek-v3-turbo|deepseek-v3-turbo|DeepSeek V3 (Turbo) |C|4000.0,13000.0|64000,16000|V|-|DeepSeek-V3 is the latest model from the DeepSeek team, building upon the instru|N
novita/deepseek-r1-turbo|deepseek-r1-turbo|DeepSeek R1 (Turbo) |C|7000.0,25000.0|64000,16000|-|-|DeepSeek R1 is the latest open-source model released by the DeepSeek team, featu|N
novita/L3-8B-Stheno-v3.2|l3-8b-stheno|L3 8B Stheno V3.2|C|500.0,500.0|8192,32000|V|-|Sao10K/L3-8B-Stheno-v3.2 is a highly skilled actor that excels at fully immersin|N
novita/mythomax-l2-13b|mythomax-l2-13b|Mythomax L2 13B|C|900.0,900.0|4096,3200|-|-|The idea behind this merge is that each layer is composed of several tensors, wh|N
novita/ernie-4.5-vl-28b-a3b-thinking|ernie-4.5-vl-28b-a3b-thinking|ERNIE-4.5-VL-28B-A3B-Thinking|C|3900.0,3900.0|131072,65536|VK|-|Built upon the powerful ERNIE-4.5-VL-28B-A3B architecture, the newly upgraded ER|N
novita/qwen3-vl-8b-instruct|qwen3-vl-8b-instruct|qwen/qwen3-vl-8b-instruct|C|800.0,5000.0|131072,32768|V|-|qwen/qwen3-vl-8b-instruct model|N
novita/glm-4.5-air|glm-4.5-air|zai-org/glm-4.5-air|C|1300.0,8500.0|131072,98304|-|-|zai-org/glm-4.5-air model|N
novita/qwen3-vl-30b-a3b-instruct|qwen3-vl-30b-a3b-instruct|qwen/qwen3-vl-30b-a3b-instruct|C|2000.0,7000.0|131072,32768|V|-|qwen/qwen3-vl-30b-a3b-instruct model|N
novita/qwen3-vl-30b-a3b-thinking|qwen3-vl-30b-a3b-thinking|qwen/qwen3-vl-30b-a3b-thinking|C|2000.0,10000.0|131072,32768|VK|-|qwen/qwen3-vl-30b-a3b-thinking model|N
novita/qwen3-omni-30b-a3b-thinking|qwen3-omni-30b-a3b-thinking|Qwen3 Omni 30B A3B Thinking|C|1.0,5.0|65536,16384|K|-|The Qwen-Omni model accepts combined inputs of text and a single additional moda|N
novita/qwen3-omni-30b-a3b-instruct|qwen3-omni-30b-a3b-instruct|Qwen3 Omni 30B A3B Instruct|C|1.0,5.0|65536,16384|-|-|The Qwen-Omni model accepts combined inputs of text and a single additional moda|N
novita/qwen-mt-plus|qwen-mt-plus|Qwen MT Plus|C|2500.0,7500.0|16384,8192|-|-|Qwen-MT is a large language model optimized for machine translation, built upon |N
novita/ernie-4.5-vl-28b-a3b|ernie-4.5-vl-28b-a3b|ERNIE 4.5 VL 28B A3B|C|1400.0,5600.0|30000,8000|V|-|The ERNIE 4.5 series of open-source models adopts a Mixture-of-Experts (MoE) arc|N
novita/ernie-4.5-21B-a3b|ernie-4.5-21b-a3b|ERNIE 4.5 21B A3B|C|700.0,2800.0|120000,8000|-|-|The ERNIE 4.5 series of open-source models adopts a Mixture-of-Experts (MoE) arc|N
novita/qwen3-8b-fp8|qwen3-8b-fp8|Qwen3 8B|C|350.0,1380.0|128000,20000|-|-|Achieves effective integration of reasoning and non-reasoning modes, allowing se|N
novita/qwen3-4b-fp8|qwen3-4b-fp8|Qwen3 4B|C|300.0,300.0|128000,20000|-|-|Achieves effective integration of reasoning and non-reasoning modes, allowing se|N
novita/qwen2.5-7b-instruct|qwen2.5-7b-instruct|Qwen2.5 7B Instruct|C|700.0,700.0|32000,32000|-|72.9,,,,,,,,,|Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we rele|N
novita/llama-3.2-3b-instruct|llama-3.2-3b-instruct|Llama 3.2 3B Instruct|C|300.0,500.0|32768,32000|-|-|The Meta Llama 3.2 collection of multilingual large language models (LLMs) is a |N
novita/l31-70b-euryale-v2.2|l31-70b-euryale|L31 70B Euryale V2.2|C|14800.0,14800.0|8192,8192|V|-|Euryale L3.1 70B v2.2 is a model focused on creative roleplay from Sao10k. It is|N
# =============================================================================
# NSCALE - Direct API (7 models)
# =============================================================================
nscale/Qwen3-235B-A22B|qwen3-235b-a22b|Qwen/Qwen3-235B-A22B|C|1.0,5.0|131072,8192|-|,,68.9,70.7,,,,,,|Qwen/Qwen3-235B-A22B model|N
nscale/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|meta-llama/Llama-3.3-70B-Instruct|C|1.0,5.0|128000,4096|-|86.3,,41.6,47.4,,,,,,|meta-llama/Llama-3.3-70B-Instruct model|N
nscale/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|deepseek-ai/DeepSeek-R1-Distill-Llama-70B|C|1.0,5.0|128000,8192|-|,,89.9,55.7,,,,,,|deepseek-ai/DeepSeek-R1-Distill-Llama-70B model|N
nscale/Mixtral-8x22B-Instruct-v0.1|mixtral-8x22b-instruct|mistralai/Mixtral-8x22B-Instruct-v0.1|C|1.0,5.0|65536,4096|V|70.5,,9.3,30.6,,,,,,|mistralai/Mixtral-8x22B-Instruct-v0.1 model|N
nscale/Llama-4-Scout-17B-16E-Instruct|llama-4-scout-17b-16e-instruct|meta-llama/Llama-4-Scout-17B-16E-Instruct|C|1.0,5.0|128000,4096|-|,,62.3,51.8,,,,,,|meta-llama/Llama-4-Scout-17B-16E-Instruct model|N
nscale/Llama-3.1-8B-Instruct|llama-3.1-8b-instruct|meta-llama/Llama-3.1-8B-Instruct|C|1.0,5.0|128000,4096|-|56.1,,22.9,25.9,,,,,,|meta-llama/Llama-3.1-8B-Instruct model|N
nscale/Qwen3-4B|qwen3-4b|Qwen/Qwen3-4B|C|1.0,5.0|32000,4096|-|-|Qwen/Qwen3-4B model|N
# =============================================================================
# NTT TSUZUMI - Direct API (3 models)
# =============================================================================
ntt_tsuzumi/tsuzumi-600m|tsuzumi-600m|tsuzumi-600m|C|1.0,5.0|4096,2048|-|-|tsuzumi-600m model|N
ntt_tsuzumi/tsuzumi-7b|tsuzumi-7b|tsuzumi-7b|C|1.0,5.0|8192,4096|-|-|tsuzumi-7b model|N
ntt_tsuzumi/tsuzumi-2|tsuzumi-2|tsuzumi-2|C|1.0,5.0|8192,4096|-|-|tsuzumi-2 model|N
# =============================================================================
# NVIDIA NIM - Direct API (180 models)
# =============================================================================
nvidia/yi-large|yi-large|01-ai/yi-large|C|1.0,5.0|128000,8192|-|79.3,,,,,,,,,|01-ai/yi-large model|N
nvidia/dracarys-llama-3.1-70b-instruct|dracarys-llama-3.1-70b-instruct|abacusai/dracarys-llama-3.1-70b-instruct|C|1.0,5.0|128000,8192|-|-|abacusai/dracarys-llama-3.1-70b-instruct model|N
nvidia/fuyu-8b|fuyu-8b|adept/fuyu-8b|C|1.0,5.0|128000,8192|-|-|adept/fuyu-8b model|N
nvidia/jamba-1.5-large-instruct|jamba-1.5-large-instruct|ai21labs/jamba-1.5-large-instruct|C|1.0,5.0|128000,8192|-|-|ai21labs/jamba-1.5-large-instruct model|N
nvidia/jamba-1.5-mini-instruct|jamba-1.5-mini-instruct|ai21labs/jamba-1.5-mini-instruct|C|1.0,5.0|128000,8192|-|-|ai21labs/jamba-1.5-mini-instruct model|N
nvidia/sea-lion-7b-instruct|sea-lion-7b-instruct|aisingapore/sea-lion-7b-instruct|C|1.0,5.0|128000,8192|-|-|aisingapore/sea-lion-7b-instruct model|N
nvidia/bge-m3|bge-m3|baai/bge-m3|C|1.0,5.0|128000,8192|-|-|baai/bge-m3 model|N
nvidia/baichuan2-13b-chat|baichuan2-13b-chat|baichuan-inc/baichuan2-13b-chat|C|1.0,5.0|128000,8192|-|50.1,,,,,,,,,|baichuan-inc/baichuan2-13b-chat model|N
nvidia/starcoder2-15b|starcoder2-15b|bigcode/starcoder2-15b|C|1.0,5.0|128000,8192|-|64.1,,,,,,,,,|bigcode/starcoder2-15b model|N
nvidia/starcoder2-7b|starcoder2-7b|bigcode/starcoder2-7b|C|1.0,5.0|128000,8192|-|38.8,,,,,,,,,|bigcode/starcoder2-7b model|N
nvidia/seed-oss-36b-instruct|seed-oss-36b-instruct|bytedance/seed-oss-36b-instruct|C|1.0,5.0|128000,8192|-|-|bytedance/seed-oss-36b-instruct model|N
nvidia/dbrx-instruct|dbrx-instruct|databricks/dbrx-instruct|C|1.0,5.0|128000,8192|-|,,11.7,32.9,,,,,,|databricks/dbrx-instruct model|N
nvidia/deepseek-coder-6.7b-instruct|deepseek-coder-6.7b-instruct|deepseek-ai/deepseek-coder-6.7b-instruct|C|1.0,5.0|128000,8192|-|-|deepseek-ai/deepseek-coder-6.7b-instruct model|N
nvidia/deepseek-r1|deepseek-r1|deepseek-ai/deepseek-r1|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/deepseek-r1 model|N
nvidia/deepseek-r1-0528|deepseek-r1-0528|deepseek-ai/deepseek-r1-0528|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/deepseek-r1-0528 model|N
nvidia/deepseek-r1-distill-llama-8b|deepseek-r1-distill-llama-8b|deepseek-ai/deepseek-r1-distill-llama-8b|C|1.0,5.0|128000,8192|-|-|deepseek-ai/deepseek-r1-distill-llama-8b model|N
nvidia/deepseek-r1-distill-qwen-14b|deepseek-r1-distill-qwen-14b|deepseek-ai/deepseek-r1-distill-qwen-14b|C|1.0,5.0|128000,8192|-|,,87.1,44.7,,,,,,|deepseek-ai/deepseek-r1-distill-qwen-14b model|N
nvidia/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|deepseek-ai/deepseek-r1-distill-qwen-32b|C|1.0,5.0|128000,8192|-|-|deepseek-ai/deepseek-r1-distill-qwen-32b model|N
nvidia/deepseek-r1-distill-qwen-7b|deepseek-r1-distill-qwen-7b|deepseek-ai/deepseek-r1-distill-qwen-7b|C|1.0,5.0|128000,8192|-|-|deepseek-ai/deepseek-r1-distill-qwen-7b model|N
nvidia/deepseek-v3.1|deepseek|deepseek-ai/deepseek-v3.1|C|1.0,5.0|128000,8192|V|-|deepseek-ai/deepseek-v3.1 model|N
nvidia/deepseek-v3.1-terminus|deepseek-v3.1-terminus|deepseek-ai/deepseek-v3.1-terminus|C|1.0,5.0|128000,8192|V|-|deepseek-ai/deepseek-v3.1-terminus model|N
nvidia/deepseek-v3.2|deepseek|deepseek-ai/deepseek-v3.2|C|1.0,5.0|128000,8192|V|-|deepseek-ai/deepseek-v3.2 model|N
nvidia/codegemma-1.1-7b|codegemma-1.1-7b|google/codegemma-1.1-7b|C|1.0,5.0|128000,8192|-|-|google/codegemma-1.1-7b model|N
nvidia/codegemma-7b|codegemma-7b|google/codegemma-7b|C|1.0,5.0|128000,8192|-|-|google/codegemma-7b model|N
nvidia/deplot|deplot|google/deplot|C|1.0,5.0|128000,8192|-|-|google/deplot model|N
nvidia/gemma-2-27b-it|gemma-2-27b-it|google/gemma-2-27b-it|C|1.0,5.0|128000,8192|-|75.7,,27.9,36.5,,,,,,|google/gemma-2-27b-it model|N
nvidia/gemma-2-2b-it|gemma-2-2b-it|google/gemma-2-2b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-2-2b-it model|N
nvidia/gemma-2-9b-it|gemma-2-9b-it|google/gemma-2-9b-it|C|1.0,5.0|128000,8192|-|72.1,,21.0,27.5,,,,,,|google/gemma-2-9b-it model|N
nvidia/gemma-2b|gemma-2b|google/gemma-2b|C|1.0,5.0|128000,8192|-|42.3,,,,,,,,,|google/gemma-2b model|N
nvidia/gemma-3-12b-it|gemma-3-12b-it|google/gemma-3-12b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3-12b-it model|N
nvidia/gemma-3-1b-it|gemma-3-1b-it|google/gemma-3-1b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3-1b-it model|N
nvidia/gemma-3-27b-it|gemma-3-27b-it|google/gemma-3-27b-it|C|1.0,5.0|128000,8192|-|,,74.0,48.9,,,,,,|google/gemma-3-27b-it model|N
nvidia/gemma-3-4b-it|gemma-3-4b-it|google/gemma-3-4b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3-4b-it model|N
nvidia/gemma-3n-e2b-it|gemma-3n-e2b-it|google/gemma-3n-e2b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3n-e2b-it model|N
nvidia/gemma-3n-e4b-it|gemma-3n-e4b-it|google/gemma-3n-e4b-it|C|1.0,5.0|128000,8192|-|-|google/gemma-3n-e4b-it model|N
nvidia/gemma-7b|gemma-7b|google/gemma-7b|C|1.0,5.0|128000,8192|-|63.6,,,,,,,,,|google/gemma-7b model|N
nvidia/paligemma|paligemma|google/paligemma|C|1.0,5.0|128000,8192|-|-|google/paligemma model|N
nvidia/recurrentgemma-2b|recurrentgemma-2b|google/recurrentgemma-2b|C|1.0,5.0|128000,8192|-|-|google/recurrentgemma-2b model|N
nvidia/shieldgemma-9b|shieldgemma-9b|google/shieldgemma-9b|C|1.0,5.0|128000,8192|-|-|google/shieldgemma-9b model|N
nvidia/gemma-2-9b-cpt-sahabatai-instruct|gemma-2-9b-cpt-sahabatai-instruct|gotocompany/gemma-2-9b-cpt-sahabatai-instruct|C|1.0,5.0|128000,8192|-|-|gotocompany/gemma-2-9b-cpt-sahabatai-instruct model|N
nvidia/granite-3.0-3b-a800m-instruct|granite-3.0-3b-a800m-instruct|ibm/granite-3.0-3b-a800m-instruct|C|1.0,5.0|128000,8192|-|-|ibm/granite-3.0-3b-a800m-instruct model|N
nvidia/granite-3.0-8b-instruct|granite-3.0-8b-instruct|ibm/granite-3.0-8b-instruct|C|1.0,5.0|128000,8192|-|-|ibm/granite-3.0-8b-instruct model|N
nvidia/granite-3.3-8b-instruct|granite-3.3-8b-instruct|ibm/granite-3.3-8b-instruct|C|1.0,5.0|128000,8192|-|-|ibm/granite-3.3-8b-instruct model|N
nvidia/granite-34b-code-instruct|granite-34b-code-instruct|ibm/granite-34b-code-instruct|C|1.0,5.0|128000,8192|-|-|ibm/granite-34b-code-instruct model|N
nvidia/granite-8b-code-instruct|granite-8b-code-instruct|ibm/granite-8b-code-instruct|C|1.0,5.0|128000,8192|-|-|ibm/granite-8b-code-instruct model|N
nvidia/granite-guardian-3.0-8b|granite-guardian-3.0-8b|ibm/granite-guardian-3.0-8b|C|1.0,5.0|128000,8192|-|-|ibm/granite-guardian-3.0-8b model|N
nvidia/colosseum_355b_instruct_16k|colosseum_355b_instruct_16k|igenius/colosseum_355b_instruct_16k|C|1.0,5.0|128000,8192|-|-|igenius/colosseum_355b_instruct_16k model|N
nvidia/italia_10b_instruct_16k|italia_10b_instruct_16k|igenius/italia_10b_instruct_16k|C|1.0,5.0|128000,8192|-|-|igenius/italia_10b_instruct_16k model|N
nvidia/llama-3.1-swallow-70b-instruct-v0.1|llama-3.1-swallow-70b-instruct|institute-of-science-tokyo/llama-3.1-swallow-70b-instruct-v0.1|C|1.0,5.0|128000,8192|V|-|institute-of-science-tokyo/llama-3.1-swallow-70b-instruct-v0.1 model|N
nvidia/llama-3.1-swallow-8b-instruct-v0.1|llama-3.1-swallow-8b-instruct|institute-of-science-tokyo/llama-3.1-swallow-8b-instruct-v0.1|C|1.0,5.0|128000,8192|V|-|institute-of-science-tokyo/llama-3.1-swallow-8b-instruct-v0.1 model|N
nvidia/marin-8b-instruct|marin-8b-instruct|marin/marin-8b-instruct|C|1.0,5.0|128000,8192|-|-|marin/marin-8b-instruct model|N
nvidia/breeze-7b-instruct|breeze-7b-instruct|mediatek/breeze-7b-instruct|C|1.0,5.0|128000,8192|-|-|mediatek/breeze-7b-instruct model|N
nvidia/codellama-70b|codellama-70b|meta/codellama-70b|C|1.0,5.0|128000,8192|-|-|meta/codellama-70b model|N
nvidia/llama-3.1-405b-instruct|llama-3.1-405b-instruct|meta/llama-3.1-405b-instruct|C|1.0,5.0|128000,8192|-|84.4,,49.8,50.9,,,,,,|meta/llama-3.1-405b-instruct model|N
nvidia/llama-3.1-70b-instruct|llama-3.1-70b-instruct|meta/llama-3.1-70b-instruct|C|1.0,5.0|128000,8192|-|80.1,,36.7,44.2,,,,,,|meta/llama-3.1-70b-instruct model|N
nvidia/llama-3.1-8b-instruct|llama-3.1-8b-instruct|meta/llama-3.1-8b-instruct|C|1.0,5.0|128000,8192|-|56.1,,22.9,25.9,,,,,,|meta/llama-3.1-8b-instruct model|N
nvidia/llama-3.2-11b-vision-instruct|llama-3.2-11b-vision-instruct|meta/llama-3.2-11b-vision-instruct|C|1.0,5.0|128000,8192|V|56.5,,,,,,,,,|meta/llama-3.2-11b-vision-instruct model|N
nvidia/llama-3.2-1b-instruct|llama-3.2-1b-instruct|meta/llama-3.2-1b-instruct|C|1.0,5.0|128000,8192|-|-|meta/llama-3.2-1b-instruct model|N
nvidia/llama-3.2-3b-instruct|llama-3.2-3b-instruct|meta/llama-3.2-3b-instruct|C|1.0,5.0|128000,8192|-|-|meta/llama-3.2-3b-instruct model|N
nvidia/llama-3.2-90b-vision-instruct|llama-3.2-90b-vision-instruct|meta/llama-3.2-90b-vision-instruct|C|1.0,5.0|128000,8192|V|80.3,,39.4,41.0,,,,,,|meta/llama-3.2-90b-vision-instruct model|N
nvidia/llama-3.3-70b-instruct|llama-3.3-70b-instruct|meta/llama-3.3-70b-instruct|C|1.0,5.0|128000,8192|-|86.3,,41.6,47.4,,,,,,|meta/llama-3.3-70b-instruct model|N
nvidia/llama-4-maverick-17b-128e-instruct|llama-4-maverick-17b-128e-instruct|meta/llama-4-maverick-17b-128e-instruct|C|1.0,5.0|128000,8192|-|,,73.0,67.0,,,,,,|meta/llama-4-maverick-17b-128e-instruct model|N
nvidia/llama-4-scout-17b-16e-instruct|llama-4-scout-17b-16e-instruct|meta/llama-4-scout-17b-16e-instruct|C|1.0,5.0|128000,8192|-|,,62.3,51.8,,,,,,|meta/llama-4-scout-17b-16e-instruct model|N
nvidia/llama-guard-4-12b|llama-guard-4-12b|meta/llama-guard-4-12b|C|1.0,5.0|128000,8192|-|-|meta/llama-guard-4-12b model|N
nvidia/llama2-70b|llama2-70b|meta/llama2-70b|C|1.0,5.0|128000,8192|-|59.9,,3.3,26.3,,,,,,|meta/llama2-70b model|N
nvidia/llama3-70b-instruct|llama3-70b-instruct|meta/llama3-70b-instruct|C|1.0,5.0|128000,8192|-|-|meta/llama3-70b-instruct model|N
nvidia/llama3-8b-instruct|llama3-8b-instruct|meta/llama3-8b-instruct|C|1.0,5.0|128000,8192|-|,,,2.1,,24.0,,,,|meta/llama3-8b-instruct model|N
nvidia/kosmos-2|kosmos-2|microsoft/kosmos-2|C|1.0,5.0|128000,8192|-|-|microsoft/kosmos-2 model|N
nvidia/phi-3-medium-128k-instruct|phi-3-medium-128k-instruct|microsoft/phi-3-medium-128k-instruct|C|1.0,5.0|128000,8192|-|78.0,,17.6,27.6,,,,,,|microsoft/phi-3-medium-128k-instruct model|N
nvidia/phi-3-medium-4k-instruct|phi-3-medium-4k-instruct|microsoft/phi-3-medium-4k-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-3-medium-4k-instruct model|N
nvidia/phi-3-mini-128k-instruct|phi-3-mini-128k-instruct|microsoft/phi-3-mini-128k-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-3-mini-128k-instruct model|N
nvidia/phi-3-mini-4k-instruct|phi-3-mini-4k-instruct|microsoft/phi-3-mini-4k-instruct|C|1.0,5.0|128000,8192|-|68.8,,,,,,,,,|microsoft/phi-3-mini-4k-instruct model|N
nvidia/phi-3-small-128k-instruct|phi-3-small-128k-instruct|microsoft/phi-3-small-128k-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-3-small-128k-instruct model|N
nvidia/phi-3-small-8k-instruct|phi-3-small-8k-instruct|microsoft/phi-3-small-8k-instruct|C|1.0,5.0|128000,8192|-|75.7,,,,,,,,,|microsoft/phi-3-small-8k-instruct model|N
nvidia/phi-3-vision-128k-instruct|phi-3-vision-128k-instruct|microsoft/phi-3-vision-128k-instruct|C|1.0,5.0|128000,8192|V|-|microsoft/phi-3-vision-128k-instruct model|N
nvidia/phi-3.5-mini-instruct|phi-3.5-mini-instruct|microsoft/phi-3.5-mini-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-3.5-mini-instruct model|N
nvidia/phi-3.5-moe-instruct|phi-3.5-moe-instruct|microsoft/phi-3.5-moe-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-3.5-moe-instruct model|N
nvidia/phi-3.5-vision-instruct|phi-3.5-vision-instruct|microsoft/phi-3.5-vision-instruct|C|1.0,5.0|128000,8192|V|-|microsoft/phi-3.5-vision-instruct model|N
nvidia/phi-4-mini-flash-reasoning|phi-4-mini-flash-reasoning|microsoft/phi-4-mini-flash-reasoning|C|1.0,5.0|128000,8192|K|-|microsoft/phi-4-mini-flash-reasoning model|N
nvidia/phi-4-mini-instruct|phi-4-mini-instruct|microsoft/phi-4-mini-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-4-mini-instruct model|N
nvidia/phi-4-multimodal-instruct|phi-4-multimodal-instruct|microsoft/phi-4-multimodal-instruct|C|1.0,5.0|128000,8192|-|-|microsoft/phi-4-multimodal-instruct model|N
nvidia/minimax-m2|minimax-m2|minimaxai/minimax-m2|C|1.0,5.0|128000,8192|-|-|minimaxai/minimax-m2 model|N
nvidia/minimax-m2.1|minimax-m2.1|minimaxai/minimax-m2.1|C|1.0,5.0|128000,8192|-|-|minimaxai/minimax-m2.1 model|N
nvidia/codestral-22b-instruct-v0.1|codestral-22b-instruct|mistralai/codestral-22b-instruct-v0.1|C|1.0,5.0|128000,8192|V|-|mistralai/codestral-22b-instruct-v0.1 model|N
nvidia/devstral-2-123b-instruct-2512|devstral-2-123b-instruct-2512|mistralai/devstral-2-123b-instruct-2512|C|1.0,5.0|128000,8192|-|-|mistralai/devstral-2-123b-instruct-2512 model|N
nvidia/magistral-small-2506|magistral-small-2506|mistralai/magistral-small-2506|C|1.0,5.0|128000,8192|-|,,,48.4,,,,,,|mistralai/magistral-small-2506 model|N
nvidia/mamba-codestral-7b-v0.1|mamba-codestral-7b|mistralai/mamba-codestral-7b-v0.1|C|1.0,5.0|128000,8192|V|-|mistralai/mamba-codestral-7b-v0.1 model|N
nvidia/mathstral-7b-v0.1|mathstral-7b|mistralai/mathstral-7b-v0.1|C|1.0,5.0|128000,8192|V|-|mistralai/mathstral-7b-v0.1 model|N
nvidia/ministral-14b-instruct-2512|ministral-14b-instruct-2512|mistralai/ministral-14b-instruct-2512|C|1.0,5.0|128000,8192|-|-|mistralai/ministral-14b-instruct-2512 model|N
nvidia/mistral-7b-instruct-v0.2|mistral-7b-instruct|mistralai/mistral-7b-instruct-v0.2|C|1.0,5.0|128000,8192|V|62.5,,,,,,,,,|mistralai/mistral-7b-instruct-v0.2 model|N
nvidia/mistral-7b-instruct-v0.3|mistral-7b-instruct|mistralai/mistral-7b-instruct-v0.3|C|1.0,5.0|128000,8192|V|59.9,,3.6,15.2,,,,,,|mistralai/mistral-7b-instruct-v0.3 model|N
nvidia/mistral-large|mistral-large|mistralai/mistral-large|C|1.0,5.0|128000,8192|-|80.0,,24.5,49.0,,,,,,|mistralai/mistral-large model|N
nvidia/mistral-large-2-instruct|mistral-large-2-instruct|mistralai/mistral-large-2-instruct|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-large-2-instruct model|N
nvidia/mistral-large-3-675b-instruct-2512|mistral-large-3-675b-instruct-2512|mistralai/mistral-large-3-675b-instruct-2512|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-large-3-675b-instruct-2512 model|N
nvidia/mistral-medium-3-instruct|mistral-medium-3-instruct|mistralai/mistral-medium-3-instruct|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-medium-3-instruct model|N
nvidia/mistral-nemotron|mistral-nemotron|mistralai/mistral-nemotron|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-nemotron model|N
nvidia/mistral-small-24b-instruct|mistral-small-24b-instruct|mistralai/mistral-small-24b-instruct|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-small-24b-instruct model|N
nvidia/mistral-small-3.1-24b-instruct-2503|mistral-small-3.1-24b-instruct-2503|mistralai/mistral-small-3.1-24b-instruct-2503|C|1.0,5.0|128000,8192|-|-|mistralai/mistral-small-3.1-24b-instruct-2503 model|N
nvidia/mixtral-8x22b-instruct-v0.1|mixtral-8x22b-instruct|mistralai/mixtral-8x22b-instruct-v0.1|C|1.0,5.0|128000,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/mixtral-8x22b-instruct-v0.1 model|N
nvidia/mixtral-8x22b-v0.1|mixtral-8x22b|mistralai/mixtral-8x22b-v0.1|C|1.0,5.0|128000,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/mixtral-8x22b-v0.1 model|N
nvidia/mixtral-8x7b-instruct-v0.1|mixtral-8x7b-instruct|mistralai/mixtral-8x7b-instruct-v0.1|C|1.0,5.0|128000,8192|V|70.5,,9.3,30.6,,,,,,|mistralai/mixtral-8x7b-instruct-v0.1 model|N
nvidia/kimi-k2-instruct|kimi-k2-instruct|moonshotai/kimi-k2-instruct|C|1.0,5.0|128000,8192|-|-|moonshotai/kimi-k2-instruct model|N
nvidia/kimi-k2-instruct-0905|kimi-k2-instruct-0905|moonshotai/kimi-k2-instruct-0905|C|1.0,5.0|128000,8192|-|-|moonshotai/kimi-k2-instruct-0905 model|N
nvidia/kimi-k2-thinking|kimi-k2-thinking|moonshotai/kimi-k2-thinking|C|1.0,5.0|128000,8192|K|-|moonshotai/kimi-k2-thinking model|N
nvidia/mistral-nemo-12b-instruct|mistral-nemo-12b-instruct|nv-mistralai/mistral-nemo-12b-instruct|C|1.0,5.0|128000,8192|-|-|nv-mistralai/mistral-nemo-12b-instruct model|N
nvidia/cosmos-reason2-8b|cosmos-reason2-8b|nvidia/cosmos-reason2-8b|C|1.0,5.0|128000,8192|K|-|nvidia/cosmos-reason2-8b model|N
nvidia/embed-qa-4|embed-qa-4|nvidia/embed-qa-4|C|1.0,5.0|128000,8192|-|-|nvidia/embed-qa-4 model|N
nvidia/llama-3.1-nemoguard-8b-content-safety|llama-3.1-nemoguard-8b-content-safety|nvidia/llama-3.1-nemoguard-8b-content-safety|C|1.0,5.0|128000,8192|-|-|nvidia/llama-3.1-nemoguard-8b-content-safety model|N
nvidia/llama-3.1-nemoguard-8b-topic-control|llama-3.1-nemoguard-8b-topic-control|nvidia/llama-3.1-nemoguard-8b-topic-control|C|1.0,5.0|128000,8192|-|-|nvidia/llama-3.1-nemoguard-8b-topic-control model|N
nvidia/llama-3.1-nemotron-51b-instruct|llama-3.1-nemotron-51b-instruct|nvidia/llama-3.1-nemotron-51b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/llama-3.1-nemotron-51b-instruct model|N
nvidia/llama-3.1-nemotron-70b-instruct|llama-3.1-nemotron-70b-instruct|nvidia/llama-3.1-nemotron-70b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/llama-3.1-nemotron-70b-instruct model|N
nvidia/llama-3.1-nemotron-70b-reward|llama-3.1-nemotron-70b-reward|nvidia/llama-3.1-nemotron-70b-reward|C|1.0,5.0|128000,8192|-|-|nvidia/llama-3.1-nemotron-70b-reward model|N
nvidia/llama-3.1-nemotron-nano-4b-v1.1|llama-3.1-nemotron-nano-4b|nvidia/llama-3.1-nemotron-nano-4b-v1.1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.1-nemotron-nano-4b-v1.1 model|N
nvidia/llama-3.1-nemotron-nano-8b-v1|llama-3.1-nemotron-nano-8b|nvidia/llama-3.1-nemotron-nano-8b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.1-nemotron-nano-8b-v1 model|N
nvidia/llama-3.1-nemotron-nano-vl-8b-v1|llama-3.1-nemotron-nano-vl-8b|nvidia/llama-3.1-nemotron-nano-vl-8b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.1-nemotron-nano-vl-8b-v1 model|N
nvidia/llama-3.1-nemotron-safety-guard-8b-v3|llama-3.1-nemotron-safety-guard-8b|nvidia/llama-3.1-nemotron-safety-guard-8b-v3|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.1-nemotron-safety-guard-8b-v3 model|N
nvidia/llama-3.1-nemotron-ultra-253b-v1|llama-3.1-nemotron-ultra-253b|nvidia/llama-3.1-nemotron-ultra-253b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.1-nemotron-ultra-253b-v1 model|N
nvidia/llama-3.2-nemoretriever-1b-vlm-embed-v1|llama-3.2-nemoretriever-1b-vlm-embed|nvidia/llama-3.2-nemoretriever-1b-vlm-embed-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.2-nemoretriever-1b-vlm-embed-v1 model|N
nvidia/llama-3.2-nemoretriever-300m-embed-v1|llama-3.2-nemoretriever-300m-embed|nvidia/llama-3.2-nemoretriever-300m-embed-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.2-nemoretriever-300m-embed-v1 model|N
nvidia/llama-3.2-nemoretriever-300m-embed-v2|llama-3.2-nemoretriever-300m-embed|nvidia/llama-3.2-nemoretriever-300m-embed-v2|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.2-nemoretriever-300m-embed-v2 model|N
nvidia/llama-3.2-nv-embedqa-1b-v1|llama-3.2-nv-embedqa-1b|nvidia/llama-3.2-nv-embedqa-1b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.2-nv-embedqa-1b-v1 model|N
nvidia/llama-3.2-nv-embedqa-1b-v2|llama-3.2-nv-embedqa-1b|nvidia/llama-3.2-nv-embedqa-1b-v2|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.2-nv-embedqa-1b-v2 model|N
nvidia/llama-3.3-nemotron-super-49b-v1|llama-3.3-nemotron-super-49b|nvidia/llama-3.3-nemotron-super-49b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.3-nemotron-super-49b-v1 model|N
nvidia/llama-3.3-nemotron-super-49b-v1.5|llama-3.3-nemotron-super-49b|nvidia/llama-3.3-nemotron-super-49b-v1.5|C|1.0,5.0|128000,8192|V|-|nvidia/llama-3.3-nemotron-super-49b-v1.5 model|N
nvidia/llama3-chatqa-1.5-70b|llama3-chatqa-1.5-70b|nvidia/llama3-chatqa-1.5-70b|C|1.0,5.0|128000,8192|-|-|nvidia/llama3-chatqa-1.5-70b model|N
nvidia/llama3-chatqa-1.5-8b|llama3-chatqa-1.5-8b|nvidia/llama3-chatqa-1.5-8b|C|1.0,5.0|128000,8192|-|-|nvidia/llama3-chatqa-1.5-8b model|N
nvidia/mistral-nemo-minitron-8b-8k-instruct|mistral-nemo-minitron-8b-8k-instruct|nvidia/mistral-nemo-minitron-8b-8k-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/mistral-nemo-minitron-8b-8k-instruct model|N
nvidia/mistral-nemo-minitron-8b-base|mistral-nemo-minitron-8b-base|nvidia/mistral-nemo-minitron-8b-base|C|1.0,5.0|128000,8192|-|-|nvidia/mistral-nemo-minitron-8b-base model|N
nvidia/nemoretriever-parse|nemoretriever-parse|nvidia/nemoretriever-parse|C|1.0,5.0|128000,8192|-|-|nvidia/nemoretriever-parse model|N
nvidia/nemotron-3-nano-30b-a3b|nemotron-3-nano-30b-a3b|nvidia/nemotron-3-nano-30b-a3b|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-3-nano-30b-a3b model|N
nvidia/nemotron-4-340b-instruct|nemotron-4-340b-instruct|nvidia/nemotron-4-340b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-4-340b-instruct model|N
nvidia/nemotron-4-340b-reward|nemotron-4-340b-reward|nvidia/nemotron-4-340b-reward|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-4-340b-reward model|N
nvidia/nemotron-4-mini-hindi-4b-instruct|nemotron-4-mini-hindi-4b-instruct|nvidia/nemotron-4-mini-hindi-4b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-4-mini-hindi-4b-instruct model|N
nvidia/nemotron-mini-4b-instruct|nemotron-mini-4b-instruct|nvidia/nemotron-mini-4b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-mini-4b-instruct model|N
nvidia/nemotron-nano-12b-v2-vl|nemotron-nano-12b-v2-vl|nvidia/nemotron-nano-12b-v2-vl|C|1.0,5.0|128000,8192|V|-|nvidia/nemotron-nano-12b-v2-vl model|N
nvidia/nemotron-nano-3-30b-a3b|nemotron-nano-3-30b-a3b|nvidia/nemotron-nano-3-30b-a3b|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-nano-3-30b-a3b model|N
nvidia/nemotron-parse|nemotron-parse|nvidia/nemotron-parse|C|1.0,5.0|128000,8192|-|-|nvidia/nemotron-parse model|N
nvidia/neva-22b|neva-22b|nvidia/neva-22b|C|1.0,5.0|128000,8192|-|-|nvidia/neva-22b model|N
nvidia/nv-embed-v1|nv-embed|nvidia/nv-embed-v1|C|1.0,5.0|128000,8192|V|-|nvidia/nv-embed-v1 model|N
nvidia/nv-embedcode-7b-v1|nv-embedcode-7b|nvidia/nv-embedcode-7b-v1|C|1.0,5.0|128000,8192|V|-|nvidia/nv-embedcode-7b-v1 model|N
nvidia/nv-embedqa-e5-v5|nv-embedqa-e5|nvidia/nv-embedqa-e5-v5|C|1.0,5.0|128000,8192|V|-|nvidia/nv-embedqa-e5-v5 model|N
nvidia/nv-embedqa-mistral-7b-v2|nv-embedqa-mistral-7b|nvidia/nv-embedqa-mistral-7b-v2|C|1.0,5.0|128000,8192|V|-|nvidia/nv-embedqa-mistral-7b-v2 model|N
nvidia/nvclip|nvclip|nvidia/nvclip|C|1.0,5.0|128000,8192|-|-|nvidia/nvclip model|N
nvidia/nvidia-nemotron-nano-9b-v2|nvidia-nemotron-nano-9b|nvidia/nvidia-nemotron-nano-9b-v2|C|1.0,5.0|128000,8192|V|-|nvidia/nvidia-nemotron-nano-9b-v2 model|N
nvidia/riva-translate-4b-instruct|riva-translate-4b-instruct|nvidia/riva-translate-4b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/riva-translate-4b-instruct model|N
nvidia/riva-translate-4b-instruct-v1.1|riva-translate-4b-instruct|nvidia/riva-translate-4b-instruct-v1.1|C|1.0,5.0|128000,8192|V|-|nvidia/riva-translate-4b-instruct-v1.1 model|N
nvidia/streampetr|streampetr|nvidia/streampetr|C|1.0,5.0|128000,8192|-|-|nvidia/streampetr model|N
nvidia/usdcode-llama-3.1-70b-instruct|usdcode-llama-3.1-70b-instruct|nvidia/usdcode-llama-3.1-70b-instruct|C|1.0,5.0|128000,8192|-|-|nvidia/usdcode-llama-3.1-70b-instruct model|N
nvidia/vila|vila|nvidia/vila|C|1.0,5.0|128000,8192|-|-|nvidia/vila model|N
nvidia/gpt-oss-120b|gpt-oss-120b|openai/gpt-oss-120b|C|1.0,5.0|128000,8192|-|-|openai/gpt-oss-120b model|N
nvidia/gpt-oss-20b|gpt-oss-20b|openai/gpt-oss-20b|C|1.0,5.0|128000,8192|-|-|openai/gpt-oss-20b model|N
nvidia/teuken-7b-instruct-commercial-v0.4|teuken-7b-instruct-commercial|opengpt-x/teuken-7b-instruct-commercial-v0.4|C|1.0,5.0|128000,8192|V|-|opengpt-x/teuken-7b-instruct-commercial-v0.4 model|N
nvidia/qwen2-7b-instruct|qwen2-7b-instruct|qwen/qwen2-7b-instruct|C|1.0,5.0|128000,8192|-|-|qwen/qwen2-7b-instruct model|N
nvidia/qwen2.5-7b-instruct|qwen2.5-7b-instruct|qwen/qwen2.5-7b-instruct|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|qwen/qwen2.5-7b-instruct model|N
nvidia/qwen2.5-coder-32b-instruct|qwen2.5-coder-32b-instruct|qwen/qwen2.5-coder-32b-instruct|C|1.0,5.0|128000,8192|-|79.1,,,,,,,,,|qwen/qwen2.5-coder-32b-instruct model|N
nvidia/qwen2.5-coder-7b-instruct|qwen2.5-coder-7b-instruct|qwen/qwen2.5-coder-7b-instruct|C|1.0,5.0|128000,8192|-|68.0,,,,,,,,,|qwen/qwen2.5-coder-7b-instruct model|N
nvidia/qwen3-235b-a22b|qwen3-235b-a22b|qwen/qwen3-235b-a22b|C|1.0,5.0|128000,8192|-|,,68.9,70.7,,,,,,|qwen/qwen3-235b-a22b model|N
nvidia/qwen3-coder-480b-a35b-instruct|qwen3-coder-480b-a35b-instruct|qwen/qwen3-coder-480b-a35b-instruct|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-coder-480b-a35b-instruct model|N
nvidia/qwen3-next-80b-a3b-instruct|qwen3-next-80b-a3b-instruct|qwen/qwen3-next-80b-a3b-instruct|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-next-80b-a3b-instruct model|N
nvidia/qwen3-next-80b-a3b-thinking|qwen3-next-80b-a3b-thinking|qwen/qwen3-next-80b-a3b-thinking|C|1.0,5.0|128000,8192|K|-|qwen/qwen3-next-80b-a3b-thinking model|N
nvidia/qwq-32b|qwq-32b|qwen/qwq-32b|C|1.0,5.0|128000,8192|-|-|qwen/qwq-32b model|N
nvidia/rakutenai-7b-chat|rakutenai-7b-chat|rakuten/rakutenai-7b-chat|C|1.0,5.0|128000,8192|-|-|rakuten/rakutenai-7b-chat model|N
nvidia/rakutenai-7b-instruct|rakutenai-7b-instruct|rakuten/rakutenai-7b-instruct|C|1.0,5.0|128000,8192|-|-|rakuten/rakutenai-7b-instruct model|N
nvidia/sarvam-m|sarvam-m|sarvamai/sarvam-m|C|1.0,5.0|128000,8192|-|-|sarvamai/sarvam-m model|N
nvidia/arctic-embed-l|arctic-embed-l|snowflake/arctic-embed-l|C|1.0,5.0|128000,8192|-|-|snowflake/arctic-embed-l model|N
nvidia/bielik-11b-v2.3-instruct|bielik-11b-v2.3-instruct|speakleash/bielik-11b-v2.3-instruct|C|1.0,5.0|128000,8192|V|-|speakleash/bielik-11b-v2.3-instruct model|N
nvidia/bielik-11b-v2.6-instruct|bielik-11b-v2.6-instruct|speakleash/bielik-11b-v2.6-instruct|C|1.0,5.0|128000,8192|V|-|speakleash/bielik-11b-v2.6-instruct model|N
nvidia/stockmark-2-100b-instruct|stockmark-2-100b-instruct|stockmark/stockmark-2-100b-instruct|C|1.0,5.0|128000,8192|-|-|stockmark/stockmark-2-100b-instruct model|N
nvidia/chatglm3-6b|chatglm3-6b|thudm/chatglm3-6b|C|1.0,5.0|128000,8192|-|-|thudm/chatglm3-6b model|N
nvidia/falcon3-7b-instruct|falcon3-7b-instruct|tiiuae/falcon3-7b-instruct|C|1.0,5.0|128000,8192|-|-|tiiuae/falcon3-7b-instruct model|N
nvidia/llama-3-swallow-70b-instruct-v0.1|llama-3-swallow-70b-instruct|tokyotech-llm/llama-3-swallow-70b-instruct-v0.1|C|1.0,5.0|128000,8192|V|-|tokyotech-llm/llama-3-swallow-70b-instruct-v0.1 model|N
nvidia/solar-10.7b-instruct|solar-10.7b-instruct|upstage/solar-10.7b-instruct|C|1.0,5.0|128000,8192|-|-|upstage/solar-10.7b-instruct model|N
nvidia/eurollm-9b-instruct|eurollm-9b-instruct|utter-project/eurollm-9b-instruct|C|1.0,5.0|128000,8192|-|-|utter-project/eurollm-9b-instruct model|N
nvidia/palmyra-creative-122b|palmyra-creative-122b|writer/palmyra-creative-122b|C|1.0,5.0|128000,8192|-|-|writer/palmyra-creative-122b model|N
nvidia/palmyra-fin-70b-32k|palmyra-fin-70b-32k|writer/palmyra-fin-70b-32k|C|1.0,5.0|128000,8192|-|-|writer/palmyra-fin-70b-32k model|N
nvidia/palmyra-med-70b|palmyra-med-70b|writer/palmyra-med-70b|C|1.0,5.0|128000,8192|-|-|writer/palmyra-med-70b model|N
nvidia/palmyra-med-70b-32k|palmyra-med-70b-32k|writer/palmyra-med-70b-32k|C|1.0,5.0|128000,8192|-|-|writer/palmyra-med-70b-32k model|N
nvidia/llama-3-taiwan-70b-instruct|llama-3-taiwan-70b-instruct|yentinglin/llama-3-taiwan-70b-instruct|C|1.0,5.0|128000,8192|-|-|yentinglin/llama-3-taiwan-70b-instruct model|N
nvidia/glm4.7|glm4.7|z-ai/glm4.7|C|1.0,5.0|128000,8192|-|-|z-ai/glm4.7 model|N
nvidia/zamba2-7b-instruct|zamba2-7b-instruct|zyphra/zamba2-7b-instruct|C|1.0,5.0|128000,8192|-|-|zyphra/zamba2-7b-instruct model|N
# =============================================================================
# OLLAMA - Direct API (200 models)
# =============================================================================
ollama/nemotron-3-nano|nemotron-3-nano|nemotron-3-nano|C|1.0,5.0|128000,8192|-|-|Nemotron 3 Nano - A new Standard for Efficient, Open, and Intelligent Agentic Mo|N
ollama/functiongemma|functiongemma|functiongemma|C|1.0,5.0|128000,8192|-|-|FunctionGemma is a specialized version of Google's Gemma 3 270M model fine-t|N
ollama/olmo-3|olmo-3|olmo-3|C|1.0,5.0|128000,8192|-|-|Olmo is a series of Open language models designed to enable the science of langu|N
ollama/gemini-3-flash-preview|gemini-3-flash-preview|gemini-3-flash-preview|C|1.0,5.0|128000,8192|-|,,,83.2,,,,,,|Gemini 3 Flash offers frontier intelligence built for speed at a fraction of the|N
ollama/devstral-small-2|devstral-small-2|devstral-small-2|C|1.0,5.0|128000,8192|-|-|24B model that excels at using tools to explore codebases, editing multiple file|N
ollama/devstral-2|devstral-2|devstral-2|C|1.0,5.0|128000,8192|-|-|123B model that excels at using tools to explore codebases, editing multiple fil|N
ollama/ministral-3|ministral-3|ministral-3|C|1.0,5.0|128000,8192|-|-|The Ministral 3 family is designed for edge deployment, capable of running on a |N
ollama/qwen3-vl|qwen3-vl|qwen3-vl|C|1.0,5.0|128000,8192|V|-|The most powerful vision-language model in the Qwen model family to date.|N
ollama/gpt-oss|gpt-oss|gpt-oss|C|1.0,5.0|128000,8192|-|-|OpenAI’s open-weight models designed for powerful reasoning, agentic tasks, and |N
ollama/deepseek-r1|deepseek-r1|deepseek-r1|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|DeepSeek-R1 is a family of open reasoning models with performance approaching th|N
ollama/qwen3-coder|qwen3-coder|qwen3-coder|C|1.0,5.0|128000,8192|-|-|Alibaba's performant long context models for agentic and coding tasks.|N
ollama/gemma3|gemma3|gemma3|C|1.0,5.0|128000,8192|-|-|The current, most capable model that runs on a single GPU.|N
ollama/llama3.1|llama3.1|llama3.1|C|1.0,5.0|131072,8192|-|-|Llama 3.1 is a new state-of-the-art model from Meta available in 8B, 70B and 405|N
ollama/llama3.2|llama3.2|llama3.2|C|1.0,5.0|131072,8192|-|-|Meta's Llama 3.2 goes small with 1B and 3B models.|N
ollama/nomic-embed-text|nomic-embed-text|nomic-embed-text|C|1.0,5.0|128000,8192|-|-|A high-performing open embedding model with a large token context window.|N
ollama/mistral|mistral|mistral|C|1.0,5.0|32768,8192|-|-|The 7B model released by Mistral AI, updated to version 0.3.|N
ollama/qwen2.5|qwen2.5|qwen2.5|C|1.0,5.0|131072,8192|-|-|Qwen2.5 models are pretrained on Alibaba's latest large-scale dataset, encom|N
ollama/qwen3|qwen3|qwen3|C|1.0,5.0|128000,8192|-|-|Qwen3 is the latest generation of large language models in Qwen series, offering|N
ollama/phi3|phi3|phi3|C|1.0,5.0|131072,4096|-|-|Phi-3 is a family of lightweight 3B (Mini) and 14B (Medium) state-of-the-art ope|N
ollama/llama3|llama3|llama3|C|1.0,5.0|8192,4096|-|-|Meta Llama 3: The most capable openly available LLM to date|N
ollama/gemma2|gemma2|gemma2|C|1.0,5.0|8192,8192|-|-|Google Gemma 2 is a high-performing and efficient model available in three sizes|N
ollama/llava|llava|llava|C|1.0,5.0|128000,8192|-|-|🌋 LLaVA is a novel end-to-end trained large multimodal model that combines a vis|N
ollama/qwen2.5-coder|qwen2.5-coder|qwen2.5-coder|C|1.0,5.0|131072,8192|-|-|The latest series of Code-Specific Qwen models, with significant improvements in|N
ollama/phi4|phi4|phi4|C|1.0,5.0|128000,8192|-|84.8,,64.9,56.1,,,,,,|Phi-4 is a 14B parameter, state-of-the-art open model from Microsoft.|N
ollama/mxbai-embed-large|mxbai-embed-large|mxbai-embed-large|C|1.0,5.0|128000,8192|-|-|State-of-the-art large embedding model from mixedbread.ai|N
ollama/gemma|gemma|gemma|C|1.0,5.0|128000,8192|-|-|Gemma is a family of lightweight, state-of-the-art open models built by Google D|N
ollama/qwen|qwen|qwen|C|1.0,5.0|128000,8192|-|-|Qwen 1.5 is a series of large language models by Alibaba Cloud spanning from 0.5|N
ollama/llama2|llama2|llama2|C|1.0,5.0|4096,4096|-|-|Llama 2 is a collection of foundation language models ranging from 7B to 70B par|N
ollama/qwen2|qwen2|qwen2|C|1.0,5.0|131072,8192|-|-|Qwen2 is a new series of large language models from Alibaba group|N
ollama/minicpm-v|minicpm-v|minicpm-v|C|1.0,5.0|128000,8192|V|-|A series of multimodal LLMs (MLLMs) designed for vision-language understanding.|N
ollama/codellama|codellama|codellama|C|1.0,5.0|16384,4096|-|-|A large language model that can use text prompts to generate and discuss code.|N
ollama/llama3.2-vision|llama3.2-vision|llama3.2-vision|C|1.0,5.0|131072,8192|V|-|Llama 3.2 Vision is a collection of instruction-tuned image reasoning generative|N
ollama/dolphin3|dolphin3|dolphin3|C|1.0,5.0|128000,8192|-|-|Dolphin 3.0 Llama 3.1 8B 🐬 is the next generation of the Dolphin series of instr|N
ollama/olmo2|olmo2|olmo2|C|1.0,5.0|128000,8192|-|-|OLMo 2 is a new family of 7B and 13B models trained on up to 5T tokens. These mo|N
ollama/tinyllama|tinyllama|tinyllama|C|1.0,5.0|128000,8192|-|-|The TinyLlama project is an open endeavor to train a compact 1.1B Llama model on|N
ollama/mistral-nemo|mistral-nemo|mistral-nemo|C|1.0,5.0|32768,8192|-|-|A state-of-the-art 12B model with 128k context length, built by Mistral AI in co|N
ollama/deepseek-v3|deepseek|deepseek-v3|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|A strong Mixture-of-Experts (MoE) language model with 671B total parameters with|N
ollama/bge-m3|bge-m3|bge-m3|C|1.0,5.0|128000,8192|-|-|BGE-M3 is a new model from BAAI distinguished for its versatility in Multi-Funct|N
ollama/llama3.3|llama3.3|llama3.3|C|1.0,5.0|131072,8192|-|-|New state of the art 70B model. Llama 3.3 70B offers similar performance compare|N
ollama/deepseek-coder|deepseek-coder|deepseek-coder|C|1.0,5.0|16384,4096|-|-|DeepSeek Coder is a capable coding model trained on two trillion code and natura|N
ollama/smollm2|smollm2|smollm2|C|1.0,5.0|128000,8192|-|-|SmolLM2 is a family of compact language models available in three size: 135M, 36|N
ollama/mistral-small|mistral-small|mistral-small|C|1.0,5.0|32768,8192|-|68.7,,44.8,45.3,,,,,,|Mistral Small 3 sets a new benchmark in the “small” Large Language Models catego|N
ollama/all-minilm|all-minilm|all-minilm|C|1.0,5.0|128000,8192|-|-|Embedding models on very large sentence level datasets.|N
ollama/llava-llama3|llava-llama3|llava-llama3|C|1.0,5.0|128000,8192|-|-|A LLaVA model fine-tuned from Llama 3 Instruct with better scores in several ben|N
ollama/qwq|qwq|qwq|C|1.0,5.0|128000,8192|-|-|QwQ is the reasoning model of the Qwen series.|N
ollama/codegemma|codegemma|codegemma|C|1.0,5.0|128000,8192|-|-|CodeGemma is a collection of powerful, lightweight models that can perform a var|N
ollama/falcon3|falcon3|falcon3|C|1.0,5.0|128000,8192|-|-|A family of efficient AI models under 10B parameters performant in science, math|N
ollama/granite3.1-moe|granite3.1-moe|granite3.1-moe|C|1.0,5.0|128000,8192|-|-|The IBM Granite 1B and 3B models are long-context mixture of experts (MoE) Grani|N
ollama/starcoder2|starcoder2|starcoder2|C|1.0,5.0|128000,8192|-|-|StarCoder2 is the next generation of transparently trained open code LLMs that c|N
ollama/mixtral|mixtral|mixtral|C|1.0,5.0|32768,8192|-|-|A set of Mixture of Experts (MoE) model with open weights by Mistral AI in 8x7b |N
ollama/snowflake-arctic-embed|snowflake-arctic-embed|snowflake-arctic-embed|C|1.0,5.0|128000,8192|-|-|A suite of text embedding models by Snowflake, optimized for performance.|N
ollama/orca-mini|orca-mini|orca-mini|C|1.0,5.0|128000,8192|-|-|A general-purpose model ranging from 3 billion parameters to 70 billion, suitabl|N
ollama/llama2-uncensored|llama2-uncensored|llama2-uncensored|C|1.0,5.0|4096,4096|-|-|Uncensored Llama 2 model by George Sung and Jarrad Hope.|N
ollama/deepseek-coder-v2|deepseek-coder|deepseek-coder-v2|C|1.0,5.0|16384,4096|V|-|An open-source Mixture-of-Experts code language model that achieves performance |N
ollama/qwen2.5vl|qwen2.5vl|qwen2.5vl|C|1.0,5.0|131072,8192|-|-|Flagship vision-language model of Qwen and also a significant leap from the prev|N
ollama/cogito|cogito|cogito|C|1.0,5.0|128000,8192|-|-|Cogito v1 Preview is a family of hybrid reasoning models by Deep Cogito that out|N
ollama/mistral-small3.2|mistral-small3.2|mistral-small3.2|C|1.0,5.0|32768,8192|-|-|An update to Mistral Small that improves on function calling, instruction follow|N
ollama/gemma3n|gemma3n|gemma3n|C|1.0,5.0|128000,8192|-|-|Gemma 3n models are designed for efficient execution on everyday devices such as|N
ollama/dolphin-phi|dolphin-phi|dolphin-phi|C|1.0,5.0|128000,8192|-|-|2.7B uncensored Dolphin model by Eric Hartford, based on the Phi language model |N
ollama/deepscaler|deepscaler|deepscaler|C|1.0,5.0|128000,8192|-|-|A fine-tuned version of Deepseek-R1-Distilled-Qwen-1.5B that surpasses the perfo|N
ollama/llama4|llama4|llama4|C|1.0,5.0|128000,8192|-|-|Meta's latest collection of multimodal models.|N
ollama/phi4-reasoning|phi4-reasoning|phi4-reasoning|C|1.0,5.0|128000,8192|K|-|Phi 4 reasoning and reasoning plus are 14-billion parameter open-weight reasonin|N
ollama/magistral|magistral|magistral|C|1.0,5.0|128000,8192|-|-|Magistral is a small, efficient reasoning model with 24B parameters.|N
ollama/phi|phi|phi|C|1.0,5.0|128000,8192|-|-|Phi-2: a 2.7B language model by Microsoft Research that demonstrates outstanding|N
ollama/dolphin-mixtral|dolphin-mixtral|dolphin-mixtral|C|1.0,5.0|128000,8192|-|-|Uncensored, 8x7b and 8x22b fine-tuned models based on the Mixtral mixture of exp|N
ollama/granite3.3|granite3.3|granite3.3|C|1.0,5.0|128000,8192|-|-|IBM Granite 2B and 8B models are 128K context length language models that have b|N
ollama/dolphin-llama3|dolphin-llama3|dolphin-llama3|C|1.0,5.0|128000,8192|-|-|Dolphin 2.9 is a new model with 8B and 70B sizes by Eric Hartford based on Llama|N
ollama/phi4-mini|phi4-mini|phi4-mini|C|1.0,5.0|128000,8192|-|-|Phi-4-mini brings significant enhancements in multilingual support, reasoning, a|N
ollama/openthinker|openthinker|openthinker|C|1.0,5.0|128000,8192|K|-|A fully open-source family of reasoning models built using a dataset derived by |N
ollama/smollm|smollm|smollm|C|1.0,5.0|128000,8192|-|-|🪐 A family of small models with 135M, 360M, and 1.7B parameters, trained on a ne|N
ollama/codestral|codestral|codestral|C|1.0,5.0|128000,8192|-|-|Codestral is Mistral AI’s first-ever code model designed for code generation tas|N
ollama/granite3.2-vision|granite3.2-vision|granite3.2-vision|C|1.0,5.0|128000,8192|V|-|A compact and efficient vision-language model, specifically designed for visual |N
ollama/devstral|devstral|devstral|C|1.0,5.0|128000,8192|-|-|Devstral: the best open source model for coding agents|N
ollama/dolphin-mistral|dolphin-mistral|dolphin-mistral|C|1.0,5.0|128000,8192|-|-|The uncensored Dolphin model based on Mistral that excels at coding tasks. Updat|N
ollama/wizardlm2|wizardlm2|wizardlm2|C|1.0,5.0|128000,8192|-|,,25.7,43.4,,,,,,|State of the art large language model from Microsoft AI with improved performanc|N
ollama/deepcoder|deepcoder|deepcoder|C|1.0,5.0|128000,8192|-|-|DeepCoder is a fully open-Source 14B coder model at O3-mini level, with a 1.5B v|N
ollama/moondream|moondream|moondream|C|1.0,5.0|128000,8192|-|-|moondream2 is a small vision language model designed to run efficiently on edge |N
ollama/command-r|command-r|command-r|C|1.0,5.0|131072,4096|-|-|Command R is a Large Language Model optimized for conversational interaction and|N
ollama/mistral-small3.1|mistral-small3.1|mistral-small3.1|C|1.0,5.0|32768,8192|-|-|Building upon Mistral Small 3, Mistral Small 3.1 (2503) adds state-of-the-art vi|N
ollama/granite-code|granite-code|granite-code|C|1.0,5.0|128000,8192|-|-|A family of open foundation models by IBM for Code Intelligence|N
ollama/granite4|granite4|granite4|C|1.0,5.0|128000,8192|-|-|Granite 4 features improved instruction following (IF) and tool-calling capabili|N
ollama/hermes3|hermes3|hermes3|C|1.0,5.0|128000,8192|-|-|Hermes 3 is the latest version of the flagship Hermes series of LLMs by Nous Res|N
ollama/phi3.5|phi3.5|phi3.5|C|1.0,5.0|131072,4096|-|-|A lightweight AI model with 3.8 billion parameters with performance overtaking s|N
ollama/bakllava|bakllava|bakllava|C|1.0,5.0|128000,8192|-|-|BakLLaVA is a multimodal model consisting of the Mistral 7B base model augmented|N
ollama/yi|yi|yi|C|1.0,5.0|128000,8192|-|-|Yi 1.5 is a high-performing, bilingual language model.|N
ollama/zephyr|zephyr|zephyr|C|1.0,5.0|128000,8192|-|-|Zephyr is a series of fine-tuned versions of the Mistral and Mixtral models that|N
ollama/exaone-deep|exaone-deep|exaone-deep|C|1.0,5.0|128000,8192|-|-|EXAONE Deep exhibits superior capabilities in various reasoning tasks including |N
ollama/mistral-large|mistral-large|mistral-large|C|1.0,5.0|32768,8192|-|80.0,,24.5,49.0,,,,,,|Mistral Large 2 is Mistral's new flagship model that is significantly more c|N
ollama/embeddinggemma|embeddinggemma|embeddinggemma|C|1.0,5.0|128000,8192|-|-|EmbeddingGemma is a 300M parameter embedding model from Google.|N
ollama/wizard-vicuna-uncensored|wizard-vicuna-uncensored|wizard-vicuna-uncensored|C|1.0,5.0|128000,8192|V|-|Wizard Vicuna Uncensored is a 7B, 13B, and 30B parameter model based on Llama 2 |N
ollama/opencoder|opencoder|opencoder|C|1.0,5.0|128000,8192|-|-|OpenCoder is an open and reproducible code LLM family which includes 1.5B and 8B|N
ollama/starcoder|starcoder|starcoder|C|1.0,5.0|128000,8192|-|-|StarCoder is a code generation model trained on 80+ programming languages.|N
ollama/nous-hermes|nous-hermes|nous-hermes|C|1.0,5.0|128000,8192|-|-|General use models based on Llama and Llama 2 from Nous Research.|N
ollama/deepseek-llm|deepseek-llm|deepseek-llm|C|1.0,5.0|128000,8192|-|-|An advanced language model crafted with 2 trillion bilingual tokens.|N
ollama/falcon|falcon|falcon|C|1.0,5.0|128000,8192|-|-|A large language model built by the Technology Innovation Institute (TII) for us|N
ollama/openchat|openchat|openchat|C|1.0,5.0|128000,8192|-|-|A family of open-source models trained on a wide variety of data, surpassing Cha|N
ollama/vicuna|vicuna|vicuna|C|1.0,5.0|128000,8192|-|-|General use chat model based on Llama and Llama 2 with 2K to 16K context sizes.|N
ollama/deepseek-v2|deepseek|deepseek-v2|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|A strong, economical, and efficient Mixture-of-Experts language model.|N
ollama/paraphrase-multilingual|paraphrase-multilingual|paraphrase-multilingual|C|1.0,5.0|128000,8192|-|-|Sentence-transformers model that can be used for tasks like clustering or semant|N
ollama/openhermes|openhermes|openhermes|C|1.0,5.0|128000,8192|-|-|OpenHermes 2.5 is a 7B model fine-tuned by Teknium on Mistral with fully open da|N
ollama/codeqwen|codeqwen|codeqwen|C|1.0,5.0|128000,8192|-|-|CodeQwen1.5 is a large language model pretrained on a large amount of code data.|N
ollama/qwen2-math|qwen2-math|qwen2-math|C|1.0,5.0|131072,8192|-|-|Qwen2 Math is a series of specialized math language models built upon the Qwen2 |N
ollama/qwen3-embedding|qwen3-embedding|qwen3-embedding|C|1.0,5.0|128000,8192|-|-|Building upon the foundational models of the Qwen3 series, Qwen3 Embedding provi|N
ollama/glm4|glm4|glm4|C|1.0,5.0|128000,8192|-|-|A strong multi-lingual general language model with competitive performance to Ll|N
ollama/aya|aya|aya|C|1.0,5.0|128000,8192|-|-|Aya 23, released by Cohere, is a new family of state-of-the-art, multilingual mo|N
ollama/llama2-chinese|llama2-chinese|llama2-chinese|C|1.0,5.0|4096,4096|-|-|Llama 2 based model fine tuned to improve Chinese dialogue ability.|N
ollama/command-r-plus|command-r-plus|command-r-plus|C|1.0,5.0|131072,4096|-|-|Command R+ is a powerful, scalable large language model purpose-built to exc|N
ollama/deepseek-v3.1|deepseek|deepseek-v3.1|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3.1-Terminus is a hybrid model that supports both thinking mode and no|N
ollama/codegeex4|codegeex4|codegeex4|C|1.0,5.0|128000,8192|-|-|A versatile model for AI software development scenarios, including code completi|N
ollama/mistral-openorca|mistral-openorca|mistral-openorca|C|1.0,5.0|32768,8192|-|-|Mistral OpenOrca is a 7 billion parameter model, fine-tuned on top of the Mistra|N
ollama/stable-code|stable-code|stable-code|C|1.0,5.0|128000,8192|-|-|Stable Code 3B is a coding model with instruct and code completion variants on p|N
ollama/qwen3-next|qwen3-next|qwen3-next|C|1.0,5.0|128000,8192|-|-|The first installment in the Qwen3-Next series with strong performance in terms |N
ollama/neural-chat|neural-chat|neural-chat|C|1.0,5.0|128000,8192|-|-|A fine-tuned model based on Mistral with good coverage of domain and language.|N
ollama/nous-hermes2|nous-hermes2|nous-hermes2|C|1.0,5.0|128000,8192|-|-|The powerful family of models by Nous Research that excels at scientific discuss|N
ollama/tinydolphin|tinydolphin|tinydolphin|C|1.0,5.0|128000,8192|-|-|An experimental 1.1B parameter model trained on the new Dolphin 2.8 dataset by E|N
ollama/wizardcoder|wizardcoder|wizardcoder|C|1.0,5.0|128000,8192|-|-|State-of-the-art code generation model|N
ollama/sqlcoder|sqlcoder|sqlcoder|C|1.0,5.0|128000,8192|-|-|SQLCoder is a code completion model fined-tuned on StarCoder for SQL generation |N
ollama/stablelm2|stablelm2|stablelm2|C|1.0,5.0|128000,8192|-|-|Stable LM 2 is a state-of-the-art 1.6B and 12B parameter language model trained |N
ollama/snowflake-arctic-embed2|snowflake-arctic-embed2|snowflake-arctic-embed2|C|1.0,5.0|128000,8192|-|-|Snowflake's frontier embedding model. Arctic Embed 2.0 adds multilingual sup|N
ollama/yi-coder|yi-coder|yi-coder|C|1.0,5.0|128000,8192|-|-|Yi-Coder is a series of open-source code language models that delivers state-of-|N
ollama/llama3-chatqa|llama3-chatqa|llama3-chatqa|C|1.0,5.0|8192,4096|-|-|A model from NVIDIA based on Llama 3 that excels at conversational question answ|N
ollama/granite3-dense|granite3-dense|granite3-dense|C|1.0,5.0|128000,8192|-|-|The IBM Granite 2B and 8B models are designed to support tool-based use cases an|N
ollama/granite3.1-dense|granite3.1-dense|granite3.1-dense|C|1.0,5.0|128000,8192|-|-|The IBM Granite 2B and 8B models are text-only dense LLMs trained on over 12 tri|N
ollama/granite3.2|granite3.2|granite3.2|C|1.0,5.0|128000,8192|-|-|Granite-3.2 is a family of long-context AI models from IBM Granite fine-tuned fo|N
ollama/wizard-math|wizard-math|wizard-math|C|1.0,5.0|128000,8192|-|-|Model focused on math and logic problems|N
ollama/dolphincoder|dolphincoder|dolphincoder|C|1.0,5.0|128000,8192|-|-|A 7B and 15B uncensored variant of the Dolphin model family that excels at codin|N
ollama/llama3-gradient|llama3-gradient|llama3-gradient|C|1.0,5.0|8192,4096|-|-|This model extends LLama-3 8B's context length from 8k to over 1m tokens.|N
ollama/samantha-mistral|samantha-mistral|samantha-mistral|C|1.0,5.0|128000,8192|-|-|A companion assistant trained in philosophy, psychology, and personal relationsh|N
ollama/internlm2|internlm2|internlm2|C|1.0,5.0|128000,8192|-|-|InternLM2.5 is a 7B parameter model tailored for practical scenarios with outsta|N
ollama/llama3-groq-tool-use|llama3-groq-tool-use|llama3-groq-tool-use|C|1.0,5.0|8192,4096|-|-|A series of models from Groq that represent a significant advancement in open-so|N
ollama/starling-lm|starling-lm|starling-lm|C|1.0,5.0|128000,8192|-|-|Starling is a large language model trained by reinforcement learning from AI fee|N
ollama/phind-codellama|phind-codellama|phind-codellama|C|1.0,5.0|128000,8192|-|-|Code generation model based on Code Llama.|N
ollama/solar|solar|solar|C|1.0,5.0|128000,8192|-|-|A compact, yet powerful 10.7B large language model designed for single-turn conv|N
ollama/xwinlm|xwinlm|xwinlm|C|1.0,5.0|128000,8192|-|-|Conversational model based on Llama 2 that performs competitively on various ben|N
ollama/llama-guard3|llama-guard3|llama-guard3|C|1.0,5.0|128000,8192|-|-|Llama Guard 3 is a series of models fine-tuned for content safety classification|N
ollama/r1-1776|r1-1776|r1-1776|C|1.0,5.0|128000,8192|-|-|A version of the DeepSeek-R1 model that has been post trained to provide unbiase|N
ollama/reflection|reflection|reflection|C|1.0,5.0|128000,8192|-|-|A high-performing model trained with a new technique called Reflection-tuning th|N
ollama/aya-expanse|aya-expanse|aya-expanse|C|1.0,5.0|128000,8192|-|-|Cohere For AI's language models trained to perform well across 23 different |N
ollama/yarn-llama2|yarn-llama2|yarn-llama2|C|1.0,5.0|128000,8192|-|-|An extension of Llama 2 that supports a context of up to 128k tokens.|N
ollama/exaone3.5|exaone3.5|exaone3.5|C|1.0,5.0|128000,8192|-|-|EXAONE 3.5 is a collection of instruction-tuned bilingual (English and Korean) g|N
ollama/granite3-moe|granite3-moe|granite3-moe|C|1.0,5.0|128000,8192|-|-|The IBM Granite 1B and 3B models are the first mixture of experts (MoE) Granite |N
ollama/bge-large|bge-large|bge-large|C|1.0,5.0|128000,8192|-|-|Embedding model from BAAI mapping texts to vectors.|N
ollama/nemotron-mini|nemotron-mini|nemotron-mini|C|1.0,5.0|128000,8192|-|-|A commercial-friendly small language model by NVIDIA optimized for roleplay, RAG|N
ollama/llava-phi3|llava-phi3|llava-phi3|C|1.0,5.0|128000,8192|-|-|A new small LLaVA model fine-tuned from Phi 3 Mini.|N
ollama/meditron|meditron|meditron|C|1.0,5.0|128000,8192|-|-|Open-source medical large language model adapted from Llama 2 to the medical dom|N
ollama/orca2|orca2|orca2|C|1.0,5.0|128000,8192|-|-|Orca 2 is built by Microsoft research, and are a fine-tuned version of Meta'|N
ollama/athene-v2|athene|athene-v2|C|1.0,5.0|128000,8192|V|-|Athene-V2 is a 72B parameter model which excels at code completion, mathematics,|N
ollama/granite-embedding|granite-embedding|granite-embedding|C|1.0,5.0|128000,8192|-|-|The IBM Granite Embedding 30M and 278M models models are text-only dense biencod|N
ollama/nemotron|nemotron|nemotron|C|1.0,5.0|128000,8192|-|-|Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA t|N
ollama/stable-beluga|stable-beluga|stable-beluga|C|1.0,5.0|128000,8192|-|-|Llama 2 based model fine tuned on an Orca-style dataset. Originally called Free |N
ollama/wizardlm-uncensored|wizardlm-uncensored|wizardlm-uncensored|C|1.0,5.0|128000,8192|-|-|Uncensored version of Wizard LM model|N
ollama/reader-lm|reader-lm|reader-lm|C|1.0,5.0|128000,8192|-|-|A series of models that convert HTML content to Markdown content, which is usefu|N
ollama/tulu3|tulu3|tulu3|C|1.0,5.0|128000,8192|-|-|Tülu 3 is a leading instruction following model family, offering fully open-sour|N
ollama/dbrx|dbrx|dbrx|C|1.0,5.0|128000,8192|-|,,11.7,32.9,,,,,,|DBRX is an open, general-purpose LLM created by Databricks.|N
ollama/shieldgemma|shieldgemma|shieldgemma|C|1.0,5.0|128000,8192|-|-|ShieldGemma is set of instruction tuned models for evaluating the safety of text|N
ollama/llama-pro|llama-pro|llama-pro|C|1.0,5.0|128000,8192|-|-|An expansion of Llama 2 that specializes in integrating both general language un|N
ollama/yarn-mistral|yarn-mistral|yarn-mistral|C|1.0,5.0|128000,8192|-|-|An extension of Mistral to support context windows of 64K or 128K.|N
ollama/wizardlm|wizardlm|wizardlm|C|1.0,5.0|128000,8192|-|-|General use model based on Llama 2.|N
ollama/nexusraven|nexusraven|nexusraven|C|1.0,5.0|128000,8192|-|-|Nexus Raven is a 13B instruction tuned model for function calling tasks.|N
ollama/medllama2|medllama2|medllama2|C|1.0,5.0|128000,8192|-|-|Fine-tuned Llama 2 model to answer medical questions based on an open source med|N
ollama/nous-hermes2-mixtral|nous-hermes2-mixtral|nous-hermes2-mixtral|C|1.0,5.0|128000,8192|-|-|The Nous Hermes 2 model from Nous Research, now trained over Mixtral.|N
ollama/smallthinker|smallthinker|smallthinker|C|1.0,5.0|128000,8192|K|-|A new small reasoning model fine-tuned from the Qwen 2.5 3B Instruct model.|N
ollama/mathstral|mathstral|mathstral|C|1.0,5.0|128000,8192|-|-|MathΣtral: a 7B model designed for math reasoning and scientific discovery by Mi|N
ollama/codeup|codeup|codeup|C|1.0,5.0|128000,8192|-|-|Great code generation model based on Llama2.|N
ollama/everythinglm|everythinglm|everythinglm|C|1.0,5.0|128000,8192|-|-|Uncensored Llama2 based model with support for a 16K context window.|N
ollama/phi4-mini-reasoning|phi4-mini-reasoning|phi4-mini-reasoning|C|1.0,5.0|128000,8192|K|-|Phi 4 mini reasoning is a lightweight open model that balances efficiency with a|N
ollama/command-r7b|command-r7b|command-r7b|C|1.0,5.0|131072,4096|-|-|The smallest model in Cohere's R series delivers top-tier speed, efficiency,|N
ollama/stablelm-zephyr|stablelm-zephyr|stablelm-zephyr|C|1.0,5.0|128000,8192|-|-|A lightweight chat model allowing accurate, and responsive output without requir|N
ollama/solar-pro|solar-pro|solar-pro|C|1.0,5.0|128000,8192|-|-|Solar Pro Preview: an advanced large language model (LLM) with 22 billion parame|N
ollama/falcon2|falcon2|falcon2|C|1.0,5.0|128000,8192|-|-|Falcon2 is an 11B parameters causal decoder-only model built by TII and trained |N
ollama/deepseek-v2.5|deepseek|deepseek-v2.5|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|An upgraded version of DeekSeek-V2 that integrates the general and coding abili|N
ollama/duckdb-nsql|duckdb-nsql|duckdb-nsql|C|1.0,5.0|128000,8192|-|-|7B parameter text-to-SQL model made by MotherDuck and Numbers Station.|N
ollama/magicoder|magicoder|magicoder|C|1.0,5.0|128000,8192|-|-|🎩 Magicoder is a family of 7B parameter models trained on 75K synthetic instruct|N
ollama/mistrallite|mistrallite|mistrallite|C|1.0,5.0|32768,8192|-|-|MistralLite is a fine-tuned model based on Mistral with enhanced capabilities of|N
ollama/bespoke-minicheck|bespoke-minicheck|bespoke-minicheck|C|1.0,5.0|128000,8192|-|-|A state-of-the-art fact-checking model developed by Bespoke Labs.|N
ollama/nuextract|nuextract|nuextract|C|1.0,5.0|128000,8192|-|-|A 3.8B model fine-tuned on a private high-quality synthetic dataset for informat|N
ollama/codebooga|codebooga|codebooga|C|1.0,5.0|128000,8192|-|-|A high-performing code instruct model created by merging two existing code model|N
ollama/wizard-vicuna|wizard-vicuna|wizard-vicuna|C|1.0,5.0|128000,8192|V|-|Wizard Vicuna is a 13B parameter model based on Llama 2 trained by MelodysDreamj|N
ollama/megadolphin|megadolphin|megadolphin|C|1.0,5.0|128000,8192|-|-|MegaDolphin-2.2-120b is a transformation of Dolphin-2.2-70b created by interleav|N
ollama/command-a|command-a|command-a|C|1.0,5.0|128000,8192|-|-|111 billion parameter model optimized for demanding enterprises that require fas|N
ollama/notux|notux|notux|C|1.0,5.0|128000,8192|-|-|A top-performing mixture of experts model, fine-tuned with high-quality data.|N
ollama/firefunction-v2|firefunction|firefunction-v2|C|1.0,5.0|128000,8192|V|-|An open weights function calling model based on Llama 3, competitive with GPT-4o|N
ollama/deepseek-ocr|deepseek-ocr|deepseek-ocr|C|1.0,5.0|128000,8192|-|-|DeepSeek-OCR is a vision-language model that can perform token-efficient OCR.|N
ollama/notus|notus|notus|C|1.0,5.0|128000,8192|-|-|A 7B chat model fine-tuned with high-quality data and based on Zephyr.|N
ollama/open-orca-platypus2|open-orca-platypus2|open-orca-platypus2|C|1.0,5.0|128000,8192|-|-|Merge of the Open Orca OpenChat model and the Garage-bAInd Platypus 2 model. Des|N
ollama/goliath|goliath|goliath|C|1.0,5.0|128000,8192|-|-|A language model created by combining two fine-tuned Llama 2 70B models into one|N
ollama/marco-o1|marco-o1|marco-o1|C|1.0,5.0|128000,8192|-|,,,1.2,,47.7,,,,|An open large reasoning model for real-world solutions by the Alibaba Internatio|N
ollama/sailor2|sailor2|sailor2|C|1.0,5.0|128000,8192|-|-|Sailor2 are multilingual language models made for South-East Asia. Available in |N
ollama/granite3-guardian|granite3-guardian|granite3-guardian|C|1.0,5.0|128000,8192|-|-|The IBM Granite Guardian 3.0 2B and 8B models are designed to detect risks in pr|N
ollama/gemini-3-pro-preview|gemini-3-pro-preview|gemini-3-pro-preview|C|1.0,5.0|128000,8192|-|,,,92.6,,,,,,|Google's most intelligent model with SOTA reasoning and multimodal understan|N
ollama/alfred|alfred|alfred|C|1.0,5.0|128000,8192|-|-|A robust conversational model designed to be used for both chat and instruct use|N
ollama/command-r7b-arabic|command-r7b-arabic|command-r7b-arabic|C|1.0,5.0|131072,4096|-|-|A new state-of-the-art version of the lightweight Command R7B model that excels |N
ollama/glm-4.6|glm-4.6|glm-4.6|C|1.0,5.0|128000,8192|-|-|Advanced agentic, reasoning and coding capabilities.|N
ollama/gpt-oss-safeguard|gpt-oss-safeguard|gpt-oss-safeguard|C|1.0,5.0|128000,8192|-|-|gpt-oss-safeguard-20b and gpt-oss-safeguard-120b are safety reasoning models bui|N
ollama/minimax-m2|minimax-m2|minimax-m2|C|1.0,5.0|128000,8192|-|-|MiniMax M2 is a high-efficiency large language model built for coding and agenti|N
ollama/cogito-2.1|cogito-2.1|cogito-2.1|C|1.0,5.0|128000,8192|-|-|The Cogito v2.1 LLMs are instruction tuned generative models. All models are rel|N
ollama/olmo-3.1|olmo-3.1|olmo-3.1|C|1.0,5.0|128000,8192|-|-|Olmo is a series of Open language models designed to enable the science of langu|N
ollama/rnj-1|rnj-1|rnj-1|C|1.0,5.0|128000,8192|-|-|Rnj-1 is a family of 8B parameter open-weight, dense models trained from scratch|N
ollama/kimi-k2|kimi-k2|kimi-k2|C|1.0,5.0|128000,8192|-|-|A state-of-the-art mixture-of-experts (MoE) language model. Kimi K2-Instruct-090|N
ollama/kimi-k2-thinking|kimi-k2-thinking|kimi-k2-thinking|C|1.0,5.0|128000,8192|K|-|Kimi K2 Thinking, Moonshot AI's best open-source thinking model.|N
# =============================================================================
# OPENAI - Direct API (98 models)
# =============================================================================
openai/gpt-4-0613|gpt-4-0613|gpt-4-0613|C|1.0,5.0|8192,8192|VT|86.4,,23.0,30.7,,,,,,|gpt-4-0613 model|N
openai/gpt-4|gpt-4|gpt-4|C|1.0,5.0|8192,8192|VT|86.4,,23.0,30.7,,,,,,|gpt-4 model|N
openai/gpt-3.5-turbo|gpt-3.5-turbo|gpt-3.5-turbo|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|gpt-3.5-turbo model|Y
openai/chatgpt-image-latest|chatgpt-image-latest|chatgpt-image-latest|C|1.0,5.0|128000,8192|VT|-|chatgpt-image-latest model|N
openai/gpt-4o-mini-tts-2025-03-20|gpt-4o-mini-tts|gpt-4o-mini-tts-2025-03-20|C|0.6,0.015|128000,16384|VT|-|gpt-4o-mini-tts-2025-03-20 model|Y
openai/gpt-4o-mini-tts-2025-12-15|gpt-4o-mini-tts|gpt-4o-mini-tts-2025-12-15|C|0.6,0.015|128000,16384|VT|-|gpt-4o-mini-tts-2025-12-15 model|Y
openai/gpt-realtime-mini-2025-12-15|gpt-realtime-mini|gpt-realtime-mini-2025-12-15|C|0.6,2.4|128000,4096|VT|-|gpt-realtime-mini-2025-12-15 model|Y
openai/davinci-002|davinci-002|davinci-002|C|1.0,5.0|128000,8192|VT|-|davinci-002 model|N
openai/babbage-002|babbage-002|babbage-002|C|1.0,5.0|128000,8192|VT|-|babbage-002 model|Y
openai/gpt-3.5-turbo-instruct|gpt-3.5-turbo-instruct|gpt-3.5-turbo-instruct|C|1.5,2.0|16385,4096|VT|71.4,,15.9,27.2,,,,,,|gpt-3.5-turbo-instruct model|Y
openai/gpt-3.5-turbo-instruct-0914|gpt-3.5-turbo-instruct-0914|gpt-3.5-turbo-instruct-0914|C|1.5,2.0|16385,4096|VT|71.4,,15.9,27.2,,,,,,|gpt-3.5-turbo-instruct-0914 model|Y
openai/dall-e-3|dall-e-3|dall-e-3|C|1.0,5.0|128000,8192|VT|-|dall-e-3 model|N
openai/dall-e-2|dall-e-2|dall-e-2|C|1.0,5.0|128000,8192|VT|-|dall-e-2 model|N
openai/gpt-4-1106-preview|gpt-4-1106-preview|gpt-4-1106-preview|C|10.0,30.0|8192,8192|VT|84.7,83.7,40.0,42.4,,,,,,|gpt-4-1106-preview model|N
openai/gpt-3.5-turbo-1106|gpt-3.5-turbo-1106|gpt-3.5-turbo-1106|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|gpt-3.5-turbo-1106 model|Y
openai/tts-1-hd|tts-1-hd|tts-1-hd|C|1.0,5.0|128000,8192|VT|-|tts-1-hd model|N
openai/tts-1-1106|tts-1-1106|tts-1-1106|C|1.0,5.0|128000,8192|VT|-|tts-1-1106 model|N
openai/tts-1-hd-1106|tts-1-hd-1106|tts-1-hd-1106|C|1.0,5.0|128000,8192|VT|-|tts-1-hd-1106 model|N
openai/gpt-4-0125-preview|gpt-4-0125-preview|gpt-4-0125-preview|C|10.0,30.0|8192,8192|VT|85.4,86.6,35.4,42.3,,,,,,|gpt-4-0125-preview model|N
openai/gpt-4-turbo-preview|gpt-4-turbo-preview|gpt-4-turbo-preview|C|1.0,5.0|128000,4096|VT|86.7,88.2,46.7,46.6,,,,,,|gpt-4-turbo-preview model|N
openai/gpt-3.5-turbo-0125|gpt-3.5-turbo-0125|gpt-3.5-turbo-0125|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|gpt-3.5-turbo-0125 model|Y
openai/gpt-4-turbo|gpt-4-turbo|gpt-4-turbo|C|10.0,30.0|128000,4096|VT|86.7,88.2,46.7,46.6,,,,,,|gpt-4-turbo model|N
openai/gpt-4-turbo-2024-04-09|gpt-4-turbo|gpt-4-turbo-2024-04-09|C|10.0,30.0|128000,4096|VT|86.7,88.2,46.7,46.6,,,,,,|gpt-4-turbo-2024-04-09 model|N
openai/gpt-4o|gpt-4o|gpt-4o|C|1.25,5.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|gpt-4o model|Y
openai/gpt-4o-2024-05-13|gpt-4o|gpt-4o-2024-05-13|C|1.25,5.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|gpt-4o-2024-05-13 model|Y
openai/gpt-4o-mini-2024-07-18|gpt-4o-mini|gpt-4o-mini-2024-07-18|C|0.075,0.3|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|gpt-4o-mini-2024-07-18 model|Y
openai/gpt-4o-mini|gpt-4o-mini|gpt-4o-mini|C|0.075,0.3|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|gpt-4o-mini model|Y
openai/gpt-4o-2024-08-06|gpt-4o|gpt-4o-2024-08-06|C|1.25,5.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|gpt-4o-2024-08-06 model|Y
openai/chatgpt-4o-latest|chatgpt-4o-latest|chatgpt-4o-latest|C|5.0,15.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|chatgpt-4o-latest model|N
openai/gpt-4o-realtime-preview|gpt-4o-realtime-preview|gpt-4o-realtime-preview|C|5.0,20.0|128000,16384|VT|-|gpt-4o-realtime-preview model|N
openai/omni-moderation-latest|omni-moderation-latest|omni-moderation-latest|C|1.0,5.0|128000,8192|VT|-|omni-moderation-latest model|N
openai/omni-moderation-2024-09-26|omni-moderation|omni-moderation-2024-09-26|C|1.0,5.0|128000,8192|VT|-|omni-moderation-2024-09-26 model|N
openai/gpt-4o-realtime-preview-2024-12-17|gpt-4o-realtime-preview|gpt-4o-realtime-preview-2024-12-17|C|5.0,20.0|128000,16384|VT|-|gpt-4o-realtime-preview-2024-12-17 model|N
openai/gpt-4o-mini-realtime-preview-2024-12-17|gpt-4o-mini-realtime-preview|gpt-4o-mini-realtime-preview-2024-12-17|C|0.6,2.4|128000,16384|VT|-|gpt-4o-mini-realtime-preview-2024-12-17 model|Y
openai/o1-2024-12-17|o1|o1-2024-12-17|C|7.5,30.0|200000,100000|VTK|90.8,92.4,81.6,78.1,,,,,,|o1-2024-12-17 model|N
openai/o1|o1|o1|C|7.5,30.0|200000,100000|VTK|90.8,92.4,81.6,78.1,,,,,,|o1 model|N
openai/gpt-4o-mini-realtime-preview|gpt-4o-mini-realtime-preview|gpt-4o-mini-realtime-preview|C|0.6,2.4|128000,16384|VT|-|gpt-4o-mini-realtime-preview model|Y
openai/o3-mini|o3-mini|o3-mini|C|0.55,2.2|200000,100000|VTK|85.9,96.3,,76.7,49.3,,,,,|o3-mini model|Y
openai/o3-mini-2025-01-31|o3-mini|o3-mini-2025-01-31|C|0.55,2.2|200000,100000|VTK|85.9,96.3,,87.7,69.1,,,,,|o3-mini-2025-01-31 model|Y
openai/gpt-4o-2024-11-20|gpt-4o|gpt-4o-2024-11-20|C|1.25,5.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|gpt-4o-2024-11-20 model|Y
openai/gpt-4o-search-preview-2025-03-11|gpt-4o-search-preview|gpt-4o-search-preview-2025-03-11|C|2.5,10.0|128000,16384|VT|-|gpt-4o-search-preview-2025-03-11 model|Y
openai/gpt-4o-search-preview|gpt-4o-search-preview|gpt-4o-search-preview|C|2.5,10.0|128000,16384|VT|-|gpt-4o-search-preview model|Y
openai/gpt-4o-mini-search-preview-2025-03-11|gpt-4o-mini-search-preview|gpt-4o-mini-search-preview-2025-03-11|C|0.15,0.6|128000,16384|VT|-|gpt-4o-mini-search-preview-2025-03-11 model|Y
openai/gpt-4o-mini-search-preview|gpt-4o-mini-search-preview|gpt-4o-mini-search-preview|C|0.15,0.6|128000,16384|VT|-|gpt-4o-mini-search-preview model|Y
openai/gpt-4o-transcribe|gpt-4o-transcribe|gpt-4o-transcribe|C|1.0,5.0|128000,16384|VT|-|gpt-4o-transcribe model|N
openai/gpt-4o-mini-transcribe|gpt-4o-mini-transcribe|gpt-4o-mini-transcribe|C|1.0,5.0|128000,16384|VT|-|gpt-4o-mini-transcribe model|N
openai/o1-pro-2025-03-19|o1-pro|o1-pro-2025-03-19|C|75.0,300.0|200000,100000|VTK|90.8,92.4,,78.1,,,,,,|o1-pro-2025-03-19 model|N
openai/o1-pro|o1-pro|o1-pro|C|75.0,300.0|200000,100000|VTK|-|o1-pro model|N
openai/gpt-4o-mini-tts|gpt-4o-mini-tts|gpt-4o-mini-tts|C|0.6,0.015|128000,16384|VT|-|gpt-4o-mini-tts model|Y
openai/o3-2025-04-16|o3|o3-2025-04-16|C|1.0,4.0|200000,100000|VTK|92.9,87.4,,87.7,69.1,,,,,|o3-2025-04-16 model|Y
openai/o4-mini-2025-04-16|o4-mini|o4-mini-2025-04-16|C|0.55,2.2|200000,100000|VT|90.0,97.3,,81.1,68.1,,,,,|o4-mini-2025-04-16 model|Y
openai/o3|o3|o3|C|1.0,4.0|200000,100000|VTK|92.9,87.4,,87.7,69.1,,,,,|o3 model|Y
openai/o4-mini|o4-mini|o4-mini|C|0.55,2.2|200000,100000|VT|90.0,97.3,,81.1,68.1,,,,,|o4-mini model|Y
openai/gpt-4.1-2025-04-14|gpt-4.1|gpt-4.1-2025-04-14|C|1.0,4.0|8192,8192|VT|90.2,94.5,83.0,66.9,41.0,,,,,|gpt-4.1-2025-04-14 model|Y
openai/gpt-4.1|gpt-4.1|gpt-4.1|C|1.0,4.0|1047576,32768|VT|90.2,94.5,83.0,66.9,41.0,,,,,|gpt-4.1 model|Y
openai/gpt-4.1-mini-2025-04-14|gpt-4.1-mini|gpt-4.1-mini-2025-04-14|C|0.2,0.8|8192,8192|VT|87.5,93.8,87.3,65.8,32.8,,,,,|gpt-4.1-mini-2025-04-14 model|Y
openai/gpt-4.1-mini|gpt-4.1-mini|gpt-4.1-mini|C|0.2,0.8|1047576,32768|VT|87.5,93.8,87.3,65.8,32.8,,,,,|gpt-4.1-mini model|Y
openai/gpt-4.1-nano-2025-04-14|gpt-4.1-nano|gpt-4.1-nano-2025-04-14|C|0.05,0.2|8192,8192|VT|80.1,87.0,70.0,48.9,,,,,,|gpt-4.1-nano-2025-04-14 model|Y
openai/gpt-4.1-nano|gpt-4.1-nano|gpt-4.1-nano|C|0.05,0.2|1047576,32768|VT|80.1,87.0,70.0,48.9,,,,,,|gpt-4.1-nano model|Y
openai/gpt-image-1|gpt-image-1|gpt-image-1|C|1.0,5.0|128000,8192|VT|-|gpt-image-1 model|N
openai/gpt-4o-realtime-preview-2025-06-03|gpt-4o-realtime-preview|gpt-4o-realtime-preview-2025-06-03|C|5.0,20.0|128000,16384|VT|-|gpt-4o-realtime-preview-2025-06-03 model|N
openai/gpt-4o-transcribe-diarize|gpt-4o-transcribe-diarize|gpt-4o-transcribe-diarize|C|1.0,5.0|128000,16384|VT|-|gpt-4o-transcribe-diarize model|N
openai/gpt-5-chat-latest|gpt-5-chat-latest|gpt-5-chat-latest|C|0.625,5.0|256000,32768|VT|-|gpt-5-chat-latest model|Y
openai/gpt-5-2025-08-07|gpt-5|gpt-5-2025-08-07|C|0.625,5.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-2025-08-07 model|Y
openai/gpt-5|gpt-5|gpt-5|C|0.625,5.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5 model|Y
openai/gpt-5-mini-2025-08-07|gpt-5-mini|gpt-5-mini-2025-08-07|C|0.125,1.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-mini-2025-08-07 model|Y
openai/gpt-5-mini|gpt-5-mini|gpt-5-mini|C|0.125,1.0|256000,32768|VT|-|gpt-5-mini model|Y
openai/gpt-5-nano-2025-08-07|gpt-5-nano|gpt-5-nano-2025-08-07|C|0.025,0.2|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-nano-2025-08-07 model|Y
openai/gpt-5-nano|gpt-5-nano|gpt-5-nano|C|0.025,0.2|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-nano model|Y
openai/gpt-realtime|gpt-realtime|gpt-realtime|C|4.0,16.0|128000,8192|VT|-|gpt-realtime model|Y
openai/gpt-realtime-2025-08-28|gpt-realtime|gpt-realtime-2025-08-28|C|4.0,16.0|128000,8192|VT|-|gpt-realtime-2025-08-28 model|Y
openai/gpt-5-codex|gpt-5-codex|gpt-5-codex|C|1.25,10.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-codex model|Y
openai/gpt-image-1-mini|gpt-image-1-mini|gpt-image-1-mini|C|1.0,5.0|128000,8192|VT|-|gpt-image-1-mini model|N
openai/gpt-5-pro-2025-10-06|gpt-5-pro|gpt-5-pro-2025-10-06|C|7.5,60.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-pro-2025-10-06 model|N
openai/gpt-5-pro|gpt-5-pro|gpt-5-pro|C|7.5,60.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-pro model|N
openai/gpt-5-search-api|gpt-5-search-api|gpt-5-search-api|C|1.25,10.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-search-api model|Y
openai/gpt-realtime-mini|gpt-realtime-mini|gpt-realtime-mini|C|0.6,2.4|128000,4096|VT|-|gpt-realtime-mini model|Y
openai/gpt-realtime-mini-2025-10-06|gpt-realtime-mini|gpt-realtime-mini-2025-10-06|C|0.6,2.4|128000,4096|VT|-|gpt-realtime-mini-2025-10-06 model|Y
openai/sora-2|sora-2|sora-2|C|1.0,5.0|128000,8192|VT|-|sora-2 model|N
openai/sora-2-pro|sora-2-pro|sora-2-pro|C|1.0,5.0|128000,8192|VT|-|sora-2-pro model|N
openai/gpt-5-search-api-2025-10-14|gpt-5-search-api|gpt-5-search-api-2025-10-14|C|1.25,10.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5-search-api-2025-10-14 model|Y
openai/gpt-5.1-chat-latest|gpt-5.1-chat-latest|gpt-5.1-chat-latest|C|0.625,5.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1-chat-latest model|Y
openai/gpt-5.1-2025-11-13|gpt-5.1|gpt-5.1-2025-11-13|C|0.625,5.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1-2025-11-13 model|Y
openai/gpt-5.1|gpt-5.1|gpt-5.1|C|0.625,5.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1 model|Y
openai/gpt-5.1-codex|gpt-5.1-codex|gpt-5.1-codex|C|1.25,10.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1-codex model|Y
openai/gpt-5.1-codex-mini|gpt-5.1-codex-mini|gpt-5.1-codex-mini|C|0.25,2.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1-codex-mini model|Y
openai/gpt-5.1-codex-max|gpt-5.1-codex-max|gpt-5.1-codex-max|C|1.25,10.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.1-codex-max model|Y
openai/gpt-image-1.5|gpt-image-1.5|gpt-image-1.5|C|1.0,5.0|128000,8192|VT|-|gpt-image-1.5 model|N
openai/gpt-5.2-2025-12-11|gpt-5.2|gpt-5.2-2025-12-11|C|0.875,7.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.2-2025-12-11 model|Y
openai/gpt-5.2|gpt-5.2|gpt-5.2|C|0.875,7.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.2 model|Y
openai/gpt-5.2-pro-2025-12-11|gpt-5.2-pro|gpt-5.2-pro-2025-12-11|C|10.5,84.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.2-pro-2025-12-11 model|N
openai/gpt-5.2-pro|gpt-5.2-pro|gpt-5.2-pro|C|10.5,84.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.2-pro model|N
openai/gpt-5.2-chat-latest|gpt-5.2-chat-latest|gpt-5.2-chat-latest|C|0.875,7.0|256000,32768|VT|92.3,,,84.2,76.3,,,,,|gpt-5.2-chat-latest model|Y
openai/gpt-4o-mini-transcribe-2025-12-15|gpt-4o-mini-transcribe|gpt-4o-mini-transcribe-2025-12-15|C|1.0,5.0|128000,16384|VT|-|gpt-4o-mini-transcribe-2025-12-15 model|N
openai/gpt-4o-mini-transcribe-2025-03-20|gpt-4o-mini-transcribe|gpt-4o-mini-transcribe-2025-03-20|C|1.0,5.0|128000,16384|VT|-|gpt-4o-mini-transcribe-2025-03-20 model|N
openai/gpt-3.5-turbo-16k|gpt-3.5-turbo-16k|gpt-3.5-turbo-16k|C|1.0,5.0|16385,4096|VT|-|gpt-3.5-turbo-16k model|N
openai/tts-1|tts-1|tts-1|C|1.0,5.0|128000,8192|VT|-|tts-1 model|N
openai/whisper-1|whisper-1|whisper-1|C|1.0,5.0|128000,8192|VT|-|whisper-1 model|N
# =============================================================================
# OPENROUTER - Direct API (349 models)
# =============================================================================
openrouter/molmo-2-8b:free|molmo-2-8b:free|AllenAI: Molmo2 8B (free)|C|1.0,5.0|36864,36864|VT|-|Molmo2-8B is an open vision-language model developed by the Allen Institute for |N
openrouter/olmo-3.1-32b-instruct|olmo-3.1-32b-instruct|AllenAI: Olmo 3.1 32B Instruct|C|0.19999999999999998,0.6|65536,None|VT|-|Olmo 3.1 32B Instruct is a large-scale, 32-billion-parameter instruction-tuned l|Y
openrouter/seed-1.6-flash|seed-1.6-flash|ByteDance Seed: Seed 1.6 Flash|C|0.075,0.3|262144,16384|VT|-|Seed 1.6 Flash is an ultra-fast multimodal deep thinking model by ByteDance Seed|Y
openrouter/seed-1.6|seed-1.6|ByteDance Seed: Seed 1.6|C|0.25,2.0|262144,32768|VT|-|Seed 1.6 is a general-purpose model released by the ByteDance Seed team. It inco|Y
openrouter/minimax-m2.1|minimax-m2.1|MiniMax: MiniMax M2.1|C|0.28,1.2|196608,None|VT|-|MiniMax-M2.1 is a lightweight, state-of-the-art large language model optimized f|Y
openrouter/glm-4.7|glm-4.7|Z.AI: GLM 4.7|C|0.39999999999999997,1.5|202752,65535|VT|-|GLM-4.7 is Z.AI’s latest flagship model, featuring upgrades in two key areas: en|Y
openrouter/gemini-3-flash-preview|gemini-3-flash-preview|Google: Gemini 3 Flash Preview|C|0.5,3.0|1048576,65535|VT|,,,83.2,,,,,,|Gemini 3 Flash Preview is a high speed, high value thinking model designed for a|Y
openrouter/mistral-small-creative|mistral-small-creative|Mistral: Mistral Small Creative|C|0.09999999999999999,0.3|32768,None|VT|-|Mistral Small Creative is an experimental small model designed for creative writ|Y
openrouter/olmo-3.1-32b-think|olmo-3.1-32b-think|AllenAI: Olmo 3.1 32B Think|C|0.15,0.5|65536,65536|VTK|-|Olmo 3.1 32B Think is a large-scale, 32-billion-parameter model designed for dee|Y
openrouter/mimo-v2-flash:free|mimo-v2-flash:free|Xiaomi: MiMo-V2-Flash (free)|C|1.0,5.0|262144,65536|VT|-|MiMo-V2-Flash is an open-source foundation language model developed by Xiaomi. I|N
openrouter/nemotron-3-nano-30b-a3b:free|nemotron-3-nano-30b-a3b:free|NVIDIA: Nemotron 3 Nano 30B A3B (free)|C|1.0,5.0|256000,None|VT|-|NVIDIA Nemotron 3 Nano 30B A3B is a small language MoE model with highest comput|N
openrouter/nemotron-3-nano-30b-a3b|nemotron-3-nano-30b-a3b|NVIDIA: Nemotron 3 Nano 30B A3B|C|0.06,0.24|262144,262144|VT|-|NVIDIA Nemotron 3 Nano 30B A3B is a small language MoE model with highest comput|Y
openrouter/gpt-5.2-chat|gpt-5.2-chat|OpenAI: GPT-5.2 Chat|C|1.75,14.0|128000,16384|VT|-|GPT-5.2 Chat (AKA Instant) is the fast, lightweight member of the 5.2 family, op|Y
openrouter/gpt-5.2-pro|gpt-5.2-pro|OpenAI: GPT-5.2 Pro|C|21.0,168.0|400000,128000|VT|-|GPT-5.2 Pro is OpenAI’s most advanced model, offering major improvements in agen|N
openrouter/gpt-5.2|gpt-5.2|OpenAI: GPT-5.2|C|1.75,14.0|400000,128000|VT|-|GPT-5.2 is the latest frontier-grade model in the GPT-5 series, offering stronge|Y
openrouter/devstral-2512:free|devstral-2512:free|Mistral: Devstral 2 2512 (free)|C|1.0,5.0|262144,None|VT|-|Devstral 2 is a state-of-the-art open-source model by Mistral AI specializing in|N
openrouter/devstral-2512|devstral-2512|Mistral: Devstral 2 2512|C|0.049999999999999996,0.22|262144,65536|VT|-|Devstral 2 is a state-of-the-art open-source model by Mistral AI specializing in|Y
openrouter/relace-search|relace-search|Relace: Relace Search|C|1.0,3.0|256000,128000|VT|-|The relace-search model uses 4-12 `view_file` and `grep` tools in parallel to ex|Y
openrouter/glm-4.6v|glm-4.6v|Z.AI: GLM 4.6V|C|0.3,0.8999999999999999|131072,131072|VT|-|GLM-4.6V is a large multimodal model designed for high-fidelity visual understan|Y
openrouter/deepseek-v3.1-nex-n1|deepseek-v3.1-nex-n1|Nex AGI: DeepSeek V3.1 Nex N1|C|0.27,1.0|131072,163840|VT|-|DeepSeek V3.1 Nex-N1 is the flagship release of the Nex-N1 series — a post-train|Y
openrouter/rnj-1-instruct|rnj-1-instruct|EssentialAI: Rnj 1 Instruct|C|0.15,0.15|32768,None|VT|-|Rnj-1 is an 8B-parameter, dense, open-weight model family developed by Essential|Y
openrouter/bodybuilder|bodybuilder|Body Builder (beta)|C|-1000000.0,-1000000.0|128000,None|VT|-|Transform your natural language requests into structured OpenRouter API request |Y
openrouter/gpt-5.1-codex-max|gpt-5.1-codex-max|OpenAI: GPT-5.1-Codex-Max|C|1.25,10.0|400000,128000|VT|-|GPT-5.1-Codex-Max is OpenAI’s latest agentic coding model, designed for long-run|Y
openrouter/nova-2-lite-v1|nova-2-lite|Amazon: Nova 2 Lite|C|0.3,2.5|1000000,65535|VT|-|Nova 2 Lite is a fast, cost-effective reasoning model for everyday workloads tha|Y
openrouter/ministral-14b-2512|ministral-14b-2512|Mistral: Ministral 3 14B 2512|C|0.19999999999999998,0.19999999999999998|262144,None|VT|-|The largest model in the Ministral 3 family, Ministral 3 14B offers frontier cap|Y
openrouter/ministral-8b-2512|ministral-8b-2512|Mistral: Ministral 3 8B 2512|C|0.15,0.15|262144,None|VT|,,14.9,27.1,,,,,,|A balanced model in the Ministral 3 family, Ministral 3 8B is a powerful, effici|Y
openrouter/ministral-3b-2512|ministral-3b-2512|Mistral: Ministral 3 3B 2512|C|0.09999999999999999,0.09999999999999999|131072,None|VT|,,14.4,25.3,,,,,,|The smallest model in the Ministral 3 family, Ministral 3 3B is a powerful, effi|Y
openrouter/mistral-large-2512|mistral-large-2512|Mistral: Mistral Large 3 2512|C|0.5,1.5|262144,None|VT|80.0,,24.5,49.0,,,,,,|Mistral Large 3 2512 is Mistral’s most capable model to date, featuring a sparse|Y
openrouter/trinity-mini:free|trinity-mini:free|Arcee AI: Trinity Mini (free)|C|1.0,5.0|131072,None|VT|-|Trinity Mini is a 26B-parameter (3B active) sparse mixture-of-experts language m|N
openrouter/trinity-mini|trinity-mini|Arcee AI: Trinity Mini|C|0.045,0.15|131072,131072|VT|-|Trinity Mini is a 26B-parameter (3B active) sparse mixture-of-experts language m|Y
openrouter/deepseek-v3.2-speciale|deepseek-v3.2-speciale|DeepSeek: DeepSeek V3.2 Speciale|C|0.27,0.41|163840,65536|VT|-|DeepSeek-V3.2-Speciale is a high-compute variant of DeepSeek-V3.2 optimized for |Y
openrouter/deepseek-v3.2|deepseek|DeepSeek: DeepSeek V3.2|C|0.25,0.38|163840,65536|VT|-|DeepSeek-V3.2 is a large language model designed to harmonize high computational|Y
openrouter/intellect-3|intellect-3|Prime Intellect: INTELLECT-3|C|0.19999999999999998,1.1|131072,131072|VT|-|INTELLECT-3 is a 106B-parameter Mixture-of-Experts model (12B active) post-train|Y
openrouter/tng-r1t-chimera:free|tng-r1t-chimera:free|TNG: R1T Chimera (free)|C|1.0,5.0|163840,65536|VT|-|TNG-R1T-Chimera is an experimental LLM with a faible for creative storytelling a|N
openrouter/tng-r1t-chimera|tng-r1t-chimera|TNG: R1T Chimera|C|0.25,0.85|163840,65536|VT|-|TNG-R1T-Chimera is an experimental LLM with a faible for creative storytelling a|Y
openrouter/claude-opus-4.5|claude-opus-4.5|Anthropic: Claude Opus 4.5|C|5.0,25.0|200000,32000|VT|,,,80.7,,,,,,|Claude Opus 4.5 is Anthropic’s frontier reasoning model optimized for complex so|N
openrouter/olmo-3-32b-think|olmo-3-32b-think|AllenAI: Olmo 3 32B Think|C|0.15,0.5|65536,65536|VTK|-|Olmo 3 32B Think is a large-scale, 32-billion-parameter model purpose-built for |Y
openrouter/olmo-3-7b-instruct|olmo-3-7b-instruct|AllenAI: Olmo 3 7B Instruct|C|0.09999999999999999,0.19999999999999998|65536,65536|VT|-|Olmo 3 7B Instruct is a supervised instruction-fine-tuned variant of the Olmo 3 |Y
openrouter/olmo-3-7b-think|olmo-3-7b-think|AllenAI: Olmo 3 7B Think|C|0.12,0.19999999999999998|65536,65536|VTK|-|Olmo 3 7B Think is a research-oriented language model in the Olmo family designe|Y
openrouter/gemini-3-pro-image-preview|gemini-3-pro-image-preview|Google: Nano Banana Pro (Gemini 3 Pro Image Preview)|C|2.0,12.0|65536,32768|VT|-|Nano Banana Pro is Google’s most advanced image-generation and editing model, bu|Y
openrouter/grok-4.1-fast|grok-4.1-fast|xAI: Grok 4.1 Fast|C|0.19999999999999998,0.5|2000000,30000|VT|-|Grok 4.1 Fast is xAI's best agentic tool calling model that shines in real-world|Y
openrouter/gemini-3-pro-preview|gemini-3-pro-preview|Google: Gemini 3 Pro Preview|C|2.0,12.0|1048576,65536|VT|,,,92.6,,,,,,|Gemini 3 Pro is Google’s flagship frontier model for high-precision multimodal r|Y
openrouter/cogito-v2.1-671b|cogito-v2.1-671b|Deep Cogito: Cogito v2.1 671B|C|1.25,1.25|128000,None|VT|-|Cogito v2.1 671B MoE represents one of the strongest open models globally, match|Y
openrouter/gpt-5.1|gpt-5.1|OpenAI: GPT-5.1|C|1.25,10.0|400000,128000|VT|-|GPT-5.1 is the latest frontier-grade model in the GPT-5 series, offering stronge|Y
openrouter/gpt-5.1-chat|gpt-5.1-chat|OpenAI: GPT-5.1 Chat|C|1.25,10.0|128000,16384|VT|-|GPT-5.1 Chat (AKA Instant is the fast, lightweight member of the 5.1 family, opt|Y
openrouter/gpt-5.1-codex|gpt-5.1-codex|OpenAI: GPT-5.1-Codex|C|1.25,10.0|400000,128000|VT|-|GPT-5.1-Codex is a specialized version of GPT-5.1 optimized for software enginee|Y
openrouter/gpt-5.1-codex-mini|gpt-5.1-codex-mini|OpenAI: GPT-5.1-Codex-Mini|C|0.25,2.0|400000,100000|VT|-|GPT-5.1-Codex-Mini is a smaller and faster version of GPT-5.1-Codex|Y
openrouter/kat-coder-pro:free|kat-coder-pro:free|Kwaipilot: KAT-Coder-Pro V1 (free)|C|1.0,5.0|256000,128000|VT|-|KAT-Coder-Pro V1 is KwaiKAT's most advanced agentic coding model in the KAT-Code|N
openrouter/kat-coder-pro|kat-coder-pro|Kwaipilot: KAT-Coder-Pro V1|C|0.207,0.828|256000,128000|VT|-|KAT-Coder-Pro V1 is KwaiKAT's most advanced agentic coding model in the KAT-Code|Y
openrouter/kimi-k2-thinking|kimi-k2-thinking|MoonshotAI: Kimi K2 Thinking|C|0.39999999999999997,1.75|262144,65535|VTK|-|Kimi K2 Thinking is Moonshot AI’s most advanced open reasoning model to date, ex|Y
openrouter/nova-premier-v1|nova-premier|Amazon: Nova Premier 1.0|C|2.5,12.5|1000000,32000|VT|-|Amazon Nova Premier is the most capable of Amazon’s multimodal models for comple|Y
openrouter/sonar-pro-search|sonar-pro-search|Perplexity: Sonar Pro Search|C|3.0,15.0|200000,8000|VT|-|Exclusively available on the OpenRouter API, Sonar Pro's new Pro Search mode is |Y
openrouter/voxtral-small-24b-2507|voxtral-small-24b-2507|Mistral: Voxtral Small 24B 2507|C|0.09999999999999999,0.3|32000,None|VT|-|Voxtral Small is an enhancement of Mistral Small 3, incorporating state-of-the-a|Y
openrouter/gpt-oss-safeguard-20b|gpt-oss-safeguard-20b|OpenAI: gpt-oss-safeguard-20b|C|0.075,0.3|131072,65536|VT|-|gpt-oss-safeguard-20b is a safety reasoning model from OpenAI built upon gpt-oss|Y
openrouter/nemotron-nano-12b-v2-vl:free|nemotron-nano-12b-v2-vl:free|NVIDIA: Nemotron Nano 12B 2 VL (free)|C|1.0,5.0|128000,128000|VT|-|NVIDIA Nemotron Nano 2 VL is a 12-billion-parameter open multimodal reasoning mo|N
openrouter/nemotron-nano-12b-v2-vl|nemotron-nano-12b-v2-vl|NVIDIA: Nemotron Nano 12B 2 VL|C|0.19999999999999998,0.6|131072,None|VT|-|NVIDIA Nemotron Nano 2 VL is a 12-billion-parameter open multimodal reasoning mo|Y
openrouter/minimax-m2|minimax-m2|MiniMax: MiniMax M2|C|0.19999999999999998,1.0|196608,65536|VT|-|MiniMax-M2 is a compact, high-efficiency large language model optimized for end-|Y
openrouter/qwen3-vl-32b-instruct|qwen3-vl-32b-instruct|Qwen: Qwen3 VL 32B Instruct|C|0.5,1.5|262144,None|VT|-|Qwen3-VL-32B-Instruct is a large-scale multimodal vision-language model designed|Y
openrouter/lfm2-8b-a1b|lfm2-8b-a1b|LiquidAI/LFM2-8B-A1B|C|0.01,0.02|32768,None|VT|-|Model created via inbox interface|Y
openrouter/lfm-2.2-6b|lfm-2.2-6b|LiquidAI/LFM2-2.6B|C|0.01,0.02|32768,None|VT|-|LFM2 is a new generation of hybrid models developed by Liquid AI, specifically d|Y
openrouter/granite-4.0-h-micro|granite-4.0-h-micro|IBM: Granite 4.0 Micro|C|0.017,0.11|131000,None|VT|-|Granite-4.0-H-Micro is a 3B parameter from the Granite 4 family of models. These|Y
openrouter/cogito-v2-preview-llama-405b|cogito-v2-preview-llama-405b|Deep Cogito: Cogito V2 Preview Llama 405B|C|3.5,3.5|32768,None|VT|-|Cogito v2 405B is a dense hybrid reasoning model that combines direct answering |Y
openrouter/gpt-5-image-mini|gpt-5-image-mini|OpenAI: GPT-5 Image Mini|C|2.5,2.0|400000,128000|VT|-|GPT-5 Image Mini combines OpenAI's advanced language capabilities, powered by [G|Y
openrouter/claude-haiku-4.5|claude-haiku-4.5|Anthropic: Claude Haiku 4.5|C|1.0,5.0|200000,64000|VT|,,86.9,60.5,60.6,,,,,|Claude Haiku 4.5 is Anthropic’s fastest and most efficient model, delivering nea|Y
openrouter/qwen3-vl-8b-thinking|qwen3-vl-8b-thinking|Qwen: Qwen3 VL 8B Thinking|C|0.18,2.0999999999999996|256000,32768|VTK|-|Qwen3-VL-8B-Thinking is the reasoning-optimized variant of the Qwen3-VL-8B multi|Y
openrouter/qwen3-vl-8b-instruct|qwen3-vl-8b-instruct|Qwen: Qwen3 VL 8B Instruct|C|0.08,0.5|131072,32768|VT|-|Qwen3-VL-8B-Instruct is a multimodal vision-language model from the Qwen3-VL ser|Y
openrouter/gpt-5-image|gpt-5-image|OpenAI: GPT-5 Image|C|10.0,10.0|400000,128000|VT|-|[GPT-5](https://openrouter.ai/openai/gpt-5) Image combines OpenAI's GPT-5 model |N
openrouter/o3-deep-research|o3-deep-research|OpenAI: o3 Deep Research|C|10.0,40.0|200000,100000|VT|-|o3-deep-research is OpenAI's advanced model for deep research, designed to tackl|N
openrouter/o4-mini-deep-research|o4-mini-deep-research|OpenAI: o4 Mini Deep Research|C|2.0,8.0|200000,100000|VT|-|o4-mini-deep-research is OpenAI's faster, more affordable deep research model—id|Y
openrouter/llama-3.3-nemotron-super-49b-v1.5|llama-3.3-nemotron-super-49b|NVIDIA: Llama 3.3 Nemotron Super 49B V1.5|C|0.09999999999999999,0.39999999999999997|131072,None|VT|-|Llama-3.3-Nemotron-Super-49B-v1.5 is a 49B-parameter, English-centric reasoning/|Y
openrouter/ernie-4.5-21b-a3b-thinking|ernie-4.5-21b-a3b-thinking|Baidu: ERNIE 4.5 21B A3B Thinking|C|0.07,0.28|131072,65536|VTK|-|ERNIE-4.5-21B-A3B-Thinking is Baidu's upgraded lightweight MoE model, refined to|Y
openrouter/gemini-2.5-flash-image|gemini-2.5-flash-image|Google: Gemini 2.5 Flash Image (Nano Banana)|C|0.3,2.5|32768,32768|VT|-|Gemini 2.5 Flash Image, a.k.a. "Nano Banana," is now generally available. It is |Y
openrouter/qwen3-vl-30b-a3b-thinking|qwen3-vl-30b-a3b-thinking|Qwen: Qwen3 VL 30B A3B Thinking|C|0.19999999999999998,1.0|131072,32768|VTK|-|Qwen3-VL-30B-A3B-Thinking is a multimodal model that unifies strong text generat|Y
openrouter/qwen3-vl-30b-a3b-instruct|qwen3-vl-30b-a3b-instruct|Qwen: Qwen3 VL 30B A3B Instruct|C|0.15,0.6|262144,None|VT|-|Qwen3-VL-30B-A3B-Instruct is a multimodal model that unifies strong text generat|Y
openrouter/gpt-5-pro|gpt-5-pro|OpenAI: GPT-5 Pro|C|15.0,120.0|400000,128000|VT|-|GPT-5 Pro is OpenAI’s most advanced model, offering major improvements in reason|N
openrouter/glm-4.6|glm-4.6|Z.AI: GLM 4.6|C|0.35,1.5|202752,65536|VT|-|Compared with GLM-4.5, this generation brings several key improvements: Longer |Y
openrouter/glm-4.6:exacto|glm-4.6:exacto|Z.AI: GLM 4.6 (exacto)|C|0.44,1.76|204800,131072|VT|-|Compared with GLM-4.5, this generation brings several key improvements: Longer |Y
openrouter/claude-sonnet-4.5|claude-sonnet-4.5|Anthropic: Claude Sonnet 4.5|C|3.0,15.0|1000000,64000|VT|,,97.7,73.7,64.8,,,,,|Claude Sonnet 4.5 is Anthropic’s most advanced Sonnet model to date, optimized f|Y
openrouter/deepseek-v3.2-exp|deepseek-v3.2-exp|DeepSeek: DeepSeek V3.2 Exp|C|0.21,0.32|163840,65536|VT|-|DeepSeek-V3.2-Exp is an experimental large language model released by DeepSeek a|Y
openrouter/cydonia-24b-v4.1|cydonia-24b|TheDrummer: Cydonia 24B V4.1|C|0.3,0.5|131072,131072|VT|-|Uncensored and creative writing model based on Mistral Small 3.2 24B with good r|Y
openrouter/relace-apply-3|relace-apply-3|Relace: Relace Apply 3|C|0.85,1.25|256000,128000|VT|-|Relace Apply 3 is a specialized code-patching LLM that merges AI-suggested edits|Y
openrouter/gemini-2.5-flash-preview-09-2025|gemini-2.5-flash-preview-09-2025|Google: Gemini 2.5 Flash Preview 09-2025|C|0.3,2.5|1048576,65536|VT|-|Gemini 2.5 Flash Preview September 2025 Checkpoint is Google's state-of-the-art |Y
openrouter/gemini-2.5-flash-lite-preview-09-2025|gemini-2.5-flash-lite-preview-09-2025|Google: Gemini 2.5 Flash Lite Preview 09-2025|C|0.09999999999999999,0.39999999999999997|1048576,65536|VT|-|Gemini 2.5 Flash-Lite is a lightweight reasoning model in the Gemini 2.5 family,|Y
openrouter/qwen3-vl-235b-a22b-thinking|qwen3-vl-235b-a22b-thinking|Qwen: Qwen3 VL 235B A22B Thinking|C|0.44999999999999996,3.5|262144,262144|VTK|-|Qwen3-VL-235B-A22B Thinking is a multimodal model that unifies strong text gener|Y
openrouter/qwen3-vl-235b-a22b-instruct|qwen3-vl-235b-a22b-instruct|Qwen: Qwen3 VL 235B A22B Instruct|C|0.19999999999999998,1.2|262144,None|VT|-|Qwen3-VL-235B-A22B Instruct is an open-weight multimodal model that unifies stro|Y
openrouter/qwen3-max|qwen3-max|Qwen: Qwen3 Max|C|1.2,6.0|256000,32768|VT|,,97.1,72.6,,,,,,|Qwen3-Max is an updated release built on the Qwen3 series, offering major improv|Y
openrouter/qwen3-coder-plus|qwen3-coder-plus|Qwen: Qwen3 Coder Plus|C|1.0,5.0|128000,65536|VT|-|Qwen3 Coder Plus is Alibaba's proprietary version of the Open Source Qwen3 Coder|Y
openrouter/gpt-5-codex|gpt-5-codex|OpenAI: GPT-5 Codex|C|1.25,10.0|400000,128000|VT|-|GPT-5-Codex is a specialized version of GPT-5 optimized for software engineering|Y
openrouter/deepseek-v3.1-terminus:exacto|deepseek-v3.1-terminus:exacto|DeepSeek: DeepSeek V3.1 Terminus (exacto)|C|0.21,0.7899999999999999|163840,None|VT|-|DeepSeek-V3.1 Terminus is an update to [DeepSeek V3.1](/deepseek/deepseek-chat-v|Y
openrouter/deepseek-v3.1-terminus|deepseek-v3.1-terminus|DeepSeek: DeepSeek V3.1 Terminus|C|0.21,0.7899999999999999|163840,None|VT|-|DeepSeek-V3.1 Terminus is an update to [DeepSeek V3.1](/deepseek/deepseek-chat-v|Y
openrouter/grok-4-fast|grok-4-fast|xAI: Grok 4 Fast|C|0.19999999999999998,0.5|2000000,30000|VT|-|Grok 4 Fast is xAI's latest multimodal model with SOTA cost-efficiency and a 2M |Y
openrouter/tongyi-deepresearch-30b-a3b|tongyi-deepresearch-30b-a3b|Tongyi DeepResearch 30B A3B|C|0.09,0.39999999999999997|131072,131072|VT|-|Tongyi DeepResearch is an agentic large language model developed by Tongyi Lab, |Y
openrouter/qwen3-coder-flash|qwen3-coder-flash|Qwen: Qwen3 Coder Flash|C|0.3,1.5|128000,65536|VT|-|Qwen3 Coder Flash is Alibaba's fast and cost efficient version of their propriet|Y
openrouter/internvl3-78b|internvl3-78b|OpenGVLab: InternVL3 78B|C|0.09999999999999999,0.39|32768,32768|VT|-|The InternVL3 series is an advanced multimodal large language model (MLLM). Comp|Y
openrouter/qwen3-next-80b-a3b-thinking|qwen3-next-80b-a3b-thinking|Qwen: Qwen3 Next 80B A3B Thinking|C|0.15,1.2|262144,262144|VTK|-|Qwen3-Next-80B-A3B-Thinking is a reasoning-first chat model in the Qwen3-Next li|Y
openrouter/qwen3-next-80b-a3b-instruct|qwen3-next-80b-a3b-instruct|Qwen: Qwen3 Next 80B A3B Instruct|C|0.09,1.1|262144,None|VT|-|Qwen3-Next-80B-A3B-Instruct is an instruction-tuned chat model in the Qwen3-Next|Y
openrouter/longcat-flash-chat|longcat-flash-chat|Meituan: LongCat Flash Chat|C|0.19999999999999998,0.7999999999999999|131072,131072|VT|-|LongCat-Flash-Chat is a large-scale Mixture-of-Experts (MoE) model with 560B tot|Y
openrouter/qwen-plus-2025-07-28|qwen-plus|Qwen: Qwen Plus 0728|C|0.39999999999999997,1.2|1000000,32768|VT|,,65.3,48.1,28.0,,,,,|Qwen Plus 0728, based on the Qwen3 foundation model, is a 1 million context hybr|Y
openrouter/qwen-plus-2025-07-28:thinking|qwen-plus-2025-07-28:thinking|Qwen: Qwen Plus 0728 (thinking)|C|0.39999999999999997,4.0|1000000,32768|VTK|-|Qwen Plus 0728, based on the Qwen3 foundation model, is a 1 million context hybr|Y
openrouter/nemotron-nano-9b-v2:free|nemotron-nano-9b-v2:free|NVIDIA: Nemotron Nano 9B V2 (free)|C|1.0,5.0|128000,None|VT|-|NVIDIA-Nemotron-Nano-9B-v2 is a large language model (LLM) trained from scratch |N
openrouter/nemotron-nano-9b-v2|nemotron-nano-9b|NVIDIA: Nemotron Nano 9B V2|C|0.04,0.16|131072,None|VT|-|NVIDIA-Nemotron-Nano-9B-v2 is a large language model (LLM) trained from scratch |Y
openrouter/kimi-k2-0905|kimi-k2-0905|MoonshotAI: Kimi K2 0905|C|0.39,1.9|262144,262144|VT|-|Kimi K2 0905 is the September update of [Kimi K2 0711](moonshotai/kimi-k2). It i|Y
openrouter/kimi-k2-0905:exacto|kimi-k2-0905:exacto|MoonshotAI: Kimi K2 0905 (exacto)|C|0.6,2.5|262144,None|VT|-|Kimi K2 0905 is the September update of [Kimi K2 0711](moonshotai/kimi-k2). It i|Y
openrouter/cogito-v2-preview-llama-70b|cogito-v2-preview-llama-70b|Deep Cogito: Cogito V2 Preview Llama 70B|C|0.88,0.88|32768,None|VT|-|Cogito v2 70B is a dense hybrid reasoning model that combines direct answering c|Y
openrouter/cogito-v2-preview-llama-109b-moe|cogito-v2-preview-llama-109b-moe|Cogito V2 Preview Llama 109B|C|0.18,0.59|32767,None|VT|-|An instruction-tuned, hybrid-reasoning Mixture-of-Experts model built on Llama-4|Y
openrouter/step3|step3|StepFun: Step3|C|0.5700000000000001,1.42|65536,65536|VT|-|Step3 is a cutting-edge multimodal reasoning model—built on a Mixture-of-Experts|Y
openrouter/qwen3-30b-a3b-thinking-2507|qwen3-30b-a3b-thinking-2507|Qwen: Qwen3 30B A3B Thinking 2507|C|0.051,0.33999999999999997|32768,None|VTK|-|Qwen3-30B-A3B-Thinking-2507 is a 30B parameter Mixture-of-Experts reasoning mode|Y
openrouter/grok-code-fast-1|grok-code-fast-1|xAI: Grok Code Fast 1|C|0.19999999999999998,1.5|256000,10000|VT|-|Grok Code Fast 1 is a speedy and economical reasoning model that excels at agent|Y
openrouter/hermes-4-70b|hermes-4-70b|Nous: Hermes 4 70B|C|0.11,0.38|131072,131072|VT|-|Hermes 4 70B is a hybrid reasoning model from Nous Research, built on Meta-Llama|Y
openrouter/hermes-4-405b|hermes-4-405b|Nous: Hermes 4 405B|C|1.0,3.0|131072,None|VT|-|Hermes 4 is a large-scale reasoning model built on Meta-Llama-3.1-405B and relea|Y
openrouter/gemini-2.5-flash-image-preview|gemini-2.5-flash-image-preview|Google: Gemini 2.5 Flash Image Preview (Nano Banana)|C|0.3,2.5|32768,32768|VT|-|Gemini 2.5 Flash Image Preview, a.k.a. "Nano Banana," is a state of the art imag|Y
openrouter/deepseek-chat-v3.1|deepseek-chat|DeepSeek: DeepSeek V3.1|C|0.15,0.75|32768,7168|VT|-|DeepSeek-V3.1 is a large hybrid reasoning model (671B parameters, 37B active) th|Y
openrouter/gpt-4o-audio-preview|gpt-4o-audio-preview|OpenAI: GPT-4o Audio|C|2.5,10.0|128000,16384|VT|-|The gpt-4o-audio-preview model adds support for audio inputs as prompts. This en|Y
openrouter/mistral-medium-3.1|mistral-medium-3.1|Mistral: Mistral Medium 3.1|C|0.39999999999999997,2.0|131072,None|VT|-|Mistral Medium 3.1 is an updated version of Mistral Medium 3, which is a high-pe|Y
openrouter/ernie-4.5-21b-a3b|ernie-4.5-21b-a3b|Baidu: ERNIE 4.5 21B A3B|C|0.07,0.28|120000,8000|VT|-|A sophisticated text-based Mixture-of-Experts (MoE) model featuring 21B total pa|Y
openrouter/ernie-4.5-vl-28b-a3b|ernie-4.5-vl-28b-a3b|Baidu: ERNIE 4.5 VL 28B A3B|C|0.14,0.56|30000,8000|VT|-|A powerful multimodal Mixture-of-Experts chat model featuring 28B total paramete|Y
openrouter/glm-4.5v|glm-4.5v|Z.AI: GLM 4.5V|C|0.6,1.7999999999999998|65536,16384|VT|-|GLM-4.5V is a vision-language foundation model for multimodal agent applications|Y
openrouter/jamba-mini-1.7|jamba-mini-1.7|AI21: Jamba Mini 1.7|C|0.19999999999999998,0.39999999999999997|256000,4096|VT|-|Jamba Mini 1.7 is a compact and efficient member of the Jamba open model family,|Y
openrouter/jamba-large-1.7|jamba-large-1.7|AI21: Jamba Large 1.7|C|2.0,8.0|256000,4096|VT|-|Jamba Large 1.7 is the latest model in the Jamba open family, offering improveme|Y
openrouter/gpt-5-chat|gpt-5-chat|OpenAI: GPT-5 Chat|C|1.25,10.0|128000,16384|VT|-|GPT-5 Chat is designed for advanced, natural, multimodal, and context-aware conv|Y
openrouter/gpt-5|gpt-5|OpenAI: GPT-5|C|1.25,10.0|400000,128000|VT|-|GPT-5 is OpenAI’s most advanced model, offering major improvements in reasoning,|Y
openrouter/gpt-5-mini|gpt-5-mini|OpenAI: GPT-5 Mini|C|0.25,2.0|400000,128000|VT|-|GPT-5 Mini is a compact version of GPT-5, designed to handle lighter-weight reas|Y
openrouter/gpt-5-nano|gpt-5-nano|OpenAI: GPT-5 Nano|C|0.049999999999999996,0.39999999999999997|400000,128000|VT|-|GPT-5-Nano is the smallest and fastest variant in the GPT-5 system, optimized fo|Y
openrouter/gpt-oss-120b:free|gpt-oss-120b:free|OpenAI: gpt-oss-120b (free)|C|1.0,5.0|131072,None|VT|-|gpt-oss-120b is an open-weight, 117B-parameter Mixture-of-Experts (MoE) language|N
openrouter/gpt-oss-120b|gpt-oss-120b|OpenAI: gpt-oss-120b|C|0.039,0.19|131072,None|VT|-|gpt-oss-120b is an open-weight, 117B-parameter Mixture-of-Experts (MoE) language|Y
openrouter/gpt-oss-120b:exacto|gpt-oss-120b:exacto|OpenAI: gpt-oss-120b (exacto)|C|0.039,0.19|131072,None|VT|-|gpt-oss-120b is an open-weight, 117B-parameter Mixture-of-Experts (MoE) language|Y
openrouter/gpt-oss-20b:free|gpt-oss-20b:free|OpenAI: gpt-oss-20b (free)|C|1.0,5.0|131072,None|VT|-|gpt-oss-20b is an open-weight 21B parameter model released by OpenAI under the A|N
openrouter/gpt-oss-20b|gpt-oss-20b|OpenAI: gpt-oss-20b|C|0.02,0.09999999999999999|131072,131072|VT|-|gpt-oss-20b is an open-weight 21B parameter model released by OpenAI under the A|Y
openrouter/claude-opus-4.1|claude-opus-4.1|Anthropic: Claude Opus 4.1|C|15.0,75.0|200000,None|VT|,,,73.2,63.2,,,,,|Claude Opus 4.1 is an updated version of Anthropic’s flagship model, offering im|N
openrouter/codestral-2508|codestral-2508|Mistral: Codestral 2508|C|0.3,0.8999999999999999|256000,None|VT|-|Mistral's cutting-edge language model for coding released end of July 2025. Code|Y
openrouter/qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|Qwen: Qwen3 Coder 30B A3B Instruct|C|0.07,0.27|160000,32768|VT|-|Qwen3-Coder-30B-A3B-Instruct is a 30.5B parameter Mixture-of-Experts (MoE) model|Y
openrouter/qwen3-30b-a3b-instruct-2507|qwen3-30b-a3b-instruct-2507|Qwen: Qwen3 30B A3B Instruct 2507|C|0.08,0.33|262144,262144|VT|-|Qwen3-30B-A3B-Instruct-2507 is a 30.5B-parameter mixture-of-experts language mod|Y
openrouter/glm-4.5|glm-4.5|Z.AI: GLM 4.5|C|0.35,1.55|131072,65536|VT|-|GLM-4.5 is our latest flagship foundation model, purpose-built for agent-based a|Y
openrouter/glm-4.5-air:free|glm-4.5-air:free|Z.AI: GLM 4.5 Air (free)|C|1.0,5.0|131072,96000|VT|-|GLM-4.5-Air is the lightweight variant of our latest flagship model family, also|N
openrouter/glm-4.5-air|glm-4.5-air|Z.AI: GLM 4.5 Air|C|0.049999999999999996,0.22|131072,131072|VT|-|GLM-4.5-Air is the lightweight variant of our latest flagship model family, also|Y
openrouter/qwen3-235b-a22b-thinking-2507|qwen3-235b-a22b-thinking-2507|Qwen: Qwen3 235B A22B Thinking 2507|C|0.11,0.6|262144,262144|VTK|,,,80.1,,,,,,|Qwen3-235B-A22B-Thinking-2507 is a high-performance, open-weight Mixture-of-Expe|Y
openrouter/glm-4-32b|glm-4-32b|Z.AI: GLM 4 32B |C|0.09999999999999999,0.09999999999999999|128000,None|VT|-|GLM 4 32B is a cost-effective foundation language model. It can efficiently per|Y
openrouter/qwen3-coder:free|qwen3-coder:free|Qwen: Qwen3 Coder 480B A35B (free)|C|1.0,5.0|262000,262000|VT|-|Qwen3-Coder-480B-A35B-Instruct is a Mixture-of-Experts (MoE) code generation mod|N
openrouter/qwen3-coder|qwen3-coder|Qwen: Qwen3 Coder 480B A35B|C|0.22,0.95|262144,262144|VT|-|Qwen3-Coder-480B-A35B-Instruct is a Mixture-of-Experts (MoE) code generation mod|Y
openrouter/qwen3-coder:exacto|qwen3-coder:exacto|Qwen: Qwen3 Coder 480B A35B (exacto)|C|0.22,1.7999999999999998|262144,65536|VT|-|Qwen3-Coder-480B-A35B-Instruct is a Mixture-of-Experts (MoE) code generation mod|Y
openrouter/ui-tars-1.5-7b|ui-tars-1.5-7b|ByteDance: UI-TARS 7B |C|0.09999999999999999,0.19999999999999998|128000,2048|VT|-|UI-TARS-1.5 is a multimodal vision-language agent optimized for GUI-based enviro|Y
openrouter/gemini-2.5-flash-lite|gemini-2.5-flash-lite|Google: Gemini 2.5 Flash Lite|C|0.09999999999999999,0.39999999999999997|1048576,65535|VT|-|Gemini 2.5 Flash-Lite is a lightweight reasoning model in the Gemini 2.5 family,|Y
openrouter/qwen3-235b-a22b-2507|qwen3-235b-a22b-2507|Qwen: Qwen3 235B A22B Instruct 2507|C|0.071,0.463|262144,None|VT|,,68.9,70.7,,,,,,|Qwen3-235B-A22B-Instruct-2507 is a multilingual, instruction-tuned mixture-of-ex|Y
openrouter/router|router|Switchpoint Router|C|0.85,3.4|131072,None|VT|-|Switchpoint AI's router instantly analyzes your request and directs it to the op|Y
openrouter/kimi-k2:free|kimi-k2:free|MoonshotAI: Kimi K2 0711 (free)|C|1.0,5.0|32768,None|VT|-|Kimi K2 Instruct is a large-scale Mixture-of-Experts (MoE) language model develo|N
openrouter/kimi-k2|kimi-k2|MoonshotAI: Kimi K2 0711|C|0.5,2.4|131072,None|VT|-|Kimi K2 Instruct is a large-scale Mixture-of-Experts (MoE) language model develo|Y
openrouter/glm-4.1v-9b-thinking|glm-4.1v-9b-thinking|THUDM: GLM 4.1V 9B Thinking|C|0.035,0.13799999999999998|65536,8000|VTK|-|GLM-4.1V-9B-Thinking is a 9B parameter vision-language model developed by THUDM,|Y
openrouter/devstral-medium|devstral-medium|Mistral: Devstral Medium|C|0.39999999999999997,2.0|131072,None|VT|-|Devstral Medium is a high-performance code generation and agentic reasoning mode|Y
openrouter/devstral-small|devstral-small|Mistral: Devstral Small 1.1|C|0.07,0.28|128000,None|VT|-|Devstral Small 1.1 is a 24B parameter open-weight language model for software en|Y
openrouter/dolphin-mistral-24b-venice-edition:free|dolphin-mistral-24b-venice-edition:free|Venice: Uncensored (free)|C|1.0,5.0|32768,None|VT|-|Venice Uncensored Dolphin Mistral 24B Venice Edition is a fine-tuned variant of |N
openrouter/grok-4|grok-4|xAI: Grok 4|C|3.0,15.0|256000,None|VT|,,,87.0,,,,,,|Grok 4 is xAI's latest reasoning model with a 256k context window. It supports p|Y
openrouter/gemma-3n-e2b-it:free|gemma-3n-e2b-it:free|Google: Gemma 3n 2B (free)|C|1.0,5.0|8192,2048|VT|-|Gemma 3n E2B IT is a multimodal, instruction-tuned model developed by Google Dee|N
openrouter/hunyuan-a13b-instruct|hunyuan-a13b-instruct|Tencent: Hunyuan A13B Instruct|C|0.14,0.5700000000000001|131072,131072|VT|-|Hunyuan-A13B is a 13B active parameter Mixture-of-Experts (MoE) language model d|Y
openrouter/deepseek-r1t2-chimera:free|deepseek-r1t2-chimera:free|TNG: DeepSeek R1T2 Chimera (free)|C|1.0,5.0|163840,None|VT|-|DeepSeek-TNG-R1T2-Chimera is the second-generation Chimera model from TNG Tech. |N
openrouter/deepseek-r1t2-chimera|deepseek-r1t2-chimera|TNG: DeepSeek R1T2 Chimera|C|0.25,0.85|163840,163840|VT|-|DeepSeek-TNG-R1T2-Chimera is the second-generation Chimera model from TNG Tech. |Y
openrouter/morph-v3-large|morph-v3-large|Morph: Morph V3 Large|C|0.8999999999999999,1.9|262144,131072|VT|-|Morph's high-accuracy apply model for complex code edits. ~4,500 tokens/sec with|Y
openrouter/morph-v3-fast|morph-v3-fast|Morph: Morph V3 Fast|C|0.7999999999999999,1.2|81920,38000|VT|-|Morph's fastest apply model for code edits. ~10,500 tokens/sec with 96% accuracy|Y
openrouter/ernie-4.5-vl-424b-a47b|ernie-4.5-vl-424b-a47b|Baidu: ERNIE 4.5 VL 424B A47B |C|0.42,1.25|123000,16000|VT|-|ERNIE-4.5-VL-424B-A47B is a multimodal Mixture-of-Experts (MoE) model from Baidu|Y
openrouter/ernie-4.5-300b-a47b|ernie-4.5-300b-a47b|Baidu: ERNIE 4.5 300B A47B |C|0.28,1.1|123000,12000|VT|-|ERNIE-4.5-300B-A47B is a 300B parameter Mixture-of-Experts (MoE) language model |Y
openrouter/mercury|mercury|Inception: Mercury|C|0.25,1.0|128000,16384|VT|-|Mercury is the first diffusion large language model (dLLM). Applying a breakthro|Y
openrouter/mistral-small-3.2-24b-instruct|mistral-small-3.2-24b-instruct|Mistral: Mistral Small 3.2 24B|C|0.06,0.18|131072,131072|VT|-|Mistral-Small-3.2-24B-Instruct-2506 is an updated 24B parameter model from Mistr|Y
openrouter/minimax-m1|minimax-m1|MiniMax: MiniMax M1|C|0.39999999999999997,2.2|1000000,40000|VT|-|MiniMax-M1 is a large-scale, open-weight reasoning model designed for extended c|Y
openrouter/gemini-2.5-flash|gemini-2.5-flash|Google: Gemini 2.5 Flash|C|0.3,2.5|1048576,65535|VT|-|Gemini 2.5 Flash is Google's state-of-the-art workhorse model, specifically desi|Y
openrouter/gemini-2.5-pro|gemini-2.5-pro|Google: Gemini 2.5 Pro|C|1.25,10.0|1048576,65536|VT|,,,85.3,,,,,,|Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reaso|Y
openrouter/kimi-dev-72b|kimi-dev-72b|MoonshotAI: Kimi Dev 72B|C|0.29,1.15|131072,131072|VT|-|Kimi-Dev-72B is an open-source large language model fine-tuned for software engi|Y
openrouter/o3-pro|o3-pro|OpenAI: o3 Pro|C|20.0,80.0|200000,100000|VT|-|The o-series of models are trained with reinforcement learning to think before t|N
openrouter/grok-3-mini|grok-3-mini|xAI: Grok 3 Mini|C|0.3,0.5|131072,None|VT|-|A lightweight model that thinks before responding. Fast, smart, and great for lo|Y
openrouter/grok-3|grok-3|xAI: Grok 3|C|3.0,15.0|131072,None|VT|-|Grok 3 is the latest model from xAI. It's their flagship model that excels at en|Y
openrouter/gemini-2.5-pro-preview|gemini-2.5-pro-preview|Google: Gemini 2.5 Pro Preview 06-05|C|1.25,10.0|1048576,65536|VT|,,,85.3,,,,,,|Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reaso|Y
openrouter/deepseek-r1-0528-qwen3-8b|deepseek-r1-0528-qwen3-8b|DeepSeek: DeepSeek R1 0528 Qwen3 8B|C|0.06,0.09|128000,32000|VT|-|DeepSeek-R1-0528 is a lightly upgraded release of DeepSeek R1 that taps more com|Y
openrouter/deepseek-r1-0528:free|deepseek-r1-0528:free|DeepSeek: R1 0528 (free)|C|1.0,5.0|163840,None|VT|-|May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance|N
openrouter/deepseek-r1-0528|deepseek-r1-0528|DeepSeek: R1 0528|C|0.39999999999999997,1.75|163840,65536|VT|,,93.1,69.2,33.3,,,,,|May 28th update to the [original DeepSeek R1](/deepseek/deepseek-r1) Performance|Y
openrouter/claude-opus-4|claude-opus-4|Anthropic: Claude Opus 4|C|15.0,75.0|200000,32000|VT|,,85.0,69.2,62.2,,,,,|Claude Opus 4 is benchmarked as the world’s best coding model, at time of releas|N
openrouter/claude-sonnet-4|claude-sonnet-4|Anthropic: Claude Sonnet 4|C|3.0,15.0|1000000,64000|VT|,,84.4,66.7,60.6,,,,,|Claude Sonnet 4 significantly enhances the capabilities of its predecessor, Sonn|Y
openrouter/devstral-small-2505|devstral-small-2505|Mistral: Devstral Small 2505|C|0.06,0.12|128000,None|VT|-|Devstral-Small-2505 is a 24B parameter agentic LLM fine-tuned from Mistral-Small|Y
openrouter/gemma-3n-e4b-it:free|gemma-3n-e4b-it:free|Google: Gemma 3n 4B (free)|C|1.0,5.0|8192,2048|VT|-|Gemma 3n E4B-it is optimized for efficient execution on mobile and low-resource |N
openrouter/gemma-3n-e4b-it|gemma-3n-e4b-it|Google: Gemma 3n 4B|C|0.02,0.04|32768,None|VT|-|Gemma 3n E4B-it is optimized for efficient execution on mobile and low-resource |Y
openrouter/codex-mini|codex-mini|OpenAI: Codex Mini|C|1.5,6.0|200000,100000|VT|-|codex-mini-latest is a fine-tuned version of o4-mini specifically for use in Cod|Y
openrouter/deephermes-3-mistral-24b-preview|deephermes-3-mistral-24b-preview|Nous: DeepHermes 3 Mistral 24B Preview|C|0.02,0.09999999999999999|32768,32768|VT|-|DeepHermes 3 (Mistral 24B Preview) is an instruction-tuned language model by Nou|Y
openrouter/mistral-medium-3|mistral-medium-3|Mistral: Mistral Medium 3|C|0.39999999999999997,2.0|131072,None|VT|-|Mistral Medium 3 is a high-performance enterprise-grade language model designed |Y
openrouter/gemini-2.5-pro-preview-05-06|gemini-2.5-pro-preview-05-06|Google: Gemini 2.5 Pro Preview 05-06|C|1.25,10.0|1048576,65535|VT|,,95.9,66.7,,,,,,|Gemini 2.5 Pro is Google’s state-of-the-art AI model designed for advanced reaso|Y
openrouter/spotlight|spotlight|Arcee AI: Spotlight|C|0.18,0.18|131072,65537|VT|-|Spotlight is a 7‑billion‑parameter vision‑language model derived from Qwen 2.5‑V|Y
openrouter/maestro-reasoning|maestro-reasoning|Arcee AI: Maestro Reasoning|C|0.8999999999999999,3.3000000000000003|131072,32000|VTK|-|Maestro Reasoning is Arcee's flagship analysis model: a 32 B‑parameter derivativ|Y
openrouter/virtuoso-large|virtuoso-large|Arcee AI: Virtuoso Large|C|0.75,1.2|131072,64000|VT|-|Virtuoso‑Large is Arcee's top‑tier general‑purpose LLM at 72 B parameters, tuned|Y
openrouter/coder-large|coder-large|Arcee AI: Coder Large|C|0.5,0.7999999999999999|32768,None|VT|-|Coder‑Large is a 32 B‑parameter offspring of Qwen 2.5‑Instruct that has been fur|Y
openrouter/phi-4-reasoning-plus|phi-4-reasoning-plus|Microsoft: Phi 4 Reasoning Plus|C|0.07,0.35|32768,None|VTK|-|Phi-4-reasoning-plus is an enhanced 14B parameter model from Microsoft, fine-tun|Y
openrouter/mercury-coder|mercury-coder|Inception: Mercury Coder|C|0.25,1.0|128000,16384|VT|-|Mercury Coder is the first diffusion large language model (dLLM). Applying a bre|Y
openrouter/qwen3-4b:free|qwen3-4b:free|Qwen: Qwen3 4B (free)|C|1.0,5.0|40960,None|VT|-|Qwen3-4B is a 4 billion parameter dense language model from the Qwen3 series, de|N
openrouter/deepseek-prover-v2|deepseek-prover|DeepSeek: DeepSeek Prover V2|C|0.5,2.1799999999999997|163840,None|VT|-|DeepSeek Prover V2 is a 671B parameter model, speculated to be geared towards lo|Y
openrouter/llama-guard-4-12b|llama-guard-4-12b|Meta: Llama Guard 4 12B|C|0.18,0.18|163840,None|VT|-|Llama Guard 4 is a Llama 4 Scout-derived multimodal pretrained model, fine-tuned|Y
openrouter/qwen3-30b-a3b|qwen3-30b-a3b|Qwen: Qwen3 30B A3B|C|0.06,0.22|40960,40960|VT|-|Qwen3, the latest generation in the Qwen large language model series, features b|Y
openrouter/qwen3-8b|qwen3-8b|Qwen: Qwen3 8B|C|0.035,0.13799999999999998|128000,20000|VT|-|Qwen3-8B is a dense 8.2B parameter causal language model from the Qwen3 series, |Y
openrouter/qwen3-14b|qwen3-14b|Qwen: Qwen3 14B|C|0.049999999999999996,0.22|40960,40960|VT|-|Qwen3-14B is a dense 14.8B parameter causal language model from the Qwen3 series|Y
openrouter/qwen3-32b|qwen3-32b|Qwen: Qwen3 32B|C|0.08,0.24|40960,40960|VT|-|Qwen3-32B is a dense 32.8B parameter causal language model from the Qwen3 series|Y
openrouter/qwen3-235b-a22b|qwen3-235b-a22b|Qwen: Qwen3 235B A22B|C|0.18,0.54|40960,40960|VT|,,68.9,70.7,,,,,,|Qwen3-235B-A22B is a 235B parameter mixture-of-experts (MoE) model developed by |Y
openrouter/deepseek-r1t-chimera:free|deepseek-r1t-chimera:free|TNG: DeepSeek R1T Chimera (free)|C|1.0,5.0|163840,None|VT|-|DeepSeek-R1T-Chimera is created by merging DeepSeek-R1 and DeepSeek-V3 (0324), c|N
openrouter/deepseek-r1t-chimera|deepseek-r1t-chimera|TNG: DeepSeek R1T Chimera|C|0.3,1.2|163840,163840|VT|-|DeepSeek-R1T-Chimera is created by merging DeepSeek-R1 and DeepSeek-V3 (0324), c|Y
openrouter/o4-mini-high|o4-mini-high|OpenAI: o4 Mini High|C|1.1,4.4|200000,100000|VT|90.3,99.3,97.8,,,,,,,|OpenAI o4-mini-high is the same model as [o4-mini](/openai/o4-mini) with reasoni|Y
openrouter/o3|o3|OpenAI: o3|C|2.0,8.0|200000,100000|VT|92.9,87.4,,,,,,,,|o3 is a well-rounded and powerful model across domains. It sets a new standard f|Y
openrouter/o4-mini|o4-mini|OpenAI: o4 Mini|C|1.1,4.4|200000,100000|VT|90.0,97.3,,,,,,,,|OpenAI o4-mini is a compact reasoning model in the o-series, optimized for fast,|Y
openrouter/qwen2.5-coder-7b-instruct|qwen2.5-coder-7b-instruct|Qwen: Qwen2.5 Coder 7B Instruct|C|0.03,0.09|32768,None|VT|68.0,,,,,,,,,|Qwen2.5-Coder-7B-Instruct is a 7B parameter instruction-tuned language model opt|Y
openrouter/gpt-4.1|gpt-4.1|OpenAI: GPT-4.1|C|2.0,8.0|1047576,32768|VT|90.2,94.5,83.0,66.9,41.0,,,,,|GPT-4.1 is a flagship large language model optimized for advanced instruction fo|Y
openrouter/gpt-4.1-mini|gpt-4.1-mini|OpenAI: GPT-4.1 Mini|C|0.39999999999999997,1.5999999999999999|1047576,32768|VT|87.5,93.8,87.3,65.8,32.8,,,,,|GPT-4.1 Mini is a mid-sized model delivering performance competitive with GPT-4o|Y
openrouter/gpt-4.1-nano|gpt-4.1-nano|OpenAI: GPT-4.1 Nano|C|0.09999999999999999,0.39999999999999997|1047576,32768|VT|80.1,87.0,70.0,48.9,,,,,,|For tasks that demand low latency, GPT‑4.1 nano is the fastest and cheapest mode|Y
openrouter/llemma_7b|llemma_7b|EleutherAI: Llemma 7b|C|0.7999999999999999,1.2|4096,4096|VT|-|Llemma 7B is a language model for mathematics. It was initialized with Code Llam|Y
openrouter/codellama-7b-instruct-solidity|codellama-7b-instruct-solidity|AlfredPros: CodeLLaMa 7B Instruct Solidity|C|0.7999999999999999,1.2|4096,4096|VT|-|A finetuned 7 billion parameters Code LLaMA - Instruct model to generate Solidit|Y
openrouter/grok-3-mini-beta|grok-3-mini-beta|xAI: Grok 3 Mini Beta|C|0.3,0.5|131072,None|VT|-|Grok 3 Mini is a lightweight, smaller thinking model. Unlike traditional models |Y
openrouter/grok-3-beta|grok-3-beta|xAI: Grok 3 Beta|C|3.0,15.0|131072,None|VT|,,88.7,67.6,38.6,,,,,|Grok 3 is the latest model from xAI. It's their flagship model that excels at en|Y
openrouter/llama-3.1-nemotron-ultra-253b-v1|llama-3.1-nemotron-ultra-253b|NVIDIA: Llama 3.1 Nemotron Ultra 253B v1|C|0.6,1.7999999999999998|131072,None|VT|-|Llama-3.1-Nemotron-Ultra-253B-v1 is a large language model (LLM) optimized for a|Y
openrouter/llama-4-maverick|llama-4-maverick|Meta: Llama 4 Maverick|C|0.15,0.6|1048576,16384|VT|-|Llama 4 Maverick 17B Instruct (128E) is a high-capacity multimodal language mode|Y
openrouter/llama-4-scout|llama-4-scout|Meta: Llama 4 Scout|C|0.08,0.3|327680,16384|VT|-|Llama 4 Scout 17B Instruct (16E) is a mixture-of-experts (MoE) language model de|Y
openrouter/qwen2.5-vl-32b-instruct|qwen2.5-vl-32b-instruct|Qwen: Qwen2.5 VL 32B Instruct|C|0.049999999999999996,0.22|16384,16384|VT|-|Qwen2.5-VL-32B is a multimodal vision-language model fine-tuned through reinforc|Y
openrouter/deepseek-chat-v3-0324|deepseek-chat-v3-0324|DeepSeek: DeepSeek V3 0324|C|0.19,0.87|163840,65536|VT|87.1,,64.9,56.5,52.1,,,,,|DeepSeek V3, a 685B-parameter, mixture-of-experts model, is the latest iteration|Y
openrouter/o1-pro|o1-pro|OpenAI: o1-pro|C|150.0,600.0|200000,100000|VT|-|The o1 series of models are trained with reinforcement learning to think before |N
openrouter/mistral-small-3.1-24b-instruct:free|mistral-small-3.1-24b-instruct:free|Mistral: Mistral Small 3.1 24B (free)|C|1.0,5.0|128000,None|VT|-|Mistral Small 3.1 24B Instruct is an upgraded variant of Mistral Small 3 (2501),|N
openrouter/mistral-small-3.1-24b-instruct|mistral-small-3.1-24b-instruct|Mistral: Mistral Small 3.1 24B|C|0.03,0.11|131072,131072|VT|-|Mistral Small 3.1 24B Instruct is an upgraded variant of Mistral Small 3 (2501),|Y
openrouter/olmo-2-0325-32b-instruct|olmo-2-0325-32b-instruct|AllenAI: Olmo 2 32B Instruct|C|0.049999999999999996,0.19999999999999998|128000,None|VT|-|OLMo-2 32B Instruct is a supervised instruction-finetuned variant of the OLMo-2 |Y
openrouter/gemma-3-4b-it:free|gemma-3-4b-it:free|Google: Gemma 3 4B (free)|C|1.0,5.0|32768,8192|VT|-|Gemma 3 introduces multimodality, supporting vision-language input and text outp|N
openrouter/gemma-3-4b-it|gemma-3-4b-it|Google: Gemma 3 4B|C|0.01703012,0.0681536|96000,None|VT|-|Gemma 3 introduces multimodality, supporting vision-language input and text outp|Y
openrouter/gemma-3-12b-it:free|gemma-3-12b-it:free|Google: Gemma 3 12B (free)|C|1.0,5.0|32768,8192|VT|-|Gemma 3 introduces multimodality, supporting vision-language input and text outp|N
openrouter/gemma-3-12b-it|gemma-3-12b-it|Google: Gemma 3 12B|C|0.03,0.09999999999999999|131072,131072|VT|-|Gemma 3 introduces multimodality, supporting vision-language input and text outp|Y
openrouter/command-a|command-a|Cohere: Command A|C|2.5,10.0|256000,8192|VT|-|Command A is an open-weights 111B parameter model with a 256k context window foc|Y
openrouter/gpt-4o-mini-search-preview|gpt-4o-mini-search-preview|OpenAI: GPT-4o-mini Search Preview|C|0.15,0.6|128000,16384|VT|-|GPT-4o mini Search Preview is a specialized model for web search in Chat Complet|Y
openrouter/gpt-4o-search-preview|gpt-4o-search-preview|OpenAI: GPT-4o Search Preview|C|2.5,10.0|128000,16384|VT|-|GPT-4o Search Previewis a specialized model for web search in Chat Completions. |Y
openrouter/gemma-3-27b-it:free|gemma-3-27b-it:free|Google: Gemma 3 27B (free)|C|1.0,5.0|131072,None|VT|-|Gemma 3 introduces multimodality, supporting vision-language input and text outp|N
openrouter/gemma-3-27b-it|gemma-3-27b-it|Google: Gemma 3 27B|C|0.04,0.15|96000,96000|VT|,,74.0,48.9,,,,,,|Gemma 3 introduces multimodality, supporting vision-language input and text outp|Y
openrouter/skyfall-36b-v2|skyfall-36b|TheDrummer: Skyfall 36B V2|C|0.55,0.7999999999999999|32768,32768|VT|-|Skyfall 36B v2 is an enhanced iteration of Mistral Small 2501, specifically fine|Y
openrouter/phi-4-multimodal-instruct|phi-4-multimodal-instruct|Microsoft: Phi 4 Multimodal Instruct|C|0.049999999999999996,0.09999999999999999|131072,None|VT|-|Phi-4 Multimodal Instruct is a versatile 5.6B parameter foundation model that co|Y
openrouter/sonar-reasoning-pro|sonar-reasoning-pro|Perplexity: Sonar Reasoning Pro|C|2.0,8.0|128000,None|VTK|-|Note: Sonar Pro pricing includes Perplexity search pricing. See [details here](h|Y
openrouter/sonar-pro|sonar-pro|Perplexity: Sonar Pro|C|3.0,15.0|200000,8000|VT|-|Note: Sonar Pro pricing includes Perplexity search pricing. See [details here](h|Y
openrouter/sonar-deep-research|sonar-deep-research|Perplexity: Sonar Deep Research|C|2.0,8.0|128000,None|VT|-|Sonar Deep Research is a research-focused model designed for multi-step retrieva|Y
openrouter/qwq-32b|qwq-32b|Qwen: QwQ 32B|C|0.15,0.39999999999999997|32768,None|VT|-|QwQ is the reasoning model of the Qwen series. Compared with conventional instru|Y
openrouter/gemini-2.0-flash-lite-001|gemini-2.0-flash-lite-001|Google: Gemini 2.0 Flash Lite|C|0.075,0.3|1048576,8192|VT|-|Gemini 2.0 Flash Lite offers a significantly faster time to first token (TTFT) c|Y
openrouter/claude-3.7-sonnet:thinking|claude-3.7-sonnet:thinking|Anthropic: Claude 3.7 Sonnet (thinking)|C|3.0,15.0|200000,64000|VTK|-|Claude 3.7 Sonnet is an advanced large language model with improved reasoning, c|Y
openrouter/claude-3.7-sonnet|claude-3.7-sonnet|Anthropic: Claude 3.7 Sonnet|C|3.0,15.0|200000,64000|VT|,,68.2,66.0,52.2,,,,,|Claude 3.7 Sonnet is an advanced large language model with improved reasoning, c|Y
openrouter/mistral-saba|mistral-saba|Mistral: Saba|C|0.19999999999999998,0.6|32768,None|VT|-|Mistral Saba is a 24B-parameter language model specifically designed for the Mid|Y
openrouter/llama-guard-3-8b|llama-guard-3-8b|Llama Guard 3 8B|C|0.02,0.06|131072,None|VT|-|Llama Guard 3 is a Llama-3.1-8B pretrained model, fine-tuned for content safety |Y
openrouter/o3-mini-high|o3-mini-high|OpenAI: o3 Mini High|C|1.1,4.4|200000,100000|VT|86.9,97.6,,,,,,,,|OpenAI o3-mini-high is the same model as [o3-mini](/openai/o3-mini) with reasoni|Y
openrouter/gemini-2.0-flash-001|gemini-2.0-flash-001|Google: Gemini 2.0 Flash|C|0.09999999999999999,0.39999999999999997|1048576,8192|VT|,,82.2,64.1,22.0,,,,,|Gemini Flash 2.0 offers a significantly faster time to first token (TTFT) compar|Y
openrouter/qwen-vl-plus|qwen-vl-plus|Qwen: Qwen VL Plus|C|0.21,0.63|7500,1500|VT|-|Qwen's Enhanced Large Visual Language Model. Significantly upgraded for detailed|Y
openrouter/aion-1.0|aion-1.0|AionLabs: Aion-1.0|C|4.0,8.0|131072,32768|VT|-|Aion-1.0 is a multi-model system designed for high performance across various ta|Y
openrouter/aion-1.0-mini|aion-1.0-mini|AionLabs: Aion-1.0-Mini|C|0.7,1.4|131072,32768|VT|-|Aion-1.0-Mini 32B parameter model is a distilled version of the DeepSeek-R1 mode|Y
openrouter/aion-rp-llama-3.1-8b|aion-rp-llama-3.1-8b|AionLabs: Aion-RP 1.0 (8B)|C|0.7999999999999999,1.5999999999999999|32768,32768|VT|-|Aion-RP-Llama-3.1-8B ranks the highest in the character evaluation portion of th|Y
openrouter/qwen-vl-max|qwen-vl-max|Qwen: Qwen VL Max|C|0.7999999999999999,3.1999999999999997|131072,8192|VT|-|Qwen VL Max is a visual understanding model with 7500 tokens context length. It |Y
openrouter/qwen-turbo|qwen-turbo|Qwen: Qwen-Turbo|C|0.049999999999999996,0.19999999999999998|1000000,8192|VT|,,56.2,41.8,,,,,,|Qwen-Turbo, based on Qwen2.5, is a 1M context model that provides fast speed and|Y
openrouter/qwen2.5-vl-72b-instruct|qwen2.5-vl-72b-instruct|Qwen: Qwen2.5 VL 72B Instruct|C|0.15,0.6|32768,32768|VT|-|Qwen2.5-VL is proficient in recognizing common objects such as flowers, birds, f|Y
openrouter/qwen-plus|qwen-plus|Qwen: Qwen-Plus|C|0.39999999999999997,1.2|131072,8192|VT|,,65.3,48.1,28.0,,,,,|Qwen-Plus, based on the Qwen2.5 foundation model, is a 131K context model with a|Y
openrouter/qwen-max|qwen-max|Qwen: Qwen-Max |C|1.5999999999999999,6.3999999999999995|32768,8192|VT|,,67.2,56.1,,,,,,|Qwen-Max, based on Qwen2.5, provides the best inference performance among [Qwen |Y
openrouter/o3-mini|o3-mini|OpenAI: o3 Mini|C|1.1,4.4|200000,100000|VT|85.9,96.3,,,,,,,,|OpenAI o3-mini is a cost-efficient language model optimized for STEM reasoning t|Y
openrouter/mistral-small-24b-instruct-2501|mistral-small-24b-instruct-2501|Mistral: Mistral Small 3|C|0.03,0.11|32768,32768|VT|-|Mistral Small 3 is a 24B-parameter language model optimized for low-latency perf|Y
openrouter/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|DeepSeek: R1 Distill Qwen 32B|C|0.27,0.27|131072,None|VT|-|DeepSeek R1 Distill Qwen 32B is a distilled large language model based on [Qwen |Y
openrouter/deepseek-r1-distill-qwen-14b|deepseek-r1-distill-qwen-14b|DeepSeek: R1 Distill Qwen 14B|C|0.15,0.15|32768,16384|VT|,,87.1,44.7,,,,,,|DeepSeek R1 Distill Qwen 14B is a distilled large language model based on [Qwen |Y
openrouter/sonar|sonar|Perplexity: Sonar|C|1.0,1.0|127072,None|VT|-|Sonar is lightweight, affordable, fast, and simple to use — now featuring citati|Y
openrouter/deepseek-r1-distill-llama-70b|deepseek-r1-distill-llama-70b|DeepSeek: R1 Distill Llama 70B|C|0.03,0.11|131072,131072|VT|,,89.9,55.7,,,,,,|DeepSeek R1 Distill Llama 70B is a distilled large language model based on [Llam|Y
openrouter/deepseek-r1|deepseek-r1|DeepSeek: R1|C|0.7,2.4|163840,163840|VT|,,93.1,69.2,33.3,,,,,|DeepSeek R1 is here: Performance on par with [OpenAI o1](/openai/o1), but open-s|Y
openrouter/minimax-01|minimax-01|MiniMax: MiniMax-01|C|0.19999999999999998,1.1|1000192,1000192|VT|-|MiniMax-01 is a combines MiniMax-Text-01 for text generation and MiniMax-VL-01 f|Y
openrouter/phi-4|phi-4|Microsoft: Phi 4|C|0.06,0.14|16384,None|VT|84.8,,64.9,56.1,,,,,,|[Microsoft Research](/microsoft) Phi-4 is designed to perform well in complex re|Y
openrouter/l3.1-70b-hanami-x1|l3.1-70b-hanami-x1|Sao10K: Llama 3.1 70B Hanami x1|C|3.0,3.0|16000,None|VT|-|This is [Sao10K](/sao10k)'s experiment over [Euryale v2.2](/sao10k/l3.1-euryale-|Y
openrouter/deepseek-chat|deepseek-chat|DeepSeek: DeepSeek V3|C|0.3,1.2|163840,163840|VT|-|DeepSeek-V3 is the latest model from the DeepSeek team, building upon the instru|Y
openrouter/l3.3-euryale-70b|l3.3-euryale-70b|Sao10K: Llama 3.3 Euryale 70B|C|0.65,0.75|131072,16384|VT|-|Euryale L3.3 70B is a model focused on creative roleplay from [Sao10k](https://k|Y
openrouter/o1|o1|OpenAI: o1|C|15.0,60.0|200000,100000|VT|90.8,92.4,81.6,50.3,,,,,,|The latest and strongest model family from OpenAI, o1 is designed to spend more |N
openrouter/command-r7b-12-2024|command-r7b-12-2024|Cohere: Command R7B (12-2024)|C|0.0375,0.15|128000,4000|VT|-|Command R7B (12-2024) is a small, fast update of the Command R+ model, delivered|Y
openrouter/gemini-2.0-flash-exp:free|gemini-2.0-flash-exp:free|Google: Gemini 2.0 Flash Experimental (free)|C|1.0,5.0|1048576,8192|VT|-|Gemini Flash 2.0 offers a significantly faster time to first token (TTFT) compar|N
openrouter/llama-3.3-70b-instruct:free|llama-3.3-70b-instruct:free|Meta: Llama 3.3 70B Instruct (free)|C|1.0,5.0|131072,None|VT|-|The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and i|N
openrouter/llama-3.3-70b-instruct|llama-3.3-70b-instruct|Meta: Llama 3.3 70B Instruct|C|0.09999999999999999,0.32|131072,16384|VT|86.3,,41.6,47.4,,,,,,|The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and i|Y
openrouter/nova-lite-v1|nova-lite|Amazon: Nova Lite 1.0|C|0.06,0.24|300000,5120|VT|-|Amazon Nova Lite 1.0 is a very low-cost multimodal model from Amazon that focuse|Y
openrouter/nova-micro-v1|nova-micro|Amazon: Nova Micro 1.0|C|0.035,0.14|128000,5120|VT|-|Amazon Nova Micro 1.0 is a text-only model that delivers the lowest latency resp|Y
openrouter/nova-pro-v1|nova-pro|Amazon: Nova Pro 1.0|C|0.7999999999999999,3.1999999999999997|300000,5120|VT|-|Amazon Nova Pro 1.0 is a capable multimodal model from Amazon focused on providi|Y
openrouter/gpt-4o-2024-11-20|gpt-4o|OpenAI: GPT-4o (2024-11-20)|C|2.5,10.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|The 2024-11-20 version of GPT-4o offers a leveled-up creative writing ability wi|Y
openrouter/mistral-large-2411|mistral-large-2411|Mistral Large 2411|C|2.0,6.0|131072,None|VT|80.0,,24.5,49.0,,,,,,|Mistral Large 2 2411 is an update of [Mistral Large 2](/mistralai/mistral-large)|Y
openrouter/mistral-large-2407|mistral-large-2407|Mistral Large 2407|C|2.0,6.0|131072,None|VT|80.0,,24.5,49.0,,,,,,|This is Mistral AI's flagship model, Mistral Large 2 (version mistral-large-2407|Y
openrouter/pixtral-large-2411|pixtral-large-2411|Mistral: Pixtral Large 2411|C|2.0,6.0|131072,None|VT|-|Pixtral Large is a 124B parameter, open-weight, multimodal model built on top of|Y
openrouter/qwen-2.5-coder-32b-instruct|qwen-2.5-coder-32b-instruct|Qwen2.5 Coder 32B Instruct|C|0.03,0.11|32768,32768|VT|79.1,,,,,,,,,|Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (|Y
openrouter/sorcererlm-8x22b|sorcererlm-8x22b|SorcererLM 8x22B|C|4.5,4.5|16000,None|VT|-|SorcererLM is an advanced RP and storytelling model, built as a Low-rank 16-bit |Y
openrouter/unslopnemo-12b|unslopnemo-12b|TheDrummer: UnslopNemo 12B|C|0.39999999999999997,0.39999999999999997|32768,None|VT|-|UnslopNemo v4.1 is the latest addition from the creator of Rocinante, designed f|Y
openrouter/claude-3.5-haiku-20241022|claude-3.5-haiku|Anthropic: Claude 3.5 Haiku (2024-10-22)|C|0.7999999999999999,4.0|200000,8192|VT|74.3,,46.4,38.1,,,,,,|Claude 3.5 Haiku features enhancements across all skill sets including coding, t|Y
openrouter/claude-3.5-haiku|claude-3.5-haiku|Anthropic: Claude 3.5 Haiku|C|0.7999999999999999,4.0|200000,8192|VT|74.3,,46.4,38.1,,,,,,|Claude 3.5 Haiku features offers enhanced capabilities in speed, coding accuracy|Y
openrouter/claude-3.5-sonnet|claude-3.5-sonnet|Anthropic: Claude 3.5 Sonnet|C|6.0,30.0|200000,8192|VT|87.3,,51.7,54.0,40.6,,,,,|New Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet|N
openrouter/magnum-v4-72b|magnum-v4-72b|Magnum v4 72B|C|3.0,5.0|16384,2048|VT|-|This is a series of models designed to replicate the prose quality of the Claude|Y
openrouter/ministral-8b|ministral-8b|Mistral: Ministral 8B|C|0.09999999999999999,0.09999999999999999|131072,None|VT|,,14.9,27.1,,,,,,|Ministral 8B is an 8B parameter model featuring a unique interleaved sliding-win|Y
openrouter/ministral-3b|ministral-3b|Mistral: Ministral 3B|C|0.04,0.04|131072,None|VT|,,14.4,25.3,,,,,,|Ministral 3B is a 3B parameter model optimized for on-device and edge computing.|Y
openrouter/qwen-2.5-7b-instruct|qwen-2.5-7b-instruct|Qwen: Qwen2.5 7B Instruct|C|0.04,0.09999999999999999|32768,None|VT|72.9,,,,,,,,,|Qwen2.5 7B is the latest series of Qwen large language models. Qwen2.5 brings th|Y
openrouter/llama-3.1-nemotron-70b-instruct|llama-3.1-nemotron-70b-instruct|NVIDIA: Llama 3.1 Nemotron 70B Instruct|C|1.2,1.2|131072,16384|VT|-|NVIDIA's Llama 3.1 Nemotron 70B is a language model designed for generating prec|Y
openrouter/inflection-3-pi|inflection-3-pi|Inflection: Inflection 3 Pi|C|2.5,10.0|8000,1024|VT|-|Inflection 3 Pi powers Inflection's [Pi](https://pi.ai) chatbot, including backs|Y
openrouter/inflection-3-productivity|inflection-3-productivity|Inflection: Inflection 3 Productivity|C|2.5,10.0|8000,1024|VT|-|Inflection 3 Productivity is optimized for following instructions. It is better |Y
openrouter/rocinante-12b|rocinante-12b|TheDrummer: Rocinante 12B|C|0.16999999999999998,0.43|32768,None|VT|-|Rocinante 12B is designed for engaging storytelling and rich prose. Early teste|Y
openrouter/llama-3.2-3b-instruct:free|llama-3.2-3b-instruct:free|Meta: Llama 3.2 3B Instruct (free)|C|1.0,5.0|131072,None|VT|-|Llama 3.2 3B is a 3-billion-parameter multilingual large language model, optimiz|N
openrouter/llama-3.2-3b-instruct|llama-3.2-3b-instruct|Meta: Llama 3.2 3B Instruct|C|0.02,0.02|131072,16384|VT|-|Llama 3.2 3B is a 3-billion-parameter multilingual large language model, optimiz|Y
openrouter/llama-3.2-1b-instruct|llama-3.2-1b-instruct|Meta: Llama 3.2 1B Instruct|C|0.027,0.19999999999999998|60000,None|VT|-|Llama 3.2 1B is a 1-billion-parameter language model focused on efficiently perf|Y
openrouter/llama-3.2-90b-vision-instruct|llama-3.2-90b-vision-instruct|Meta: Llama 3.2 90B Vision Instruct|C|0.35,0.39999999999999997|32768,16384|VT|80.3,,39.4,41.0,,,,,,|The Llama 90B Vision model is a top-tier, 90-billion-parameter multimodal model |Y
openrouter/llama-3.2-11b-vision-instruct|llama-3.2-11b-vision-instruct|Meta: Llama 3.2 11B Vision Instruct|C|0.049,0.049|131072,16384|VT|56.5,,,,,,,,,|Llama 3.2 11B Vision is a multimodal model with 11 billion parameters, designed |Y
openrouter/qwen-2.5-72b-instruct|qwen-2.5-72b-instruct|Qwen2.5 72B Instruct|C|0.12,0.39|32768,16384|VT|83.4,,63.2,49.1,,,,,,|Qwen2.5 72B is the latest series of Qwen large language models. Qwen2.5 brings t|Y
openrouter/llama-3.1-lumimaid-8b|llama-3.1-lumimaid-8b|NeverSleep: Lumimaid v0.2 8B|C|0.09,0.6|32768,None|VT|-|Lumimaid v0.2 8B is a finetune of [Llama 3.1 8B](/models/meta-llama/llama-3.1-8b|Y
openrouter/pixtral-12b|pixtral-12b|Mistral: Pixtral 12B|C|0.09999999999999999,0.09999999999999999|32768,None|VT|-|The first multi-modal, text+image-to-text model from Mistral AI. Its weights wer|Y
openrouter/command-r-08-2024|command-r-08-2024|Cohere: Command R (08-2024)|C|0.15,0.6|128000,4000|VT|-|command-r-08-2024 is an update of the [Command R](/models/cohere/command-r) with|Y
openrouter/command-r-plus-08-2024|command-r-plus-08-2024|Cohere: Command R+ (08-2024)|C|2.5,10.0|128000,4000|VT|-|command-r-plus-08-2024 is an update of the [Command R+](/models/cohere/command-r|Y
openrouter/qwen-2.5-vl-7b-instruct:free|qwen-2.5-vl-7b-instruct:free|Qwen: Qwen2.5-VL 7B Instruct (free)|C|1.0,5.0|32768,None|VT|-|Qwen2.5 VL 7B is a multimodal LLM from the Qwen Team with the following key enha|N
openrouter/qwen-2.5-vl-7b-instruct|qwen-2.5-vl-7b-instruct|Qwen: Qwen2.5-VL 7B Instruct|C|0.19999999999999998,0.19999999999999998|32768,None|VT|-|Qwen2.5 VL 7B is a multimodal LLM from the Qwen Team with the following key enha|Y
openrouter/l3.1-euryale-70b|l3.1-euryale-70b|Sao10K: Llama 3.1 Euryale 70B v2.2|C|0.65,0.75|32768,None|VT|-|Euryale L3.1 70B v2.2 is a model focused on creative roleplay from [Sao10k](http|Y
openrouter/hermes-3-llama-3.1-70b|hermes-3-llama-3.1-70b|Nous: Hermes 3 70B Instruct|C|0.3,0.3|65536,None|VT|-|Hermes 3 is a generalist language model with many improvements over [Hermes 2](/|Y
openrouter/hermes-3-llama-3.1-405b:free|hermes-3-llama-3.1-405b:free|Nous: Hermes 3 405B Instruct (free)|C|1.0,5.0|131072,None|VT|-|Hermes 3 is a generalist language model with many improvements over Hermes 2, in|N
openrouter/hermes-3-llama-3.1-405b|hermes-3-llama-3.1-405b|Nous: Hermes 3 405B Instruct|C|1.0,1.0|131072,16384|VT|-|Hermes 3 is a generalist language model with many improvements over Hermes 2, in|Y
openrouter/chatgpt-4o-latest|chatgpt-4o-latest|OpenAI: ChatGPT-4o|C|5.0,15.0|128000,16384|VT|-|OpenAI ChatGPT 4o is continually updated by OpenAI to point to the current versi|N
openrouter/l3-lunaris-8b|l3-lunaris-8b|Sao10K: Llama 3 8B Lunaris|C|0.04,0.049999999999999996|8192,None|VT|-|Lunaris 8B is a versatile generalist and roleplaying model based on Llama 3. It'|Y
openrouter/gpt-4o-2024-08-06|gpt-4o|OpenAI: GPT-4o (2024-08-06)|C|2.5,10.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|The 2024-08-06 version of GPT-4o offers improved performance in structured outpu|Y
openrouter/llama-3.1-405b|llama-3.1-405b|Meta: Llama 3.1 405B (base)|C|4.0,4.0|32768,32768|VT|84.4,,49.8,50.9,,,,,,|Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flav|Y
openrouter/llama-3.1-70b-instruct|llama-3.1-70b-instruct|Meta: Llama 3.1 70B Instruct|C|0.39999999999999997,0.39999999999999997|131072,None|VT|80.1,,36.7,44.2,,,,,,|Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flav|Y
openrouter/llama-3.1-405b-instruct:free|llama-3.1-405b-instruct:free|Meta: Llama 3.1 405B Instruct (free)|C|1.0,5.0|131072,None|VT|-|The highly anticipated 400B class of Llama3 is here! Clocking in at 128k context|N
openrouter/llama-3.1-405b-instruct|llama-3.1-405b-instruct|Meta: Llama 3.1 405B Instruct|C|3.5,3.5|10000,None|VT|84.4,,49.8,50.9,,,,,,|The highly anticipated 400B class of Llama3 is here! Clocking in at 128k context|Y
openrouter/llama-3.1-8b-instruct|llama-3.1-8b-instruct|Meta: Llama 3.1 8B Instruct|C|0.02,0.049999999999999996|16384,16384|VT|56.1,,22.9,25.9,,,,,,|Meta's latest class of model (Llama 3.1) launched with a variety of sizes & flav|Y
openrouter/mistral-nemo|mistral-nemo|Mistral: Mistral Nemo|C|0.02,0.04|131072,16384|VT|-|A 12B parameter model with a 128k token context length built by Mistral in colla|Y
openrouter/gpt-4o-mini|gpt-4o-mini|OpenAI: GPT-4o-mini|C|0.15,0.6|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), |Y
openrouter/gpt-4o-mini-2024-07-18|gpt-4o-mini|OpenAI: GPT-4o-mini (2024-07-18)|C|0.15,0.6|128000,16384|VT|82.0,87.2,52.6,37.7,,,,,,|GPT-4o mini is OpenAI's newest model after [GPT-4 Omni](/models/openai/gpt-4o), |Y
openrouter/gemma-2-27b-it|gemma-2-27b-it|Google: Gemma 2 27B|C|0.65,0.65|8192,None|VT|75.7,,27.9,36.5,,,,,,|Gemma 2 27B by Google is an open model built from the same research and technolo|Y
openrouter/gemma-2-9b-it|gemma-2-9b-it|Google: Gemma 2 9B|C|0.03,0.09|8192,None|VT|72.1,,21.0,27.5,,,,,,|Gemma 2 9B by Google is an advanced, open-source language model that sets a new |Y
openrouter/l3-euryale-70b|l3-euryale-70b|Sao10k: Llama 3 Euryale 70B v2.1|C|1.48,1.48|8192,8192|VT|-|Euryale 70B v2.1 is a model focused on creative roleplay from [Sao10k](https://k|Y
openrouter/mistral-7b-instruct-v0.3|mistral-7b-instruct|Mistral: Mistral 7B Instruct v0.3|C|0.19999999999999998,0.19999999999999998|32768,4096|VT|59.9,,3.6,15.2,,,,,,|A high-performing, industry-standard 7.3B parameter model, with optimizations fo|Y
openrouter/hermes-2-pro-llama-3-8b|hermes-2-pro-llama-3-8b|NousResearch: Hermes 2 Pro - Llama-3 8B|C|0.024999999999999998,0.08|8192,2048|VT|-|Hermes 2 Pro is an upgraded, retrained version of Nous Hermes 2, consisting of a|Y
openrouter/mistral-7b-instruct:free|mistral-7b-instruct:free|Mistral: Mistral 7B Instruct (free)|C|1.0,5.0|32768,16384|VT|-|A high-performing, industry-standard 7.3B parameter model, with optimizations fo|N
openrouter/mistral-7b-instruct|mistral-7b-instruct|Mistral: Mistral 7B Instruct|C|0.028,0.054|32768,16384|VT|-|A high-performing, industry-standard 7.3B parameter model, with optimizations fo|Y
openrouter/gpt-4o-2024-05-13|gpt-4o|OpenAI: GPT-4o (2024-05-13)|C|5.0,15.0|128000,4096|VT|87.2,91.0,53.3,48.9,25.4,,,,,|GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and im|N
openrouter/gpt-4o|gpt-4o|OpenAI: GPT-4o|C|2.5,10.0|128000,16384|VT|87.2,91.0,53.3,48.9,25.4,,,,,|GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and im|Y
openrouter/gpt-4o:extended|gpt-4o:extended|OpenAI: GPT-4o (extended)|C|6.0,18.0|128000,64000|VT|-|GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and im|N
openrouter/llama-guard-2-8b|llama-guard-2-8b|Meta: LlamaGuard 2 8B|C|0.19999999999999998,0.19999999999999998|8192,None|VT|-|This safeguard model has 8B parameters and is based on the Llama 3 family. Just |Y
openrouter/llama-3-70b-instruct|llama-3-70b-instruct|Meta: Llama 3 70B Instruct|C|0.3,0.39999999999999997|8192,16384|VT|-|Meta's latest class of model (Llama 3) launched with a variety of sizes & flavor|Y
openrouter/llama-3-8b-instruct|llama-3-8b-instruct|Meta: Llama 3 8B Instruct|C|0.03,0.06|8192,16384|VT|,,,2.1,,24.0,,,,|Meta's latest class of model (Llama 3) launched with a variety of sizes & flavor|Y
openrouter/mixtral-8x22b-instruct|mixtral-8x22b-instruct|Mistral: Mixtral 8x22B Instruct|C|2.0,6.0|65536,None|VT|-|Mistral's official instruct fine-tuned version of [Mixtral 8x22B](/models/mistra|Y
openrouter/wizardlm-2-8x22b|wizardlm-2-8x22b|WizardLM-2 8x22B|C|0.48,0.48|65536,16384|VT|,,25.7,43.4,,,,,,|WizardLM-2 8x22B is Microsoft AI's most advanced Wizard model. It demonstrates h|Y
openrouter/gpt-4-turbo|gpt-4-turbo|OpenAI: GPT-4 Turbo|C|10.0,30.0|128000,4096|VT|86.7,88.2,46.7,46.6,,,,,,|The latest GPT-4 Turbo model with vision capabilities. Vision requests can now u|N
openrouter/claude-3-haiku|claude-3-haiku|Anthropic: Claude 3 Haiku|C|0.25,1.25|200000,4096|VT|73.8,,14.9,36.3,,,,,,|Claude 3 Haiku is Anthropic's fastest and most compact model for near-instant re|Y
openrouter/mistral-large|mistral-large|Mistral Large|C|2.0,6.0|128000,None|VT|80.0,,24.5,49.0,,,,,,|This is Mistral AI's flagship model, Mistral Large 2 (version `mistral-large-240|Y
openrouter/gpt-3.5-turbo-0613|gpt-3.5-turbo-0613|OpenAI: GPT-3.5 Turbo (older v0613)|C|1.0,2.0|4095,4096|VT|71.4,,15.9,27.2,,,,,,|GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural |Y
openrouter/gpt-4-turbo-preview|gpt-4-turbo-preview|OpenAI: GPT-4 Turbo Preview|C|10.0,30.0|128000,4096|VT|86.7,88.2,46.7,46.6,,,,,,|The preview GPT-4 model with improved instruction following, JSON mode, reproduc|N
openrouter/mistral-tiny|mistral-tiny|Mistral Tiny|C|0.25,0.25|32768,None|VT|-|Note: This model is being deprecated. Recommended replacement is the newer [Mini|Y
openrouter/mistral-7b-instruct-v0.2|mistral-7b-instruct|Mistral: Mistral 7B Instruct v0.2|C|0.19999999999999998,0.19999999999999998|32768,None|VT|62.5,,,,,,,,,|A high-performing, industry-standard 7.3B parameter model, with optimizations fo|Y
openrouter/mixtral-8x7b-instruct|mixtral-8x7b-instruct|Mistral: Mixtral 8x7B Instruct|C|0.54,0.54|32768,16384|VT|-|Mixtral 8x7B Instruct is a pretrained generative Sparse Mixture of Experts, by M|Y
openrouter/noromaid-20b|noromaid-20b|Noromaid 20B|C|1.0,1.75|4096,None|VT|-|A collab between IkariDev and Undi. This merge is suitable for RP, ERP, and gene|Y
openrouter/goliath-120b|goliath-120b|Goliath 120B|C|6.0,8.0|6144,1024|VT|-|A large LLM created by combining two fine-tuned Llama 70B models into one 120B m|N
openrouter/auto|auto|Auto Router|C|-1000000.0,-1000000.0|2000000,None|VT|-|Your prompt will be processed by a meta-model and routed to one of dozens of mod|Y
openrouter/gpt-4-1106-preview|gpt-4-1106-preview|OpenAI: GPT-4 Turbo (older v1106)|C|10.0,30.0|128000,4096|VT|84.7,83.7,40.0,42.4,,,,,,|The latest GPT-4 Turbo model with vision capabilities. Vision requests can now u|N
openrouter/gpt-3.5-turbo-instruct|gpt-3.5-turbo-instruct|OpenAI: GPT-3.5 Turbo Instruct|C|1.5,2.0|4095,4096|VT|71.4,,15.9,27.2,,,,,,|This model is a variant of GPT-3.5 Turbo tuned for instructional prompts and omi|Y
openrouter/mistral-7b-instruct-v0.1|mistral-7b-instruct|Mistral: Mistral 7B Instruct v0.1|C|0.11,0.19|2824,None|VT|56.6,,,,,,,,,|A 7.3B parameter model that outperforms Llama 2 13B on all benchmarks, with opti|Y
openrouter/gpt-3.5-turbo-16k|gpt-3.5-turbo-16k|OpenAI: GPT-3.5 Turbo 16k|C|3.0,4.0|16385,4096|VT|-|This model offers four times the context length of gpt-3.5-turbo, allowing it to|Y
openrouter/weaver|weaver|Mancer: Weaver (alpha)|C|0.75,1.0|8000,2000|VT|-|An attempt to recreate Claude-style verbosity, but don't expect the same level o|Y
openrouter/remm-slerp-l2-13b|remm-slerp-l2-13b|ReMM SLERP 13B|C|0.44999999999999996,0.65|6144,None|VT|-|A recreation trial of the original MythoMax-L2-B13 but with updated models. #mer|Y
openrouter/mythomax-l2-13b|mythomax-l2-13b|MythoMax 13B|C|0.06,0.06|4096,None|VT|-|One of the highest performing and most popular fine-tunes of Llama 2 13B, with r|Y
openrouter/gpt-3.5-turbo|gpt-3.5-turbo|OpenAI: GPT-3.5 Turbo|C|0.5,1.5|16385,4096|VT|71.4,,15.9,27.2,,,,,,|GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural |Y
openrouter/gpt-4|gpt-4|OpenAI: GPT-4|C|30.0,60.0|8191,4096|VT|86.4,,23.0,30.7,,,,,,|OpenAI's flagship model, GPT-4 is a large-scale multimodal language model capabl|N
openrouter/gpt-4-0314|gpt-4-0314|OpenAI: GPT-4 (older v0314)|C|30.0,60.0|8191,4096|VT|86.4,,23.0,30.7,,,,,,|GPT-4-0314 is the first version of GPT-4 released, with a context length of 8,19|N
# =============================================================================
# ORACLE - Direct API (4 models)
# =============================================================================
oracle/cohere.command-r-plus|cohere.command-r-plus|cohere.command-r-plus|C|1.0,5.0|131072,4096|-|-|cohere.command-r-plus model|N
oracle/cohere.command-r|cohere.command-r|cohere.command-r|C|1.0,5.0|131072,4096|-|-|cohere.command-r model|N
oracle/cohere.embed-english-v3.0|cohere.embed-english|cohere.embed-english-v3.0|C|1.0,5.0|512,8192|V|-|cohere.embed-english-v3.0 model|N
oracle/meta.llama-3-70b-instruct|meta.llama-3-70b-instruct|meta.llama-3-70b-instruct|C|1.0,5.0|8192,2048|-|-|meta.llama-3-70b-instruct model|N
# =============================================================================
# PERPLEXITY - Direct API (4 models)
# =============================================================================
perplexity/sonar|sonar|sonar|C|1.0,1.0|127072,8192|T|-|sonar model|Y
perplexity/sonar-pro|sonar-pro|sonar-pro|C|3.0,15.0|200000,8192|T|-|sonar-pro model|Y
perplexity/sonar-reasoning-pro|sonar-reasoning-pro|sonar-reasoning-pro|C|2.0,8.0|127072,8192|TK|-|sonar-reasoning-pro model|Y
perplexity/sonar-deep-research|sonar-deep-research|sonar-deep-research|C|2.0,8.0|127072,8192|T|-|sonar-deep-research model|Y
# =============================================================================
# PIKA - Direct API (5 models)
# =============================================================================
pika/pika-v2.2-text-to-video|pika-v2.2-text-to-video|Pika 2.2 Text-to-Video|C|1.0,5.0|128000,8192|V|-|Text-to-video generation|N
pika/pika-v2.2-image-to-video|pika-v2.2-image-to-video|Pika 2.2 Image-to-Video|C|1.0,5.0|128000,8192|V|-|Image-to-video animation|N
pika/pika-v2.2-pikascenes|pika-v2.2-pikascenes|Pika 2.2 Pikascenes|C|1.0,5.0|128000,8192|V|-|Multi-reference scene generation|N
pika/pika-v2.2-pikaframes|pika-v2.2-pikaframes|Pika 2.2 Pikaframes|C|1.0,5.0|128000,8192|V|-|Keyframe interpolation (up to 5 frames)|N
pika/pika-v2-turbo-image-to-video|pika-v2-turbo-image-to-video|Pika 2 Turbo Image-to-Video|C|1.0,5.0|128000,8192|V|-|Fast turbo mode generation|N
# =============================================================================
# PLAMO - Direct API (26 models)
# =============================================================================
plamo/plamo-13b|plamo-13b|pfnet/plamo-13b|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-13b model|N
plamo/plamo-13b-instruct|plamo-13b-instruct|pfnet/plamo-13b-instruct|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-13b-instruct model|N
plamo/plamo-13b-instruct-nc|plamo-13b-instruct-nc|pfnet/plamo-13b-instruct-nc|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-13b-instruct-nc model|N
plamo/GenerRNA|generrna|pfnet/GenerRNA|C|1.0,5.0|128000,8192|-|-|pfnet/GenerRNA model|N
plamo/nekomata-14b-pfn-qfin|nekomata-14b-pfn-qfin|pfnet/nekomata-14b-pfn-qfin|C|1.0,5.0|128000,8192|-|-|pfnet/nekomata-14b-pfn-qfin model|N
plamo/nekomata-14b-pfn-qfin-inst-merge|nekomata-14b-pfn-qfin-inst-merge|pfnet/nekomata-14b-pfn-qfin-inst-merge|C|1.0,5.0|128000,8192|-|-|pfnet/nekomata-14b-pfn-qfin-inst-merge model|N
plamo/nekomata-7b-pfn-qfin|nekomata-7b-pfn-qfin|pfnet/nekomata-7b-pfn-qfin|C|1.0,5.0|128000,8192|-|-|pfnet/nekomata-7b-pfn-qfin model|N
plamo/nekomata-7b-pfn-qfin-inst-merge|nekomata-7b-pfn-qfin-inst-merge|pfnet/nekomata-7b-pfn-qfin-inst-merge|C|1.0,5.0|128000,8192|-|-|pfnet/nekomata-7b-pfn-qfin-inst-merge model|N
plamo/Llama3-Preferred-MedSwallow-70B|llama3-preferred-medswallow-70b|pfnet/Llama3-Preferred-MedSwallow-70B|C|1.0,5.0|128000,8192|-|-|pfnet/Llama3-Preferred-MedSwallow-70B model|N
plamo/timesfm-1.0-200m-fin|timesfm-1.0-200m-fin|pfnet/timesfm-1.0-200m-fin|C|1.0,5.0|128000,8192|-|-|pfnet/timesfm-1.0-200m-fin model|N
plamo/plamo-100b|plamo-100b|pfnet/plamo-100b|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-100b model|N
plamo/plamo-2-1b|plamo-2-1b|pfnet/plamo-2-1b|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2-1b model|N
plamo/plamo-2-8b|plamo-2-8b|pfnet/plamo-2-8b|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2-8b model|N
plamo/Preferred-MedLLM-Qwen-72B|preferred-medllm-qwen-72b|pfnet/Preferred-MedLLM-Qwen-72B|C|1.0,5.0|128000,8192|-|-|pfnet/Preferred-MedLLM-Qwen-72B model|N
plamo/plamo-embedding-1b|plamo-embedding-1b|pfnet/plamo-embedding-1b|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-embedding-1b model|N
plamo/plamo-2-translate|plamo-2-translate|pfnet/plamo-2-translate|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2-translate model|N
plamo/plamo-2-translate-eval|plamo-2-translate-eval|pfnet/plamo-2-translate-eval|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2-translate-eval model|N
plamo/plamo-2-translate-base|plamo-2-translate-base|pfnet/plamo-2-translate-base|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2-translate-base model|N
plamo/plamo-2.1-8b-cpt|plamo-2.1-8b-cpt|pfnet/plamo-2.1-8b-cpt|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2.1-8b-cpt model|N
plamo/plamo-2.1-2b-cpt|plamo-2.1-2b-cpt|pfnet/plamo-2.1-2b-cpt|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-2.1-2b-cpt model|N
plamo/Qwen2.5-1.5B-pfn-qfin|qwen2.5-1.5b-pfn-qfin|pfnet/Qwen2.5-1.5B-pfn-qfin|C|1.0,5.0|128000,8192|-|-|pfnet/Qwen2.5-1.5B-pfn-qfin model|N
plamo/Qwen3-1.7B-pfn-qfin|qwen3-1.7b-pfn-qfin|pfnet/Qwen3-1.7B-pfn-qfin|C|1.0,5.0|128000,8192|-|-|pfnet/Qwen3-1.7B-pfn-qfin model|N
plamo/plamo-3-nict-2b-base|plamo-3-nict-2b-base|pfnet/plamo-3-nict-2b-base|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-3-nict-2b-base model|N
plamo/plamo-3-nict-8b-base|plamo-3-nict-8b-base|pfnet/plamo-3-nict-8b-base|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-3-nict-8b-base model|N
plamo/plamo-3-nict-31b-base|plamo-3-nict-31b-base|pfnet/plamo-3-nict-31b-base|C|1.0,5.0|128000,8192|-|-|pfnet/plamo-3-nict-31b-base model|N
plamo/Preferred-MedRECT-32B|preferred-medrect-32b|pfnet/Preferred-MedRECT-32B|C|1.0,5.0|128000,8192|-|-|pfnet/Preferred-MedRECT-32B model|N
# =============================================================================
# PLAYHT - Direct API (3 models)
# =============================================================================
playht/play-dialog|play-dialog|play-dialog|C|1.0,5.0|128000,8192|-|-|play-dialog model|N
playht/play3.0-mini|play3.0-mini|play3.0-mini|C|1.0,5.0|128000,8192|-|-|play3.0-mini model|N
playht/playht-2.0-turbo|playht-2.0-turbo|playht-2.0-turbo|C|1.0,5.0|128000,8192|-|-|playht-2.0-turbo model|N
# =============================================================================
# PREDIBASE - Direct API (6 models)
# =============================================================================
predibase/llama-3-8b|llama-3-8b|Llama 3 8B|C|1.0,5.0|8192,4096|-|,,,2.1,,24.0,,,,|Llama 3 8B model|N
predibase/llama-3-70b|llama-3-70b|Llama 3 70B|C|1.0,5.0|8192,4096|-|-|Llama 3 70B model|N
predibase/llama-3.1-8b|llama-3.1-8b|Llama 3.1 8B|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|Llama 3.1 8B model|N
predibase/llama-3.1-70b|llama-3.1-70b|Llama 3.1 70B|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|Llama 3.1 70B model|N
predibase/mistral-7b|mistral-7b|Mistral 7B|C|1.0,5.0|32768,4096|-|-|Mistral 7B model|N
predibase/phi-3-mini|phi-3-mini|Phi-3 Mini|C|1.0,5.0|128000,4096|-|-|Phi-3 Mini model|N
# =============================================================================
# QWEN - Direct API (256 models)
# =============================================================================
alibaba/qwen3-max|qwen3-max|qwen/qwen3-max|C|1.2,6.0|262144,8192|-|,,97.1,72.6,,,,,,|qwen/qwen3-max model|Y
alibaba/qwen3-max-2025-09-23|qwen3-max|qwen/qwen3-max-2025-09-23|C|1.2,6.0|262144,8192|-|,,97.1,72.6,,,,,,|qwen/qwen3-max-2025-09-23 model|Y
alibaba/qwen3-max-preview|qwen3-max-preview|qwen/qwen3-max-preview|C|1.2,6.0|81920,8192|-|,,97.1,72.6,,,,,,|qwen/qwen3-max-preview model|Y
alibaba/qwen-max|qwen-max|qwen/qwen-max|C|1.6,6.4|30720,8192|-|,,67.2,56.1,,,,,,|qwen/qwen-max model|Y
alibaba/qwen-max-latest|qwen-max-latest|qwen/qwen-max-latest|C|1.6,6.4|129024,8192|-|,,67.2,56.1,,,,,,|qwen/qwen-max-latest model|Y
alibaba/qwen-max-2025-01-25|qwen-max|qwen/qwen-max-2025-01-25|C|1.6,6.4|30720,8192|-|,,67.2,56.1,,,,,,|qwen/qwen-max-2025-01-25 model|Y
alibaba/qwen-max-2024-09-19|qwen-max|qwen/qwen-max-2024-09-19|C|2.868,8.602|30720,8192|-|,,67.2,56.1,,,,,,|qwen/qwen-max-2024-09-19 model|Y
alibaba/qwen-plus|qwen-plus|qwen/qwen-plus|C|1.2,4.0|129024,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus model|Y
alibaba/qwen-plus-2025-12-01|qwen-plus|qwen/qwen-plus-2025-12-01|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-12-01 model|Y
alibaba/qwen-plus-2025-09-11|qwen-plus|qwen/qwen-plus-2025-09-11|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-09-11 model|Y
alibaba/qwen-plus-2025-07-28|qwen-plus|qwen/qwen-plus-2025-07-28|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-07-28 model|Y
alibaba/qwen-plus-latest|qwen-plus-latest|qwen/qwen-plus-latest|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-latest model|Y
alibaba/qwen-plus-2025-07-14|qwen-plus|qwen/qwen-plus-2025-07-14|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-07-14 model|Y
alibaba/qwen-plus-2025-04-28|qwen-plus|qwen/qwen-plus-2025-04-28|C|1.2,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-04-28 model|Y
alibaba/qwen-plus-2025-01-25|qwen-plus|qwen/qwen-plus-2025-01-25|C|1.2,4.0|129024,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-01-25 model|Y
alibaba/qwen-plus-us|qwen-plus-us|qwen/qwen-plus-us|C|1.2,4.0|131072,8192|-|-|qwen/qwen-plus-us model|Y
alibaba/qwen-plus-2025-12-01-us|qwen-plus-2025-12-01-us|qwen/qwen-plus-2025-12-01-us|C|1.2,4.0|131072,8192|-|-|qwen/qwen-plus-2025-12-01-us model|Y
alibaba/qwen-plus-2025-01-12|qwen-plus|qwen/qwen-plus-2025-01-12|C|0.287,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2025-01-12 model|Y
alibaba/qwen-plus-2024-12-20|qwen-plus|qwen/qwen-plus-2024-12-20|C|0.287,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2024-12-20 model|Y
alibaba/qwen-plus-2024-11-27|qwen-plus|qwen/qwen-plus-2024-11-27|C|0.287,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2024-11-27 model|Y
alibaba/qwen-plus-2024-11-25|qwen-plus|qwen/qwen-plus-2024-11-25|C|0.287,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2024-11-25 model|Y
alibaba/qwen-plus-2024-09-19|qwen-plus|qwen/qwen-plus-2024-09-19|C|0.287,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2024-09-19 model|Y
alibaba/qwen-plus-2024-08-06|qwen-plus|qwen/qwen-plus-2024-08-06|C|1.721,4.0|131072,8192|-|,,65.3,48.1,28.0,,,,,|qwen/qwen-plus-2024-08-06 model|Y
alibaba/qwen-flash|qwen-flash|qwen/qwen-flash|C|0.4,1.0|1000000,8192|-|-|qwen/qwen-flash model|Y
alibaba/qwen-flash-2025-07-28|qwen-flash|qwen/qwen-flash-2025-07-28|C|0.4,1.0|995904,8192|-|-|qwen/qwen-flash-2025-07-28 model|Y
alibaba/qwen-flash-us|qwen-flash-us|qwen/qwen-flash-us|C|0.4,1.0|1000000,8192|-|-|qwen/qwen-flash-us model|Y
alibaba/qwen-flash-2025-07-28-us|qwen-flash-2025-07-28-us|qwen/qwen-flash-2025-07-28-us|C|0.4,1.0|995904,8192|-|-|qwen/qwen-flash-2025-07-28-us model|Y
alibaba/qwen-turbo|qwen-turbo|qwen/qwen-turbo|C|0.5,1.0|8192,8192|-|,,56.2,41.8,,,,,,|qwen/qwen-turbo model|Y
alibaba/qwen-turbo-latest|qwen-turbo-latest|qwen/qwen-turbo-latest|C|0.5,1.0|131072,8192|-|,,56.2,41.8,,,,,,|qwen/qwen-turbo-latest model|Y
alibaba/qwen-turbo-2025-04-28|qwen-turbo|qwen/qwen-turbo-2025-04-28|C|0.5,1.0|131072,8192|-|,,56.2,41.8,,,,,,|qwen/qwen-turbo-2025-04-28 model|Y
alibaba/qwen-turbo-2024-11-01|qwen-turbo|qwen/qwen-turbo-2024-11-01|C|1.0,1.0|8192,8192|-|,,56.2,41.8,,,,,,|qwen/qwen-turbo-2024-11-01 model|Y
alibaba/qwen-turbo-2025-07-15|qwen-turbo|qwen/qwen-turbo-2025-07-15|C|0.431,1.0|131072,8192|-|,,56.2,41.8,,,,,,|qwen/qwen-turbo-2025-07-15 model|Y
alibaba/qwq-plus|qwq-plus|qwen/qwq-plus|C|1.0,2.4|98304,16384|-|,,,65.4,,,,,,|qwen/qwq-plus model|Y
alibaba/qwq-plus-latest|qwq-plus-latest|qwen/qwq-plus-latest|C|1.0,2.4|98304,16384|-|,,,65.4,,,,,,|qwen/qwq-plus-latest model|Y
alibaba/qwq-plus-2025-03-05|qwq-plus|qwen/qwq-plus-2025-03-05|C|1.0,2.4|98304,16384|-|,,,65.4,,,,,,|qwen/qwq-plus-2025-03-05 model|Y
alibaba/qwen-long-latest|qwen-long-latest|qwen/qwen-long-latest|C|0.4,1.2|10000000,8192|-|-|qwen/qwen-long-latest model|Y
alibaba/qwen-long-2025-01-25|qwen-long|qwen/qwen-long-2025-01-25|C|0.4,1.2|10000000,8192|-|-|qwen/qwen-long-2025-01-25 model|Y
alibaba/qwen3-omni-flash|qwen3-omni-flash|qwen/qwen3-omni-flash|C|3.81,0.78|65536,8192|-|-|qwen/qwen3-omni-flash model|Y
alibaba/qwen3-omni-flash-2025-12-01|qwen3-omni-flash|qwen/qwen3-omni-flash-2025-12-01|C|3.81,0.78|65536,8192|-|-|qwen/qwen3-omni-flash-2025-12-01 model|Y
alibaba/qwen3-omni-flash-2025-09-15|qwen3-omni-flash|qwen/qwen3-omni-flash-2025-09-15|C|3.81,0.78|65536,8192|-|-|qwen/qwen3-omni-flash-2025-09-15 model|Y
alibaba/qwen-omni-turbo|qwen-omni-turbo|qwen/qwen-omni-turbo|C|0.21,0.27|30720,8192|-|-|qwen/qwen-omni-turbo model|Y
alibaba/qwen-omni-turbo-latest|qwen-omni-turbo-latest|qwen/qwen-omni-turbo-latest|C|0.21,0.27|30720,8192|-|-|qwen/qwen-omni-turbo-latest model|Y
alibaba/qwen-omni-turbo-2025-03-26|qwen-omni-turbo|qwen/qwen-omni-turbo-2025-03-26|C|0.21,0.27|30720,8192|-|-|qwen/qwen-omni-turbo-2025-03-26 model|Y
alibaba/qwen-omni-turbo-2025-01-19|qwen-omni-turbo|qwen/qwen-omni-turbo-2025-01-19|C|0.216,0.23|30720,8192|-|-|qwen/qwen-omni-turbo-2025-01-19 model|Y
alibaba/qwen3-omni-flash-realtime|qwen3-omni-flash-realtime|qwen/qwen3-omni-flash-realtime|C|0.94,1.99|49152,8192|-|-|qwen/qwen3-omni-flash-realtime model|Y
alibaba/qwen-omni-turbo-realtime|qwen-omni-turbo-realtime|qwen/qwen-omni-turbo-realtime|C|0.84,1.07|30720,8192|-|-|qwen/qwen-omni-turbo-realtime model|Y
alibaba/qwen-omni-turbo-realtime-latest|qwen-omni-turbo-realtime-latest|qwen/qwen-omni-turbo-realtime-latest|C|0.84,1.07|30720,8192|-|-|qwen/qwen-omni-turbo-realtime-latest model|Y
alibaba/qwen-omni-turbo-realtime-2025-05-08|qwen-omni-turbo-realtime|qwen/qwen-omni-turbo-realtime-2025-05-08|C|0.84,1.07|30720,8192|-|-|qwen/qwen-omni-turbo-realtime-2025-05-08 model|Y
alibaba/qwen3-omni-flash-realtime-2025-12-01|qwen3-omni-flash-realtime|qwen/qwen3-omni-flash-realtime-2025-12-01|C|0.94,1.99|49152,8192|-|-|qwen/qwen3-omni-flash-realtime-2025-12-01 model|Y
alibaba/qwen3-omni-flash-realtime-2025-09-15|qwen3-omni-flash-realtime|qwen/qwen3-omni-flash-realtime-2025-09-15|C|0.559,1.19|49152,8192|-|-|qwen/qwen3-omni-flash-realtime-2025-09-15 model|Y
alibaba/qwen3-vl-plus|qwen3-vl-plus|qwen/qwen3-vl-plus|C|0.2,1.6|262144,8192|V|-|qwen/qwen3-vl-plus model|Y
alibaba/qwen3-vl-plus-2025-09-23|qwen3-vl-plus|qwen/qwen3-vl-plus-2025-09-23|C|0.2,1.6|262144,8192|V|-|qwen/qwen3-vl-plus-2025-09-23 model|Y
alibaba/qwen3-vl-flash|qwen3-vl-flash|qwen/qwen3-vl-flash|C|0.05,0.4|None,8192|V|-|qwen/qwen3-vl-flash model|Y
alibaba/qwen3-vl-flash-2025-10-15|qwen3-vl-flash|qwen/qwen3-vl-flash-2025-10-15|C|0.05,0.4|None,8192|V|-|qwen/qwen3-vl-flash-2025-10-15 model|Y
alibaba/qwen3-vl-plus-2025-12-19|qwen3-vl-plus|qwen/qwen3-vl-plus-2025-12-19|C|0.2,1.6|262144,8192|V|-|qwen/qwen3-vl-plus-2025-12-19 model|Y
alibaba/qwen-vl-max|qwen-vl-max|qwen/qwen-vl-max|C|3.2,1.0|2048,4096|V|-|qwen/qwen-vl-max model|Y
alibaba/qwen-vl-max-latest|qwen-vl-max-latest|qwen/qwen-vl-max-latest|C|3.2,1.0|32768,4096|V|-|qwen/qwen-vl-max-latest model|Y
alibaba/qwen-vl-max-2025-08-13|qwen-vl-max|qwen/qwen-vl-max-2025-08-13|C|3.2,1.0|32768,4096|V|-|qwen/qwen-vl-max-2025-08-13 model|Y
alibaba/qwen-vl-max-2025-04-08|qwen-vl-max|qwen/qwen-vl-max-2025-04-08|C|3.2,1.0|32768,4096|V|-|qwen/qwen-vl-max-2025-04-08 model|Y
alibaba/qwen-vl-plus|qwen-vl-plus|qwen/qwen-vl-plus|C|0.63,1.2|2048,4096|V|-|qwen/qwen-vl-plus model|Y
alibaba/qwen-vl-plus-latest|qwen-vl-plus-latest|qwen/qwen-vl-plus-latest|C|0.63,1.2|32768,4096|V|-|qwen/qwen-vl-plus-latest model|Y
alibaba/qwen-vl-plus-2025-08-15|qwen-vl-plus|qwen/qwen-vl-plus-2025-08-15|C|0.63,1.2|32768,4096|V|-|qwen/qwen-vl-plus-2025-08-15 model|Y
alibaba/qwen-vl-plus-2025-05-07|qwen-vl-plus|qwen/qwen-vl-plus-2025-05-07|C|0.63,1.2|32768,4096|V|-|qwen/qwen-vl-plus-2025-05-07 model|Y
alibaba/qwen-vl-plus-2025-01-25|qwen-vl-plus|qwen/qwen-vl-plus-2025-01-25|C|0.63,1.2|32768,4096|V|-|qwen/qwen-vl-plus-2025-01-25 model|Y
alibaba/qwen3-vl-flash-us|qwen3-vl-flash-us|qwen/qwen3-vl-flash-us|C|0.05,0.4|None,8192|V|-|qwen/qwen3-vl-flash-us model|Y
alibaba/qwen3-vl-flash-2025-10-15-us|qwen3-vl-flash-2025-10-15-us|qwen/qwen3-vl-flash-2025-10-15-us|C|0.05,0.4|None,8192|V|-|qwen/qwen3-vl-flash-2025-10-15-us model|Y
alibaba/qwen-vl-max-2025-04-02|qwen-vl-max|qwen/qwen-vl-max-2025-04-02|C|1.291,1.0|32768,4096|V|-|qwen/qwen-vl-max-2025-04-02 model|Y
alibaba/qwen-vl-max-2025-01-25|qwen-vl-max|qwen/qwen-vl-max-2025-01-25|C|1.291,1.0|32768,4096|V|-|qwen/qwen-vl-max-2025-01-25 model|Y
alibaba/qwen-vl-max-2024-12-30|qwen-vl-max|qwen/qwen-vl-max-2024-12-30|C|1.291,1.0|2048,4096|V|-|qwen/qwen-vl-max-2024-12-30 model|Y
alibaba/qwen-vl-max-2024-11-19|qwen-vl-max|qwen/qwen-vl-max-2024-11-19|C|1.291,1.0|32768,4096|V|-|qwen/qwen-vl-max-2024-11-19 model|Y
alibaba/qwen-vl-max-2024-10-30|qwen-vl-max|qwen/qwen-vl-max-2024-10-30|C|2.868,1.0|32768,4096|V|-|qwen/qwen-vl-max-2024-10-30 model|Y
alibaba/qwen-vl-max-2024-08-09|qwen-vl-max|qwen/qwen-vl-max-2024-08-09|C|2.868,1.0|32768,4096|V|-|qwen/qwen-vl-max-2024-08-09 model|Y
alibaba/qwen-vl-plus-2025-07-10|qwen-vl-plus|qwen/qwen-vl-plus-2025-07-10|C|0.216,1.2|32768,4096|V|-|qwen/qwen-vl-plus-2025-07-10 model|Y
alibaba/qwen-vl-plus-2025-01-02|qwen-vl-plus|qwen/qwen-vl-plus-2025-01-02|C|0.646,1.2|2048,4096|V|-|qwen/qwen-vl-plus-2025-01-02 model|Y
alibaba/qwen-vl-plus-2024-08-09|qwen-vl-plus|qwen/qwen-vl-plus-2024-08-09|C|0.646,1.2|32768,4096|V|-|qwen/qwen-vl-plus-2024-08-09 model|Y
alibaba/qwen-vl-ocr|qwen-vl-ocr|qwen/qwen-vl-ocr|C|1.0,5.0|8192,8192|V|-|qwen/qwen-vl-ocr model|Y
alibaba/qwen-vl-ocr-2025-11-20|qwen-vl-ocr|qwen/qwen-vl-ocr-2025-11-20|C|1.0,5.0|8192,8192|V|-|qwen/qwen-vl-ocr-2025-11-20 model|Y
alibaba/qwen-vl-ocr-latest|qwen-vl-ocr-latest|qwen/qwen-vl-ocr-latest|C|1.0,5.0|8192,8192|V|-|qwen/qwen-vl-ocr-latest model|Y
alibaba/qwen-vl-ocr-2025-08-28|qwen-vl-ocr|qwen/qwen-vl-ocr-2025-08-28|C|1.0,5.0|None,8192|V|-|qwen/qwen-vl-ocr-2025-08-28 model|Y
alibaba/qwen-vl-ocr-2025-04-13|qwen-vl-ocr|qwen/qwen-vl-ocr-2025-04-13|C|1.0,5.0|128000,8192|V|-|qwen/qwen-vl-ocr-2025-04-13 model|Y
alibaba/qwen-vl-ocr-2024-10-28|qwen-vl-ocr|qwen/qwen-vl-ocr-2024-10-28|C|1.0,5.0|128000,8192|V|-|qwen/qwen-vl-ocr-2024-10-28 model|Y
alibaba/qwen-math-plus|qwen-math-plus|qwen/qwen-math-plus|C|0.8,2.4|3072,8192|-|-|qwen/qwen-math-plus model|Y
alibaba/qwen-math-plus-latest|qwen-math-plus-latest|qwen/qwen-math-plus-latest|C|0.8,2.4|3072,8192|-|-|qwen/qwen-math-plus-latest model|Y
alibaba/qwen-math-plus-2024-09-19|qwen-math-plus|qwen/qwen-math-plus-2024-09-19|C|0.8,2.4|3072,8192|-|-|qwen/qwen-math-plus-2024-09-19 model|Y
alibaba/qwen-math-plus-2024-08-16|qwen-math-plus|qwen/qwen-math-plus-2024-08-16|C|0.8,2.4|3072,8192|-|-|qwen/qwen-math-plus-2024-08-16 model|Y
alibaba/qwen-math-turbo|qwen-math-turbo|qwen/qwen-math-turbo|C|0.1,0.4|131072,8192|-|-|qwen/qwen-math-turbo model|Y
alibaba/qwen-math-turbo-latest|qwen-math-turbo-latest|qwen/qwen-math-turbo-latest|C|0.1,0.4|131072,8192|-|-|qwen/qwen-math-turbo-latest model|Y
alibaba/qwen-math-turbo-2024-09-19|qwen-math-turbo|qwen/qwen-math-turbo-2024-09-19|C|0.1,0.4|131072,8192|-|-|qwen/qwen-math-turbo-2024-09-19 model|Y
alibaba/qwen3-coder-plus|qwen3-coder-plus|qwen/qwen3-coder-plus|C|5.0,1.0|997952,8192|-|-|qwen/qwen3-coder-plus model|N
alibaba/qwen3-coder-plus-2025-09-23|qwen3-coder-plus|qwen/qwen3-coder-plus-2025-09-23|C|5.0,1.0|997952,8192|-|-|qwen/qwen3-coder-plus-2025-09-23 model|N
alibaba/qwen3-coder-plus-2025-07-22|qwen3-coder-plus|qwen/qwen3-coder-plus-2025-07-22|C|5.0,1.0|997952,8192|-|-|qwen/qwen3-coder-plus-2025-07-22 model|N
alibaba/qwen3-coder-flash|qwen3-coder-flash|qwen/qwen3-coder-flash|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-coder-flash model|Y
alibaba/qwen3-coder-flash-2025-07-28|qwen3-coder-flash|qwen/qwen3-coder-flash-2025-07-28|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-coder-flash-2025-07-28 model|Y
alibaba/qwen-coder-plus|qwen-coder-plus|qwen/qwen-coder-plus|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-plus model|Y
alibaba/qwen-coder-plus-latest|qwen-coder-plus-latest|qwen/qwen-coder-plus-latest|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-plus-latest model|Y
alibaba/qwen-coder-plus-2024-11-06|qwen-coder-plus|qwen/qwen-coder-plus-2024-11-06|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-plus-2024-11-06 model|Y
alibaba/qwen-coder-turbo|qwen-coder-turbo|qwen/qwen-coder-turbo|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-turbo model|Y
alibaba/qwen-coder-turbo-latest|qwen-coder-turbo-latest|qwen/qwen-coder-turbo-latest|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-turbo-latest model|Y
alibaba/qwen-coder-turbo-2024-09-19|qwen-coder-turbo|qwen/qwen-coder-turbo-2024-09-19|C|1.0,5.0|129024,8192|-|-|qwen/qwen-coder-turbo-2024-09-19 model|Y
alibaba/qwen-mt-plus|qwen-mt-plus|qwen/qwen-mt-plus|C|1.0,5.0|8192,8192|-|-|qwen/qwen-mt-plus model|Y
alibaba/qwen-mt-flash|qwen-mt-flash|qwen/qwen-mt-flash|C|1.0,5.0|128000,8192|-|-|qwen/qwen-mt-flash model|N
alibaba/qwen-mt-lite|qwen-mt-lite|qwen/qwen-mt-lite|C|1.0,5.0|128000,8192|-|-|qwen/qwen-mt-lite model|N
alibaba/qwen-mt-turbo|qwen-mt-turbo|qwen/qwen-mt-turbo|C|1.0,5.0|128000,8192|-|-|qwen/qwen-mt-turbo model|N
alibaba/qwen-doc-turbo|qwen-doc-turbo|qwen/qwen-doc-turbo|C|1.0,5.0|32768,8192|-|-|qwen/qwen-doc-turbo model|N
alibaba/qwen-deep-research|qwen-deep-research|qwen/qwen-deep-research|C|1.0,5.0|32768,8192|-|-|qwen/qwen-deep-research model|N
alibaba/qwen3-next-80b-a3b-thinking|qwen3-next-80b-a3b-thinking|qwen/qwen3-next-80b-a3b-thinking|C|1.0,1.2|126976,16384|-|-|qwen/qwen3-next-80b-a3b-thinking model|Y
alibaba/qwen3-next-80b-a3b-instruct|qwen3-next-80b-a3b-instruct|qwen/qwen3-next-80b-a3b-instruct|C|1.2,2.8|131072,8192|-|-|qwen/qwen3-next-80b-a3b-instruct model|Y
alibaba/qwen3-235b-a22b-thinking-2507|qwen3-235b-a22b-thinking-2507|qwen/qwen3-235b-a22b-thinking-2507|C|1.4,2.3|81920,16384|-|,,,80.1,,,,,,|qwen/qwen3-235b-a22b-thinking-2507 model|Y
alibaba/qwen3-235b-a22b-instruct-2507|qwen3-235b-a22b-instruct-2507|qwen/qwen3-235b-a22b-instruct-2507|C|0.92,5.6|131072,8192|-|,,68.9,70.7,,,,,,|qwen/qwen3-235b-a22b-instruct-2507 model|Y
alibaba/qwen3-30b-a3b-thinking-2507|qwen3-30b-a3b-thinking-2507|qwen/qwen3-30b-a3b-thinking-2507|C|0.5,2.4|81920,16384|-|-|qwen/qwen3-30b-a3b-thinking-2507 model|Y
alibaba/qwen3-30b-a3b-instruct-2507|qwen3-30b-a3b-instruct-2507|qwen/qwen3-30b-a3b-instruct-2507|C|0.8,1.4|131072,8192|-|-|qwen/qwen3-30b-a3b-instruct-2507 model|Y
alibaba/qwen3-235b-a22b|qwen3-235b-a22b|qwen/qwen3-235b-a22b|C|2.8,8.4|131072,8192|-|,,68.9,70.7,,,,,,|qwen/qwen3-235b-a22b model|Y
alibaba/qwen3-32b|qwen3-32b|qwen/qwen3-32b|C|0.64,0.64|131072,8192|-|-|qwen/qwen3-32b model|Y
alibaba/qwen3-30b-a3b|qwen3-30b-a3b|qwen/qwen3-30b-a3b|C|0.8,2.4|131072,8192|-|-|qwen/qwen3-30b-a3b model|Y
alibaba/qwen3-14b|qwen3-14b|qwen/qwen3-14b|C|1.4,4.2|131072,8192|-|-|qwen/qwen3-14b model|Y
alibaba/qwen3-8b|qwen3-8b|qwen/qwen3-8b|C|0.7,2.1|131072,8192|-|-|qwen/qwen3-8b model|Y
alibaba/qwen3-4b|qwen3-4b|qwen/qwen3-4b|C|0.42,1.26|None,8192|-|-|qwen/qwen3-4b model|Y
alibaba/qwen3-1.7b|qwen3-1.7b|qwen/qwen3-1.7b|C|0.42,1.26|30720,8192|-|-|qwen/qwen3-1.7b model|Y
alibaba/qwen3-0.6b|qwen3-0.6b|qwen/qwen3-0.6b|C|0.42,1.26|None,8192|-|-|qwen/qwen3-0.6b model|Y
alibaba/qwq-32b|qwq-32b|qwen/qwq-32b|C|0.8,2.4|32768,16384|-|-|qwen/qwq-32b model|Y
alibaba/qwq-32b-preview|qwq-32b-preview|qwen/qwq-32b-preview|C|0.8,2.4|16384,16384|-|-|qwen/qwq-32b-preview model|Y
alibaba/qwen2.5-14b-instruct-1m|qwen2.5-14b-instruct-1m|qwen/qwen2.5-14b-instruct-1m|C|1.0,1.4|8192,8192|-|-|qwen/qwen2.5-14b-instruct-1m model|Y
alibaba/qwen2.5-7b-instruct-1m|qwen2.5-7b-instruct-1m|qwen/qwen2.5-7b-instruct-1m|C|0.4,1.2|1000000,8192|-|-|qwen/qwen2.5-7b-instruct-1m model|Y
alibaba/qwen2.5-72b-instruct|qwen2.5-72b-instruct|qwen/qwen2.5-72b-instruct|C|1.4,5.6|131072,8192|-|83.4,,63.2,49.1,,,,,,|qwen/qwen2.5-72b-instruct model|Y
alibaba/qwen2.5-32b-instruct|qwen2.5-32b-instruct|qwen/qwen2.5-32b-instruct|C|0.7,2.8|131072,8192|-|,,56.1,46.1,,,,,,|qwen/qwen2.5-32b-instruct model|Y
alibaba/qwen2.5-14b-instruct|qwen2.5-14b-instruct|qwen/qwen2.5-14b-instruct|C|0.35,1.4|131072,8192|-|79.9,,,,,,,,,|qwen/qwen2.5-14b-instruct model|Y
alibaba/qwen2.5-7b-instruct|qwen2.5-7b-instruct|qwen/qwen2.5-7b-instruct|C|0.175,0.7|131072,8192|-|72.9,,,,,,,,,|qwen/qwen2.5-7b-instruct model|Y
alibaba/qwen2.5-3b-instruct|qwen2.5-3b-instruct|qwen/qwen2.5-3b-instruct|C|0.1,0.4|131072,8192|-|-|qwen/qwen2.5-3b-instruct model|Y
alibaba/qwen2.5-1.5b-instruct|qwen2.5-1.5b-instruct|qwen/qwen2.5-1.5b-instruct|C|0.05,0.2|131072,8192|-|-|qwen/qwen2.5-1.5b-instruct model|Y
alibaba/qwen2.5-0.5b-instruct|qwen2.5-0.5b-instruct|qwen/qwen2.5-0.5b-instruct|C|0.05,0.2|131072,8192|-|-|qwen/qwen2.5-0.5b-instruct model|Y
alibaba/qwen2.5-omni-7b|qwen2.5-omni-7b|qwen/qwen2.5-omni-7b|C|0.28,0.4|2048,8192|-|-|qwen/qwen2.5-omni-7b model|Y
alibaba/qwen3-omni-30b-a3b-captioner|qwen3-omni-30b-a3b-captioner|qwen/qwen3-omni-30b-a3b-captioner|C|1.0,5.0|32768,8192|-|-|qwen/qwen3-omni-30b-a3b-captioner model|Y
alibaba/qwen3-vl-235b-a22b-thinking|qwen3-vl-235b-a22b-thinking|qwen/qwen3-vl-235b-a22b-thinking|C|2.867,1.0|126976,4096|V|-|qwen/qwen3-vl-235b-a22b-thinking model|Y
alibaba/qwen3-vl-235b-a22b-instruct|qwen3-vl-235b-a22b-instruct|qwen/qwen3-vl-235b-a22b-instruct|C|1.147,5.6|32768,4096|V|-|qwen/qwen3-vl-235b-a22b-instruct model|Y
alibaba/qwen3-vl-32b-thinking|qwen3-vl-32b-thinking|qwen/qwen3-vl-32b-thinking|C|1.0,5.0|126976,8192|V|-|qwen/qwen3-vl-32b-thinking model|Y
alibaba/qwen3-vl-32b-instruct|qwen3-vl-32b-instruct|qwen/qwen3-vl-32b-instruct|C|1.0,5.0|None,8192|V|-|qwen/qwen3-vl-32b-instruct model|Y
alibaba/qwen3-vl-30b-a3b-thinking|qwen3-vl-30b-a3b-thinking|qwen/qwen3-vl-30b-a3b-thinking|C|1.0,5.0|81920,8192|V|-|qwen/qwen3-vl-30b-a3b-thinking model|Y
alibaba/qwen3-vl-30b-a3b-instruct|qwen3-vl-30b-a3b-instruct|qwen/qwen3-vl-30b-a3b-instruct|C|1.0,5.0|None,8192|V|-|qwen/qwen3-vl-30b-a3b-instruct model|Y
alibaba/qwen3-vl-8b-thinking|qwen3-vl-8b-thinking|qwen/qwen3-vl-8b-thinking|C|1.0,5.0|81920,8192|V|-|qwen/qwen3-vl-8b-thinking model|Y
alibaba/qwen3-vl-8b-instruct|qwen3-vl-8b-instruct|qwen/qwen3-vl-8b-instruct|C|1.0,5.0|None,8192|V|-|qwen/qwen3-vl-8b-instruct model|Y
alibaba/qwen2.5-vl-72b-instruct|qwen2.5-vl-72b-instruct|qwen/qwen2.5-vl-72b-instruct|C|1.0,5.6|8192,4096|V|-|qwen/qwen2.5-vl-72b-instruct model|Y
alibaba/qwen2.5-vl-32b-instruct|qwen2.5-vl-32b-instruct|qwen/qwen2.5-vl-32b-instruct|C|0.7,2.8|32768,4096|V|-|qwen/qwen2.5-vl-32b-instruct model|Y
alibaba/qwen2.5-vl-7b-instruct|qwen2.5-vl-7b-instruct|qwen/qwen2.5-vl-7b-instruct|C|0.175,0.7|32768,4096|V|-|qwen/qwen2.5-vl-7b-instruct model|Y
alibaba/qwen2.5-vl-3b-instruct|qwen2.5-vl-3b-instruct|qwen/qwen2.5-vl-3b-instruct|C|0.1,0.4|32768,4096|V|-|qwen/qwen2.5-vl-3b-instruct model|Y
alibaba/qwen2-vl-72b-instruct|qwen2-vl-72b-instruct|qwen/qwen2-vl-72b-instruct|C|1.4,5.6|2048,4096|V|-|qwen/qwen2-vl-72b-instruct model|Y
alibaba/qwen2.5-math-72b-instruct|qwen2.5-math-72b-instruct|qwen/qwen2.5-math-72b-instruct|C|1.4,5.6|3072,8192|-|-|qwen/qwen2.5-math-72b-instruct model|Y
alibaba/qwen2.5-math-7b-instruct|qwen2.5-math-7b-instruct|qwen/qwen2.5-math-7b-instruct|C|0.175,0.7|131072,8192|-|-|qwen/qwen2.5-math-7b-instruct model|Y
alibaba/qwen2.5-math-1.5b-instruct|qwen2.5-math-1.5b-instruct|qwen/qwen2.5-math-1.5b-instruct|C|0.05,0.2|131072,8192|-|-|qwen/qwen2.5-math-1.5b-instruct model|Y
alibaba/qwen3-coder-480b-a35b-instruct|qwen3-coder-480b-a35b-instruct|qwen/qwen3-coder-480b-a35b-instruct|C|7.5,1.0|65536,8192|-|-|qwen/qwen3-coder-480b-a35b-instruct model|N
alibaba/qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|qwen/qwen3-coder-30b-a3b-instruct|C|1.0,5.0|None,8192|-|-|qwen/qwen3-coder-30b-a3b-instruct model|Y
alibaba/qwen2.5-coder-32b-instruct|qwen2.5-coder-32b-instruct|qwen/qwen2.5-coder-32b-instruct|C|0.861,2.8|8192,8192|-|79.1,,,,,,,,,|qwen/qwen2.5-coder-32b-instruct model|Y
alibaba/qwen2.5-coder-14b-instruct|qwen2.5-coder-14b-instruct|qwen/qwen2.5-coder-14b-instruct|C|0.861,1.4|131072,8192|-|75.2,,,,,,,,,|qwen/qwen2.5-coder-14b-instruct model|Y
alibaba/qwen2.5-coder-7b-instruct|qwen2.5-coder-7b-instruct|qwen/qwen2.5-coder-7b-instruct|C|0.287,0.7|131072,8192|-|68.0,,,,,,,,,|qwen/qwen2.5-coder-7b-instruct model|Y
alibaba/qwen2.5-coder-3b-instruct|qwen2.5-coder-3b-instruct|qwen/qwen2.5-coder-3b-instruct|C|0.1,0.4|131072,8192|-|-|qwen/qwen2.5-coder-3b-instruct model|Y
alibaba/qwen2.5-coder-1.5b-instruct|qwen2.5-coder-1.5b-instruct|qwen/qwen2.5-coder-1.5b-instruct|C|0.05,0.2|131072,8192|-|53.6,,,,,,,,,|qwen/qwen2.5-coder-1.5b-instruct model|Y
alibaba/qwen2.5-coder-0.5b-instruct|qwen2.5-coder-0.5b-instruct|qwen/qwen2.5-coder-0.5b-instruct|C|0.05,0.2|131072,8192|-|42.0,,,,,,,,,|qwen/qwen2.5-coder-0.5b-instruct model|Y
alibaba/deepseek-v3.2|deepseek|qwen/deepseek-v3.2|C|0.27,1.1|32768,8192|V|-|qwen/deepseek-v3.2 model|Y
alibaba/deepseek-v3.2-exp|deepseek-v3.2-exp|qwen/deepseek-v3.2-exp|C|0.27,1.1|65536,8192|V|-|qwen/deepseek-v3.2-exp model|Y
alibaba/deepseek-v3.1|deepseek|qwen/deepseek-v3.1|C|0.27,1.1|65536,8192|V|-|qwen/deepseek-v3.1 model|Y
alibaba/deepseek-r1|deepseek-r1|qwen/deepseek-r1|C|0.55,2.19|65536,8192|-|,,93.1,69.2,33.3,,,,,|qwen/deepseek-r1 model|Y
alibaba/deepseek-r1-0528|deepseek-r1-0528|qwen/deepseek-r1-0528|C|0.55,2.19|65536,8192|-|,,93.1,69.2,33.3,,,,,|qwen/deepseek-r1-0528 model|Y
alibaba/deepseek-v3|deepseek|qwen/deepseek-v3|C|0.27,1.1|65536,8192|V|87.1,,64.9,56.5,52.1,,,,,|qwen/deepseek-v3 model|Y
alibaba/deepseek-r1-distill-qwen-1.5b|deepseek-r1-distill-qwen-1.5b|qwen/deepseek-r1-distill-qwen-1.5b|C|0.14,0.28|16384,8192|-|-|qwen/deepseek-r1-distill-qwen-1.5b model|Y
alibaba/deepseek-r1-distill-qwen-7b|deepseek-r1-distill-qwen-7b|qwen/deepseek-r1-distill-qwen-7b|C|0.14,0.28|65536,8192|-|-|qwen/deepseek-r1-distill-qwen-7b model|Y
alibaba/deepseek-r1-distill-qwen-14b|deepseek-r1-distill-qwen-14b|qwen/deepseek-r1-distill-qwen-14b|C|0.14,0.28|65536,8192|-|,,87.1,44.7,,,,,,|qwen/deepseek-r1-distill-qwen-14b model|Y
alibaba/deepseek-r1-distill-qwen-32b|deepseek-r1-distill-qwen-32b|qwen/deepseek-r1-distill-qwen-32b|C|0.14,0.28|65536,8192|-|-|qwen/deepseek-r1-distill-qwen-32b model|Y
alibaba/deepseek-r1-distill-llama-8b|deepseek-r1-distill-llama-8b|qwen/deepseek-r1-distill-llama-8b|C|0.14,0.28|65536,8192|-|-|qwen/deepseek-r1-distill-llama-8b model|Y
alibaba/deepseek-r1-distill-llama-70b|deepseek-r1-distill-llama-70b|qwen/deepseek-r1-distill-llama-70b|C|0.14,0.28|65536,8192|-|,,89.9,55.7,,,,,,|qwen/deepseek-r1-distill-llama-70b model|Y
alibaba/kimi-k2-thinking|kimi-k2-thinking|qwen/kimi-k2-thinking|C|1.0,5.0|32768,8192|-|-|qwen/kimi-k2-thinking model|N
alibaba/moonshot-kimi-k2-instruct|moonshot-kimi-k2-instruct|qwen/moonshot-kimi-k2-instruct|C|1.0,5.0|None,8192|-|-|qwen/moonshot-kimi-k2-instruct model|N
alibaba/qwen-image-max|qwen-image-max|qwen/qwen-image-max|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-max model|N
alibaba/qwen-image-max-2025-12-30|qwen-image-max|qwen/qwen-image-max-2025-12-30|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-max-2025-12-30 model|N
alibaba/qwen-image-plus|qwen-image-plus|qwen/qwen-image-plus|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-plus model|N
alibaba/qwen-image|qwen-image|qwen/qwen-image|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image model|N
alibaba/qwen-image-edit-plus|qwen-image-edit-plus|qwen/qwen-image-edit-plus|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-edit-plus model|N
alibaba/qwen-image-edit-plus-2025-12-15|qwen-image-edit-plus|qwen/qwen-image-edit-plus-2025-12-15|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-edit-plus-2025-12-15 model|N
alibaba/qwen-image-edit-plus-2025-10-30|qwen-image-edit-plus|qwen/qwen-image-edit-plus-2025-10-30|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-edit-plus-2025-10-30 model|N
alibaba/qwen-image-edit|qwen-image-edit|qwen/qwen-image-edit|C|1.0,5.0|128000,8192|-|-|qwen/qwen-image-edit model|N
alibaba/qwen-mt-image|qwen-mt-image|qwen/qwen-mt-image|C|1.0,5.0|128000,8192|-|-|qwen/qwen-mt-image model|N
alibaba/wan2.6-t2i|wan2.6-t2i|qwen/wan2.6-t2i|C|1.0,5.0|None,8192|-|-|qwen/wan2.6-t2i model|N
alibaba/wan2.5-t2i-preview|wan2.5-t2i-preview|qwen/wan2.5-t2i-preview|C|1.0,5.0|None,8192|-|-|qwen/wan2.5-t2i-preview model|N
alibaba/wan2.2-t2i-plus|wan2.2-t2i-plus|qwen/wan2.2-t2i-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-t2i-plus model|N
alibaba/wan2.2-t2i-flash|wan2.2-t2i-flash|qwen/wan2.2-t2i-flash|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-t2i-flash model|N
alibaba/wan2.1-t2i-plus|wan2.1-t2i-plus|qwen/wan2.1-t2i-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-t2i-plus model|N
alibaba/wan2.1-t2i-turbo|wan2.1-t2i-turbo|qwen/wan2.1-t2i-turbo|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-t2i-turbo model|N
alibaba/wanx2.1-t2i-plus|wanx2.1-t2i-plus|qwen/wanx2.1-t2i-plus|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-t2i-plus model|N
alibaba/wanx2.1-t2i-turbo|wanx2.1-t2i-turbo|qwen/wanx2.1-t2i-turbo|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-t2i-turbo model|N
alibaba/wanx2.0-t2i-turbo|wanx2.0-t2i-turbo|qwen/wanx2.0-t2i-turbo|C|1.0,5.0|None,8192|-|-|qwen/wanx2.0-t2i-turbo model|N
alibaba/wan2.6-image|wan2.6-image|qwen/wan2.6-image|C|1.0,5.0|128000,8192|-|-|qwen/wan2.6-image model|N
alibaba/wan2.5-i2i-preview|wan2.5-i2i-preview|qwen/wan2.5-i2i-preview|C|1.0,5.0|128000,8192|-|-|qwen/wan2.5-i2i-preview model|N
alibaba/wanx2.1-imageedit|wanx2.1-imageedit|qwen/wanx2.1-imageedit|C|1.0,5.0|128000,8192|-|-|qwen/wanx2.1-imageedit model|N
alibaba/wan2.6-t2v|wan2.6-t2v|qwen/wan2.6-t2v|C|1.0,5.0|None,8192|-|-|qwen/wan2.6-t2v model|N
alibaba/wan2.5-t2v-preview|wan2.5-t2v-preview|qwen/wan2.5-t2v-preview|C|1.0,5.0|None,8192|-|-|qwen/wan2.5-t2v-preview model|N
alibaba/wan2.2-t2v-plus|wan2.2-t2v-plus|qwen/wan2.2-t2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-t2v-plus model|N
alibaba/wan2.1-t2v-turbo|wan2.1-t2v-turbo|qwen/wan2.1-t2v-turbo|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-t2v-turbo model|N
alibaba/wan2.1-t2v-plus|wan2.1-t2v-plus|qwen/wan2.1-t2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-t2v-plus model|N
alibaba/wan2.6-t2v-us|wan2.6-t2v-us|qwen/wan2.6-t2v-us|C|1.0,5.0|None,8192|-|-|qwen/wan2.6-t2v-us model|N
alibaba/wanx2.1-t2v-turbo|wanx2.1-t2v-turbo|qwen/wanx2.1-t2v-turbo|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-t2v-turbo model|N
alibaba/wanx2.1-t2v-plus|wanx2.1-t2v-plus|qwen/wanx2.1-t2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-t2v-plus model|N
alibaba/wan2.6-i2v|wan2.6-i2v|qwen/wan2.6-i2v|C|1.0,5.0|None,8192|-|-|qwen/wan2.6-i2v model|N
alibaba/wan2.5-i2v-preview|wan2.5-i2v-preview|qwen/wan2.5-i2v-preview|C|1.0,5.0|None,8192|-|-|qwen/wan2.5-i2v-preview model|N
alibaba/wan2.2-i2v-flash|wan2.2-i2v-flash|qwen/wan2.2-i2v-flash|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-i2v-flash model|N
alibaba/wan2.2-i2v-plus|wan2.2-i2v-plus|qwen/wan2.2-i2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-i2v-plus model|N
alibaba/wan2.1-i2v-turbo|wan2.1-i2v-turbo|qwen/wan2.1-i2v-turbo|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-i2v-turbo model|N
alibaba/wan2.1-i2v-plus|wan2.1-i2v-plus|qwen/wan2.1-i2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wan2.1-i2v-plus model|N
alibaba/wan2.6-i2v-us|wan2.6-i2v-us|qwen/wan2.6-i2v-us|C|1.0,5.0|None,8192|-|-|qwen/wan2.6-i2v-us model|N
alibaba/wanx2.1-i2v-turbo|wanx2.1-i2v-turbo|qwen/wanx2.1-i2v-turbo|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-i2v-turbo model|N
alibaba/wanx2.1-i2v-plus|wanx2.1-i2v-plus|qwen/wanx2.1-i2v-plus|C|1.0,5.0|None,8192|-|-|qwen/wanx2.1-i2v-plus model|N
alibaba/wan2.2-kf2v-flash|wan2.2-kf2v-flash|qwen/wan2.2-kf2v-flash|C|1.0,5.0|128000,8192|-|-|qwen/wan2.2-kf2v-flash model|N
alibaba/wan2.1-kf2v-plus|wan2.1-kf2v-plus|qwen/wan2.1-kf2v-plus|C|1.0,5.0|128000,8192|-|-|qwen/wan2.1-kf2v-plus model|N
alibaba/wanx2.1-kf2v-plus|wanx2.1-kf2v-plus|qwen/wanx2.1-kf2v-plus|C|1.0,5.0|128000,8192|-|-|qwen/wanx2.1-kf2v-plus model|N
alibaba/wan2.6-r2v|wan2.6-r2v|qwen/wan2.6-r2v|C|0.1,50.0|None,8192|-|-|qwen/wan2.6-r2v model|Y
alibaba/wan2.1-vace-plus|wan2.1-vace-plus|qwen/wan2.1-vace-plus|C|1.0,5.0|128000,8192|V|-|qwen/wan2.1-vace-plus model|N
alibaba/wanx2.1-vace-plus|wanx2.1-vace-plus|qwen/wanx2.1-vace-plus|C|1.0,5.0|128000,8192|V|-|qwen/wanx2.1-vace-plus model|N
alibaba/wan2.2-s2v-detect|wan2.2-s2v-detect|qwen/wan2.2-s2v-detect|C|1.0,5.0|128000,8192|-|-|qwen/wan2.2-s2v-detect model|N
alibaba/wan2.2-s2v|wan2.2-s2v|qwen/wan2.2-s2v|C|1.0,5.0|128000,8192|-|-|qwen/wan2.2-s2v model|N
alibaba/wan2.2-animate-move|wan2.2-animate-move|qwen/wan2.2-animate-move|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-animate-move model|N
alibaba/wan2.2-animate-mix|wan2.2-animate-mix|qwen/wan2.2-animate-mix|C|1.0,5.0|None,8192|-|-|qwen/wan2.2-animate-mix model|N
alibaba/qwen3-tts-flash|qwen3-tts-flash|qwen/qwen3-tts-flash|C|1.0,5.0|600,8192|-|-|qwen/qwen3-tts-flash model|N
alibaba/qwen3-tts-flash-2025-11-27|qwen3-tts-flash|qwen/qwen3-tts-flash-2025-11-27|C|1.0,5.0|600,8192|-|-|qwen/qwen3-tts-flash-2025-11-27 model|N
alibaba/qwen3-tts-flash-2025-09-18|qwen3-tts-flash|qwen/qwen3-tts-flash-2025-09-18|C|1.0,5.0|600,8192|-|-|qwen/qwen3-tts-flash-2025-09-18 model|N
alibaba/qwen-tts|qwen-tts|qwen/qwen-tts|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts model|N
alibaba/qwen-tts-latest|qwen-tts-latest|qwen/qwen-tts-latest|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-latest model|N
alibaba/qwen-tts-2025-05-22|qwen-tts|qwen/qwen-tts-2025-05-22|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-2025-05-22 model|N
alibaba/qwen-tts-2025-04-10|qwen-tts|qwen/qwen-tts-2025-04-10|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-2025-04-10 model|N
alibaba/qwen3-tts-vd-realtime-2025-12-16|qwen3-tts-vd-realtime|qwen/qwen3-tts-vd-realtime-2025-12-16|C|1.0,5.0|None,8192|V|-|qwen/qwen3-tts-vd-realtime-2025-12-16 model|N
alibaba/qwen3-tts-vc-realtime-2025-11-27|qwen3-tts-vc-realtime|qwen/qwen3-tts-vc-realtime-2025-11-27|C|1.0,5.0|None,8192|V|-|qwen/qwen3-tts-vc-realtime-2025-11-27 model|N
alibaba/qwen3-tts-flash-realtime|qwen3-tts-flash-realtime|qwen/qwen3-tts-flash-realtime|C|1.0,5.0|None,8192|-|-|qwen/qwen3-tts-flash-realtime model|N
alibaba/qwen3-tts-flash-realtime-2025-11-27|qwen3-tts-flash-realtime|qwen/qwen3-tts-flash-realtime-2025-11-27|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-tts-flash-realtime-2025-11-27 model|N
alibaba/qwen3-tts-flash-realtime-2025-09-18|qwen3-tts-flash-realtime|qwen/qwen3-tts-flash-realtime-2025-09-18|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-tts-flash-realtime-2025-09-18 model|N
alibaba/qwen-tts-realtime|qwen-tts-realtime|qwen/qwen-tts-realtime|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-realtime model|N
alibaba/qwen-tts-realtime-latest|qwen-tts-realtime-latest|qwen/qwen-tts-realtime-latest|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-realtime-latest model|N
alibaba/qwen-tts-realtime-2025-07-15|qwen-tts-realtime|qwen/qwen-tts-realtime-2025-07-15|C|1.0,5.0|512,8192|-|-|qwen/qwen-tts-realtime-2025-07-15 model|N
alibaba/qwen-voice-enrollment|qwen-voice-enrollment|qwen/qwen-voice-enrollment|C|1.0,5.0|128000,8192|V|-|qwen/qwen-voice-enrollment model|N
alibaba/qwen-voice-design|qwen-voice-design|qwen/qwen-voice-design|C|1.0,5.0|128000,8192|V|-|qwen/qwen-voice-design model|N
alibaba/qwen3-livetranslate-flash-realtime|qwen3-livetranslate-flash-realtime|qwen/qwen3-livetranslate-flash-realtime|C|10.0,38.0|49152,8192|-|-|qwen/qwen3-livetranslate-flash-realtime model|N
alibaba/qwen3-livetranslate-flash-realtime-2025-09-22|qwen3-livetranslate-flash-realtime|qwen/qwen3-livetranslate-flash-realtime-2025-09-22|C|10.0,38.0|49152,8192|-|-|qwen/qwen3-livetranslate-flash-realtime-2025-09-22 model|N
alibaba/qwen3-asr-flash-filetrans|qwen3-asr-flash-filetrans|qwen/qwen3-asr-flash-filetrans|C|1.0,5.0|None,8192|-|-|qwen/qwen3-asr-flash-filetrans model|N
alibaba/qwen3-asr-flash-filetrans-2025-11-17|qwen3-asr-flash-filetrans|qwen/qwen3-asr-flash-filetrans-2025-11-17|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-asr-flash-filetrans-2025-11-17 model|N
alibaba/qwen3-asr-flash|qwen3-asr-flash|qwen/qwen3-asr-flash|C|1.0,5.0|None,8192|-|-|qwen/qwen3-asr-flash model|N
alibaba/qwen3-asr-flash-2025-09-08|qwen3-asr-flash|qwen/qwen3-asr-flash-2025-09-08|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-asr-flash-2025-09-08 model|N
alibaba/qwen3-asr-flash-us|qwen3-asr-flash-us|qwen/qwen3-asr-flash-us|C|1.0,5.0|None,8192|-|-|qwen/qwen3-asr-flash-us model|N
alibaba/qwen3-asr-flash-2025-09-08-us|qwen3-asr-flash-2025-09-08-us|qwen/qwen3-asr-flash-2025-09-08-us|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-asr-flash-2025-09-08-us model|N
alibaba/qwen3-asr-flash-realtime|qwen3-asr-flash-realtime|qwen/qwen3-asr-flash-realtime|C|1.0,5.0|None,8192|-|-|qwen/qwen3-asr-flash-realtime model|N
alibaba/qwen3-asr-flash-realtime-2025-10-27|qwen3-asr-flash-realtime|qwen/qwen3-asr-flash-realtime-2025-10-27|C|1.0,5.0|128000,8192|-|-|qwen/qwen3-asr-flash-realtime-2025-10-27 model|N
alibaba/qwen3-rerank|qwen3-rerank|qwen/qwen3-rerank|C|1.0,5.0|30000,8192|-|-|qwen/qwen3-rerank model|N
alibaba/qwen-plus-character-ja|qwen-plus-character-ja|qwen/qwen-plus-character-ja|C|0.4,1.2|512,8192|-|-|qwen/qwen-plus-character-ja model|Y
alibaba/qwen-plus-character|qwen-plus-character|qwen/qwen-plus-character|C|0.4,1.2|4096,8192|-|-|qwen/qwen-plus-character model|Y
alibaba/qwen2-72b-instruct|qwen2-72b-instruct|qwen/qwen2-72b-instruct|C|1.0,5.0|6144,8192|-|82.4,,39.1,40.8,,,,,,|qwen/qwen2-72b-instruct model|N
alibaba/qwen2-57b-a14b-instruct|qwen2-57b-a14b-instruct|qwen/qwen2-57b-a14b-instruct|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|qwen/qwen2-57b-a14b-instruct model|N
alibaba/qwen2-7b-instruct|qwen2-7b-instruct|qwen/qwen2-7b-instruct|C|1.0,5.0|128000,8192|-|-|qwen/qwen2-7b-instruct model|N
alibaba/qwen1.5-110b-chat|qwen1.5-110b-chat|qwen/qwen1.5-110b-chat|C|1.0,5.0|2000,8192|-|-|qwen/qwen1.5-110b-chat model|N
alibaba/qwen1.5-72b-chat|qwen1.5-72b-chat|qwen/qwen1.5-72b-chat|C|1.0,5.0|128000,8192|-|,,,28.8,,,,,,|qwen/qwen1.5-72b-chat model|N
alibaba/qwen1.5-32b-chat|qwen1.5-32b-chat|qwen/qwen1.5-32b-chat|C|1.0,5.0|128000,8192|-|74.4,,,30.7,,,,,,|qwen/qwen1.5-32b-chat model|N
alibaba/qwen1.5-14b-chat|qwen1.5-14b-chat|qwen/qwen1.5-14b-chat|C|1.0,5.0|128000,8192|-|68.6,,,,,,,,,|qwen/qwen1.5-14b-chat model|N
alibaba/qwen1.5-7b-chat|qwen1.5-7b-chat|qwen/qwen1.5-7b-chat|C|1.0,5.0|128000,8192|-|62.6,,,,,,,,,|qwen/qwen1.5-7b-chat model|N
# =============================================================================
# RECRAFT - Direct API (4 models)
# =============================================================================
recraft/Recraft V3 Raster|recraft v3 raster|Recraft V3 Raster|C|1.0,5.0|128000,8192|-|-|Recraft V3 Raster model|N
recraft/Recraft V3 Vector|recraft v3 vector|Recraft V3 Vector|C|1.0,5.0|128000,8192|-|-|Recraft V3 Vector model|N
recraft/Recraft V2 Raster|recraft v2 raster|Recraft V2 Raster|C|1.0,5.0|128000,8192|-|-|Recraft V2 Raster model|N
recraft/Recraft V2 Vector|recraft v2 vector|Recraft V2 Vector|C|1.0,5.0|128000,8192|-|-|Recraft V2 Vector model|N
# =============================================================================
# REPLICATE - Direct API (9 models)
# =============================================================================
replicate/claude-3.7-sonnet|claude-3.7-sonnet|anthropic/claude-3.7-sonnet|C|1.0,5.0|128000,8192|-|,,68.2,66.0,52.2,,,,,|anthropic/claude-3.7-sonnet model|N
replicate/flux-1.1-pro|flux-1.1-pro|black-forest-labs/flux-1.1-pro|C|1.0,5.0|128000,8192|-|-|black-forest-labs/flux-1.1-pro model|N
replicate/flux-dev|flux-dev|black-forest-labs/flux-dev|C|1.0,5.0|128000,8192|-|-|black-forest-labs/flux-dev model|N
replicate/flux-schnell|flux-schnell|black-forest-labs/flux-schnell|C|1.0,5.0|128000,8192|-|-|black-forest-labs/flux-schnell model|N
replicate/deepseek-r1|deepseek-r1|deepseek-ai/deepseek-r1|C|1.0,5.0|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/deepseek-r1 model|N
replicate/ideogram-v3-quality|ideogram-v3-quality|ideogram-ai/ideogram-v3-quality|C|1.0,5.0|128000,8192|V|-|ideogram-ai/ideogram-v3-quality model|N
replicate/recraft-v3|recraft|recraft-ai/recraft-v3|C|1.0,5.0|128000,8192|V|-|recraft-ai/recraft-v3 model|N
replicate/wan-2.1-i2v-480p|wan-2.1-i2v-480p|wavespeedai/wan-2.1-i2v-480p|C|1.0,5.0|128000,8192|-|-|wavespeedai/wan-2.1-i2v-480p model|N
replicate/wan-2.1-i2v-720p|wan-2.1-i2v-720p|wavespeedai/wan-2.1-i2v-720p|C|1.0,5.0|128000,8192|-|-|wavespeedai/wan-2.1-i2v-720p model|N
# =============================================================================
# RESEMBLEAI - Direct API (3 models)
# =============================================================================
resemble/resemble-tts|resemble-tts|resemble-tts|C|1.0,5.0|128000,8192|-|-|resemble-tts model|N
resemble/resemble-clone|resemble-clone|resemble-clone|C|1.0,5.0|128000,8192|-|-|resemble-clone model|N
resemble/resemble-realtime|resemble-realtime|resemble-realtime|C|1.0,5.0|128000,8192|-|-|resemble-realtime model|N
# =============================================================================
# RUNWAY - Direct API (9 models)
# =============================================================================
runwayml/gen4_5|gen4_5|gen4_5|C|1.0,5.0|128000,8192|-|-|Latest model with best quality|N
runwayml/gen4|gen4|gen4|C|1.0,5.0|128000,8192|-|-|High quality image to video|N
runwayml/gen4_turbo|gen4_turbo|gen4_turbo|C|1.0,5.0|128000,8192|-|-|Fast video generation|N
runwayml/aleph|aleph|aleph|C|1.0,5.0|128000,8192|-|-|Video editing with AI|N
runwayml/gen3a_turbo|gen3a_turbo|gen3a_turbo|C|1.0,5.0|128000,8192|-|-|Previous generation turbo model|N
runwayml/gen3a|gen3a|gen3a|C|1.0,5.0|128000,8192|-|-|Previous generation standard model|N
runwayml/act_two|act_two|act_two|C|1.0,5.0|128000,8192|-|-|Performance capture for video|N
runwayml/veo_3_1|veo_3_1|veo_3_1|C|1.0,5.0|128000,8192|-|-|Google Veo 3.1 with audio|N
runwayml/veo_3|veo_3|veo_3|C|1.0,5.0|128000,8192|-|-|Google Veo 3 with audio|N
# =============================================================================
# SAMBANOVA - Direct API (18 models)
# =============================================================================
sambanova/DeepSeek-R1-0528|deepseek-r1-0528|DeepSeek-R1-0528|C|0.6,1.2|65536,8192|T|,,93.1,69.2,33.3,,,,,|DeepSeek-R1-0528 model|Y
sambanova/DeepSeek-V3-0324|deepseek-v3-0324|DeepSeek-V3-0324|C|0.6,1.2|128000,8192|VT|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3-0324 model|Y
sambanova/DeepSeek-V3.1|deepseek|DeepSeek-V3.1|C|0.6,1.2|128000,8192|VT|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3.1 model|Y
sambanova/DeepSeek-R1-Distill-Llama-70B|deepseek-r1-distill-llama-70b|DeepSeek-R1-Distill-Llama-70B|C|0.6,1.2|65536,8192|T|,,89.9,55.7,,,,,,|DeepSeek-R1-Distill-Llama-70B model|Y
sambanova/Meta-Llama-3.3-70B-Instruct|meta-llama-3.3-70b-instruct|Meta-Llama-3.3-70B-Instruct|C|0.6,1.2|65536,8192|T|-|Meta-Llama-3.3-70B-Instruct model|Y
sambanova/Meta-Llama-3.1-8B-Instruct|meta-llama-3.1-8b-instruct|Meta-Llama-3.1-8B-Instruct|C|0.1,0.2|8192,8192|T|-|Meta-Llama-3.1-8B-Instruct model|Y
sambanova/Llama-4-Maverick-17B-128E-Instruct|llama-4-maverick-17b-128e-instruct|Llama-4-Maverick-17B-128E-Instruct|C|0.3,0.6|128000,8192|T|,,73.0,67.0,,,,,,|Llama-4-Maverick-17B-128E-Instruct model|Y
sambanova/gpt-oss-120b|gpt-oss-120b|gpt-oss-120b|C|0.22,0.59|128000,8192|T|-|gpt-oss-120b model|Y
sambanova/Whisper-Large-v3|whisper-large|Whisper-Large-v3|C|1.0,5.0|128000,8192|VT|-|Whisper-Large-v3 model|N
sambanova/Qwen3-32B|qwen3-32b|Qwen3-32B|C|0.3,0.6|128000,8192|T|-|Qwen3-32B model|Y
sambanova/Tokyotech-llm|tokyotech-llm|Tokyotech-llm|C|1.0,5.0|128000,8192|T|-|Tokyotech-llm model|N
sambanova/Llama-3.3-Swallow-70B-Instruct-v0.4|llama-3.3-swallow-70b-instruct|Llama-3.3-Swallow-70B-Instruct-v0.4|C|0.6,1.2|128000,8192|VT|-|Llama-3.3-Swallow-70B-Instruct-v0.4 model|Y
sambanova/E5-Mistral-7B-Instruct|e5-mistral-7b-instruct|E5-Mistral-7B-Instruct|C|1.0,5.0|128000,8192|T|-|E5-Mistral-7B-Instruct model|N
sambanova/Meta-Llama-3.1-70B-Instruct|meta-llama-3.1-70b-instruct|Meta-Llama-3.1-70B-Instruct|C|0.6,1.2|65536,8192|T|-|Meta-Llama-3.1-70B-Instruct model|Y
sambanova/Meta-Llama-3.1-405B-Instruct|meta-llama-3.1-405b-instruct|Meta-Llama-3.1-405B-Instruct|C|5.0,10.0|16384,8192|T|-|Meta-Llama-3.1-405B-Instruct model|N
sambanova/DeepSeek-R1|deepseek-r1|DeepSeek-R1|C|0.6,1.2|65536,8192|T|,,93.1,69.2,33.3,,,,,|DeepSeek-R1 model|Y
sambanova/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|Qwen2.5-72B-Instruct|C|0.6,1.2|32768,8192|T|83.4,,63.2,49.1,,,,,,|Qwen2.5-72B-Instruct model|Y
sambanova/Qwen2.5-Coder-32B-Instruct|qwen2.5-coder-32b-instruct|Qwen2.5-Coder-32B-Instruct|C|0.3,0.6|32768,8192|T|79.1,,,,,,,,,|Qwen2.5-Coder-32B-Instruct model|Y
# =============================================================================
# SAP AI CORE - Direct API (8 models)
# =============================================================================
sap_ai_core/anthropic--claude-4-opus|anthropic--claude-4-opus|anthropic--claude-4-opus|C|1.0,5.0|200000,8192|-|-|anthropic--claude-4-opus model|N
sap_ai_core/anthropic--claude-sonnet-4|anthropic--claude-sonnet-4|anthropic--claude-sonnet-4|C|1.0,5.0|200000,8192|-|-|anthropic--claude-sonnet-4 model|N
sap_ai_core/openai--gpt-5|openai--gpt-5|openai--gpt-5|C|1.0,5.0|128000,8192|-|-|openai--gpt-5 model|N
sap_ai_core/openai--gpt-5-mini|openai--gpt-5-mini|openai--gpt-5-mini|C|1.0,5.0|128000,8192|-|-|openai--gpt-5-mini model|N
sap_ai_core/mistral--mistral-medium-instruct|mistral--mistral-medium-instruct|mistral--mistral-medium-instruct|C|1.0,5.0|32768,8192|-|-|mistral--mistral-medium-instruct model|N
sap_ai_core/amazon--nova-premier|amazon--nova-premier|amazon--nova-premier|C|1.0,5.0|300000,8192|-|-|amazon--nova-premier model|N
sap_ai_core/google--gemini-2.5-flash|google--gemini-2.5-flash|google--gemini-2.5-flash|C|1.0,5.0|1000000,8192|-|-|google--gemini-2.5-flash model|N
sap_ai_core/google--gemini-2.5-pro|google--gemini-2.5-pro|google--gemini-2.5-pro|C|1.0,5.0|1000000,8192|-|-|google--gemini-2.5-pro model|N
# =============================================================================
# SARVAM - Direct API (3 models)
# =============================================================================
sarvam/sarvam-1|sarvam-1|sarvam-1|C|1.0,5.0|4096,2048|-|-|sarvam-1 model|N
sarvam/sarvam-m|sarvam-m|sarvam-m|C|1.0,5.0|8192,4096|-|-|sarvam-m model|N
sarvam/sarvam-translate|sarvam-translate|sarvam-translate|C|1.0,5.0|4096,2048|-|-|sarvam-translate model|N
# =============================================================================
# SCALEWAY - Direct API (5 models)
# =============================================================================
scaleway/mistral-small-3.2-24b-instruct-2506|mistral-small-3.2-24b-instruct-2506|mistral-small-3.2-24b-instruct-2506|C|1.0,5.0|128000,8192|-|-|mistral-small-3.2-24b-instruct-2506 model|N
scaleway/llama-3.3-70b-instruct|llama-3.3-70b-instruct|llama-3.3-70b-instruct|C|1.0,5.0|100000,4096|-|86.3,,41.6,47.4,,,,,,|llama-3.3-70b-instruct model|N
scaleway/qwen3-235b-a22b-instruct-2507|qwen3-235b-a22b-instruct-2507|qwen3-235b-a22b-instruct-2507|C|1.0,5.0|250000,8192|-|,,68.9,70.7,,,,,,|qwen3-235b-a22b-instruct-2507 model|N
scaleway/qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|qwen3-coder-30b-a3b-instruct|C|1.0,5.0|128000,8192|-|-|qwen3-coder-30b-a3b-instruct model|N
scaleway/pixtral-12b-2409|pixtral-12b-2409|pixtral-12b-2409|C|1.0,5.0|128000,4096|-|-|pixtral-12b-2409 model|N
# =============================================================================
# SEALION - Direct API (50 models)
# =============================================================================
sealion/Qwen-SEA-LION-v4-8B-VL|qwen-sea-lion-v4-8b-vl|aisingapore/Qwen-SEA-LION-v4-8B-VL|C|1.0,5.0|128000,8192|V|-|aisingapore/Qwen-SEA-LION-v4-8B-VL model|N
sealion/SenticGCN|senticgcn|aisingapore/SenticGCN|C|1.0,5.0|128000,8192|-|-|aisingapore/SenticGCN model|N
sealion/unsupervised-feature-decomposition|unsupervised-feature-decomposition|aisingapore/unsupervised-feature-decomposition|C|1.0,5.0|128000,8192|-|-|aisingapore/unsupervised-feature-decomposition model|N
sealion/coherence-momentum|coherence-momentum|aisingapore/coherence-momentum|C|1.0,5.0|128000,8192|-|-|aisingapore/coherence-momentum model|N
sealion/RST-pointer|rst-pointer|aisingapore/RST-pointer|C|1.0,5.0|128000,8192|-|-|aisingapore/RST-pointer model|N
sealion/rumour-detection-twitter|rumour-detection-twitter|aisingapore/rumour-detection-twitter|C|1.0,5.0|128000,8192|-|-|aisingapore/rumour-detection-twitter model|N
sealion/LSR|lsr|aisingapore/LSR|C|1.0,5.0|128000,8192|-|-|aisingapore/LSR model|N
sealion/cross-sentence-GEC|cross-sentence-gec|aisingapore/cross-sentence-GEC|C|1.0,5.0|128000,8192|-|-|aisingapore/cross-sentence-GEC model|N
sealion/Lif3WayAp|lif3wayap|aisingapore/Lif3WayAp|C|1.0,5.0|128000,8192|-|-|aisingapore/Lif3WayAp model|N
sealion/SPANBert|spanbert|aisingapore/SPANBert|C|1.0,5.0|128000,8192|-|-|aisingapore/SPANBert model|N
sealion/RoBERTa-base|roberta-base|aisingapore/RoBERTa-base|C|1.0,5.0|128000,8192|-|-|aisingapore/RoBERTa-base model|N
sealion/SEA-LION-v1-3B|sea-lion-v1-3b|aisingapore/SEA-LION-v1-3B|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-3B model|N
sealion/SEA-LION-v1-7B|sea-lion-v1-7b|aisingapore/SEA-LION-v1-7B|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-7B model|N
sealion/SEA-LION-v1-7B-IT-Research|sea-lion-v1-7b-it-research|aisingapore/SEA-LION-v1-7B-IT-Research|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-7B-IT-Research model|N
sealion/sealion-bert-base|sealion-bert-base|aisingapore/sealion-bert-base|C|1.0,5.0|128000,8192|-|-|aisingapore/sealion-bert-base model|N
sealion/sealion-bert-large|sealion-bert-large|aisingapore/sealion-bert-large|C|1.0,5.0|128000,8192|-|-|aisingapore/sealion-bert-large model|N
sealion/SEA-LION-v1-7B-IT|sea-lion-v1-7b-it|aisingapore/SEA-LION-v1-7B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-7B-IT model|N
sealion/SEA-LION-v1-7B-IT-GPTQ|sea-lion-v1-7b-it-gptq|aisingapore/SEA-LION-v1-7B-IT-GPTQ|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-7B-IT-GPTQ model|N
sealion/SEA-LION-v1-7B-IT-GGUF|sea-lion-v1-7b-it-gguf|aisingapore/SEA-LION-v1-7B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/SEA-LION-v1-7B-IT-GGUF model|N
sealion/Llama-SEA-LION-v2-8B|llama-sea-lion-v2-8b|aisingapore/Llama-SEA-LION-v2-8B|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v2-8B model|N
sealion/Llama-SEA-LION-v2-8B-IT|llama-sea-lion-v2-8b-it|aisingapore/Llama-SEA-LION-v2-8B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v2-8B-IT model|N
sealion/Llama-SEA-LION-v2-8B-IT-GGUF|llama-sea-lion-v2-8b-it-gguf|aisingapore/Llama-SEA-LION-v2-8B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v2-8B-IT-GGUF model|N
sealion/Gemma-SEA-LION-v3-9B-IT|gemma-sea-lion-v3-9b-it|aisingapore/Gemma-SEA-LION-v3-9B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v3-9B-IT model|N
sealion/Gemma-SEA-LION-v3-9B|gemma-sea-lion-v3-9b|aisingapore/Gemma-SEA-LION-v3-9B|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v3-9B model|N
sealion/Gemma-SEA-LION-v3-9B-IT-GGUF|gemma-sea-lion-v3-9b-it-gguf|aisingapore/Gemma-SEA-LION-v3-9B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v3-9B-IT-GGUF model|N
sealion/Gemma2-9b-WangchanLIONv2-instruct|gemma2-9b-wangchanlionv2-instruct|aisingapore/Gemma2-9b-WangchanLIONv2-instruct|C|1.0,5.0|128000,8192|-|-|aisingapore/Gemma2-9b-WangchanLIONv2-instruct model|N
sealion/Llama-SEA-LION-v3-8B|llama-sea-lion-v3-8b|aisingapore/Llama-SEA-LION-v3-8B|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-8B model|N
sealion/Llama-SEA-LION-v3-8B-IT|llama-sea-lion-v3-8b-it|aisingapore/Llama-SEA-LION-v3-8B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-8B-IT model|N
sealion/Llama-SEA-LION-v3-70B|llama-sea-lion-v3-70b|aisingapore/Llama-SEA-LION-v3-70B|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-70B model|N
sealion/Llama-SEA-LION-v3-70B-IT|llama-sea-lion-v3-70b-it|aisingapore/Llama-SEA-LION-v3-70B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-70B-IT model|N
sealion/Llama-SEA-LION-v3-70B-IT-GGUF|llama-sea-lion-v3-70b-it-gguf|aisingapore/Llama-SEA-LION-v3-70B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-70B-IT-GGUF model|N
sealion/Llama-SEA-LION-v3-8B-IT-GGUF|llama-sea-lion-v3-8b-it-gguf|aisingapore/Llama-SEA-LION-v3-8B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3-8B-IT-GGUF model|N
sealion/Llama-SEA-LION-v3.5-8B-R|llama-sea-lion-v3.5-8b-r|aisingapore/Llama-SEA-LION-v3.5-8B-R|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-8B-R model|N
sealion/Llama-SEA-LION-v3.5-70B-R|llama-sea-lion-v3.5-70b-r|aisingapore/Llama-SEA-LION-v3.5-70B-R|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-70B-R model|N
sealion/Llama-SEA-LION-v3.5-70B-R-GGUF|llama-sea-lion-v3.5-70b-r-gguf|aisingapore/Llama-SEA-LION-v3.5-70B-R-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-70B-R-GGUF model|N
sealion/Llama-SEA-LION-v3.5-8B-R-GGUF|llama-sea-lion-v3.5-8b-r-gguf|aisingapore/Llama-SEA-LION-v3.5-8B-R-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-8B-R-GGUF model|N
sealion/WangchanLION-v3|wangchanlion|aisingapore/WangchanLION-v3|C|1.0,5.0|128000,8192|V|-|aisingapore/WangchanLION-v3 model|N
sealion/WangchanLION-v3-IT|wangchanlion-v3-it|aisingapore/WangchanLION-v3-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/WangchanLION-v3-IT model|N
sealion/Gemma-SEA-LION-v4-27B-IT|gemma-sea-lion-v4-27b-it|aisingapore/Gemma-SEA-LION-v4-27B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B-IT model|N
sealion/Gemma-SEA-LION-v4-27B|gemma-sea-lion-v4-27b|aisingapore/Gemma-SEA-LION-v4-27B|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B model|N
sealion/Gemma-SEA-LION-v4-27B-IT-GGUF|gemma-sea-lion-v4-27b-it-gguf|aisingapore/Gemma-SEA-LION-v4-27B-IT-GGUF|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B-IT-GGUF model|N
sealion/Gemma-SEA-LION-v4-27B-IT-FP8-Dynamic|gemma-sea-lion-v4-27b-it-fp8-dynamic|aisingapore/Gemma-SEA-LION-v4-27B-IT-FP8-Dynamic|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B-IT-FP8-Dynamic model|N
sealion/Gemma-SEA-LION-v4-27B-IT-NVFP4|gemma-sea-lion-v4-27b-it-nvfp4|aisingapore/Gemma-SEA-LION-v4-27B-IT-NVFP4|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B-IT-NVFP4 model|N
sealion/Llama-SEA-LION-v3.5-70B-R-FP8-Dynamic|llama-sea-lion-v3.5-70b-r-fp8-dynamic|aisingapore/Llama-SEA-LION-v3.5-70B-R-FP8-Dynamic|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-70B-R-FP8-Dynamic model|N
sealion/Llama-SEA-LION-v3.5-70B-R-NVFP4|llama-sea-lion-v3.5-70b-r-nvfp4|aisingapore/Llama-SEA-LION-v3.5-70B-R-NVFP4|C|1.0,5.0|128000,8192|V|-|aisingapore/Llama-SEA-LION-v3.5-70B-R-NVFP4 model|N
sealion/Gemma-SEA-LION-v4-27B-VL|gemma-sea-lion-v4-27b-vl|aisingapore/Gemma-SEA-LION-v4-27B-VL|C|1.0,5.0|128000,8192|V|-|aisingapore/Gemma-SEA-LION-v4-27B-VL model|N
sealion/Qwen-SEA-LION-v4-32B-IT|qwen-sea-lion-v4-32b-it|aisingapore/Qwen-SEA-LION-v4-32B-IT|C|1.0,5.0|128000,8192|V|-|aisingapore/Qwen-SEA-LION-v4-32B-IT model|N
sealion/Qwen-SEA-LION-v4-32B-IT-4BIT|qwen-sea-lion-v4-32b-it-4bit|aisingapore/Qwen-SEA-LION-v4-32B-IT-4BIT|C|1.0,5.0|128000,8192|V|-|aisingapore/Qwen-SEA-LION-v4-32B-IT-4BIT model|N
sealion/Qwen-SEA-LION-v4-32B-IT-8BIT|qwen-sea-lion-v4-32b-it-8bit|aisingapore/Qwen-SEA-LION-v4-32B-IT-8BIT|C|1.0,5.0|128000,8192|V|-|aisingapore/Qwen-SEA-LION-v4-32B-IT-8BIT model|N
sealion/Qwen-SEA-LION-v4-4B-VL|qwen-sea-lion-v4-4b-vl|aisingapore/Qwen-SEA-LION-v4-4B-VL|C|1.0,5.0|128000,8192|V|-|aisingapore/Qwen-SEA-LION-v4-4B-VL model|N
# =============================================================================
# SILICONFLOW - Direct API (13 models)
# =============================================================================
siliconflow/DeepSeek-V3|deepseek|deepseek-ai/DeepSeek-V3|C|0.28,1.11|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|deepseek-ai/DeepSeek-V3 model|Y
siliconflow/DeepSeek-V3.2|deepseek|deepseek-ai/DeepSeek-V3.2|C|0.28,1.11|128000,8192|V|-|deepseek-ai/DeepSeek-V3.2 model|Y
siliconflow/DeepSeek-R1|deepseek-r1|deepseek-ai/DeepSeek-R1|C|0.55,2.22|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1 model|Y
siliconflow/DeepSeek-R1-0528|deepseek-r1-0528|deepseek-ai/DeepSeek-R1-0528|C|0.55,2.22|128000,8192|-|,,93.1,69.2,33.3,,,,,|deepseek-ai/DeepSeek-R1-0528 model|Y
siliconflow/Qwen3-8B|qwen3-8b|Qwen/Qwen3-8B|C|1.0,5.0|32000,4096|-|-|Qwen/Qwen3-8B model|N
siliconflow/Qwen2.5-7B-Instruct|qwen2.5-7b-instruct|Qwen/Qwen2.5-7B-Instruct|C|1.0,5.0|128000,8192|-|72.9,,,,,,,,,|Qwen/Qwen2.5-7B-Instruct model|N
siliconflow/Qwen2.5-32B-Instruct|qwen2.5-32b-instruct|Qwen/Qwen2.5-32B-Instruct|C|0.18,0.18|128000,8192|-|,,56.1,46.1,,,,,,|Qwen/Qwen2.5-32B-Instruct model|Y
siliconflow/Qwen2.5-72B-Instruct|qwen2.5-72b-instruct|Qwen/Qwen2.5-72B-Instruct|C|0.57,0.57|131072,8192|-|83.4,,63.2,49.1,,,,,,|Qwen/Qwen2.5-72B-Instruct model|Y
siliconflow/QwQ-32B|qwq-32b|Qwen/QwQ-32B|C|0.17,0.17|128000,8192|-|-|Qwen/QwQ-32B model|Y
siliconflow/glm-4-9b-chat|glm-4-9b-chat|THUDM/glm-4-9b-chat|C|1.0,5.0|128000,8192|-|-|THUDM/glm-4-9b-chat model|N
siliconflow/Llama-3.3-70B-Instruct|llama-3.3-70b-instruct|meta-llama/Llama-3.3-70B-Instruct|C|0.55,0.55|128000,8192|-|86.3,,41.6,47.4,,,,,,|meta-llama/Llama-3.3-70B-Instruct model|Y
siliconflow/Yi-1.5-34B-Chat|yi-1.5-34b-chat|01-ai/Yi-1.5-34B-Chat|C|0.28,0.28|128000,8192|-|,,25.5,15.3,,60.7,,,,|01-ai/Yi-1.5-34B-Chat model|Y
siliconflow/internlm2_5-20b-chat|internlm2_5-20b-chat|internlm/internlm2_5-20b-chat|C|0.14,0.14|128000,8192|-|-|internlm/internlm2_5-20b-chat model|Y
# =============================================================================
# SILOAI - Direct API (90 models)
# =============================================================================
siloai/Poro-34B|poro-34b|LumiOpen/Poro-34B|C|1.0,5.0|128000,8192|-|-|LumiOpen/Poro-34B model|N
siloai/Viking-7B|viking-7b|LumiOpen/Viking-7B|C|1.0,5.0|128000,8192|-|-|LumiOpen/Viking-7B model|N
siloai/Viking-13B|viking-13b|LumiOpen/Viking-13B|C|1.0,5.0|128000,8192|-|-|LumiOpen/Viking-13B model|N
siloai/Viking-33B|viking-33b|LumiOpen/Viking-33B|C|1.0,5.0|128000,8192|-|-|LumiOpen/Viking-33B model|N
siloai/Poro-34B-chat|poro-34b-chat|LumiOpen/Poro-34B-chat|C|1.0,5.0|128000,8192|-|-|LumiOpen/Poro-34B-chat model|N
siloai/Poro-34B-chat-GGUF|poro-34b-chat-gguf|LumiOpen/Poro-34B-chat-GGUF|C|1.0,5.0|128000,8192|-|-|LumiOpen/Poro-34B-chat-GGUF model|N
siloai/Poro-34B-chat-OpenAssistant|poro-34b-chat-openassistant|LumiOpen/Poro-34B-chat-OpenAssistant|C|1.0,5.0|128000,8192|-|-|LumiOpen/Poro-34B-chat-OpenAssistant model|N
siloai/Llama-Poro-2-8B-Instruct|llama-poro-2-8b-instruct|LumiOpen/Llama-Poro-2-8B-Instruct|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-8B-Instruct model|N
siloai/Llama-Poro-2-70B-Instruct|llama-poro-2-70b-instruct|LumiOpen/Llama-Poro-2-70B-Instruct|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-70B-Instruct model|N
siloai/Llama-Poro-2-8B-base|llama-poro-2-8b-base|LumiOpen/Llama-Poro-2-8B-base|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-8B-base model|N
siloai/Llama-Poro-2-70B-base|llama-poro-2-70b-base|LumiOpen/Llama-Poro-2-70B-base|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-70B-base model|N
siloai/Llama-Poro-2-8B-SFT|llama-poro-2-8b-sft|LumiOpen/Llama-Poro-2-8B-SFT|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-8B-SFT model|N
siloai/Llama-Poro-2-70B-SFT|llama-poro-2-70b-sft|LumiOpen/Llama-Poro-2-70B-SFT|C|1.0,5.0|128000,8192|-|-|LumiOpen/Llama-Poro-2-70B-SFT model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-afr-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-afr-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-afr-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-als-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-als-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-als-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ara-Arab|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ara-Arab|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ara-Arab model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-azj-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-azj-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-azj-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-bel-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bel-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bel-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ben-Beng|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ben-Beng|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ben-Beng model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-bos-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bos-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bos-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-bul-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bul-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-bul-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-cat-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-cat-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-cat-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ces-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ces-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ces-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-cym-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-cym-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-cym-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-dan-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-dan-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-dan-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-deu-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-deu-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-deu-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ell-Grek|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ell-Grek|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ell-Grek model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-eng-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-eng-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-eng-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-epo-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-epo-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-epo-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-est-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-est-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-est-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-eus-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-eus-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-eus-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-fin-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-fin-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-fin-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-fra-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-fra-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-fra-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-glg-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-glg-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-glg-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-guj-Gujr|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-guj-Gujr|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-guj-Gujr model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-heb-Hebr|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-heb-Hebr|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-heb-Hebr model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-hin-Deva|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hin-Deva|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hin-Deva model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-hrv-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hrv-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hrv-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-hun-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hun-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hun-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-hye-Armn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hye-Armn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-hye-Armn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ind-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ind-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ind-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-isl-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-isl-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-isl-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ita-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ita-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ita-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-jpn-Jpan|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-jpn-Jpan|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-jpn-Jpan model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-kan-Knda|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kan-Knda|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kan-Knda model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-kat-Geor|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kat-Geor|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kat-Geor model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-kaz-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kaz-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kaz-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-khk-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-khk-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-khk-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-khm-Khmr|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-khm-Khmr|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-khm-Khmr model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-kir-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kir-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kir-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-kor-Hang|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kor-Hang|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-kor-Hang model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-lit-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-lit-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-lit-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-lvs-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-lvs-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-lvs-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-mal-Mlym|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mal-Mlym|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mal-Mlym model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-mar-Deva|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mar-Deva|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mar-Deva model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-mkd-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mkd-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mkd-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-mya-Mymr|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mya-Mymr|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-mya-Mymr model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-nld-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nld-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nld-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-nno-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nno-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nno-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-nob-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nob-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-nob-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-npi-Deva|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-npi-Deva|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-npi-Deva model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-pan-Guru|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pan-Guru|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pan-Guru model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-pes-Arab|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pes-Arab|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pes-Arab model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-pol-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pol-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-pol-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-por-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-por-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-por-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-prs-Arab|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-prs-Arab|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-prs-Arab model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ron-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ron-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ron-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-rus-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-rus-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-rus-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-sin-Sinh|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-sin-Sinh|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-sin-Sinh model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-slk-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-slk-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-slk-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-slv-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-slv-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-slv-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-spa-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-spa-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-spa-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-srp-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-srp-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-srp-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-swe-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-swe-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-swe-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-swh-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-swh-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-swh-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tam-Taml|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tam-Taml|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tam-Taml model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tat-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tat-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tat-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tel-Telu|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tel-Telu|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tel-Telu model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tgk-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tgk-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tgk-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tgl-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tgl-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tgl-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tha-Thai|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tha-Thai|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tha-Thai model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-tur-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tur-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-tur-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-ukr-Cyrl|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ukr-Cyrl|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-ukr-Cyrl model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-urd-Arab|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-urd-Arab|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-urd-Arab model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-uzn-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-uzn-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-uzn-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-vie-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-vie-Latn|C|1.0,5.0|128000,8192|V|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-vie-Latn model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hans|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hans|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hans model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hant|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hant|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zho-Hant model|N
siloai/llama-hpltv2-edu-classifier-xlm-roberta-large-zsm-Latn|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zsm-Latn|C|1.0,5.0|128000,8192|-|-|LumiOpen/llama-hpltv2-edu-classifier-xlm-roberta-large-zsm-Latn model|N
siloai/Tulu3-en-usable-64x-scored|tulu3-en-usable-64x-scored|LumiOpen/Tulu3-en-usable-64x-scored|C|1.0,5.0|128000,8192|-|-|LumiOpen/Tulu3-en-usable-64x-scored model|N
# =============================================================================
# SNOWFLAKE - Direct API (12 models)
# =============================================================================
snowflake/claude-4-opus|claude-4-opus|claude-4-opus|C|1.0,5.0|200000,8192|-|,,85.0,69.2,62.2,,,,,|claude-4-opus model|N
snowflake/claude-4-sonnet|claude-4-sonnet|claude-4-sonnet|C|1.0,5.0|200000,8192|-|,,84.4,66.7,60.6,,,,,|claude-4-sonnet model|N
snowflake/claude-3-5-sonnet|claude-3.5-sonnet|claude-3-5-sonnet|C|1.0,5.0|200000,8192|-|87.3,,51.7,54.0,40.6,,,,,|claude-3-5-sonnet model|N
snowflake/mistral-large2|mistral-large2|mistral-large2|C|1.0,5.0|131072,8192|-|-|mistral-large2 model|N
snowflake/mistral-large|mistral-large|mistral-large|C|1.0,5.0|32768,8192|-|80.0,,24.5,49.0,,,,,,|mistral-large model|N
snowflake/mixtral-8x7b|mixtral-8x7b|mixtral-8x7b|C|1.0,5.0|32768,8192|-|-|mixtral-8x7b model|N
snowflake/llama3.1-405b|llama3.1-405b|llama3.1-405b|C|1.0,5.0|131072,8192|-|84.4,,49.8,50.9,,,,,,|llama3.1-405b model|N
snowflake/llama3.1-70b|llama3.1-70b|llama3.1-70b|C|1.0,5.0|131072,8192|-|80.1,,36.7,44.2,,,,,,|llama3.1-70b model|N
snowflake/llama3.1-8b|llama3.1-8b|llama3.1-8b|C|1.0,5.0|131072,8192|-|56.1,,22.9,25.9,,,,,,|llama3.1-8b model|N
snowflake/snowflake-arctic|snowflake-arctic|snowflake-arctic|C|1.0,5.0|4096,8192|-|-|snowflake-arctic model|N
snowflake/reka-core|reka-core|reka-core|C|1.0,5.0|131072,8192|-|-|reka-core model|N
snowflake/jamba-1.5-large|jamba-1.5-large|jamba-1.5-large|C|1.0,5.0|256000,8192|-|-|jamba-1.5-large model|N
# =============================================================================
# SOFTBANK SARASHINA - Direct API (2 models)
# =============================================================================
softbank/sarashina|sarashina|sarashina|C|1.0,5.0|32768,8192|-|-|sarashina model|N
softbank/sarashina-mini|sarashina-mini|sarashina-mini|C|1.0,5.0|16384,4096|-|-|sarashina-mini model|N
# =============================================================================
# SPARK - Direct API (7 models)
# =============================================================================
spark/spark-lite|spark-lite|Spark Lite|C|1.0,5.0|128000,8192|-|-|Spark Lite model|N
spark/spark-v2|spark|Spark V2.0|C|0.5,0.5|128000,8192|V|-|Spark V2.0 model|Y
spark/spark-pro|spark-pro|Spark Pro|C|0.5,0.5|128000,8192|-|-|Spark Pro model|Y
spark/spark-pro-128k|spark-pro-128k|Spark Pro-128K|C|1.0,1.0|128000,8192|-|-|Spark Pro-128K model|Y
spark/spark-max|spark-max|Spark Max|C|1.0,1.0|128000,8192|-|-|Spark Max model|Y
spark/spark-4-ultra|spark-4-ultra|Spark 4.0 Ultra|C|2.0,2.0|128000,8192|-|-|Spark 4.0 Ultra model|Y
spark/spark-4-turbo|spark-4-turbo|Spark 4.0 Turbo|C|1.5,1.5|128000,8192|-|-|Spark 4.0 Turbo model|Y
# =============================================================================
# STABILITY - Direct API (24 models)
# =============================================================================
stability/Stable Image Ultra|stable image ultra|Stable Image Ultra|C|1.0,5.0|128000,8192|-|-|Stable Image Ultra model|N
stability/Stable Diffusion 3.5 Large|stable diffusion 3.5 large|Stable Diffusion 3.5 Large|C|1.0,5.0|128000,8192|-|-|Stable Diffusion 3.5 Large model|N
stability/Stable Diffusion 3.5 Large Turbo|stable diffusion 3.5 large turbo|Stable Diffusion 3.5 Large Turbo|C|1.0,5.0|128000,8192|-|-|Stable Diffusion 3.5 Large Turbo model|N
stability/Stable Diffusion 3.5 Medium|stable diffusion 3.5 medium|Stable Diffusion 3.5 Medium|C|1.0,5.0|128000,8192|-|-|Stable Diffusion 3.5 Medium model|N
stability/Stable Diffusion 3.5 Flash|stable diffusion 3.5 flash|Stable Diffusion 3.5 Flash|C|1.0,5.0|128000,8192|-|-|Stable Diffusion 3.5 Flash model|N
stability/Stable Image Core|stable image core|Stable Image Core|C|1.0,5.0|128000,8192|-|-|Stable Image Core model|N
stability/SDXL 1.0|sdxl 1.0|SDXL 1.0|C|1.0,5.0|128000,8192|-|-|SDXL 1.0 model|N
stability/Creative Upscaler|creative upscaler|Creative Upscaler|C|1.0,5.0|128000,8192|-|-|Creative Upscaler model|N
stability/Conservative Upscaler|conservative upscaler|Conservative Upscaler|C|1.0,5.0|128000,8192|-|-|Conservative Upscaler model|N
stability/Fast Upscaler|fast upscaler|Fast Upscaler|C|1.0,5.0|128000,8192|-|-|Fast Upscaler model|N
stability/Erase Object|erase object|Erase Object|C|1.0,5.0|128000,8192|-|-|Erase Object model|N
stability/Inpaint|inpaint|Inpaint|C|1.0,5.0|128000,8192|-|-|Inpaint model|N
stability/Outpaint|outpaint|Outpaint|C|1.0,5.0|128000,8192|-|-|Outpaint model|N
stability/Remove Background|remove background|Remove Background|C|1.0,5.0|128000,8192|-|-|Remove Background model|N
stability/Search and Recolor|search and recolor|Search and Recolor|C|1.0,5.0|128000,8192|-|-|Search and Recolor model|N
stability/Search and Replace|search and replace|Search and Replace|C|1.0,5.0|128000,8192|-|-|Search and Replace model|N
stability/Replace Background & Relight|replace background & relight|Replace Background & Relight|C|1.0,5.0|128000,8192|-|-|Replace Background & Relight model|N
stability/Structure|structure|Structure|C|1.0,5.0|128000,8192|-|-|Structure model|N
stability/Sketch|sketch|Sketch|C|1.0,5.0|128000,8192|-|-|Sketch model|N
stability/Style Guide|style guide|Style Guide|C|1.0,5.0|128000,8192|-|-|Style Guide model|N
stability/Style Transfer|style transfer|Style Transfer|C|1.0,5.0|128000,8192|-|-|Style Transfer model|N
stability/Stable Fast 3D|stable fast 3d|Stable Fast 3D|C|1.0,5.0|128000,8192|-|-|Stable Fast 3D model|N
stability/Stable Point Aware 3D|stable point aware 3d|Stable Point Aware 3D|C|1.0,5.0|128000,8192|-|-|Stable Point Aware 3D model|N
stability/Stable Audio 2|stable audio 2|Stable Audio 2|C|1.0,5.0|128000,8192|-|-|Stable Audio 2 model|N
# =============================================================================
# STEPFUN - Direct API (11 models)
# =============================================================================
stepfun/step-1-8k|step-1-8k|step-1-8k|C|0.17,0.42|8000,4096|-|-|step-1-8k model|Y
stepfun/step-1-32k|step-1-32k|step-1-32k|C|0.25,0.63|32000,4096|-|-|step-1-32k model|Y
stepfun/step-1-128k|step-1-128k|step-1-128k|C|0.56,1.4|128000,4096|-|-|step-1-128k model|Y
stepfun/step-1-256k|step-1-256k|step-1-256k|C|0.56,1.4|256000,4096|-|-|step-1-256k model|Y
stepfun/step-1v-8k|step-1v-8k|step-1v-8k|C|0.17,0.42|8000,4096|-|-|step-1v-8k model|Y
stepfun/step-1v-32k|step-1v-32k|step-1v-32k|C|0.25,0.63|32000,4096|-|-|step-1v-32k model|Y
stepfun/step-1.5v|step-1.5v|step-1.5v|C|0.25,0.63|16000,4096|-|-|step-1.5v model|Y
stepfun/step-2-16k|step-2-16k|step-2-16k|C|0.56,1.4|16000,4096|-|-|step-2-16k model|Y
stepfun/step-2-mini|step-2-mini|step-2-mini|C|0.14,0.35|32000,4096|-|-|step-2-mini model|Y
stepfun/step3|step3|step3|C|0.84,2.1|66000,8192|-|-|step3 model|Y
stepfun/step-r1-v-mini|step-r1-v-mini|step-r1-v-mini|C|0.21,0.84|32000,4096|V|-|step-r1-v-mini model|Y
# =============================================================================
# SWISSAI - Direct API (2 models)
# =============================================================================
swissai/swiss-llm-7b|swiss-llm-7b|swiss-llm-7b|C|1.0,5.0|8192,4096|-|-|swiss-llm-7b model|N
swissai/swiss-llm-13b|swiss-llm-13b|swiss-llm-13b|C|1.0,5.0|8192,4096|-|-|swiss-llm-13b model|N
# =============================================================================
# TILDE - Direct API (8 models)
# =============================================================================
tilde/en-lv|en-lv|en-lv|C|1.0,5.0|128000,8192|-|-|en-lv model|N
tilde/lv-en|lv-en|lv-en|C|1.0,5.0|128000,8192|-|-|lv-en model|N
tilde/en-lt|en-lt|en-lt|C|1.0,5.0|128000,8192|-|-|en-lt model|N
tilde/lt-en|lt-en|lt-en|C|1.0,5.0|128000,8192|-|-|lt-en model|N
tilde/en-et|en-et|en-et|C|1.0,5.0|128000,8192|-|-|en-et model|N
tilde/et-en|et-en|et-en|C|1.0,5.0|128000,8192|-|-|et-en model|N
tilde/de-lv|de-lv|de-lv|C|1.0,5.0|128000,8192|-|-|de-lv model|N
tilde/lv-de|lv-de|lv-de|C|1.0,5.0|128000,8192|-|-|lv-de model|N
# =============================================================================
# TOGETHER - Direct API (137 models)
# =============================================================================
together_ai/Llama 4 Maverick Llama|llama 4 maverick llama|Llama 4 Maverick Llama|C|0.27,0.85|128000,8192|VT|-|Llama 4 Maverick Llama model|Y
together_ai/Llama 4 Scout Llama|llama 4 scout llama|Llama 4 Scout Llama|C|0.18,0.59|128000,8192|VT|-|Llama 4 Scout Llama model|Y
together_ai/Llama 3.3 70B Instruct-Turbo Llama|llama 3.3 70b instruct-turbo llama|Llama 3.3 70B Instruct-Turbo Llama|C|0.88,0.88|128000,8192|VT|-|Llama 3.3 70B Instruct-Turbo Llama model|Y
together_ai/Llama 3.2 3B Instruct Turbo Llama|llama 3.2 3b instruct turbo llama|Llama 3.2 3B Instruct Turbo Llama|C|0.06,0.06|128000,8192|VT|-|Llama 3.2 3B Instruct Turbo Llama model|Y
together_ai/Llama 3.1 405B Instruct Turbo Llama|llama 3.1 405b instruct turbo llama|Llama 3.1 405B Instruct Turbo Llama|C|3.5,3.5|128000,8192|VT|-|Llama 3.1 405B Instruct Turbo Llama model|Y
together_ai/Llama 3.1 70B Instruct Turbo Llama|llama 3.1 70b instruct turbo llama|Llama 3.1 70B Instruct Turbo Llama|C|0.88,0.88|128000,8192|VT|-|Llama 3.1 70B Instruct Turbo Llama model|Y
together_ai/Llama 3.1 8B Instruct Turbo Llama|llama 3.1 8b instruct turbo llama|Llama 3.1 8B Instruct Turbo Llama|C|0.18,0.18|128000,8192|VT|-|Llama 3.1 8B Instruct Turbo Llama model|Y
together_ai/Llama 3 8B Instruct Lite Llama|llama 3 8b instruct lite llama|Llama 3 8B Instruct Lite Llama|C|0.1,0.1|128000,8192|VT|-|Llama 3 8B Instruct Lite Llama model|Y
together_ai/Llama 3 70B Instruct Reference Llama|llama 3 70b instruct reference llama|Llama 3 70B Instruct Reference Llama|C|0.88,0.88|128000,8192|VT|-|Llama 3 70B Instruct Reference Llama model|Y
together_ai/Llama 3 70B Instruct Turbo Llama|llama 3 70b instruct turbo llama|Llama 3 70B Instruct Turbo Llama|C|0.88,0.88|128000,8192|VT|-|Llama 3 70B Instruct Turbo Llama model|Y
together_ai/LLaMA-2 Llama|llama-2 llama|LLaMA-2 Llama|C|0.9,0.9|128000,8192|VT|-|LLaMA-2 Llama model|Y
together_ai/DeepSeek-R1 DeepSeek|deepseek-r1 deepseek|DeepSeek-R1 DeepSeek|C|3.0,7.0|128000,8192|VT|-|DeepSeek-R1 DeepSeek model|Y
together_ai/DeepSeek R1 Distilled Qwen 14B DeepSeek|deepseek r1 distilled qwen 14b deepseek|DeepSeek R1 Distilled Qwen 14B DeepSeek|C|0.18,0.18|128000,8192|VT|-|DeepSeek R1 Distilled Qwen 14B DeepSeek model|Y
together_ai/DeepSeek R1 Distilled Llama 70B DeepSeek|-|DeepSeek R1 Distilled Llama 70B DeepSeek|C|2.0,2.0|128000,8192|VT|-|DeepSeek R1 Distilled Llama 70B DeepSeek model|Y
together_ai/DeepSeek R1-0528-tput DeepSeek|deepseek r1-0528-tput deepseek|DeepSeek R1-0528-tput DeepSeek|C|0.55,2.19|128000,8192|VT|-|DeepSeek R1-0528-tput DeepSeek model|Y
together_ai/DeepSeek-V3-1 DeepSeek|deepseek-v3-1 deepseek|DeepSeek-V3-1 DeepSeek|C|0.6,1.7|128000,8192|VT|-|DeepSeek-V3-1 DeepSeek model|Y
together_ai/DeepSeek-V3 DeepSeek|deepseek-v3 deepseek|DeepSeek-V3 DeepSeek|C|1.25,1.25|128000,8192|VT|-|DeepSeek-V3 DeepSeek model|Y
together_ai/gpt-oss-120B OpenAI|gpt-oss-120b openai|gpt-oss-120B OpenAI|C|0.15,0.6|128000,8192|VT|-|gpt-oss-120B OpenAI model|Y
together_ai/gpt-oss-20B OpenAI|gpt-oss-20b openai|gpt-oss-20B OpenAI|C|0.05,0.2|128000,8192|VT|-|gpt-oss-20B OpenAI model|Y
together_ai/Qwen3 Next 80B A3B Instruct Qwen|qwen3 next 80b a3b instruct qwen|Qwen3 Next 80B A3B Instruct Qwen|C|0.15,1.5|128000,8192|VT|-|Qwen3 Next 80B A3B Instruct Qwen model|Y
together_ai/Qwen3 Next 80B A3B Thinking Qwen|qwen3 next 80b a3b thinking qwen|Qwen3 Next 80B A3B Thinking Qwen|C|0.15,1.5|128000,8192|VT|-|Qwen3 Next 80B A3B Thinking Qwen model|Y
together_ai/Qwen3-VL 32B Instruct Qwen|qwen3-vl 32b instruct qwen|Qwen3-VL 32B Instruct Qwen|C|0.5,1.5|128000,8192|VT|-|Qwen3-VL 32B Instruct Qwen model|Y
together_ai/Qwen3-Coder 480B A35B Instruct Qwen|qwen3-coder 480b a35b instruct qwen|Qwen3-Coder 480B A35B Instruct Qwen|C|2.0,2.0|128000,8192|VT|-|Qwen3-Coder 480B A35B Instruct Qwen model|Y
together_ai/Qwen3 235B A22B Instruct 2507 FP8 Qwen|qwen3 235b a22b instruct 2507 fp8 qwen|Qwen3 235B A22B Instruct 2507 FP8 Qwen|C|0.2,0.6|128000,8192|VT|-|Qwen3 235B A22B Instruct 2507 FP8 Qwen model|Y
together_ai/Qwen3 235B A22B Thinking 2507 FP8 Qwen|qwen3 235b a22b thinking 2507 fp8 qwen|Qwen3 235B A22B Thinking 2507 FP8 Qwen|C|0.65,3.0|128000,8192|VT|-|Qwen3 235B A22B Thinking 2507 FP8 Qwen model|Y
together_ai/Qwen3 235B A22B FP8 Throughput Qwen|qwen3 235b a22b fp8 throughput qwen|Qwen3 235B A22B FP8 Throughput Qwen|C|0.2,0.6|128000,8192|VT|-|Qwen3 235B A22B FP8 Throughput Qwen model|Y
together_ai/Qwen 2.5 72B Qwen|qwen 2.5 72b qwen|Qwen 2.5 72B Qwen|C|1.2,1.2|128000,8192|VT|-|Qwen 2.5 72B Qwen model|Y
together_ai/Qwen2.5-VL 72B Instruct Qwen|qwen2.5-vl 72b instruct qwen|Qwen2.5-VL 72B Instruct Qwen|C|1.95,8.0|128000,8192|VT|-|Qwen2.5-VL 72B Instruct Qwen model|Y
together_ai/Qwen2.5 Coder 32B Instruct Qwen|qwen2.5 coder 32b instruct qwen|Qwen2.5 Coder 32B Instruct Qwen|C|0.8,0.8|128000,8192|VT|-|Qwen2.5 Coder 32B Instruct Qwen model|Y
together_ai/Qwen2.5 7B Instruct Turbo Qwen|qwen2.5 7b instruct turbo qwen|Qwen2.5 7B Instruct Turbo Qwen|C|0.3,0.3|128000,8192|VT|-|Qwen2.5 7B Instruct Turbo Qwen model|Y
together_ai/Qwen QwQ-32B Qwen|qwen qwq-32b qwen|Qwen QwQ-32B Qwen|C|1.2,1.2|128000,8192|VT|-|Qwen QwQ-32B Qwen model|Y
together_ai/GLM-4.6 GLM|glm-4.6 glm|GLM-4.6 GLM|C|0.6,2.2|128000,8192|VT|-|GLM-4.6 GLM model|Y
together_ai/GLM-4.5-Air GLM|glm-4.5-air glm|GLM-4.5-Air GLM|C|0.2,1.1|128000,8192|VT|-|GLM-4.5-Air GLM model|Y
together_ai/Kimi K2 Instruct Kimi|kimi k2 instruct kimi|Kimi K2 Instruct Kimi|C|1.0,3.0|128000,8192|VT|-|Kimi K2 Instruct Kimi model|Y
together_ai/Kimi K2 Thinking Kimi|kimi k2 thinking kimi|Kimi K2 Thinking Kimi|C|1.2,4.0|128000,8192|VT|-|Kimi K2 Thinking Kimi model|Y
together_ai/Kimi K2 0905 Kimi|kimi k2 0905 kimi|Kimi K2 0905 Kimi|C|1.0,3.0|128000,8192|VT|-|Kimi K2 0905 Kimi model|Y
together_ai/Mistral (7B) Instruct v0.2 Mistral|mistral (7b) instruct v0.2 mistral|Mistral (7B) Instruct v0.2 Mistral|C|0.2,0.2|128000,8192|VT|-|Mistral (7B) Instruct v0.2 Mistral model|Y
together_ai/Mistral Instruct Mistral|mistral instruct mistral|Mistral Instruct Mistral|C|0.2,0.2|128000,8192|VT|-|Mistral Instruct Mistral model|Y
together_ai/Mistral Small 3 Mistral|mistral small 3 mistral|Mistral Small 3 Mistral|C|0.8,0.8|128000,8192|VT|-|Mistral Small 3 Mistral model|Y
together_ai/Mixtral 8x7B Instruct v0.1 Mistral|mixtral 8x7b instruct v0.1 mistral|Mixtral 8x7B Instruct v0.1 Mistral|C|0.6,0.6|128000,8192|VT|-|Mixtral 8x7B Instruct v0.1 Mistral model|Y
together_ai/Marin 8B Instruct Other|marin 8b instruct other|Marin 8B Instruct Other|C|0.18,0.18|128000,8192|VT|-|Marin 8B Instruct Other model|Y
together_ai/Arcee AI AFM-4.5B Other|arcee ai afm-4.5b other|Arcee AI AFM-4.5B Other|C|0.1,0.4|128000,8192|VT|-|Arcee AI AFM-4.5B Other model|Y
together_ai/Arcee AI Coder-Large Other|arcee ai coder-large other|Arcee AI Coder-Large Other|C|0.5,0.8|128000,8192|VT|-|Arcee AI Coder-Large Other model|Y
together_ai/Arcee AI Maestro Other|arcee ai maestro other|Arcee AI Maestro Other|C|0.9,3.3|128000,8192|VT|-|Arcee AI Maestro Other model|Y
together_ai/Arcee AI Virtuoso-Large Other|arcee ai virtuoso-large other|Arcee AI Virtuoso-Large Other|C|0.75,1.2|128000,8192|VT|-|Arcee AI Virtuoso-Large Other model|Y
together_ai/Cogito v2 preview - 109B MoE Other|cogito v2 preview - 109b moe other|Cogito v2 preview - 109B MoE Other|C|0.18,0.59|128000,8192|VT|-|Cogito v2 preview - 109B MoE Other model|Y
together_ai/Cogito v2 preview - 405B Other|cogito v2 preview - 405b other|Cogito v2 preview - 405B Other|C|3.5,3.5|128000,8192|VT|-|Cogito v2 preview - 405B Other model|Y
together_ai/Cogito v2 preview - 671B MoE Other|cogito v2 preview - 671b moe other|Cogito v2 preview - 671B MoE Other|C|1.25,1.25|128000,8192|VT|-|Cogito v2 preview - 671B MoE Other model|Y
together_ai/Cogito v2 preview - 70B Other|cogito v2 preview - 70b other|Cogito v2 preview - 70B Other|C|0.88,0.88|128000,8192|VT|-|Cogito v2 preview - 70B Other model|Y
together_ai/Refuel LLM-2 Other|refuel llm-2 other|Refuel LLM-2 Other|C|0.6,0.6|128000,8192|VT|-|Refuel LLM-2 Other model|Y
together_ai/Refuel LLM-2 Small Other|refuel llm-2 small other|Refuel LLM-2 Small Other|C|0.2,0.2|128000,8192|VT|-|Refuel LLM-2 Small Other model|Y
together_ai/Typhoon 2 70B Instruct Other|typhoon 2 70b instruct other|Typhoon 2 70B Instruct Other|C|0.88,0.88|128000,8192|VT|-|Typhoon 2 70B Instruct Other model|Y
together_ai/gemma-3n-E4B-it Other|gemma-3n-e4b-it other|gemma-3n-E4B-it Other|C|0.02,0.04|128000,8192|VT|-|gemma-3n-E4B-it Other model|Y
together_ai/FLUX.1 Krea [dev]|flux.1 krea [dev]|FLUX.1 Krea [dev]|C|0.025,40.0|128000,8192|VT|-|FLUX.1 Krea [dev] model|Y
together_ai/FLUX.1 Kontext [dev]|flux.1 kontext [dev]|FLUX.1 Kontext [dev]|C|0.025,40.0|128000,8192|VT|-|FLUX.1 Kontext [dev] model|Y
together_ai/FLUX.1 Kontext [pro]|flux.1 kontext [pro]|FLUX.1 Kontext [pro]|C|0.04,25.0|128000,8192|VT|-|FLUX.1 Kontext [pro] model|Y
together_ai/FLUX.1 Kontext [max]|flux.1 kontext [max]|FLUX.1 Kontext [max]|C|0.08,12.5|128000,8192|VT|-|FLUX.1 Kontext [max] model|Y
together_ai/FLUX1.1 [pro]|flux1.1 [pro]|FLUX1.1 [pro]|C|0.04,25.0|128000,8192|VT|-|FLUX1.1 [pro] model|Y
together_ai/FLUX.1 [dev]|flux.1 [dev]|FLUX.1 [dev]|C|0.025,40.0|128000,8192|VT|-|FLUX.1 [dev] model|Y
together_ai/FLUX.1 [pro]|flux.1 [pro]|FLUX.1 [pro]|C|0.05,20.0|128000,8192|VT|-|FLUX.1 [pro] model|Y
together_ai/FLUX.1 [schnell]|flux.1 [schnell]|FLUX.1 [schnell]|C|0.0027,370.0|128000,8192|VT|-|FLUX.1 [schnell] model|Y
together_ai/FLUX.1 Canny [pro]|flux.1 canny [pro]|FLUX.1 Canny [pro]|C|0.05,20.0|128000,8192|VT|-|FLUX.1 Canny [pro] model|Y
together_ai/Google Imagen 4.0 Preview|google imagen 4.0 preview|Google Imagen 4.0 Preview|C|0.04,25.0|128000,8192|VT|-|Google Imagen 4.0 Preview model|Y
together_ai/Google Imagen 4.0 Fast|google imagen 4.0 fast|Google Imagen 4.0 Fast|C|0.02,50.0|128000,8192|VT|-|Google Imagen 4.0 Fast model|Y
together_ai/Google Imagen 4.0 Ultra|google imagen 4.0 ultra|Google Imagen 4.0 Ultra|C|0.06,16.6|128000,8192|VT|-|Google Imagen 4.0 Ultra model|Y
together_ai/Gemini Flash Image 2.5 (Nano Banana)|gemini flash image 2.5 (nano banana)|Gemini Flash Image 2.5 (Nano Banana)|C|0.039,25.6|128000,8192|VT|-|Gemini Flash Image 2.5 (Nano Banana) model|Y
together_ai/ByteDance Seedream 3.0|bytedance seedream 3.0|ByteDance Seedream 3.0|C|0.018,55.5|128000,8192|VT|-|ByteDance Seedream 3.0 model|Y
together_ai/ByteDance Seedream 4.0|bytedance seedream 4.0|ByteDance Seedream 4.0|C|0.03,33.3|128000,8192|VT|-|ByteDance Seedream 4.0 model|Y
together_ai/ByteDance SeedEdit|bytedance seededit|ByteDance SeedEdit|C|0.03,33.3|128000,8192|VT|-|ByteDance SeedEdit model|Y
together_ai/Qwen Image Edit|qwen image edit|Qwen Image Edit|C|0.0032,312.5|128000,8192|VT|-|Qwen Image Edit model|Y
together_ai/Qwen Image|qwen image|Qwen Image|C|0.0058,172.4|128000,8192|VT|-|Qwen Image model|Y
together_ai/Juggernaut Pro Flux by RunDiffusion|juggernaut pro flux by rundiffusion|Juggernaut Pro Flux by RunDiffusion|C|0.0049,204.0|128000,8192|VT|-|Juggernaut Pro Flux by RunDiffusion model|Y
together_ai/Juggernaut Lightning Flux by RunDiffusion|-|Juggernaut Lightning Flux by RunDiffusion|C|0.0017,588.2|128000,8192|VT|-|Juggernaut Lightning Flux by RunDiffusion model|Y
together_ai/HiDream-I1-Full|hidream-i1-full|HiDream-I1-Full|C|0.009,111.1|128000,8192|VT|-|HiDream-I1-Full model|Y
together_ai/HiDream-I1-Dev|hidream-i1-dev|HiDream-I1-Dev|C|0.0045,222.2|128000,8192|VT|-|HiDream-I1-Dev model|Y
together_ai/HiDream-I1-Fast|hidream-i1-fast|HiDream-I1-Fast|C|0.0032,312.5|128000,8192|VT|-|HiDream-I1-Fast model|Y
together_ai/Ideogram 3.0|ideogram 3.0|Ideogram 3.0|C|0.06,16.6|128000,8192|VT|-|Ideogram 3.0 model|Y
together_ai/Dreamshaper|dreamshaper|Dreamshaper|C|0.0006,1.0|128000,8192|VT|-|Dreamshaper model|Y
together_ai/SD XL|sd xl|SD XL|C|0.0019,526.3|128000,8192|VT|-|SD XL model|Y
together_ai/Stable Diffusion 3|stable diffusion 3|Stable Diffusion 3|C|0.0019,526.3|128000,8192|VT|-|Stable Diffusion 3 model|Y
together_ai/Cartesia Sonic-2|cartesia sonic-2|Cartesia Sonic-2|C|1.0,5.0|128000,8192|VT|-|Cartesia Sonic-2 model|N
together_ai/5s)|5s)|MiniMax 01 Director (720p/5s)|C|1.0,5.0|128000,8192|VT|-|MiniMax 01 Director (720p/5s) model|Y
together_ai/10s)|10s)|MiniMax Hailuo 02 (768p/10s)|C|1.0,5.0|128000,8192|VT|-|MiniMax Hailuo 02 (768p/10s) model|Y
together_ai/6s)|6s)|MiniMax Hailuo 02 (1080p/6s)|C|1.0,5.0|128000,8192|VT|-|MiniMax Hailuo 02 (1080p/6s) model|Y
together_ai/5s)|5s)|Google Veo 2.0 (720p/5s)|C|1.0,5.0|128000,8192|VT|-|Google Veo 2.0 (720p/5s) model|Y
together_ai/8s)|8s)|Google Veo 3.0 (720p/8s)|C|1.0,5.0|128000,8192|VT|-|Google Veo 3.0 (720p/8s) model|Y
together_ai/8s with audio)|8s with audio)|Google Veo 3.0 + Audio (720p/8s with audio)|C|1.0,5.0|128000,8192|VT|-|Google Veo 3.0 + Audio (720p/8s with audio) model|Y
together_ai/8s)|8s)|Google Veo 3.0 Fast (1080p/8s)|C|1.0,5.0|128000,8192|VT|-|Google Veo 3.0 Fast (1080p/8s) model|Y
together_ai/8s with audio)|8s with audio)|Google Veo 3.0 Fast + Audio (1080p/8s with audio)|C|1.0,5.0|128000,8192|VT|-|Google Veo 3.0 Fast + Audio (1080p/8s with audio) model|Y
together_ai/5s)|5s)|ByteDance Seedance 1.0 Lite (720p/5s)|C|1.0,5.0|128000,8192|VT|-|ByteDance Seedance 1.0 Lite (720p/5s) model|Y
together_ai/5s)|5s)|ByteDance Seedance 1.0 Pro (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|ByteDance Seedance 1.0 Pro (1080p/5s) model|Y
together_ai/5s)|5s)|PixVerse v5 (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|PixVerse v5 (1080p/5s) model|Y
together_ai/5s)|5s)|Kling 2.1 Master (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 2.1 Master (1080p/5s) model|Y
together_ai/5s)|5s)|Kling 2.1 Standard (720p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 2.1 Standard (720p/5s) model|Y
together_ai/5s)|5s)|Kling 2.1 Pro (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 2.1 Pro (1080p/5s) model|Y
together_ai/5s)|5s)|Kling 2.0 Master (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 2.0 Master (1080p/5s) model|Y
together_ai/5s)|5s)|Kling 1.6 Standard (720p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 1.6 Standard (720p/5s) model|Y
together_ai/5s)|5s)|Kling 1.6 Pro (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|Kling 1.6 Pro (1080p/5s) model|Y
together_ai/5s)|5s)|Wan 2.2 I2V (720p/5s)|C|1.0,5.0|128000,8192|VT|-|Wan 2.2 I2V (720p/5s) model|Y
together_ai/8s)|8s)|Wan 2.2 T2V (720p/8s)|C|1.0,5.0|128000,8192|VT|-|Wan 2.2 T2V (720p/8s) model|Y
together_ai/8s)|8s)|Vidu 2.0 (720p/8s)|C|1.0,5.0|128000,8192|VT|-|Vidu 2.0 (720p/8s) model|Y
together_ai/5s)|5s)|Vidu Q1 (1080p/5s)|C|1.0,5.0|128000,8192|VT|-|Vidu Q1 (1080p/5s) model|Y
together_ai/8s)|8s)|Sora 2 (720p/8s)|C|1.0,5.0|128000,8192|VT|-|Sora 2 (720p/8s) model|Y
together_ai/8s)|8s)|Sora 2 Pro (720p/8s)|C|1.0,5.0|128000,8192|VT|-|Sora 2 Pro (720p/8s) model|Y
together_ai/8s)|8s)|Sora 2 Pro (1080p/8s)|C|1.0,5.0|128000,8192|VT|-|Sora 2 Pro (1080p/8s) model|Y
together_ai/Whisper Large v3|whisper large v3|Whisper Large v3|C|1.0,5.0|128000,8192|VT|-|Whisper Large v3 model|Y
together_ai/GTE ModernBERT base|gte modernbert base|GTE ModernBERT base|C|1.0,5.0|128000,8192|VT|-|GTE ModernBERT base model|Y
together_ai/M2-BERT 80M 32K Retrieval|m2-bert 80m 32k retrieval|M2-BERT 80M 32K Retrieval|C|1.0,5.0|128000,8192|VT|-|M2-BERT 80M 32K Retrieval model|Y
together_ai/Mxbai Rerank Large V2|mxbai rerank large v2|Mxbai Rerank Large V2|C|1.0,5.0|128000,8192|VT|-|Mxbai Rerank Large V2 model|Y
together_ai/Salesforce Llama Rank V1 (8B)|salesforce llama rank v1 (8b)|Salesforce Llama Rank V1 (8B)|C|1.0,5.0|128000,8192|VT|-|Salesforce Llama Rank V1 (8B) model|Y
together_ai/VirtueGuard Text Lite|virtueguard text lite|VirtueGuard Text Lite|C|1.0,5.0|128000,8192|VT|-|VirtueGuard Text Lite model|Y
together_ai/Llama Guard 4 12B|llama guard 4 12b|Llama Guard 4 12B|C|1.0,5.0|128000,8192|VT|-|Llama Guard 4 12B model|Y
together_ai/Llama Guard 3 11B Vision Turbo|llama guard 3 11b vision turbo|Llama Guard 3 11B Vision Turbo|C|1.0,5.0|128000,8192|VT|-|Llama Guard 3 11B Vision Turbo model|Y
together_ai/Llama Guard 3 8B|llama guard 3 8b|Llama Guard 3 8B|C|1.0,5.0|128000,8192|VT|-|Llama Guard 3 8B model|Y
together_ai/Llama Guard 2 8B|llama guard 2 8b|Llama Guard 2 8B|C|1.0,5.0|128000,8192|VT|-|Llama Guard 2 8B model|Y
together_ai/1x H200 141GB|1x h200 141gb|1x H200 141GB|C|1.0,5.0|128000,8192|VT|-|1x H200 141GB model|Y
together_ai/1x H100 80GB|1x h100 80gb|1x H100 80GB|C|1.0,5.0|128000,8192|VT|-|1x H100 80GB model|Y
together_ai/1x A100 SXM 80GB|1x a100 sxm 80gb|1x A100 SXM 80GB|C|1.0,5.0|128000,8192|VT|-|1x A100 SXM 80GB model|Y
together_ai/1x A100 SXM 40GB|1x a100 sxm 40gb|1x A100 SXM 40GB|C|1.0,5.0|128000,8192|VT|-|1x A100 SXM 40GB model|Y
together_ai/1x A100 PCIe 80GB|1x a100 pcie 80gb|1x A100 PCIe 80GB|C|1.0,5.0|128000,8192|VT|-|1x A100 PCIe 80GB model|Y
together_ai/1x L40S 48GB|1x l40s 48gb|1x L40S 48GB|C|1.0,5.0|128000,8192|VT|-|1x L40S 48GB model|Y
together_ai/Up to 16B|up to 16b|Up to 16B|C|0.48,0.54|128000,8192|VT|-|Up to 16B model|Y
together_ai/17B-69B|17b-69b|17B-69B|C|1.5,1.65|128000,8192|VT|-|17B-69B model|Y
together_ai/70-100B|70-100b|70-100B|C|2.9,3.2|128000,8192|VT|-|70-100B model|Y
together_ai/gpt-oss-120B|gpt-oss-120b|gpt-oss-120B|C|5.0,12.5|128000,8192|VT|-|gpt-oss-120B model|N
together_ai/Llama 4 Scout Llama 4 Scout Instruct|llama 4 scout llama 4 scout instruct|Llama 4 Scout Llama 4 Scout Instruct|C|3.0,7.5|128000,8192|VT|-|Llama 4 Scout Llama 4 Scout Instruct model|Y
together_ai/Llama 4 Maverick Llama 4 Maverick Instruct|-|Llama 4 Maverick Llama 4 Maverick Instruct|C|8.0,20.0|128000,8192|VT|-|Llama 4 Maverick Llama 4 Maverick Instruct model|N
together_ai/DeepSeek-R1 DeepSeek-R1-0528 DeepSeek-V3 DeepSeek-V3-0324 DeepSeek-V3.1 DeepSeek-V3.1-Base|-|DeepSeek-R1 DeepSeek-R1-0528 DeepSeek-V3 DeepSeek-V3-0324 DeepSeek-V3.1 DeepSeek-V3.1-Base|C|10.0,25.0|128000,8192|VT|-|DeepSeek-R1 DeepSeek-R1-0528 DeepSeek-V3 DeepSeek-V3-0324 DeepSeek-V3.1 DeepSeek-V3.1-Base model|N
together_ai/Qwen3-Coder-480B-A35B-Instruct|qwen3-coder-480b-a35b-instruct|Qwen3-Coder-480B-A35B-Instruct|C|9.0,22.5|128000,8192|VT|-|Qwen3-Coder-480B-A35B-Instruct model|N
together_ai/Qwen3-235B-A22B Qwen3-235B-A22B-Instruct-2507|-|Qwen3-235B-A22B Qwen3-235B-A22B-Instruct-2507|C|6.0,15.0|128000,8192|VT|-|Qwen3-235B-A22B Qwen3-235B-A22B-Instruct-2507 model|N
together_ai/Per vCPU|per vcpu|Per vCPU|C|1.0,5.0|128000,8192|VT|-|Per vCPU model|Y
together_ai/Per GiB RAM|per gib ram|Per GiB RAM|C|1.0,5.0|128000,8192|VT|-|Per GiB RAM model|Y
together_ai/Session (60 minutes)|session (60 minutes)|Session (60 minutes)|C|1.0,5.0|128000,8192|VT|-|Session (60 minutes) model|Y
together_ai/NVIDIA HGX H100 SXM|nvidia hgx h100 sxm|NVIDIA HGX H100 SXM|C|2.2,2.5|128000,8192|VT|-|NVIDIA HGX H100 SXM model|Y
together_ai/NVIDIA HGX H200|nvidia hgx h200|NVIDIA HGX H200|C|3.15,3.45|128000,8192|VT|-|NVIDIA HGX H200 model|Y
together_ai/NVIDIA HGX B200|nvidia hgx b200|NVIDIA HGX B200|C|4.5,4.9|128000,8192|VT|-|NVIDIA HGX B200 model|Y
together_ai/Shared Filesystem|shared filesystem|Shared Filesystem|C|1.0,5.0|128000,8192|VT|-|Shared Filesystem model|N
# =============================================================================
# TWELVELABS - Direct API (2 models)
# =============================================================================
twelvelabs/marengo|marengo|Marengo|C|1.0,5.0|128000,8192|-|-|Video understanding engine|N
twelvelabs/pegasus|pegasus|Pegasus|C|1.0,5.0|128000,8192|-|-|Video understanding engine|N
# =============================================================================
# UPSTAGE - Direct API (4 models)
# =============================================================================
upstage/solar-pro|solar-pro|solar-pro|C|1.0,5.0|4096,4096|-|-|solar-pro model|N
upstage/solar-mini|solar-mini|solar-mini|C|1.0,5.0|32768,4096|-|-|solar-mini model|N
upstage/solar-mini-ja|solar-mini-ja|solar-mini-ja|C|1.0,5.0|32768,4096|-|-|solar-mini-ja model|N
upstage/solar-docvision|solar-docvision|solar-docvision|C|1.0,5.0|8192,8192|V|-|solar-docvision model|N
# =============================================================================
# VERTEX - Direct API (231 models)
# =============================================================================
vertex_ai/google/models/imageclassification-efficientnet|-|publishers/google/models/imageclassification-efficientnet|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageclassification-efficientnet model|N
vertex_ai/google/models/occupancy-analytics|google/models/occupancy-analytics|publishers/google/models/occupancy-analytics|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/occupancy-analytics model|N
vertex_ai/google/models/pt-test|google/models/pt-test|publishers/google/models/pt-test|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/pt-test model|N
vertex_ai/google/models/imageclassification-vit|google/models/imageclassification-vit|publishers/google/models/imageclassification-vit|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageclassification-vit model|N
vertex_ai/google/models/bert-base|google/models/bert-base|publishers/google/models/bert-base|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/bert-base model|N
vertex_ai/google/models/vehicle-detector|google/models/vehicle-detector|publishers/google/models/vehicle-detector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/vehicle-detector model|N
vertex_ai/google/models/language-v1-classify-text-v1|google/models/language-v1-classify-text|publishers/google/models/language-v1-classify-text-v1|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/language-v1-classify-text-v1 model|N
vertex_ai/google/models/language-v1-analyze-sentiment|-|publishers/google/models/language-v1-analyze-sentiment|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/language-v1-analyze-sentiment model|N
vertex_ai/google/models/language-v1-analyze-entity-sentiment|-|publishers/google/models/language-v1-analyze-entity-sentiment|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/language-v1-analyze-entity-sentiment model|N
vertex_ai/google/models/language-v1-analyze-syntax|-|publishers/google/models/language-v1-analyze-syntax|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/language-v1-analyze-syntax model|N
vertex_ai/google/models/resnet50|google/models/resnet50|publishers/google/models/resnet50|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/resnet50 model|N
vertex_ai/google/models/imagesegmentation-deeplabv3|-|publishers/google/models/imagesegmentation-deeplabv3|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagesegmentation-deeplabv3 model|N
vertex_ai/google/models/imageobjectdetection-yolo|google/models/imageobjectdetection-yolo|publishers/google/models/imageobjectdetection-yolo|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageobjectdetection-yolo model|N
vertex_ai/salesforce/models/blip-image-captioning-base|-|publishers/salesforce/models/blip-image-captioning-base|C|1.0,5.0|128000,8192|VT|-|publishers/salesforce/models/blip-image-captioning-base model|N
vertex_ai/salesforce/models/blip-vqa-base|salesforce/models/blip-vqa-base|publishers/salesforce/models/blip-vqa-base|C|1.0,5.0|128000,8192|VT|-|publishers/salesforce/models/blip-vqa-base model|N
vertex_ai/openai/models/clip-vit-base-patch32|openai/models/clip-vit-base-patch32|publishers/openai/models/clip-vit-base-patch32|C|1.0,5.0|128000,8192|VT|-|publishers/openai/models/clip-vit-base-patch32 model|N
vertex_ai/google/models/owlvit-base-patch32|google/models/owlvit-base-patch32|publishers/google/models/owlvit-base-patch32|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/owlvit-base-patch32 model|N
vertex_ai/dandelin/models/vilt-b32-finetuned-vqa|dandelin/models/vilt-b32-finetuned-vqa|publishers/dandelin/models/vilt-b32-finetuned-vqa|C|1.0,5.0|128000,8192|VT|-|publishers/dandelin/models/vilt-b32-finetuned-vqa model|N
vertex_ai/impira/models/layoutlm-document-qa|impira/models/layoutlm-document-qa|publishers/impira/models/layoutlm-document-qa|C|1.0,5.0|128000,8192|VT|-|publishers/impira/models/layoutlm-document-qa model|N
vertex_ai/google/models/object-detector|google/models/object-detector|publishers/google/models/object-detector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/object-detector model|N
vertex_ai/google/models/ppe-detector|google/models/ppe-detector|publishers/google/models/ppe-detector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/ppe-detector model|N
vertex_ai/google/models/people-blur|google/models/people-blur|publishers/google/models/people-blur|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/people-blur model|N
vertex_ai/google/models/product-recognizer|google/models/product-recognizer|publishers/google/models/product-recognizer|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/product-recognizer model|N
vertex_ai/google/models/tag-recognizer|google/models/tag-recognizer|publishers/google/models/tag-recognizer|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/tag-recognizer model|N
vertex_ai/meta/models/faster-r-cnn|meta/models/faster-r-cnn|publishers/meta/models/faster-r-cnn|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/faster-r-cnn model|N
vertex_ai/lllyasviel/models/control-net|lllyasviel/models/control-net|publishers/lllyasviel/models/control-net|C|1.0,5.0|128000,8192|VT|-|publishers/lllyasviel/models/control-net model|N
vertex_ai/meta/models/retinanet|meta/models/retinanet|publishers/meta/models/retinanet|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/retinanet model|N
vertex_ai/meta/models/mask-r-cnn|meta/models/mask-r-cnn|publishers/meta/models/mask-r-cnn|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/mask-r-cnn model|N
vertex_ai/runwayml/models/stable-diffusion-inpainting|-|publishers/runwayml/models/stable-diffusion-inpainting|C|1.0,5.0|128000,8192|VT|-|publishers/runwayml/models/stable-diffusion-inpainting model|N
vertex_ai/timbrooks/models/instruct-pix2pix|timbrooks/models/instruct-pix2pix|publishers/timbrooks/models/instruct-pix2pix|C|1.0,5.0|128000,8192|VT|-|publishers/timbrooks/models/instruct-pix2pix model|N
vertex_ai/salesforce/models/blip2-opt-2.7-b|salesforce/models/blip2-opt-2.7-b|publishers/salesforce/models/blip2-opt-2.7-b|C|1.0,5.0|128000,8192|VT|-|publishers/salesforce/models/blip2-opt-2.7-b model|N
vertex_ai/google/models/imageclassification-proprietary-vit|-|publishers/google/models/imageclassification-proprietary-vit|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageclassification-proprietary-vit model|N
vertex_ai/google/models/imageobjectdetection-proprietary-spinenet|-|publishers/google/models/imageobjectdetection-proprietary-spinenet|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageobjectdetection-proprietary-spinenet model|N
vertex_ai/google/models/imageclassification-proprietary-efficientnet|-|publishers/google/models/imageclassification-proprietary-efficientnet|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageclassification-proprietary-efficientnet model|N
vertex_ai/google/models/t5-flan|google/models/t5-flan|publishers/google/models/t5-flan|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/t5-flan model|N
vertex_ai/google/models/t5-1.1|google/models/t5-1.1|publishers/google/models/t5-1.1|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/t5-1.1 model|N
vertex_ai/google/models/imagegeneration|google/models/imagegeneration|publishers/google/models/imagegeneration|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagegeneration model|N
vertex_ai/google/models/automl-e2e|google/models/automl-e2e|publishers/google/models/automl-e2e|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/automl-e2e model|N
vertex_ai/google/models/content-moderation|google/models/content-moderation|publishers/google/models/content-moderation|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/content-moderation model|N
vertex_ai/google/models/pretrained-ocr|google/models/pretrained-ocr|publishers/google/models/pretrained-ocr|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/pretrained-ocr model|N
vertex_ai/google/models/face-detector|google/models/face-detector|publishers/google/models/face-detector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/face-detector model|N
vertex_ai/google/models/pretrained-form-parser|google/models/pretrained-form-parser|publishers/google/models/pretrained-form-parser|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/pretrained-form-parser model|N
vertex_ai/google/models/label-detector-pali-001|google/models/label-detector-pali-001|publishers/google/models/label-detector-pali-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/label-detector-pali-001 model|N
vertex_ai/google/models/tab-net|google/models/tab-net|publishers/google/models/tab-net|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/tab-net model|N
vertex_ai/google/models/text-detector|google/models/text-detector|publishers/google/models/text-detector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/text-detector model|N
vertex_ai/google/models/imagewatermarkdetector|google/models/imagewatermarkdetector|publishers/google/models/imagewatermarkdetector|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagewatermarkdetector model|N
vertex_ai/google/models/imagetext|google/models/imagetext|publishers/google/models/imagetext|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagetext model|N
vertex_ai/google/models/language-v1-moderate-text|google/models/language-v1-moderate-text|publishers/google/models/language-v1-moderate-text|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/language-v1-moderate-text model|N
vertex_ai/google/models/text-translation|google/models/text-translation|publishers/google/models/text-translation|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/text-translation model|N
vertex_ai/google/models/bart-large-cnn|google/models/bart-large-cnn|publishers/google/models/bart-large-cnn|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/bart-large-cnn model|N
vertex_ai/google/models/vit-jax|google/models/vit-jax|publishers/google/models/vit-jax|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/vit-jax model|N
vertex_ai/meta/models/segment-anything|meta/models/segment-anything|publishers/meta/models/segment-anything|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/segment-anything model|N
vertex_ai/stability-ai/models/stable-diffusion-4x-upscaler|-|publishers/stability-ai/models/stable-diffusion-4x-upscaler|C|1.0,5.0|128000,8192|VT|-|publishers/stability-ai/models/stable-diffusion-4x-upscaler model|N
vertex_ai/google/models/pic2word|google/models/pic2word|publishers/google/models/pic2word|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/pic2word model|N
vertex_ai/google/models/imageobjectdetection-proprietary-yolo|-|publishers/google/models/imageobjectdetection-proprietary-yolo|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageobjectdetection-proprietary-yolo model|N
vertex_ai/google/models/imageclassification-proprietary-maxvit|-|publishers/google/models/imageclassification-proprietary-maxvit|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imageclassification-proprietary-maxvit model|N
vertex_ai/meta/models/xlm-roberta-large|meta/models/xlm-roberta-large|publishers/meta/models/xlm-roberta-large|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/xlm-roberta-large model|N
vertex_ai/meta/models/roberta-large|meta/models/roberta-large|publishers/meta/models/roberta-large|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/roberta-large model|N
vertex_ai/openlm-research/models/openllama|openlm-research/models/openllama|publishers/openlm-research/models/openllama|C|1.0,5.0|2048,2048|VT|-|publishers/openlm-research/models/openllama model|N
vertex_ai/tiiuae/models/falcon-instruct-7b-peft|tiiuae/models/falcon-instruct-7b-peft|publishers/tiiuae/models/falcon-instruct-7b-peft|C|1.0,5.0|128000,8192|VT|-|publishers/tiiuae/models/falcon-instruct-7b-peft model|N
vertex_ai/google/models/bert-base-uncased|google/models/bert-base-uncased|publishers/google/models/bert-base-uncased|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/bert-base-uncased model|N
vertex_ai/stability-ai/models/stable-diffusion-2-1|-|publishers/stability-ai/models/stable-diffusion-2-1|C|1.0,5.0|128000,8192|VT|-|publishers/stability-ai/models/stable-diffusion-2-1 model|N
vertex_ai/google/models/tfvision-yolov7|google/models/tfvision-yolov7|publishers/google/models/tfvision-yolov7|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/tfvision-yolov7 model|N
vertex_ai/google/models/tfvision-movinet-vcn|google/models/tfvision-movinet-vcn|publishers/google/models/tfvision-movinet-vcn|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/tfvision-movinet-vcn model|N
vertex_ai/google/models/f-vlm-jax|google/models/f-vlm-jax|publishers/google/models/f-vlm-jax|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/f-vlm-jax model|N
vertex_ai/google/models/keras-yolov8|google/models/keras-yolov8|publishers/google/models/keras-yolov8|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/keras-yolov8 model|N
vertex_ai/openai/models/openclip|openai/models/openclip|publishers/openai/models/openclip|C|1.0,5.0|128000,8192|VT|-|publishers/openai/models/openclip model|N
vertex_ai/stability-ai/models/stable-diffusion-xl-base|-|publishers/stability-ai/models/stable-diffusion-xl-base|C|1.0,5.0|128000,8192|VT|-|publishers/stability-ai/models/stable-diffusion-xl-base model|N
vertex_ai/google/models/automl-vision-image-classification|-|publishers/google/models/automl-vision-image-classification|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/automl-vision-image-classification model|N
vertex_ai/google/models/automl-vision-image-object-detection|-|publishers/google/models/automl-vision-image-object-detection|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/automl-vision-image-object-detection model|N
vertex_ai/ifzhang/models/bytetrack-multi-object-tracking|-|publishers/ifzhang/models/bytetrack-multi-object-tracking|C|1.0,5.0|128000,8192|VT|-|publishers/ifzhang/models/bytetrack-multi-object-tracking model|N
vertex_ai/google/models/cxr-foundation|google/models/cxr-foundation|publishers/google/models/cxr-foundation|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/cxr-foundation model|N
vertex_ai/google/models/tfvision-movinet-var|google/models/tfvision-movinet-var|publishers/google/models/tfvision-movinet-var|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/tfvision-movinet-var model|N
vertex_ai/meta/models/codellama-7b-hf|meta/models/codellama-7b-hf|publishers/meta/models/codellama-7b-hf|C|1.0,5.0|16384,16384|VT|-|publishers/meta/models/codellama-7b-hf model|Y
vertex_ai/meta/models/llama2|meta/models/llama2|publishers/meta/models/llama2|C|1.0,5.0|4096,4096|VT|-|publishers/meta/models/llama2 model|N
vertex_ai/meta/models/nllb|meta/models/nllb|publishers/meta/models/nllb|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/nllb model|N
vertex_ai/meta/models/imagebind|meta/models/imagebind|publishers/meta/models/imagebind|C|1.0,5.0|128000,8192|VT|-|publishers/meta/models/imagebind model|N
vertex_ai/mistral-ai/models/mistral|mistral-ai/models/mistral|publishers/mistral-ai/models/mistral|C|1.0,5.0|32768,8192|VT|-|publishers/mistral-ai/models/mistral model|N
vertex_ai/microsoft/models/microsoft-biomedclip|microsoft/models/microsoft-biomedclip|publishers/microsoft/models/microsoft-biomedclip|C|1.0,5.0|128000,8192|VT|-|publishers/microsoft/models/microsoft-biomedclip model|N
vertex_ai/google/models/dito|google/models/dito|publishers/google/models/dito|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/dito model|N
vertex_ai/google/models/jax-owl-vit-v2|google/models/jax-owl-vit|publishers/google/models/jax-owl-vit-v2|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/jax-owl-vit-v2 model|N
vertex_ai/microsoft/models/bio-gpt|microsoft/models/bio-gpt|publishers/microsoft/models/bio-gpt|C|1.0,5.0|128000,8192|VT|-|publishers/microsoft/models/bio-gpt model|N
vertex_ai/lmsys/models/lmsys-vicuna-7b|lmsys/models/lmsys-vicuna-7b|publishers/lmsys/models/lmsys-vicuna-7b|C|1.0,5.0|128000,8192|VT|-|publishers/lmsys/models/lmsys-vicuna-7b model|N
vertex_ai/mistral-ai/models/mixtral|mistral-ai/models/mixtral|publishers/mistral-ai/models/mixtral|C|2.0,6.0|32768,8192|VT|-|publishers/mistral-ai/models/mixtral model|Y
vertex_ai/google/models/cloudnerf-pytorch-zipnerf|google/models/cloudnerf-pytorch-zipnerf|publishers/google/models/cloudnerf-pytorch-zipnerf|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/cloudnerf-pytorch-zipnerf model|N
vertex_ai/stability-ai/models/stable-diffusion-xl-lcm|-|publishers/stability-ai/models/stable-diffusion-xl-lcm|C|1.0,5.0|128000,8192|VT|-|publishers/stability-ai/models/stable-diffusion-xl-lcm model|N
vertex_ai/meta/models/llama-2-quantized|meta/models/llama-2-quantized|publishers/meta/models/llama-2-quantized|C|1.0,5.0|4096,4096|VT|-|publishers/meta/models/llama-2-quantized model|N
vertex_ai/advimman/models/lama|advimman/models/lama|publishers/advimman/models/lama|C|1.0,5.0|128000,8192|VT|-|publishers/advimman/models/lama model|N
vertex_ai/autogluon-ai/models/autogluon|autogluon-ai/models/autogluon|publishers/autogluon-ai/models/autogluon|C|1.0,5.0|128000,8192|VT|-|publishers/autogluon-ai/models/autogluon model|N
vertex_ai/meta/models/llama3|meta/models/llama3|publishers/meta/models/llama3|C|1.0,5.0|8192,8192|VT|-|publishers/meta/models/llama3 model|N
vertex_ai/meta/models/llama-guard|meta/models/llama-guard|publishers/meta/models/llama-guard|C|1.0,5.0|8192,1024|VT|-|publishers/meta/models/llama-guard model|N
vertex_ai/google/models/functiongemma|google/models/functiongemma|publishers/google/models/functiongemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/functiongemma model|N
vertex_ai/google/models/gemma|google/models/gemma|publishers/google/models/gemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/gemma model|N
vertex_ai/liuhaotian/models/pytorch-llava|liuhaotian/models/pytorch-llava|publishers/liuhaotian/models/pytorch-llava|C|1.0,5.0|128000,8192|VT|-|publishers/liuhaotian/models/pytorch-llava model|N
vertex_ai/google/models/paligemma|google/models/paligemma|publishers/google/models/paligemma|C|1.0,5.0|8192,1024|VT|-|publishers/google/models/paligemma model|N
vertex_ai/google/models/codegemma|google/models/codegemma|publishers/google/models/codegemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/codegemma model|N
vertex_ai/intfloat/models/e5|intfloat/models/e5|publishers/intfloat/models/e5|C|1.0,5.0|128000,8192|VT|-|publishers/intfloat/models/e5 model|N
vertex_ai/google/models/mammut|google/models/mammut|publishers/google/models/mammut|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/mammut model|N
vertex_ai/deepseek-ai/models/deepseek-r1|deepseek-ai/models/deepseek-r1|publishers/deepseek-ai/models/deepseek-r1|C|0.39999999999999997,1.75|131072,8192|VT|,,93.1,69.2,33.3,,,,,|publishers/deepseek-ai/models/deepseek-r1 model|Y
vertex_ai/deepseek-ai/models/deepseek-v3|deepseek-ai/models/deepseek|publishers/deepseek-ai/models/deepseek-v3|C|0.19,0.87|131072,8192|VT|87.1,,64.9,56.5,52.1,,,,,|publishers/deepseek-ai/models/deepseek-v3 model|Y
vertex_ai/qwen/models/qwq|qwen/models/qwq|publishers/qwen/models/qwq|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwq model|N
vertex_ai/qwen/models/qwen3|qwen/models/qwen3|publishers/qwen/models/qwen3|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3 model|Y
vertex_ai/microsoft/models/phi4|microsoft/models/phi4|publishers/microsoft/models/phi4|C|0.06,0.14|16384,4096|VT|84.8,,64.9,56.1,,,,,,|publishers/microsoft/models/phi4 model|Y
vertex_ai/meta/models/llama4|meta/models/llama4|publishers/meta/models/llama4|C|1.0,5.0|131072,8192|VT|-|publishers/meta/models/llama4 model|N
vertex_ai/google/models/gemma3n|google/models/gemma3n|publishers/google/models/gemma3n|C|1.0,5.0|32768,8192|VT|-|publishers/google/models/gemma3n model|N
vertex_ai/thudm/models/cogvideox|thudm/models/cogvideox|publishers/thudm/models/cogvideox|C|1.0,5.0|128000,8192|VT|-|publishers/thudm/models/cogvideox model|N
vertex_ai/wan-ai/models/wan2-1|wan-ai/models/wan2-1|publishers/wan-ai/models/wan2-1|C|1.0,5.0|128000,8192|VT|-|publishers/wan-ai/models/wan2-1 model|N
vertex_ai/wan-ai/models/wan2-2|wan-ai/models/wan2-2|publishers/wan-ai/models/wan2-2|C|1.0,5.0|128000,8192|VT|-|publishers/wan-ai/models/wan2-2 model|N
vertex_ai/google/models/imagen-3.0-generate-002|google/models/imagen-3.0-generate-002|publishers/google/models/imagen-3.0-generate-002|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-3.0-generate-002 model|N
vertex_ai/google/models/imagen-4.0-fast-generate-preview-06-06|-|publishers/google/models/imagen-4.0-fast-generate-preview-06-06|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-fast-generate-preview-06-06 model|N
vertex_ai/google/models/imagen-4.0-generate-preview-06-06|-|publishers/google/models/imagen-4.0-generate-preview-06-06|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-generate-preview-06-06 model|N
vertex_ai/google/models/imagen-4.0-ultra-generate-preview-06-06|-|publishers/google/models/imagen-4.0-ultra-generate-preview-06-06|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-ultra-generate-preview-06-06 model|N
vertex_ai/google/models/imagen-4.0-generate-001|google/models/imagen-4.0-generate-001|publishers/google/models/imagen-4.0-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-generate-001 model|N
vertex_ai/google/models/imagen-4.0-fast-generate-001|-|publishers/google/models/imagen-4.0-fast-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-fast-generate-001 model|N
vertex_ai/google/models/imagen-4.0-ultra-generate-001|-|publishers/google/models/imagen-4.0-ultra-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-4.0-ultra-generate-001 model|N
vertex_ai/google/models/imagen-3.0-capability-001|google/models/imagen-3.0-capability-001|publishers/google/models/imagen-3.0-capability-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-3.0-capability-001 model|N
vertex_ai/google/models/imagen-3.0-capability-002|google/models/imagen-3.0-capability-002|publishers/google/models/imagen-3.0-capability-002|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-3.0-capability-002 model|N
vertex_ai/anthropic/models/claude-3-haiku|anthropic/models/claude-3-haiku|publishers/anthropic/models/claude-3-haiku|C|0.25,1.25|200000,4096|VT|73.8,,14.9,36.3,,,,,,|publishers/anthropic/models/claude-3-haiku model|Y
vertex_ai/instantx/models/instant-id|instantx/models/instant-id|publishers/instantx/models/instant-id|C|1.0,5.0|128000,8192|VT|-|publishers/instantx/models/instant-id model|N
vertex_ai/bytedance/models/stable-diffusion-xl-lightning|-|publishers/bytedance/models/stable-diffusion-xl-lightning|C|1.0,5.0|128000,8192|VT|-|publishers/bytedance/models/stable-diffusion-xl-lightning model|N
vertex_ai/google/models/timesfm|google/models/timesfm|publishers/google/models/timesfm|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/timesfm model|N
vertex_ai/google/models/gemma2|google/models/gemma2|publishers/google/models/gemma2|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/gemma2 model|N
vertex_ai/google/models/translate-llm|google/models/translate-llm|publishers/google/models/translate-llm|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/translate-llm model|N
vertex_ai/google/models/model-optimizer-exp-04-09|google/models/model-optimizer-exp-04-09|publishers/google/models/model-optimizer-exp-04-09|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/model-optimizer-exp-04-09 model|N
vertex_ai/microsoft/models/phi3|microsoft/models/phi3|publishers/microsoft/models/phi3|C|1.0,5.0|131072,4096|VT|-|publishers/microsoft/models/phi3 model|N
vertex_ai/meta/models/llama3_1|meta/models/llama3_1|publishers/meta/models/llama3_1|C|1.0,5.0|8192,8192|VT|-|publishers/meta/models/llama3_1 model|N
vertex_ai/qwen/models/qwen2|qwen/models/qwen2|publishers/qwen/models/qwen2|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen2 model|N
vertex_ai/google/models/video-text-detection|google/models/video-text-detection|publishers/google/models/video-text-detection|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/video-text-detection model|N
vertex_ai/google/models/video-speech-transcription|-|publishers/google/models/video-speech-transcription|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/video-speech-transcription model|N
vertex_ai/meta/models/prompt-guard|meta/models/prompt-guard|publishers/meta/models/prompt-guard|C|1.0,5.0|512,1|VT|-|publishers/meta/models/prompt-guard model|N
vertex_ai/meta/models/llama-3.2-90b-vision-instruct-maas|-|publishers/meta/models/llama-3.2-90b-vision-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/meta/models/llama-3.2-90b-vision-instruct-maas model|N
vertex_ai/meta/models/llama3-2|meta/models/llama3-2|publishers/meta/models/llama3-2|C|1.0,5.0|8192,8192|VT|-|publishers/meta/models/llama3-2 model|N
vertex_ai/meta/models/llama-3.1-405b-instruct-maas|-|publishers/meta/models/llama-3.1-405b-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/meta/models/llama-3.1-405b-instruct-maas model|N
vertex_ai/google/models/path-foundation|google/models/path-foundation|publishers/google/models/path-foundation|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/path-foundation model|N
vertex_ai/google/models/derm-foundation|google/models/derm-foundation|publishers/google/models/derm-foundation|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/derm-foundation model|N
vertex_ai/meta/models/llama3-3|meta/models/llama3-3|publishers/meta/models/llama3-3|C|1.0,5.0|8192,8192|VT|-|publishers/meta/models/llama3-3 model|N
vertex_ai/meta/models/llama-3.3-70b-instruct-maas|meta/models/llama-3.3-70b-instruct-maas|publishers/meta/models/llama-3.3-70b-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/meta/models/llama-3.3-70b-instruct-maas model|N
vertex_ai/google/models/txgemma|google/models/txgemma|publishers/google/models/txgemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/txgemma model|N
vertex_ai/google/models/hear|google/models/hear|publishers/google/models/hear|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/hear model|N
vertex_ai/mistralai/models/mistral-small-2503|mistralai/models/mistral-small-2503|publishers/mistralai/models/mistral-small-2503|C|0.1,0.3|32768,8192|VT|68.7,,44.8,45.3,,,,,,|publishers/mistralai/models/mistral-small-2503 model|Y
vertex_ai/ai21/models/jamba-large-1.6|ai21/models/jamba-large-1.6|publishers/ai21/models/jamba-large-1.6|C|1.0,5.0|262144,8192|VT|-|publishers/ai21/models/jamba-large-1.6 model|N
vertex_ai/csm/models/cube|csm/models/cube|publishers/csm/models/cube|C|1.0,5.0|128000,8192|VT|-|publishers/csm/models/cube model|N
vertex_ai/qodo/models/qodo-embed-1-7b-v1|qodo/models/qodo-embed-1-7b|publishers/qodo/models/qodo-embed-1-7b-v1|C|1.0,5.0|128000,8192|VT|-|publishers/qodo/models/qodo-embed-1-7b-v1 model|N
vertex_ai/mistralai/models/codestral-2501-self-deploy|-|publishers/mistralai/models/codestral-2501-self-deploy|C|1.0,5.0|32768,8192|VT|-|publishers/mistralai/models/codestral-2501-self-deploy model|N
vertex_ai/cambai/models/mars7|cambai/models/mars7|publishers/cambai/models/mars7|C|1.0,5.0|128000,8192|VT|-|publishers/cambai/models/mars7 model|N
vertex_ai/mistralai/models/mistral-ocr-2505|mistralai/models/mistral-ocr-2505|publishers/mistralai/models/mistral-ocr-2505|C|1.0,5.0|8192,4096|VT|-|publishers/mistralai/models/mistral-ocr-2505 model|N
vertex_ai/google/models/medgemma|google/models/medgemma|publishers/google/models/medgemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/medgemma model|N
vertex_ai/mistralai/models/mistral-medium-3|mistralai/models/mistral-medium-3|publishers/mistralai/models/mistral-medium-3|C|0.39999999999999997,2.0|32768,8192|VT|-|publishers/mistralai/models/mistral-medium-3 model|Y
vertex_ai/meta/models/llama-4-maverick-17b-128e-instruct-maas|-|publishers/meta/models/llama-4-maverick-17b-128e-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/meta/models/llama-4-maverick-17b-128e-instruct-maas model|N
vertex_ai/anthropic/models/claude-opus-4|anthropic/models/claude-opus-4|publishers/anthropic/models/claude-opus-4|C|15.0,75.0|200000,32000|VT|,,85.0,69.2,62.2,,,,,|publishers/anthropic/models/claude-opus-4 model|N
vertex_ai/anthropic/models/claude-sonnet-4|anthropic/models/claude-sonnet-4|publishers/anthropic/models/claude-sonnet-4|C|3.0,15.0|200000,16000|VT|,,84.4,66.7,60.6,,,,,|publishers/anthropic/models/claude-sonnet-4 model|Y
vertex_ai/virtueai/models/virtueguard-text-lite|virtueai/models/virtueguard-text-lite|publishers/virtueai/models/virtueguard-text-lite|C|1.0,5.0|128000,8192|VT|-|publishers/virtueai/models/virtueguard-text-lite model|Y
vertex_ai/google/models/medsiglip|google/models/medsiglip|publishers/google/models/medsiglip|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/medsiglip model|N
vertex_ai/contextualai/models/rerank-v2-instruct|contextualai/models/rerank-v2-instruct|publishers/contextualai/models/rerank-v2-instruct|C|1.0,5.0|128000,8192|VT|-|publishers/contextualai/models/rerank-v2-instruct model|N
vertex_ai/anthropic/models/claude-opus-4-1|anthropic/models/claude-opus-4-1|publishers/anthropic/models/claude-opus-4-1|C|15.0,75.0|200000,32000|VT|,,,73.2,63.2,,,,,|publishers/anthropic/models/claude-opus-4-1 model|N
vertex_ai/mongodb/models/voyage-3.5-lite|mongodb/models/voyage-3.5-lite|publishers/mongodb/models/voyage-3.5-lite|C|1.0,5.0|128000,8192|VT|-|publishers/mongodb/models/voyage-3.5-lite model|N
vertex_ai/anthropic/models/claude-sonnet-4-5|anthropic/models/claude-sonnet-4-5|publishers/anthropic/models/claude-sonnet-4-5|C|3.0,15.0|200000,16000|VT|,,97.7,73.7,64.8,,,,,|publishers/anthropic/models/claude-sonnet-4-5 model|Y
vertex_ai/anthropic/models/claude-haiku-4-5|anthropic/models/claude-haiku-4-5|publishers/anthropic/models/claude-haiku-4-5|C|1.0,5.0|200000,8192|VT|,,86.9,60.5,60.6,,,,,|publishers/anthropic/models/claude-haiku-4-5 model|Y
vertex_ai/writer/models/palmyra-x4|writer/models/palmyra-x4|publishers/writer/models/palmyra-x4|C|1.0,5.0|131072,8192|VT|-|publishers/writer/models/palmyra-x4 model|N
vertex_ai/mistralai/models/codestral-2|mistralai/models/codestral-2|publishers/mistralai/models/codestral-2|C|1.0,5.0|32768,8192|VT|-|publishers/mistralai/models/codestral-2 model|N
vertex_ai/nvidia/models/nemotron-nano-12b-v2-vl|nvidia/models/nemotron-nano-12b-v2-vl|publishers/nvidia/models/nemotron-nano-12b-v2-vl|C|0.19999999999999998,0.6|131072,8192|VT|-|publishers/nvidia/models/nemotron-nano-12b-v2-vl model|Y
vertex_ai/anthropic/models/claude-opus-4-5|anthropic/models/claude-opus-4-5|publishers/anthropic/models/claude-opus-4-5|C|5.0,25.0|200000,32000|VT|,,,80.7,,,,,,|publishers/anthropic/models/claude-opus-4-5 model|N
vertex_ai/google/models/medasr|google/models/medasr|publishers/google/models/medasr|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/medasr model|N
vertex_ai/black-forest-labs/models/flux1-schnell|black-forest-labs/models/flux1-schnell|publishers/black-forest-labs/models/flux1-schnell|C|1.0,5.0|128000,8192|VT|-|publishers/black-forest-labs/models/flux1-schnell model|N
vertex_ai/google/models/image-segmentation-001|google/models/image-segmentation-001|publishers/google/models/image-segmentation-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/image-segmentation-001 model|N
vertex_ai/google/models/gemma3|google/models/gemma3|publishers/google/models/gemma3|C|1.0,5.0|131072,8192|VT|-|publishers/google/models/gemma3 model|N
vertex_ai/google/models/shieldgemma2|google/models/shieldgemma2|publishers/google/models/shieldgemma2|C|1.0,5.0|8192,1024|VT|-|publishers/google/models/shieldgemma2 model|N
vertex_ai/openai/models/whisper-large|openai/models/whisper-large|publishers/openai/models/whisper-large|C|1.0,5.0|128000,8192|VT|-|publishers/openai/models/whisper-large model|N
vertex_ai/google/models/veo-2.0-generate-001|google/models/veo-2.0-generate-001|publishers/google/models/veo-2.0-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-2.0-generate-001 model|N
vertex_ai/google/models/gemini-2.0-flash-001|google/models/gemini-2.0-flash-001|publishers/google/models/gemini-2.0-flash-001|C|0.15,0.6|1048576,8192|VT|,,82.2,64.1,22.0,,,,,|publishers/google/models/gemini-2.0-flash-001 model|Y
vertex_ai/google/models/gemini-2.0-flash-lite-001|google/models/gemini-2.0-flash-lite-001|publishers/google/models/gemini-2.0-flash-lite-001|C|0.075,0.3|1048576,8192|VT|-|publishers/google/models/gemini-2.0-flash-lite-001 model|Y
vertex_ai/nvidia/models/cosmos|nvidia/models/cosmos|publishers/nvidia/models/cosmos|C|1.0,5.0|128000,8192|VT|-|publishers/nvidia/models/cosmos model|N
vertex_ai/google/models/weathernext|google/models/weathernext|publishers/google/models/weathernext|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/weathernext model|N
vertex_ai/sesame/models/csm|sesame/models/csm|publishers/sesame/models/csm|C|1.0,5.0|128000,8192|VT|-|publishers/sesame/models/csm model|N
vertex_ai/hidream-ai/models/hidream-i1|hidream-ai/models/hidream-i1|publishers/hidream-ai/models/hidream-i1|C|1.0,5.0|128000,8192|VT|-|publishers/hidream-ai/models/hidream-i1 model|N
vertex_ai/google/models/lyria-002|google/models/lyria-002|publishers/google/models/lyria-002|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/lyria-002 model|N
vertex_ai/google/models/veo-3.0-generate-preview|google/models/veo-3.0-generate-preview|publishers/google/models/veo-3.0-generate-preview|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.0-generate-preview model|N
vertex_ai/nari-labs/models/dia-1.6b|nari-labs/models/dia-1.6b|publishers/nari-labs/models/dia-1.6b|C|1.0,5.0|128000,8192|VT|-|publishers/nari-labs/models/dia-1.6b model|N
vertex_ai/google/models/gemini-2.5-pro|google/models/gemini-2.5-pro|publishers/google/models/gemini-2.5-pro|C|1.25,10.0|1048576,65535|VT|,,,85.3,,,,,,|publishers/google/models/gemini-2.5-pro model|Y
vertex_ai/google/models/gemini-2.5-flash|google/models/gemini-2.5-flash|publishers/google/models/gemini-2.5-flash|C|0.3,2.5|1048576,65535|VT|-|publishers/google/models/gemini-2.5-flash model|Y
vertex_ai/google/models/imagen-product-recontext-preview-06-30|-|publishers/google/models/imagen-product-recontext-preview-06-30|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/imagen-product-recontext-preview-06-30 model|N
vertex_ai/deepseek-ai/models/deepseek-r1-0528-maas|-|publishers/deepseek-ai/models/deepseek-r1-0528-maas|C|1.0,5.0|131072,8192|VT|-|publishers/deepseek-ai/models/deepseek-r1-0528-maas model|N
vertex_ai/google/models/veo-3.0-fast-generate-preview|-|publishers/google/models/veo-3.0-fast-generate-preview|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.0-fast-generate-preview model|N
vertex_ai/google/models/gemini-2.5-flash-lite|google/models/gemini-2.5-flash-lite|publishers/google/models/gemini-2.5-flash-lite|C|0.1,0.4|1048576,65535|VT|-|publishers/google/models/gemini-2.5-flash-lite model|Y
vertex_ai/baai/models/bge|baai/models/bge|publishers/baai/models/bge|C|1.0,5.0|128000,8192|VT|-|publishers/baai/models/bge model|N
vertex_ai/google/models/t5gemma|google/models/t5gemma|publishers/google/models/t5gemma|C|1.0,5.0|8192,8192|VT|-|publishers/google/models/t5gemma model|N
vertex_ai/google/models/veo-3.0-generate-001|google/models/veo-3.0-generate-001|publishers/google/models/veo-3.0-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.0-generate-001 model|N
vertex_ai/google/models/veo-3.0-fast-generate-001|google/models/veo-3.0-fast-generate-001|publishers/google/models/veo-3.0-fast-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.0-fast-generate-001 model|N
vertex_ai/google/models/virtual-try-on-preview-08-04|-|publishers/google/models/virtual-try-on-preview-08-04|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/virtual-try-on-preview-08-04 model|N
vertex_ai/moonshotai/models/kimi-k2|moonshotai/models/kimi-k2|publishers/moonshotai/models/kimi-k2|C|1.0,250.0|131072,8192|VT|-|publishers/moonshotai/models/kimi-k2 model|Y
vertex_ai/qwen/models/qwen3-coder|qwen/models/qwen3-coder|publishers/qwen/models/qwen3-coder|C|0.22,0.95|131072,8192|VT|-|publishers/qwen/models/qwen3-coder model|Y
vertex_ai/openai/models/gpt-oss|openai/models/gpt-oss|publishers/openai/models/gpt-oss|C|1.0,5.0|128000,8192|VT|-|publishers/openai/models/gpt-oss model|N
vertex_ai/qwen/models/qwen3-235b-a22b-instruct-2507-maas|-|publishers/qwen/models/qwen3-235b-a22b-instruct-2507-maas|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3-235b-a22b-instruct-2507-maas model|N
vertex_ai/qwen/models/qwen3-coder-480b-a35b-instruct-maas|-|publishers/qwen/models/qwen3-coder-480b-a35b-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3-coder-480b-a35b-instruct-maas model|N
vertex_ai/deepseek-ai/models/deepseek-v3-1|deepseek-ai/models/deepseek-v3-1|publishers/deepseek-ai/models/deepseek-v3-1|C|0.15,0.75|131072,8192|VT|-|publishers/deepseek-ai/models/deepseek-v3-1 model|Y
vertex_ai/google/models/gemini-2.5-flash-image-preview|-|publishers/google/models/gemini-2.5-flash-image-preview|C|0.3,0.039|32768,8192|VT|-|publishers/google/models/gemini-2.5-flash-image-preview model|Y
vertex_ai/openai/models/gpt-oss-120b-maas|openai/models/gpt-oss-120b-maas|publishers/openai/models/gpt-oss-120b-maas|C|1.0,5.0|128000,8192|VT|-|publishers/openai/models/gpt-oss-120b-maas model|N
vertex_ai/qwen/models/qwen-image|qwen/models/qwen-image|publishers/qwen/models/qwen-image|C|0.0058,172.4|32768,4096|VT|-|publishers/qwen/models/qwen-image model|Y
vertex_ai/zai-org/models/glm-4.5|zai-org/models/glm-4.5|publishers/zai-org/models/glm-4.5|C|0.35,1.55|131072,8192|VT|-|publishers/zai-org/models/glm-4.5 model|Y
vertex_ai/deepseek-ai/models/deepseek-v3.1-maas|deepseek-ai/models/deepseek-v3.1-maas|publishers/deepseek-ai/models/deepseek-v3.1-maas|C|1.0,5.0|131072,8192|VT|-|publishers/deepseek-ai/models/deepseek-v3.1-maas model|N
vertex_ai/intfloat/models/multilingual-e5-large-instruct-maas|-|publishers/intfloat/models/multilingual-e5-large-instruct-maas|C|1.0,5.0|128000,8192|VT|-|publishers/intfloat/models/multilingual-e5-large-instruct-maas model|N
vertex_ai/aisingapore/models/gemma-sea-lion-v4|aisingapore/models/gemma-sea-lion|publishers/aisingapore/models/gemma-sea-lion-v4|C|1.0,5.0|8192,8192|VT|-|publishers/aisingapore/models/gemma-sea-lion-v4 model|N
vertex_ai/google/models/gemini-2.5-computer-use-preview-10-2025|-|publishers/google/models/gemini-2.5-computer-use-preview-10-2025|C|1.25,10.0|1048576,65535|VT|-|publishers/google/models/gemini-2.5-computer-use-preview-10-2025 model|Y
vertex_ai/deepseek-ai/models/deepseek-v3-2|deepseek-ai/models/deepseek-v3-2|publishers/deepseek-ai/models/deepseek-v3-2|C|0.25,0.38|131072,8192|VT|-|publishers/deepseek-ai/models/deepseek-v3-2 model|Y
vertex_ai/qwen/models/qwen3-next-80b-a3b-instruct-maas|-|publishers/qwen/models/qwen3-next-80b-a3b-instruct-maas|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3-next-80b-a3b-instruct-maas model|N
vertex_ai/qwen/models/qwen3-next-80b-a3b-thinking-maas|-|publishers/qwen/models/qwen3-next-80b-a3b-thinking-maas|C|1.0,5.0|131072,8192|VTK|-|publishers/qwen/models/qwen3-next-80b-a3b-thinking-maas model|N
vertex_ai/qwen/models/qwen3-next|qwen/models/qwen3-next|publishers/qwen/models/qwen3-next|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3-next model|N
vertex_ai/google/models/gemini-2.5-flash-preview-09-2025|-|publishers/google/models/gemini-2.5-flash-preview-09-2025|C|0.3,2.5|1048576,65535|VT|-|publishers/google/models/gemini-2.5-flash-preview-09-2025 model|Y
vertex_ai/google/models/gemini-2.5-flash-lite-preview-09-2025|-|publishers/google/models/gemini-2.5-flash-lite-preview-09-2025|C|0.09999999999999999,0.39999999999999997|1048576,65535|VT|-|publishers/google/models/gemini-2.5-flash-lite-preview-09-2025 model|Y
vertex_ai/google/models/gemini-2.5-flash-image|google/models/gemini-2.5-flash-image|publishers/google/models/gemini-2.5-flash-image|C|0.3,0.039|32768,8192|VT|-|publishers/google/models/gemini-2.5-flash-image model|Y
vertex_ai/google/models/veo-3.1-generate-preview|google/models/veo-3.1-generate-preview|publishers/google/models/veo-3.1-generate-preview|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.1-generate-preview model|N
vertex_ai/google/models/veo-3.1-fast-generate-preview|-|publishers/google/models/veo-3.1-fast-generate-preview|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.1-fast-generate-preview model|N
vertex_ai/deepseek-ai/models/deepseek-ocr|deepseek-ai/models/deepseek-ocr|publishers/deepseek-ai/models/deepseek-ocr|C|0.03,0.1|8192,4096|VT|-|publishers/deepseek-ai/models/deepseek-ocr model|Y
vertex_ai/qwen/models/qwen3-vl|qwen/models/qwen3-vl|publishers/qwen/models/qwen3-vl|C|1.0,5.0|131072,8192|VT|-|publishers/qwen/models/qwen3-vl model|N
vertex_ai/google/models/earth-ai-imagery-owlvit-eap-10-2025|-|publishers/google/models/earth-ai-imagery-owlvit-eap-10-2025|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/earth-ai-imagery-owlvit-eap-10-2025 model|N
vertex_ai/google/models/earth-ai-imagery-mammut-eap-10-2025|-|publishers/google/models/earth-ai-imagery-mammut-eap-10-2025|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/earth-ai-imagery-mammut-eap-10-2025 model|N
vertex_ai/google/models/gemini-3-pro-preview|google/models/gemini-3-pro-preview|publishers/google/models/gemini-3-pro-preview|C|2.0,12.0|1048576,65535|VT|,,,92.6,,,,,,|publishers/google/models/gemini-3-pro-preview model|Y
vertex_ai/google/models/gemini-3-pro-image-preview|-|publishers/google/models/gemini-3-pro-image-preview|C|2.0,12.0|65536,8192|VT|-|publishers/google/models/gemini-3-pro-image-preview model|Y
vertex_ai/deepseek-ai/models/deepseek-ocr-maas|deepseek-ai/models/deepseek-ocr-maas|publishers/deepseek-ai/models/deepseek-ocr-maas|C|1.0,5.0|8192,4096|VT|-|publishers/deepseek-ai/models/deepseek-ocr-maas model|N
vertex_ai/minimaxai/models/minimax-m2-maas|minimaxai/models/minimax-m2-maas|publishers/minimaxai/models/minimax-m2-maas|C|1.0,5.0|131072,8192|VT|-|publishers/minimaxai/models/minimax-m2-maas model|N
vertex_ai/google/models/veo-3.1-generate-001|google/models/veo-3.1-generate-001|publishers/google/models/veo-3.1-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.1-generate-001 model|N
vertex_ai/google/models/veo-3.1-fast-generate-001|google/models/veo-3.1-fast-generate-001|publishers/google/models/veo-3.1-fast-generate-001|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/veo-3.1-fast-generate-001 model|N
vertex_ai/minimaxai/models/minimax-m2|minimaxai/models/minimax-m2|publishers/minimaxai/models/minimax-m2|C|0.19999999999999998,1.0|131072,8192|VT|-|publishers/minimaxai/models/minimax-m2 model|Y
vertex_ai/google/models/weather-next-v2|google/models/weather-next|publishers/google/models/weather-next-v2|C|1.0,5.0|128000,8192|VT|-|publishers/google/models/weather-next-v2 model|N
vertex_ai/moonshotai/models/kimi-k2-thinking-maas|moonshotai/models/kimi-k2-thinking-maas|publishers/moonshotai/models/kimi-k2-thinking-maas|C|1.0,5.0|131072,8192|VTK|-|publishers/moonshotai/models/kimi-k2-thinking-maas model|N
vertex_ai/google/models/gemini-3-flash-preview|google/models/gemini-3-flash-preview|publishers/google/models/gemini-3-flash-preview|C|0.5,3.0|1048576,65535|VT|,,,83.2,,,,,,|publishers/google/models/gemini-3-flash-preview model|Y
vertex_ai/deepseek-ai/models/deepseek-v3.2-maas|deepseek-ai/models/deepseek-v3.2-maas|publishers/deepseek-ai/models/deepseek-v3.2-maas|C|1.0,5.0|131072,8192|VT|-|publishers/deepseek-ai/models/deepseek-v3.2-maas model|N
vertex_ai/nvidia/models/nemotron-v3|nvidia/models/nemotron|publishers/nvidia/models/nemotron-v3|C|1.0,5.0|131072,8192|VT|-|publishers/nvidia/models/nemotron-v3 model|N
vertex_ai/mistralai/models/ministral-3|mistralai/models/ministral-3|publishers/mistralai/models/ministral-3|C|1.0,5.0|131072,8192|VT|-|publishers/mistralai/models/ministral-3 model|N
vertex_ai/mistralai/models/mistral-large-3|mistralai/models/mistral-large-3|publishers/mistralai/models/mistral-large-3|C|1.0,5.0|131072,8192|VT|-|publishers/mistralai/models/mistral-large-3 model|Y
vertex_ai/zai-org/models/glm-4.7-maas|zai-org/models/glm-4.7-maas|publishers/zai-org/models/glm-4.7-maas|C|1.0,5.0|131072,8192|VT|-|publishers/zai-org/models/glm-4.7-maas model|N
# =============================================================================
# VOLCENGINE - Direct API (10 models)
# =============================================================================
volcengine/doubao-1-5-thinking-pro|doubao-1.5-thinking-pro|Doubao-1.5-Thinking-Pro|C|0.56,2.24|128000,8192|K|-|Doubao-1.5-Thinking-Pro model|Y
volcengine/doubao-1.5-pro-32k|doubao-1.5-pro-32k|Doubao-1.5-Pro-32K|C|0.28,1.12|128000,8192|-|-|Doubao-1.5-Pro-32K model|Y
volcengine/doubao-1.5-pro-256k|doubao-1.5-pro-256k|Doubao-1.5-Pro-256K|C|0.7,2.8|128000,8192|-|-|Doubao-1.5-Pro-256K model|Y
volcengine/doubao-1.5-lite-32k|doubao-1.5-lite-32k|Doubao-1.5-Lite-32K|C|0.04,0.14|128000,8192|-|-|Doubao-1.5-Lite-32K model|Y
volcengine/doubao-pro-32k|doubao-pro-32k|Doubao-Pro-32K|C|0.11,0.28|128000,8192|-|-|Doubao-Pro-32K model|Y
volcengine/doubao-pro-128k|doubao-pro-128k|Doubao-Pro-128K|C|0.7,1.26|128000,8192|-|-|Doubao-Pro-128K model|Y
volcengine/doubao-1.6-vision|doubao-1.6-vision|Doubao-1.6-Vision|C|0.28,1.12|128000,8192|V|-|Doubao-1.6-Vision model|Y
volcengine/doubao-seed-1-6-thinking|doubao-seed-1.6-thinking|Doubao-Seed-1.6-Thinking|C|0.56,2.24|128000,8192|K|-|Doubao-Seed-1.6-Thinking model|Y
volcengine/doubao-seed-1-8|doubao-seed-1-8|Doubao-Seed-1.8|C|0.56,2.24|128000,8192|-|-|Doubao-Seed-1.8 model|Y
volcengine/doubao-seed-code-preview|doubao-seed-code-preview|Doubao-Seed-Code-Preview|C|0.28,1.12|128000,8192|-|-|Doubao-Seed-Code-Preview model|Y
# =============================================================================
# WATSONX - Direct API (6 models)
# =============================================================================
watsonx/granite-3-8b-instruct|granite-3-8b-instruct|ibm/granite-3-8b-instruct|C|1.0,5.0|8192,8192|-|-|ibm/granite-3-8b-instruct model|N
watsonx/granite-3-2b-instruct|granite-3-2b-instruct|ibm/granite-3-2b-instruct|C|1.0,5.0|8192,8192|-|-|ibm/granite-3-2b-instruct model|N
watsonx/granite-34b-code-instruct|granite-34b-code-instruct|ibm/granite-34b-code-instruct|C|1.0,5.0|8192,8192|-|-|ibm/granite-34b-code-instruct model|N
watsonx/llama-3-1-70b-instruct|llama-3.1-70b-instruct|meta-llama/llama-3-1-70b-instruct|C|1.0,5.0|131072,4096|-|80.1,,36.7,44.2,,,,,,|meta-llama/llama-3-1-70b-instruct model|N
watsonx/llama-3-1-8b-instruct|llama-3.1-8b-instruct|meta-llama/llama-3-1-8b-instruct|C|1.0,5.0|131072,4096|-|56.1,,22.9,25.9,,,,,,|meta-llama/llama-3-1-8b-instruct model|N
watsonx/mixtral-8x7b-instruct-v01|mixtral-8x7b-instruct|mistralai/mixtral-8x7b-instruct-v01|C|1.0,5.0|32768,4096|V|70.5,,9.3,30.6,,,,,,|mistralai/mixtral-8x7b-instruct-v01 model|N
# =============================================================================
# WRITER - Direct API (7 models)
# =============================================================================
writer/palmyra-x5|palmyra-x5|palmyra-x5|C|1.0,5.0|1000000,16384|-|-|palmyra-x5 model|N
writer/palmyra-x4|palmyra-x4|palmyra-x4|C|1.0,5.0|131072,8192|-|-|palmyra-x4 model|N
writer/palmyra-x-003-instruct|palmyra-x-003-instruct|palmyra-x-003-instruct|C|1.0,5.0|32768,4096|-|-|palmyra-x-003-instruct model|N
writer/palmyra-med|palmyra-med|palmyra-med|C|1.0,5.0|32768,4096|-|-|palmyra-med model|N
writer/palmyra-fin|palmyra-fin|palmyra-fin|C|1.0,5.0|131072,8192|-|-|palmyra-fin model|N
writer/palmyra-creative|palmyra-creative|palmyra-creative|C|1.0,5.0|32768,4096|-|-|palmyra-creative model|N
writer/palmyra-vision|palmyra-vision|palmyra-vision|C|1.0,5.0|32768,4096|V|-|palmyra-vision model|N
# =============================================================================
# XAI - Direct API (10 models)
# =============================================================================
xai/grok-2-vision-1212|grok-2-vision-1212|grok-2-vision-1212|C|2.0,10.0|32768,8192|VT|-|grok-2-vision-1212 model|Y
xai/grok-3|grok-3|grok-3|C|3.0,15.0|131072,8192|VT|-|grok-3 model|Y
xai/grok-3-mini|grok-3-mini|grok-3-mini|C|0.3,0.5|131072,8192|VT|-|grok-3-mini model|Y
xai/grok-4-0709|grok-4-0709|grok-4-0709|C|3.0,15.0|256000,8192|VT|,,,87.0,,,,,,|grok-4-0709 model|Y
xai/grok-4-1-fast-non-reasoning|grok-4.1-fast-non-reasoning|grok-4-1-fast-non-reasoning|C|0.2,0.5|2000000,8192|VTK|-|grok-4-1-fast-non-reasoning model|Y
xai/grok-4-1-fast-reasoning|grok-4.1-fast-reasoning|grok-4-1-fast-reasoning|C|0.2,0.5|2000000,8192|VTK|-|grok-4-1-fast-reasoning model|Y
xai/grok-4-fast-non-reasoning|grok-4-fast-non-reasoning|grok-4-fast-non-reasoning|C|0.2,0.5|2000000,8192|VTK|-|grok-4-fast-non-reasoning model|Y
xai/grok-4-fast-reasoning|grok-4-fast-reasoning|grok-4-fast-reasoning|C|0.2,0.5|2000000,8192|VTK|-|grok-4-fast-reasoning model|Y
xai/grok-code-fast-1|grok-code-fast-1|grok-code-fast-1|C|0.2,1.5|256000,8192|VT|-|grok-code-fast-1 model|Y
xai/grok-2-image-1212|grok-2-image-1212|grok-2-image-1212|C|1.0,5.0|128000,8192|VT|-|grok-2-image-1212 model|N
# =============================================================================
# XINFERENCE - Direct API (140 models)
# =============================================================================
xinference/codestral-v0.1|codestral|codestral-v0.1|C|1.0,5.0|32768,8192|V|-|Codestrall-22B-v0.1 is trained on a diverse dataset of 80+ programming languages|N
xinference/gorilla-openfunctions-v2|gorilla-openfunctions|gorilla-openfunctions-v2|C|1.0,5.0|4096,8192|V|-|OpenFunctions is designed to extend Large Language Model (LLM) Chat Completion f|N
xinference/gpt-2|gpt-2|gpt-2|C|1.0,5.0|1024,8192|-|-|GPT-2 is a Transformer-based LLM that is trained on WebTest, a 40 GB dataset of |N
xinference/llama-2|llama-2|llama-2|C|1.0,5.0|4096,8192|-|-|Llama-2 is the second generation of Llama, open-source and trained on a larger a|N
xinference/mistral-instruct-v0.3|mistral-instruct|mistral-instruct-v0.3|C|1.0,5.0|32768,4096|V|-|The Mistral-7B-Instruct-v0.2 Large Language Model (LLM) is an improved instruct |N
xinference/mixtral-8x22B-instruct-v0.1|mixtral-8x22b-instruct|mixtral-8x22B-instruct-v0.1|C|1.0,5.0|65536,8192|V|70.5,,9.3,30.6,,,,,,|The Mixtral-8x22B-Instruct-v0.1 Large Language Model (LLM) is an instruct fine-t|N
xinference/openhermes-2.5|openhermes-2.5|openhermes-2.5|C|1.0,5.0|8192,8192|-|-|Openhermes 2.5 is a fine-tuned version of Mistral-7B-v0.1 on primarily GPT-4 gen|N
xinference/opt|opt|opt|C|1.0,5.0|2048,8192|-|-|Opt is an open-source, decoder-only, Transformer based LLM that was designed to |N
xinference/phi-2|phi-2|phi-2|C|1.0,5.0|2048,8192|-|56.3,,,,,,,,,|Phi-2 is a 2.7B Transformer based LLM used for research on model safety, trained|N
xinference/seallm_v2|seallm_v2|seallm_v2|C|1.0,5.0|8192,8192|-|-|We introduce SeaLLM-7B-v2, the state-of-the-art multilingual LLM for Southeast A|N
xinference/seallm_v2.5|seallm_v2.5|seallm_v2.5|C|1.0,5.0|8192,8192|-|-|We introduce SeaLLM-7B-v2.5, the state-of-the-art multilingual LLM for Southeast|N
xinference/DianJin-R1|dianjin-r1|DianJin-R1|C|1.0,5.0|32768,8192|-|-|Tongyi DianJin is a financial intelligence solution platform built by Alibaba Cl|N
xinference/HuatuoGPT-o1-LLaMA-3.1|huatuogpt-o1-llama-3.1|HuatuoGPT-o1-LLaMA-3.1|C|1.0,5.0|131072,8192|-|-|HuatuoGPT-o1 is a medical LLM designed for advanced medical reasoning. It genera|N
xinference/HuatuoGPT-o1-Qwen2.5|huatuogpt-o1-qwen2.5|HuatuoGPT-o1-Qwen2.5|C|1.0,5.0|32768,8192|-|-|HuatuoGPT-o1 is a medical LLM designed for advanced medical reasoning. It genera|N
xinference/InternVL3|internvl3|InternVL3|C|1.0,5.0|8192,8192|-|-|InternVL3, an advanced multimodal large language model (MLLM) series that demons|N
xinference/MiniCPM-V-2.6|minicpm-v-2.6|MiniCPM-V-2.6|C|1.0,5.0|32768,8192|V|-|MiniCPM-V 2.6 is the latest model in the MiniCPM-V series. The model is built on|N
xinference/Ovis2|ovis2|Ovis2|C|1.0,5.0|32768,8192|-|-|Ovis (Open VISion) is a novel Multimodal Large Language Model (MLLM) architectur|N
xinference/QvQ-72B-Preview|qvq-72b-preview|QvQ-72B-Preview|C|1.0,5.0|32768,8192|-|-|QVQ-72B-Preview is an experimental research model developed by the Qwen team, fo|N
xinference/QwQ-32B|qwq-32b|QwQ-32B|C|1.0,5.0|131072,8192|-|-|QwQ is the reasoning model of the Qwen series. Compared with conventional instru|N
xinference/QwQ-32B-Preview|qwq-32b-preview|QwQ-32B-Preview|C|1.0,5.0|32768,8192|-|-|QwQ-32B-Preview is an experimental research model developed by the Qwen Team, fo|N
xinference/Skywork|skywork|Skywork|C|1.0,5.0|4096,8192|-|-|Skywork is a series of large models developed by the Kunlun Group · Skywork team|N
xinference/Skywork-Math|skywork-math|Skywork-Math|C|1.0,5.0|4096,8192|-|-|Skywork is a series of large models developed by the Kunlun Group · Skywork team|N
xinference/XiYanSQL-QwenCoder-2504|xiyansql-qwencoder-2504|XiYanSQL-QwenCoder-2504|C|1.0,5.0|32768,8192|-|-|The XiYanSQL-QwenCoder models, as multi-dialect SQL base models, demonstrating r|N
xinference/Yi|yi|Yi|C|1.0,5.0|4096,8192|-|-|The Yi series models are large language models trained from scratch by developer|N
xinference/Yi-1.5|yi-1.5|Yi-1.5|C|1.0,5.0|4096,8192|-|-|Yi-1.5 is an upgraded version of Yi. It is continuously pre-trained on Yi with a|N
xinference/Yi-1.5-chat|yi-1.5-chat|Yi-1.5-chat|C|1.0,5.0|4096,8192|-|-|Yi-1.5 is an upgraded version of Yi. It is continuously pre-trained on Yi with a|N
xinference/Yi-1.5-chat-16k|yi-1.5-chat-16k|Yi-1.5-chat-16k|C|1.0,5.0|16384,8192|-|-|Yi-1.5 is an upgraded version of Yi. It is continuously pre-trained on Yi with a|N
xinference/Yi-200k|yi-200k|Yi-200k|C|1.0,5.0|262144,8192|-|-|The Yi series models are large language models trained from scratch by developer|N
xinference/Yi-chat|yi-chat|Yi-chat|C|1.0,5.0|4096,8192|-|-|The Yi series models are large language models trained from scratch by developer|N
xinference/baichuan-2|baichuan-2|baichuan-2|C|1.0,5.0|4096,8192|-|-|Baichuan2 is an open-source Transformer based LLM that is trained on both Chines|N
xinference/baichuan-2-chat|baichuan-2-chat|baichuan-2-chat|C|1.0,5.0|4096,8192|-|-|Baichuan2-chat is a fine-tuned version of the Baichuan LLM, specializing in chat|N
xinference/code-llama|code-llama|code-llama|C|1.0,5.0|100000,8192|-|-|Code-Llama is an open-source LLM trained by fine-tuning LLaMA2 for generating an|N
xinference/code-llama-instruct|code-llama-instruct|code-llama-instruct|C|1.0,5.0|100000,8192|-|-|Code-Llama-Instruct is an instruct-tuned version of the Code-Llama LLM.|N
xinference/code-llama-python|code-llama-python|code-llama-python|C|1.0,5.0|100000,8192|-|-|Code-Llama-Python is a fine-tuned version of the Code-Llama LLM, specializing in|N
xinference/codegeex4|codegeex4|codegeex4|C|1.0,5.0|131072,8192|-|-|the open-source version of the latest CodeGeeX4 model series|N
xinference/codeqwen1.5|codeqwen1.5|codeqwen1.5|C|1.0,5.0|65536,8192|-|-|CodeQwen1.5 is the Code-Specific version of Qwen1.5. It is a transformer-based d|N
xinference/codeqwen1.5-chat|codeqwen1.5-chat|codeqwen1.5-chat|C|1.0,5.0|65536,8192|-|-|CodeQwen1.5 is the Code-Specific version of Qwen1.5. It is a transformer-based d|N
xinference/codeshell|codeshell|codeshell|C|1.0,5.0|8194,8192|-|-|CodeShell is a multi-language code LLM developed by the Knowledge Computing Lab |N
xinference/codeshell-chat|codeshell-chat|codeshell-chat|C|1.0,5.0|8194,8192|-|-|CodeShell is a multi-language code LLM developed by the Knowledge Computing Lab |N
xinference/cogagent|cogagent|cogagent|C|1.0,5.0|4096,8192|-|-|The CogAgent-9B-20241220 model is based on GLM-4V-9B, a bilingual open-source VL|N
xinference/deepseek|deepseek|deepseek|C|1.0,5.0|4096,8192|-|87.1,,64.9,56.5,52.1,,,,,|DeepSeek LLM, trained from scratch on a vast dataset of 2 trillion tokens in bot|N
xinference/deepseek-chat|deepseek-chat|deepseek-chat|C|1.0,5.0|4096,8192|-|-|DeepSeek LLM is an advanced language model comprising 67 billion parameters. It |N
xinference/deepseek-coder|deepseek-coder|deepseek-coder|C|1.0,5.0|16384,8192|-|-|Deepseek Coder is composed of a series of code language models, each trained fro|N
xinference/deepseek-coder-instruct|deepseek-coder-instruct|deepseek-coder-instruct|C|1.0,5.0|16384,8192|-|-|deepseek-coder-instruct is a model initialized from deepseek-coder-base and fine|N
xinference/deepseek-prover-v2|deepseek-prover|deepseek-prover-v2|C|1.0,5.0|163840,8192|V|-|We introduce DeepSeek-Prover-V2, an open-source large language model designed fo|N
xinference/deepseek-r1|deepseek-r1|deepseek-r1|C|1.0,5.0|163840,8192|-|,,93.1,69.2,33.3,,,,,|DeepSeek-R1, which incorporates cold-start data before RL. DeepSeek-R1 achieves |N
xinference/deepseek-r1-0528|deepseek-r1-0528|deepseek-r1-0528|C|1.0,5.0|163840,8192|-|,,93.1,69.2,33.3,,,,,|DeepSeek-R1, which incorporates cold-start data before RL. DeepSeek-R1 achieves |N
xinference/deepseek-r1-0528-qwen3|deepseek-r1-0528-qwen3|deepseek-r1-0528-qwen3|C|1.0,5.0|131072,8192|-|-|The DeepSeek R1 model has undergone a minor version upgrade, with the current ve|N
xinference/deepseek-r1-distill-llama|deepseek-r1-distill-llama|deepseek-r1-distill-llama|C|1.0,5.0|131072,8192|-|-|deepseek-r1-distill-llama is distilled from DeepSeek-R1 based on Llama|N
xinference/deepseek-r1-distill-qwen|deepseek-r1-distill-qwen|deepseek-r1-distill-qwen|C|1.0,5.0|131072,8192|-|-|deepseek-r1-distill-qwen is distilled from DeepSeek-R1 based on Qwen|N
xinference/deepseek-v2-chat|deepseek-v2-chat|deepseek-v2-chat|C|1.0,5.0|128000,8192|V|-|DeepSeek-V2, a strong Mixture-of-Experts (MoE) language model characterized by e|N
xinference/deepseek-v2-chat-0628|deepseek-v2-chat-0628|deepseek-v2-chat-0628|C|1.0,5.0|128000,8192|V|-|DeepSeek-V2-Chat-0628 is an improved version of DeepSeek-V2-Chat. |N
xinference/deepseek-v2.5|deepseek|deepseek-v2.5|C|1.0,5.0|128000,8192|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V2.5 is an upgraded version that combines DeepSeek-V2-Chat and DeepSeek|N
xinference/deepseek-v3|deepseek|deepseek-v3|C|1.0,5.0|163840,8192|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3, a strong Mixture-of-Experts (MoE) language model with 671B total pa|N
xinference/deepseek-v3-0324|deepseek-v3-0324|deepseek-v3-0324|C|1.0,5.0|163840,8192|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3, a strong Mixture-of-Experts (MoE) language model with 671B total pa|N
xinference/deepseek-vl2|deepseek-vl2|deepseek-vl2|C|1.0,5.0|4096,8192|V|-|DeepSeek-VL2, an advanced series of large Mixture-of-Experts (MoE) Vision-Langua|N
xinference/fin-r1|fin-r1|fin-r1|C|1.0,5.0|131072,8192|-|-|Fin-R1 is a large language model specifically designed for the field of financia|N
xinference/gemma-3-1b-it|gemma-3-1b-it|gemma-3-1b-it|C|1.0,5.0|32768,8192|-|-|Gemma is a family of lightweight, state-of-the-art open models from Google, buil|N
xinference/gemma-3-it|gemma-3-it|gemma-3-it|C|1.0,5.0|131072,8192|-|-|Gemma is a family of lightweight, state-of-the-art open models from Google, buil|N
xinference/glm-4v|glm-4v|glm-4v|C|1.0,5.0|8192,8192|-|-|GLM4 is the open source version of the latest generation of pre-trained models i|N
xinference/glm-edge-chat|glm-edge-chat|glm-edge-chat|C|1.0,5.0|8192,8192|-|-|The GLM-Edge series is our attempt to face the end-side real-life scenarios, whi|N
xinference/glm4-0414|glm4-0414|glm4-0414|C|1.0,5.0|32768,8192|-|-|The GLM family welcomes new members, the GLM-4-32B-0414 series models, featuring|N
xinference/glm4-chat|glm4-chat|glm4-chat|C|1.0,5.0|131072,8192|-|-|GLM4 is the open source version of the latest generation of pre-trained models i|N
xinference/glm4-chat-1m|glm4-chat-1m|glm4-chat-1m|C|1.0,5.0|1048576,8192|-|-|GLM4 is the open source version of the latest generation of pre-trained models i|N
xinference/internlm3-instruct|internlm3-instruct|internlm3-instruct|C|1.0,5.0|32768,8192|-|-|InternLM3 has open-sourced an 8-billion parameter instruction model, InternLM3-8|N
xinference/llama-2-chat|llama-2-chat|llama-2-chat|C|1.0,5.0|4096,8192|-|-|Llama-2-Chat is a fine-tuned version of the Llama-2 LLM, specializing in chattin|N
xinference/llama-3|llama-3|llama-3|C|1.0,5.0|8192,8192|-|-|Llama 3 is an auto-regressive language model that uses an optimized transformer |N
xinference/llama-3-instruct|llama-3-instruct|llama-3-instruct|C|1.0,5.0|8192,8192|-|-|The Llama 3 instruction tuned models are optimized for dialogue use cases and ou|N
xinference/llama-3.1|llama-3.1|llama-3.1|C|1.0,5.0|131072,8192|-|-|Llama 3.1 is an auto-regressive language model that uses an optimized transforme|N
xinference/llama-3.1-instruct|llama-3.1-instruct|llama-3.1-instruct|C|1.0,5.0|131072,8192|-|-|The Llama 3.1 instruction tuned models are optimized for dialogue use cases and |N
xinference/llama-3.2-vision|llama-3.2-vision|llama-3.2-vision|C|1.0,5.0|131072,8192|V|-|The Llama 3.2-Vision instruction-tuned models are optimized for visual recogniti|N
xinference/llama-3.2-vision-instruct|llama-3.2-vision-instruct|llama-3.2-vision-instruct|C|1.0,5.0|131072,8192|V|-|Llama 3.2-Vision instruction-tuned models are optimized for visual recognition, |N
xinference/llama-3.3-instruct|llama-3.3-instruct|llama-3.3-instruct|C|1.0,5.0|131072,8192|-|-|The Llama 3.3 instruction tuned models are optimized for dialogue use cases and |N
xinference/marco-o1|marco-o1|marco-o1|C|1.0,5.0|32768,8192|-|,,,1.2,,47.7,,,,|Marco-o1: Towards Open Reasoning Models for Open-Ended Solutions|N
xinference/minicpm-2b-dpo-bf16|minicpm-2b-dpo-bf16|minicpm-2b-dpo-bf16|C|1.0,5.0|4096,8192|-|-|MiniCPM is an End-Size LLM developed by ModelBest Inc. and TsinghuaNLP, with onl|N
xinference/minicpm-2b-dpo-fp16|minicpm-2b-dpo-fp16|minicpm-2b-dpo-fp16|C|1.0,5.0|4096,8192|-|-|MiniCPM is an End-Size LLM developed by ModelBest Inc. and TsinghuaNLP, with onl|N
xinference/minicpm-2b-dpo-fp32|minicpm-2b-dpo-fp32|minicpm-2b-dpo-fp32|C|1.0,5.0|4096,8192|-|-|MiniCPM is an End-Size LLM developed by ModelBest Inc. and TsinghuaNLP, with onl|N
xinference/minicpm-2b-sft-bf16|minicpm-2b-sft-bf16|minicpm-2b-sft-bf16|C|1.0,5.0|4096,8192|-|-|MiniCPM is an End-Size LLM developed by ModelBest Inc. and TsinghuaNLP, with onl|N
xinference/minicpm-2b-sft-fp32|minicpm-2b-sft-fp32|minicpm-2b-sft-fp32|C|1.0,5.0|4096,8192|-|-|MiniCPM is an End-Size LLM developed by ModelBest Inc. and TsinghuaNLP, with onl|N
xinference/minicpm3-4b|minicpm3-4b|minicpm3-4b|C|1.0,5.0|32768,8192|-|-|MiniCPM3-4B is the 3rd generation of MiniCPM series. The overall performance of |N
xinference/minicpm4|minicpm4|minicpm4|C|1.0,5.0|32768,8192|-|-|MiniCPM4 series are highly efficient large language models (LLMs) designed expli|N
xinference/mistral-instruct-v0.1|mistral-instruct|mistral-instruct-v0.1|C|1.0,5.0|8192,8192|V|-|Mistral-7B-Instruct is a fine-tuned version of the Mistral-7B LLM on public data|N
xinference/mistral-instruct-v0.2|mistral-instruct|mistral-instruct-v0.2|C|1.0,5.0|8192,8192|V|-|The Mistral-7B-Instruct-v0.2 Large Language Model (LLM) is an improved instruct |N
xinference/mistral-large-instruct|mistral-large-instruct|mistral-large-instruct|C|1.0,5.0|131072,8192|-|80.0,,24.5,49.0,,,,,,|Mistral-Large-Instruct-2407 is an advanced dense Large Language Model (LLM) of 1|N
xinference/mistral-nemo-instruct|mistral-nemo-instruct|mistral-nemo-instruct|C|1.0,5.0|1024000,8192|-|-|The Mistral-Nemo-Instruct-2407 Large Language Model (LLM) is an instruct fine-tu|N
xinference/mistral-v0.1|mistral|mistral-v0.1|C|1.0,5.0|8192,8192|V|-|Mistral-7B is a unmoderated Transformer based LLM claiming to outperform Llama2 |N
xinference/mixtral-instruct-v0.1|mixtral-instruct|mixtral-instruct-v0.1|C|1.0,5.0|32768,8192|V|70.5,,9.3,30.6,,,,,,|Mistral-8x7B-Instruct is a fine-tuned version of the Mistral-8x7B LLM, specializ|N
xinference/mixtral-v0.1|mixtral|mixtral-v0.1|C|1.0,5.0|32768,8192|V|70.5,,9.3,30.6,,,,,,|The Mixtral-8x7B Large Language Model (LLM) is a pretrained generative Sparse Mi|N
xinference/moonlight-16b-a3b-instruct|moonlight-16b-a3b-instruct|moonlight-16b-a3b-instruct|C|1.0,5.0|8192,8192|-|-|Kimi Muon is Scalable for LLM Training|N
xinference/orion-chat|orion-chat|orion-chat|C|1.0,5.0|4096,8192|-|-|Orion-14B series models are open-source multilingual large language models train|N
xinference/phi-3-mini-128k-instruct|phi-3-mini-128k-instruct|phi-3-mini-128k-instruct|C|1.0,5.0|128000,8192|-|-|The Phi-3-Mini-128K-Instruct is a 3.8 billion-parameter, lightweight, state-of-t|N
xinference/phi-3-mini-4k-instruct|phi-3-mini-4k-instruct|phi-3-mini-4k-instruct|C|1.0,5.0|4096,8192|-|68.8,,,,,,,,,|The Phi-3-Mini-4k-Instruct is a 3.8 billion-parameter, lightweight, state-of-the|N
xinference/qwen-chat|qwen-chat|qwen-chat|C|1.0,5.0|32768,8192|-|-|Qwen-chat is a fine-tuned version of the Qwen LLM trained with alignment techniq|N
xinference/qwen1.5-chat|qwen1.5-chat|qwen1.5-chat|C|1.0,5.0|32768,8192|-|-|Qwen1.5 is the beta version of Qwen2, a transformer-based decoder-only language |N
xinference/qwen1.5-moe-chat|qwen1.5-moe-chat|qwen1.5-moe-chat|C|1.0,5.0|32768,8192|-|-|Qwen1.5-MoE is a transformer-based MoE decoder-only language model pretrained on|N
xinference/qwen2-audio|qwen2-audio|qwen2-audio|C|1.0,5.0|32768,8192|-|-|Qwen2-Audio: A large-scale audio-language model which is capable of accepting va|N
xinference/qwen2-audio-instruct|qwen2-audio-instruct|qwen2-audio-instruct|C|1.0,5.0|32768,8192|-|-|Qwen2-Audio: A large-scale audio-language model which is capable of accepting va|N
xinference/qwen2-instruct|qwen2-instruct|qwen2-instruct|C|1.0,5.0|32768,8192|-|-|Qwen2 is the new series of Qwen large language models|N
xinference/qwen2-moe-instruct|qwen2-moe-instruct|qwen2-moe-instruct|C|1.0,5.0|32768,8192|-|-|Qwen2 is the new series of Qwen large language models. |N
xinference/qwen2-vl-instruct|qwen2-vl-instruct|qwen2-vl-instruct|C|1.0,5.0|32768,8192|V|-|Qwen2-VL: To See the World More Clearly.Qwen2-VL is the latest version of the vi|N
xinference/qwen2.5|qwen2.5|qwen2.5|C|1.0,5.0|32768,8192|-|-|Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we rele|N
xinference/qwen2.5-coder|qwen2.5-coder|qwen2.5-coder|C|1.0,5.0|32768,8192|-|-|Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (|N
xinference/qwen2.5-coder-instruct|qwen2.5-coder-instruct|qwen2.5-coder-instruct|C|1.0,5.0|32768,8192|-|-|Qwen2.5-Coder is the latest series of Code-Specific Qwen large language models (|N
xinference/qwen2.5-instruct|qwen2.5-instruct|qwen2.5-instruct|C|1.0,5.0|32768,8192|-|-|Qwen2.5 is the latest series of Qwen large language models. For Qwen2.5, we rele|N
xinference/qwen2.5-instruct-1m|qwen2.5-instruct-1m|qwen2.5-instruct-1m|C|1.0,5.0|1010000,8192|-|-|Qwen2.5-1M is the long-context version of the Qwen2.5 series models, supporting |N
xinference/qwen2.5-omni|qwen2.5-omni|qwen2.5-omni|C|1.0,5.0|32768,8192|-|-|Qwen2.5-Omni: the new flagship end-to-end multimodal model in the Qwen series.|N
xinference/qwen2.5-vl-instruct|qwen2.5-vl-instruct|qwen2.5-vl-instruct|C|1.0,5.0|128000,8192|V|-|Qwen2.5-VL: Qwen2.5-VL is the latest version of the vision language models in th|N
xinference/qwen3|qwen3|qwen3|C|1.0,5.0|40960,8192|-|-|Qwen3 is the latest generation of large language models in Qwen series, offering|N
xinference/Qwen3-Instruct|qwen3-instruct|Qwen3-Instruct|C|1.0,5.0|262144,8192|-|-|We introduce the updated version of the Qwen3-235B-A22B non-thinking mode, named|N
xinference/Qwen3-Thinking|qwen3-thinking|Qwen3-Thinking|C|1.0,5.0|262144,8192|K|-|we have continued to scale the thinking capability of Qwen3-235B-A22B, improving|N
xinference/Qwen3-Coder|qwen3-coder|Qwen3-Coder|C|1.0,5.0|262144,8192|-|-|we're announcing Qwen3-Coder, our most agentic code model to date|N
xinference/seallms-v3|seallms|seallms-v3|C|1.0,5.0|32768,8192|V|-|SeaLLMs - Large Language Models for Southeast Asia|N
xinference/skywork-or1|skywork-or1|skywork-or1|C|1.0,5.0|131072,8192|-|-|We release the final version of Skywork-OR1 (Open Reasoner 1) series of models, |N
xinference/skywork-or1-preview|skywork-or1-preview|skywork-or1-preview|C|1.0,5.0|32768,8192|-|-|The Skywork-OR1 (Open Reasoner 1) model series consists of powerful math and cod|N
xinference/telechat|telechat|telechat|C|1.0,5.0|8192,8192|-|-|The TeleChat is a large language model developed and trained by China Telecom Ar|N
xinference/tiny-llama|tiny-llama|tiny-llama|C|1.0,5.0|2048,8192|-|-|The TinyLlama project aims to pretrain a 1.1B Llama model on 3 trillion tokens.|N
xinference/wizardcoder-python-v1.0|wizardcoder-python|wizardcoder-python-v1.0|C|1.0,5.0|100000,8192|V|-|wizardcoder-python-v1.0 model|N
xinference/wizardmath-v1.0|wizardmath|wizardmath-v1.0|C|1.0,5.0|2048,8192|V|-|WizardMath is an open-source LLM trained by fine-tuning Llama2 with Evol-Instruc|N
xinference/xverse|xverse|xverse|C|1.0,5.0|2048,8192|-|-|XVERSE is a multilingual large language model, independently developed by Shenzh|N
xinference/xverse-chat|xverse-chat|xverse-chat|C|1.0,5.0|2048,8192|-|-|XVERSEB-Chat is the aligned version of model XVERSE.|N
xinference/qwenLong-l1|qwenlong-l1|qwenLong-l1|C|1.0,5.0|32768,8192|-|-|QwenLong-L1: Towards Long-Context Large Reasoning Models with Reinforcement Lear|N
xinference/Ernie4.5|ernie4.5|Ernie4.5|C|1.0,5.0|131072,8192|-|-|ERNIE 4.5, a new family of large-scale multimodal models comprising 10 distinct |N
xinference/glm-4.1v-thinking|glm-4.1v-thinking|glm-4.1v-thinking|C|1.0,5.0|65536,8192|K|-|GLM-4.1V-9B-Thinking, designed to explore the upper limits of reasoning in visio|N
xinference/glm-4.5|glm-4.5|glm-4.5|C|1.0,5.0|131072,8192|-|-|The GLM-4.5 series models are foundation models designed for intelligent agents.|N
xinference/glm-4.5v|glm-4.5v|glm-4.5v|C|1.0,5.0|131072,8192|-|-|GLM-4.5V is based on ZhipuAI’s next-generation flagship text foundation model GL|N
xinference/gpt-oss|gpt-oss|gpt-oss|C|1.0,5.0|131072,8192|-|-|gpt-oss series, OpenAI’s open-weight models designed for powerful reasoning, age|N
xinference/KAT-V1|kat|KAT-V1|C|1.0,5.0|131072,8192|V|-|Kwaipilot-AutoThink ranks first among all open-source models on LiveCodeBench Pr|N
xinference/Deepseek-V3.1|deepseek|Deepseek-V3.1|C|1.0,5.0|131072,8192|V|87.1,,64.9,56.5,52.1,,,,,|DeepSeek-V3.1 is a hybrid model that supports both thinking mode and non-thinkin|N
xinference/seed-oss|seed-oss|seed-oss|C|1.0,5.0|524288,8192|-|-|Seed-OSS is a series of open-source large language models developed by ByteDance|N
xinference/Baichuan-M2|baichuan-m2|Baichuan-M2|C|1.0,5.0|131072,8192|-|-|Baichuan-M2-32B is Baichuan AI's medical-enhanced reasoning model, the second me|N
xinference/Qwen3-VL-Instruct|qwen3-vl-instruct|Qwen3-VL-Instruct|C|1.0,5.0|262144,8192|V|-|Meet Qwen3-VL — the most powerful vision-language model in the Qwen series to da|N
xinference/Qwen3-VL-Thinking|qwen3-vl-thinking|Qwen3-VL-Thinking|C|1.0,5.0|262144,8192|VK|-|Meet Qwen3-VL — the most powerful vision-language model in the Qwen series to da|N
xinference/Qwen3-Next-Instruct|qwen3-next-instruct|Qwen3-Next-Instruct|C|1.0,5.0|262144,8192|-|-|Qwen3-Next-80B-A3B is the first installment in the Qwen3-Next series|N
xinference/Qwen3-Next-Thinking|qwen3-next-thinking|Qwen3-Next-Thinking|C|1.0,5.0|262144,8192|K|-|Qwen3-Next-80B-A3B is the first installment in the Qwen3-Next series|N
xinference/MiniCPM-V-4.5|minicpm-v-4.5|MiniCPM-V-4.5|C|1.0,5.0|32768,8192|V|-|MiniCPM-V 4.5 is an improved version in the MiniCPM-V series with enhanced multi|N
xinference/Qwen3-Omni-Thinking|qwen3-omni-thinking|Qwen3-Omni-Thinking|C|1.0,5.0|262144,8192|K|-|Qwen3-Omni is the natively end-to-end multilingual omni-modal foundation models.|N
xinference/Qwen3-Omni-Instruct|qwen3-omni-instruct|Qwen3-Omni-Instruct|C|1.0,5.0|262144,8192|-|-|Qwen3-Omni is the natively end-to-end multilingual omni-modal foundation models.|N
xinference/MiniMax-M2|minimax-m2|MiniMax-M2|C|1.0,5.0|196608,8192|-|-|MiniMax-M2, a Mini model built for Max coding & agentic workflows.|N
xinference/DeepSeek-V3.2|deepseek|DeepSeek-V3.2|C|1.0,5.0|163840,8192|V|87.1,,64.9,56.5,52.1,,,,,|We introduce DeepSeek-V3.2, a model that harmonizes high computational efficienc|N
xinference/DeepSeek-V3.2-Exp|deepseek-v3.2-exp|DeepSeek-V3.2-Exp|C|1.0,5.0|163840,8192|V|-|We are excited to announce the official release of DeepSeek-V3.2-Exp, an experim|N
# =============================================================================
# YANDEX - Direct API (6 models)
# =============================================================================
yandex/yandexgpt|yandexgpt|yandexgpt|C|0.2,0.2|8192,2048|-|-|yandexgpt model|Y
yandex/yandexgpt-lite|yandexgpt-lite|yandexgpt-lite|C|0.02,0.02|8192,2048|-|-|yandexgpt-lite model|Y
yandex/yandexgpt-pro|yandexgpt-pro|yandexgpt-pro|C|0.8,0.8|32768,8192|-|-|yandexgpt-pro model|Y
yandex/yandexgpt-pro-32k|yandexgpt-pro-32k|yandexgpt-pro-32k|C|0.8,0.8|32768,8192|-|-|yandexgpt-pro-32k model|Y
yandex/summarization|summarization|summarization|C|0.5,0.5|32768,8192|-|-|summarization model|Y
yandex/yandexart|yandexart|yandexart|C|1.0,5.0|128000,8192|-|-|yandexart model|N
# =============================================================================
# YI - Direct API (8 models)
# =============================================================================
yi/yi-lightning|yi-lightning|yi-lightning|C|0.99,0.99|16000,4096|-|-|yi-lightning model|Y
yi/yi-lightning-lite|yi-lightning-lite|yi-lightning-lite|C|1.0,5.0|16000,4096|-|-|yi-lightning-lite model|N
yi/yi-large|yi-large|yi-large|C|3.0,3.0|32000,4096|-|79.3,,,,,,,,,|yi-large model|Y
yi/yi-large-turbo|yi-large-turbo|yi-large-turbo|C|1.0,1.0|16000,4096|-|-|yi-large-turbo model|Y
yi/yi-medium|yi-medium|yi-medium|C|0.25,0.25|16000,4096|-|-|yi-medium model|Y
yi/yi-medium-200k|yi-medium-200k|yi-medium-200k|C|1.0,1.0|200000,4096|-|-|yi-medium-200k model|Y
yi/yi-vision|yi-vision|yi-vision|C|0.5,0.5|4000,4096|V|-|yi-vision model|Y
yi/yi-coder|yi-coder|yi-coder|C|0.5,0.5|128000,4096|-|-|yi-coder model|Y
"#;
fn parse_status(s: &str) -> ModelStatus {
match s.to_uppercase().as_str() {
"C" => ModelStatus::Current,
"L" => ModelStatus::Legacy,
"D" => ModelStatus::Deprecated,
_ => ModelStatus::Current,
}
}
fn parse_model_line(line: &str) -> Option<ModelInfo> {
let parts: Vec<&str> = line.split('|').collect();
if parts.len() < 10 {
return None;
}
let id = parts[0].to_string();
let alias = if parts[1] == "-" {
None
} else {
Some(parts[1].to_string())
};
let name = parts[2].to_string();
let status = parse_status(parts[3]);
let pricing_parts: Vec<&str> = parts[4].split(',').collect();
let input_cost = pricing_parts
.first()
.and_then(|s| s.parse().ok())
.unwrap_or(1.0);
let output_cost = pricing_parts
.get(1)
.and_then(|s| s.parse().ok())
.unwrap_or(5.0);
let cache_cost = pricing_parts.get(2).and_then(|s| s.parse().ok());
let mut pricing = ModelPricing::new(input_cost, output_cost);
if let Some(c) = cache_cost {
pricing = pricing.with_cache(c);
}
let ctx_parts: Vec<&str> = parts[5].split(',').collect();
let max_context = ctx_parts
.first()
.and_then(|s| s.parse().ok())
.unwrap_or(128000);
let max_output = ctx_parts
.get(1)
.and_then(|s| s.parse().ok())
.unwrap_or(8192);
let capabilities = ModelCapabilities::from_flags(max_context, max_output, parts[6]);
let bench_parts: Vec<&str> = parts[7].split(',').collect();
let benchmarks = ModelBenchmarks {
mmlu: bench_parts.first().and_then(|s| s.parse().ok()),
humaneval: bench_parts.get(1).and_then(|s| s.parse().ok()),
math: bench_parts.get(2).and_then(|s| s.parse().ok()),
gpqa: bench_parts.get(3).and_then(|s| s.parse().ok()),
swe_bench: bench_parts.get(4).and_then(|s| s.parse().ok()),
ifeval: bench_parts.get(5).and_then(|s| s.parse().ok()),
mmmu: bench_parts.get(6).and_then(|s| s.parse().ok()),
mgsm: bench_parts.get(7).and_then(|s| s.parse().ok()),
ttft_ms: bench_parts.get(8).and_then(|s| s.parse().ok()),
tokens_per_sec: bench_parts.get(9).and_then(|s| s.parse().ok()),
};
let description = parts[8].to_string();
let can_classify = parts[9].trim().to_uppercase() == "Y";
let provider = if let Some((prefix, _)) = id.split_once('/') {
Provider::from_prefix(prefix)
} else {
Provider::Custom
};
Some(ModelInfo {
id,
alias,
name,
provider,
status,
pricing,
capabilities,
benchmarks,
description,
can_classify,
})
}
fn parse_model_data() -> Vec<ModelInfo> {
MODEL_DATA
.lines()
.filter(|line| !line.trim().is_empty() && !line.trim().starts_with('#'))
.filter_map(|line| parse_model_line(line.trim()))
.collect()
}
struct ModelRegistry {
models: Vec<ModelInfo>,
id_index: HashMap<String, usize>,
}
impl ModelRegistry {
fn new() -> Self {
let models = parse_model_data();
let mut id_index = HashMap::new();
let mut alias_providers: HashMap<String, Provider> = HashMap::new();
for (i, model) in models.iter().enumerate() {
id_index.insert(model.id.clone(), i);
let raw_id = model.raw_id().to_string();
let current_is_native = Self::is_native_provider(model.provider, &raw_id);
let should_insert_raw = match alias_providers.get(&raw_id) {
None => true,
Some(&existing_provider) => {
current_is_native && !Self::is_native_provider(existing_provider, &raw_id)
}
};
if should_insert_raw {
id_index.insert(raw_id.clone(), i);
alias_providers.insert(raw_id, model.provider);
}
if let Some(ref alias) = model.alias {
let current_is_native = Self::is_native_provider(model.provider, alias);
let should_insert = match alias_providers.get(alias) {
None => true, Some(&existing_provider) => {
let existing_is_native = Self::is_native_provider(existing_provider, alias);
current_is_native && !existing_is_native
}
};
if should_insert {
id_index.insert(alias.clone(), i);
alias_providers.insert(alias.clone(), model.provider);
}
}
}
Self { models, id_index }
}
fn is_native_provider(provider: Provider, alias: &str) -> bool {
let alias_lower = alias.to_lowercase();
match provider {
Provider::OpenAI => {
alias_lower.starts_with("gpt")
|| alias_lower.starts_with("o1")
|| alias_lower.starts_with("o3")
|| alias_lower.starts_with("chatgpt")
|| alias_lower.starts_with("dall-e")
|| alias_lower.starts_with("whisper")
|| alias_lower.starts_with("tts")
}
Provider::Anthropic => alias_lower.starts_with("claude"),
Provider::Google => {
alias_lower.starts_with("gemini")
|| alias_lower.starts_with("palm")
|| alias_lower.starts_with("bard")
}
Provider::Mistral => {
alias_lower.starts_with("mistral") || alias_lower.starts_with("codestral")
}
Provider::Cohere => {
alias_lower.starts_with("command") || alias_lower.starts_with("embed")
}
Provider::DeepSeek => alias_lower.starts_with("deepseek"),
Provider::Xai => alias_lower.starts_with("grok"),
_ => false,
}
}
fn get(&self, model_id: &str) -> Option<&ModelInfo> {
self.id_index.get(model_id).map(|&i| &self.models[i])
}
}
static REGISTRY: LazyLock<ModelRegistry> = LazyLock::new(ModelRegistry::new);
pub fn get_model_info(model_id: &str) -> Option<&'static ModelInfo> {
REGISTRY.get(model_id)
}
pub fn supports_structured_output(model_id: &str) -> bool {
get_model_info(model_id)
.map(|m| m.capabilities.structured_output)
.unwrap_or(false)
}
pub fn get_models_by_provider(provider: Provider) -> Vec<&'static ModelInfo> {
REGISTRY
.models
.iter()
.filter(|m| m.provider == provider)
.collect()
}
pub fn get_all_models() -> &'static [ModelInfo] {
®ISTRY.models
}
pub fn get_current_models() -> Vec<&'static ModelInfo> {
REGISTRY
.models
.iter()
.filter(|m| m.status == ModelStatus::Current)
.collect()
}
pub fn get_classifier_models() -> Vec<&'static ModelInfo> {
REGISTRY.models.iter().filter(|m| m.can_classify).collect()
}
pub fn get_available_models() -> Vec<&'static ModelInfo> {
REGISTRY
.models
.iter()
.filter(|m| m.provider.is_available())
.collect()
}
pub fn get_models_with_capability(
vision: Option<bool>,
tools: Option<bool>,
thinking: Option<bool>,
) -> Vec<&'static ModelInfo> {
REGISTRY
.models
.iter()
.filter(|m| {
vision.is_none_or(|v| m.capabilities.vision == v)
&& tools.is_none_or(|t| m.capabilities.tools == t)
&& thinking.is_none_or(|k| m.capabilities.thinking == k)
})
.collect()
}
pub fn get_cheapest_model(
min_context: Option<u32>,
needs_vision: bool,
needs_tools: bool,
) -> Option<&'static ModelInfo> {
let mut candidates: Vec<_> = REGISTRY
.models
.iter()
.filter(|m| {
m.status == ModelStatus::Current
&& m.provider.is_available()
&& min_context.is_none_or(|c| m.capabilities.max_context >= c)
&& (!needs_vision || m.capabilities.vision)
&& (!needs_tools || m.capabilities.tools)
})
.collect();
candidates.sort_by(|a, b| {
let cost_a = a.pricing.input_per_1m + a.pricing.output_per_1m;
let cost_b = b.pricing.input_per_1m + b.pricing.output_per_1m;
cost_a
.partial_cmp(&cost_b)
.unwrap_or(std::cmp::Ordering::Equal)
});
candidates.first().copied()
}
pub fn list_providers() -> Vec<Provider> {
let mut providers: Vec<_> = REGISTRY
.models
.iter()
.map(|m| m.provider)
.collect::<std::collections::HashSet<_>>()
.into_iter()
.collect();
providers.sort_by_key(|p| p.prefix());
providers
}
pub struct RegistryStats {
pub total_models: usize,
pub current_models: usize,
pub providers: usize,
pub available_models: usize,
}
pub fn get_registry_stats() -> RegistryStats {
RegistryStats {
total_models: REGISTRY.models.len(),
current_models: REGISTRY
.models
.iter()
.filter(|m| m.status == ModelStatus::Current)
.count(),
providers: list_providers().len(),
available_models: get_available_models().len(),
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_provider_detection() {
assert_eq!(Provider::from_prefix("anthropic"), Provider::Anthropic);
assert_eq!(Provider::from_prefix("openai"), Provider::OpenAI);
assert_eq!(Provider::from_prefix("groq"), Provider::Groq);
}
#[test]
fn test_provider_from_model() {
assert_eq!(
Provider::from_model("claude-sonnet-4-20250514"),
Provider::Anthropic
);
assert_eq!(Provider::from_model("gpt-4o"), Provider::OpenAI);
assert_eq!(Provider::from_model("gemini-1.5-pro"), Provider::Google);
}
#[test]
fn test_get_model_info() {
let model = get_model_info("anthropic/claude-sonnet-4-5-20250929").unwrap();
assert_eq!(model.provider, Provider::Anthropic);
}
#[test]
fn test_alias_resolves_to_native_provider() {
let gpt4o = get_model_info("gpt-4o").expect("gpt-4o should exist");
assert_eq!(
gpt4o.provider,
Provider::OpenAI,
"gpt-4o alias should resolve to OpenAI, not {:?} ({})",
gpt4o.provider,
gpt4o.id
);
let claude = get_model_info("claude-sonnet-4-5").expect("claude-sonnet-4-5 should exist");
assert_eq!(
claude.provider,
Provider::Anthropic,
"claude-sonnet-4-5 alias should resolve to Anthropic, not {:?} ({})",
claude.provider,
claude.id
);
}
#[test]
fn test_pricing_calculation() {
let pricing = ModelPricing::new(3.0, 15.0);
let cost = pricing.estimate_cost(1000, 500);
assert!((cost - 0.0105).abs() < 0.0001);
}
#[test]
fn test_benchmarks_quality_score() {
let benchmarks = ModelBenchmarks {
mmlu: Some(90.0),
humaneval: Some(95.0),
math: Some(85.0),
..Default::default()
};
let score = benchmarks.quality_score();
assert!(score > 85.0 && score < 95.0);
}
#[test]
fn test_registry_has_models() {
let stats = get_registry_stats();
assert!(stats.total_models > 50); assert!(stats.providers >= 17); }
#[test]
fn test_regional_providers() {
let palmyra = get_model_info("bedrock/writer.palmyra-x5-v1:0");
if let Some(m) = palmyra {
assert_eq!(m.provider, Provider::Bedrock);
assert!(m.capabilities.max_context >= 128000);
}
let qwen = get_model_info("alibaba/qwen-2.5-72b-instruct");
if let Some(m) = qwen {
assert_eq!(m.provider, Provider::Alibaba);
}
let groq = get_model_info("groq/llama-3.3-70b-versatile");
if let Some(m) = groq {
assert_eq!(m.provider, Provider::Groq);
}
let sambanova = get_model_info("sambanova/Llama-4-Maverick-17B-128E-Instruct");
if let Some(m) = sambanova {
assert_eq!(m.provider, Provider::SambaNova);
}
}
#[test]
fn test_regional_provider_detection() {
assert_eq!(Provider::from_model("palmyra-x5"), Provider::Writer);
assert_eq!(Provider::from_model("sabia-3"), Provider::Maritaca);
assert_eq!(Provider::from_model("HCX-005"), Provider::NaverClova);
assert_eq!(Provider::from_model("yandexgpt-pro"), Provider::Yandex);
assert_eq!(Provider::from_model("gigachat-pro"), Provider::GigaChat);
assert_eq!(Provider::from_model("solar-pro"), Provider::Upstage);
}
#[test]
fn test_regional_provider_prefix() {
assert_eq!(Provider::from_prefix("writer"), Provider::Writer);
assert_eq!(Provider::from_prefix("maritaca"), Provider::Maritaca);
assert_eq!(Provider::from_prefix("clova"), Provider::NaverClova);
assert_eq!(Provider::from_prefix("naver_clova"), Provider::NaverClova);
assert_eq!(Provider::from_prefix("naver"), Provider::NaverClova);
assert_eq!(Provider::from_prefix("yandex"), Provider::Yandex);
assert_eq!(Provider::from_prefix("gigachat"), Provider::GigaChat);
assert_eq!(Provider::from_prefix("upstage"), Provider::Upstage);
assert_eq!(Provider::from_prefix("sea-lion"), Provider::SeaLion);
}
}