SAVRN
Search Contact SAVRN

Open-weight model · Text generation

Crowd-v1

by Vxtzq Vxtzq/Crowd-v1

CrowdGPT's first community-distributed language model architecture. Crowd-v1 is the first official model architecture released for CrowdGPT, a community-driven distributed AI project.

Parameters
Context
Weights6.0 GB
Licensemit
AccessOpen weights
Monthly Downloads18.8k

Model Card

By Vxtzq, published under mit, revision 0c412694f716.

CrowdGPT's first community-distributed language model architecture. Crowd-v1 is the first official model architecture released for CrowdGPT, a community-driven distributed AI project. Unlike a conventional pretrained model release, Crowd-v1 is distributed with randomly initialized weights. The purpose of this release is to provide a common model definition and weight format that CrowdGPT clients can download and collectively train. The model is designed to be consumed by the CrowdGPT distributed training infrastructure, where individual participants contribute compute toward training a shared model. Crowd-v1 contains approximately 1 billion parameters. Grouped-Query Attention (GQA) Crowd-v1…

Read Vxtzq's full model card

CrowdGPT's first community-distributed language model architecture.

  • Model: Crowd-v1
  • Organization: CrowdGPT
  • Parameters: ~1B
  • Architecture: Transformer
  • License: MIT
  • Status: Training in progress
  • Repository: https://github.com/Vxtzq/CrowdGPT
  • CrowdGPT: https://crowdgpt.net

Overview

Crowd-v1 is the first official model architecture released for CrowdGPT, a community-driven distributed AI project.

Unlike a conventional pretrained model release, Crowd-v1 is distributed with randomly initialized weights. The purpose of this release is to provide a common model definition and weight format that CrowdGPT clients can download and collectively train.

The model is designed to be consumed by the CrowdGPT distributed training infrastructure, where individual participants contribute compute toward training a shared model.

Important: Crowd-v1 is not pretrained. Its initial weights contain no useful language knowledge and the model should not be expected to generate coherent text before training.

Architecture

Crowd-v1 contains approximately 1 billion parameters.

Component Configuration
Architecture Transformer
Total parameters 1,007,787,392
Vocabulary size 151,669
Hidden dimension 1,536
Layers 24
Attention heads 16
KV heads 4
Head dimension 96
MLP hidden dimension 2,560
Maximum sequence length 2048
Attention Grouped-Query Attention
Position encoding Rotary Position Embeddings (RoPE)
MLP SwiGLU
Weight tying Yes
Attention Causal / chunked
Engrams 350m cpu params
Initialization Normal distribution, σ = 0.02

Key features

Grouped-Query Attention (GQA) Crowd-v1 uses 16 query heads but only 4 key/value heads, reducing KV-cache and attention-related memory requirements.

Rotary Position Embeddings (RoPE) Rotary embeddings are applied to query and key representations.

SwiGLU The feed-forward network uses a SwiGLU-style gated MLP with a hidden dimension of 2,560.

Weight tying The token embedding matrix and language-model head share weights, reducing the total parameter count.

Causal attention Each token can only attend to preceding tokens, making the architecture suitable for autoregressive language modeling.

Initialization

The released weights are generated deterministically using seed 42.

Non-normalization parameters are initialized from:

N(0, 0.02)

LayerNorm weights are initialized to 1.0 and LayerNorm biases to 0.0.

This means that different copies of the initial model can be verified against the published SHA-256 checksums.

Weight formats

The repository contains flat binary weight files designed specifically for the CrowdGPT client.

BF16

weights_bf16.bin

Approximately 1.4 GB.

engrams_bf16.bin

Approximately 0.7 GB.

This is the recommended file for normal CrowdGPT client usage.

FP32

weights_fp32.bin

Approximately 2.6 GB.

engrams_fp32.bin

Approximately 1.4 GB.

