Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-4.0
|
| 5 |
+
tags:
|
| 6 |
+
- model_hub_mixin
|
| 7 |
+
- pytorch_model_hub_mixin
|
| 8 |
+
pipeline_tag: feature-extraction
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# ARC-Encoder models
|
| 12 |
+
|
| 13 |
+
This page houses `ARC4-Encoder_Llama` from four different versions of pretrained ARC-Encoders. Architectures and methods to train them are described in the paper *ARC-Encoder: learning compressed text representations for large language models* available [here](https://arxiv.org/abs/2510.20535).
|
| 14 |
+
Code: [ARC-Encoder repository](https://github.com/kyutai-labs/ARC-Encoder)
|
| 15 |
+
|
| 16 |
+
## Models Details
|
| 17 |
+
|
| 18 |
+
All the encoders released here are trained on web crawl filtered using [Dactory](https://github.com/kyutai-labs/dactory) based on a [Llama3.2-3B](https://github.com/meta-llama/llama-cookbook) base backbone. It consists in two ARC-Encoder specifically trained for one decoder and one for two decoders in the same time:
|
| 19 |
+
- `ARC8-Encoder_Llama`, trained on 2.6B tokens on [Llama3.1-8B](https://github.com/meta-llama/llama-cookbook) base specifically with a pooling factor of 8.
|
| 20 |
+
- `ARC8-Encoder_Mistral`, trained on 2.6B tokens on [Mistral-7B](https://www.mistralai.com/news/announcing-mistral-7b/) base specifically with a pooling factor of 8.
|
| 21 |
+
- `ARC8-Encoder_multi`, trained by sampling among the two decoders with a pooling factor of 8.
|
| 22 |
+
- `ARC4-Encoder_Llama`, trained on 2.6B tokens on [Llama3.1-8B](https://github.com/meta-llama/llama-cookbook) base specifically with a pooling factor of 4.
|
| 23 |
+
|
| 24 |
+
### Uses
|
| 25 |
+
|
| 26 |
+
As described in the [paper](https://arxiv.org/abs/2510.20535), the pretrained ARC-Encoders can be fine-tuned to perform various downstream tasks.
|
| 27 |
+
You can also adapt an ARC-Encoder to a new pooling factor (PF) by fine-tuning it on the desired PF.
|
| 28 |
+
For optimal results, we recommend fine-tuning toward a lower PF than the one used during pretraining.
|
| 29 |
+
To reproduce the results presented in the paper, you can use our released fine-tuning dataset, [ARC_finetuning](https://huggingface.co/datasets/kyutai/ARC_finetuning).
|
| 30 |
+
|
| 31 |
+
### Licensing
|
| 32 |
+
|
| 33 |
+
ARC-Encoders are licensed under the CC-BY 4.0 license.
|
| 34 |
+
|
| 35 |
+
Terms of use: As the released models are pretrained from Llama3.2 3B backbone, ARC-Encoders are subject to the Llama Terms of Use found at [Llama license](https://www.llama.com/license/).
|
| 36 |
+
|
| 37 |
+
## Citations
|
| 38 |
+
|
| 39 |
+
If you use one of these models, please cite:
|
| 40 |
+
|
| 41 |
+
```bibtex
|
| 42 |
+
@misc{pilchen2025arcencoderlearningcompressedtext,
|
| 43 |
+
title={ARC-Encoder: learning compressed text representations for large language models},
|
| 44 |
+
author={Hippolyte Pilchen and Edouard Grave and Patrick Pérez},
|
| 45 |
+
year={2025},
|
| 46 |
+
eprint={2510.20535},
|
| 47 |
+
archivePrefix={arXiv},
|
| 48 |
+
primaryClass={cs.CL},
|
| 49 |
+
url={https://arxiv.org/abs/2510.20535},
|
| 50 |
+
}
|
| 51 |
+
```
|