Downloads · 30 days
0
AMFORGE/cofos_general_600m
cofos_general_600m is a text generation model from AMFORGE. Use it when you need the model to write or continue text. It is set up for pytorch. The card lists the license as apache-2.0.
Cofos General 600M is a 640M-parameter foundation language model trained from scratch on curated French and English web-scale text. It is the base model in the Cofos General family by AMEFORGE, built on the proprietar…
Downloads · 30 days
0
Access
Public
Updated Jul 17, 2026
Repo size
74.2 GB
Likes
0
Public
Click a slice to open those files.
.pt2.6 GB · 100%
From the Hugging Face model README
Cofos General 600M is a 640M-parameter foundation language model trained from scratch on curated French and English web-scale text. It is the base model in the Cofos General family by AMEFORGE, built on the proprietary SparseMind architecture and designed to serve as a substrate for downstream specialization through fine-tuning.
This model is not intended as a standalone assistant. Its purpose is to provide a clean, bilingual, controllable foundation that downstream models (code assistants, personalized assistants, domain-specific tools) can build upon.
| Field | Value |
|---|---|
| Developer | AMEFORGE |
| Architecture | SparseMind v15 (proprietary) |
| Parameters | 640M |
| Context length | 2048 tokens |
| Vocabulary | 32,000 (custom NexusBPE, multilingual) |
| Languages | French (50%), English (50%) |
| Training data | Public web-scale text (educational subsets) |
| Model type | Causal language model (base, no instruction tuning) |
| License | Apache 2.0 |
| Status | Active training |
This model is not designed for:
If you want an instruction-following code assistant, look at downstream models in the Cofos family (forthcoming cofos_general_code_600m, cofos_logo_600m).
The model landscape is dominated by either very large general-purpose models or specialized models built on English-only foundations. Cofos General 600M occupies a deliberate niche:
This is a base model under active training. Performance characteristics are reported as training progresses. Refer to the latest model card revision on the HuggingFace repository for current metrics.
The model is evaluated primarily on:
Direct zero-shot benchmark performance is not the design target. A base model that is uninteresting standalone but excellent under fine-tuning is, by design, doing its job.
from huggingface_hub import hf_hub_download
import torch
checkpoint_path = hf_hub_download(repo_id="AMFORGE/cofos_general_600m", filename="cofos_model.pt")
tokenizer_path = hf_hub_download(repo_id="AMFORGE/cofos_general_600m", filename="cofos_tokenizer.model")
Loading and inference require the AMEFORGE SparseMind runtime. The model architecture is proprietary; contact AMEFORGE for access to the runtime, or wait for the public inference utilities released with downstream models.
The recommended usage is not direct generation but fine-tuning for a specific task. Typical pipeline:
The forthcoming cofos_general_code_600m and cofos_logo_600m repos illustrate this workflow concretely.
Cofos General 600M is trained from scratch on a curated mix of public, openly-licensed web text:
Training is conducted on the AMEFORGE SparseMind training pipeline with periodic safety checkpointing to HuggingFace to ensure recoverability. Mixed sampling preserves a strict 50/50 ratio between French and English throughout training.
Tokenizer: AMFORGE/cofos_general_tok — a 32,000-token custom SentencePiece model with multilingual byte fallback for full Unicode coverage and structural tokens reserved for downstream task formatting.
cofos_general_tok (tokenizer)
↓
cofos_general_600m (this model) — bilingual foundation
↓
cofos_general_code_600m (forthcoming) — instruction-tuned for code
↓
cofos_logo_600m (forthcoming) — personalized variant
Cofos General 600M is a from-scratch base model. It is not derived from any other published model.
Cofos General 600M is intentionally small to minimize the compute footprint of training and to make downstream fine-tuning accessible to individual researchers and small teams. The model can be fine-tuned and deployed on a single consumer GPU.
This model is released under the Apache 2.0 license. You are free to use, modify, and redistribute it, including for commercial purposes, subject to the terms of the license.
Note: training data was sourced from publicly available datasets (FineWeb-Edu, FineWeb-2). Users redistributing this model or derivatives should ensure compliance with the original source licenses.
If you use Cofos General 600M in your work, please cite:
@misc{cofos_general_600m_2026,
title = {Cofos General 600M: A Bilingual Foundation Model for Downstream Specialization},
author = {{AMEFORGE}},
year = {2026},
url = {https://huggingface.co/AMFORGE/cofos_general_600m}
}
For questions, collaborations, or access to the AMEFORGE SparseMind runtime:
Cofos General 600M is the foundation layer of the Cofos model family by AMEFORGE. See the AMFORGE organization page for downstream specialized models built on this base.