The FP32 weights are provided for environments or experiments that require full-precision initialization (or don't support bf16).

The binary weights are stored as a single flattened parameter array. The tensor ordering is identical to the parameter ordering used by the CrowdGPT SotaGPT implementation, allowing the weights to be loaded directly without converting them into a framework-specific checkpoint format.

Configuration

The model configuration is provided in config.json.

{
  "architecture": "SotaGPT",
  "vocabSize": 151,669,
  "dim": 1536,
  "nLayers": 24,
  "nHeads": 16,
  "nKvHeads": 4,
  "headDim": 96,
  "maxSeqLen": 2048,
  "mlpHidden": 2560,
  "weightTying": true
}

Intended use

Crowd-v1 is primarily intended for:

  • Distributed training through CrowdGPT
  • Research into community-driven AI training
  • Experiments with distributed language-model training
  • Reproducible model initialization
  • Development of CrowdGPT-compatible clients
  • Educational experimentation with transformer architectures

Out-of-scope use

Because the released weights are randomly initialized, Crowd-v1 should not be used as:

  • A production language model
  • A chatbot
  • A text-generation model
  • A pretrained foundation model
  • A source of factual knowledge

The model must first undergo training before it becomes useful for language generation.

Tokenizer

The current release uses a Qwen3-compatible vocabulary of 151,669 tokens.

The tokenizer is an architectural dependency: changing the tokenizer changes the vocabulary size and therefore the dimensions of the tied embedding / language-model head.

Future CrowdGPT releases may use a custom tokenizer with a different vocabulary.

If the tokenizer is changed, vocabSize in config.json must be updated accordingly and the model must be reinitialized with the new vocabulary dimensions.

Reproducibility

Crowd-v1 is generated from a fixed architecture and initialization seed.

The model-generation implementation is available in the CrowdGPT repository:

https://github.com/Vxtzq/CrowdGPT

The repository also contains the CrowdGPT client implementation responsible for consuming the flat weight format.

Verification

Each distributed weight file is accompanied by its SHA-256 checksum in config.json.

This allows clients and researchers to verify that downloaded weights have not been corrupted or modified.

License

Crowd-v1 is released under the MIT License.

See the repository for the complete license text.

Citation

If you use Crowd-v1 or CrowdGPT in your research or project, please reference the CrowdGPT project:

@misc{crowdgpt,
  title        = {CrowdGPT},
  author       = {Vxtzq},
  year         = {2026},
  url          = {https://github.com/Vxtzq/CrowdGPT}
}

About CrowdGPT

CrowdGPT is a community-driven approach to training AI.

Instead of concentrating all training compute in a single data center, CrowdGPT is designed around participants contributing their own compute to a shared training process.

The goal is simple:

Community compute → Shared training → Open model

Learn more at https://crowdgpt.net

Identity and Version

Repository
Vxtzq/Crowd-v1
Publisher
Vxtzq
Task
Text generation
Modality
Text
Library
Not stated by the source
Parameters
Not stated by the source
Languages
ia
Revision
0c412694f7161cf79e958e23cb69c300c34846b9
First published
2026-08-21
Last updated
2026-09-18

Files and Weights

10 files, 6.0 GB in total. The weights are 4 files totalling 6.0 GB in safetensors.

Weights4 files · 6.0 GB
Configuration4 files · 876 B
Documentation1 file · 7.1 KB
Repository1 file · 1.5 KB
Every file
FileTypeSizeSHA-256
engram_bf16.safetensorsWeights700.0 MB f03d36b04e7d
engram_fp32.safetensorsWeights1.4 GB 396b50ca4259
model_bf16.safetensorsWeights1.3 GB 8de27d5c7b54
model_fp32.safetensorsWeights2.6 GB 8616d7ddc1c7
badge_tokens.jsonConfiguration95 B
config.jsonConfiguration328 B
leaderboard.jsonConfiguration192 B
status.jsonConfiguration261 B
README.mdDocumentation7.1 KB
.gitattributesRepository1.5 KB

License and Download

License
mit
Access
Open weights, no gate
Download size
6.0 GB
Download from Vxtzq

Released by Vxtzq through its official repository on Hugging Face. Read the license.

Built From

  • Trained on (disclosed) HuggingFaceFW/fineweb
  • Trained on (disclosed) Vxtzq/CrowdGPT
  • Trained on (disclosed) openbmb/Ultra-FineWeb-L3

Memory Requirements

PrecisionWeights in memory
As published6.0 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About Crowd-v1

Can I use Crowd-v1 commercially?

Yes. Crowd-v1 is released under MIT License. The MIT License is a short permissive license. It permits commercial use, modification and redistribution, provided the copyright notice and permission notice are included.

Similar Models

Fine-tune Qwen3 (14B) for free using our Google Colab notebook! - Read our Blog about Qwen3 support: unsloth.ai/blog/qwen3 - View the rest of our notebooks in our docs here. Qwen3-Coder is available in multiple sizes. Today, we're excited to introduce Qwen3-Coder-30B-A3B-Instruct. This streamlined model maintains impressive performance and efficiency, featuring the following key enhancements: - Significant Performance among open models on Agentic Coding, Agentic Browser-Use, and other foundational coding tasks. - Long-context Capabilities with native support for 256K tokens, extendable up to 1M tokens using Yarn, optimized for repository-scale understanding. - Agentic Coding supporting for…

Open weights apache-2.0 transformers

Model · Text generation

opt-125m

AI at Meta

OPT was first introduced in Open Pre-trained Transformer Language Models and first released in metaseq's repository on May 3rd 2022 by Meta AI. Disclaimer: The team releasing OPT wrote an official model card, which is available in Appendix D of the paper. Content from this model card has been written by the Hugging Face team. To quote the first two paragraphs of the official paper OPT was predominantly pretrained with English text, but a small amount of non-English data is still present within the training corpus via CommonCrawl. The model was pretrained using a causal language modeling (CLM) objective. OPT belongs to the same family of decoder-only models like GPT-3. As such, it was…

Open weights other 2,048 tokens transformers

Model · Text generation

Ornith-1.5-9B-GGUF

Ornith

Chirp Chirp! We are introducing Ornith-1.5, a major step toward building foundation models through end-to-end self-improvement. Ornith-1.5 extends Ornith-1.0 (which was developed on top of Qwen3.5 and Gemma4 with additional continued pretraining, mid-training, and post-training) by expanding the self-improvement loop from scaffold and rollout optimization to jointly optimizing task generation, scaffold construction, and solution rollouts. Rather than relying on a fixed set of human-curated tasks and manually designed harnesses, Ornith-1.5 continuously generates new training tasks, discovers effective strategies for solving them, and improves the policy through reinforcement learning. For…

Open weights mit transformers

Model · Text generation

Ornith-1.5-35B-A3B-GGUF

Ornith

Chirp Chirp! We are introducing Ornith-1.5, a major step toward building foundation models through end-to-end self-improvement. Ornith-1.5 extends Ornith-1.0 (which was developed on top of Qwen3.5 and Gemma4 with additional continued pretraining, mid-training, and post-training) by expanding the self-improvement loop from scaffold and rollout optimization to jointly optimizing task generation, scaffold construction, and solution rollouts. Rather than relying on a fixed set of human-curated tasks and manually designed harnesses, Ornith-1.5 continuously generates new training tasks, discovers effective strategies for solving them, and improves the policy through reinforcement learning. For…

Open weights mit transformers

Model · Text generation

Ornith-1.0-9B-GGUF

Ornith

Aloha! Today, we are releasing Ornith-1.0, a self-improving family of open-source models for agentic coding. This model card documents Ornith-1.0-9B, the most lightweight member of the Ornith family, designed for efficient single-GPU deployment. Ornith-1.0-9B is a dense ~9B model (≈19 GB in bf16), so it serves comfortably on a single 80GB GPU. The recipes below stand up an OpenAI-compatible server; add --tensor-parallel-size / --tp if you want to shard across more GPUs. For a quick local test (or to script offline generation), load the model directly with Transformers. Make sure you have a recent release installed — see the Transformers installation guide; Ornith-1.0-9B requires…

Open weights mit transformers

Uncensored Qwen3.8-27B, published as GGUF quantizations with the multi token prediction (MTP) head retained and verified. Refusal behaviour has been substantially reduced, not eliminated. See Measured behaviour for the numbers. Capabilities, training data, and architecture are otherwise unchanged. - Refusal directions removed with Heretic, which co minimizes refusal count against KL divergence from the base model. No handwritten refusal removal code, no finetuning, no additional training data. - Abliteration runs at bf16 (no 4 bit quantization). the resulting LoRA is merged into the bf16 base, so the published weights are not a quantized round trip. - mtp. tensors are copied verbatim from…

Open weights apache-2.0 llama.cpp