The Parc (Parallel Architecture) models are a set of autoregressive language models (of the Pythia, Mamba, and RWKV architectures) of roughly the same size trained in parallel on the same data (2B tokens of OpenWebText) for the same number of steps, with 6 runs of training each (based on a different random seed). The Parc models were designed to allow for more direct and fine-grained analysis of training dynamics across and within architectures.
The Parc models are intended for research use and generally not suitable for deployment. They are pretrained on a subset of OpenWebText, which is not well-documented, and thus it possible that they are trained on (and may generate) harmful, offensive, or otherwise inappropriate text, especially as they are not fine-tuned in any way. For the same reason, there is no guarantee that they will generate accurate or truthful text. Rather than fine-tuning our models, we instead recommend fine-tuning the original Pythia, Mamba, RWKV models, as they are trained on many times more data, and thus are likely to have substantially better performance.
How to Get Started with the Model
Example code for generation:
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"jmichaelov/parc-mamba-seed0",
revision="checkpoint-4000"
)
tokenizer = AutoTokenizer.from_pretrained(
"jmichaelov/parc-mamba-seed0",
revision="checkpoint-4000"
)
inputs = tokenizer("The Parc language models", return_tensors="pt")
tokens = model.generate(**inputs)
tokenizer.decode(tokens[0])
Training Details
Training Data
OpenWebText: An open replication of the WebText corpus (on which GPT-2 was trained).
If you use any of the Parc models, please cite our forthcoming NeurIPS paper where we introduce them:
BibTeX:
@inproceedings{michaelov_language_2025,
title = {Language {Model} {Behavioral} {Phases} are {Consistent} {Across} {Scale} and {Architecture}},
author = {Michaelov, James A. and Levy, Roger P. and Bergen, Benjamin K.},
booktitle = {Advances in {Neural} {Information} {Processing} {Systems}},
volume = {38},
year = {2025}
}
APA:
Michaelov, J. A., Levy, R. P., & Bergen, B. K. (2025). Language Model Behavioral Phases are Consistent Across Scale and Architecture. Advances in Neural Information Processing Systems, 38.