HippolyteP commited on
Commit
303a425
·
1 Parent(s): 1f37353

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -7
README.md CHANGED
@@ -1,10 +1,36 @@
1
  ---
2
- tags:
3
- - model_hub_mixin
4
- - pytorch_model_hub_mixin
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
  ---
6
 
7
+ # ARC-Encoder models
8
+
9
+ This page houses three different versions of pretrained ARC-Encoders, architectures and methods to train them are described in [PAPER](https://kyutai.org). A code to reproduce the pretraining, further fine-tune the encoders or even evaluate them on dowstream tasks is available at [ARC-Encoder repository](https://github.com/kyutai-labs/ARC-Encoder/tree/main).
10
+
11
+ ## Models Details
12
+
13
+ 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:
14
+ - ARC8-Encoder_Llama, trained on 6.5B tokens on [Llama3.1-8B](https://github.com/meta-llama/llama-cookbook) base specifically with a pooling factor of 8.
15
+ - ARC8-Encoder_Mistral, trained on 6.5B tokens on [Mistral-7B](https://github.com/mistralai/mistral-finetune?tab=readme-ov-file) base specifically with a pooling factor of 8.
16
+ - ARC8-Encoder_multi, trained by sampling among the two decoders above using 6.5B tokens for each one with a pooling factor of 8.
17
+
18
+ ### Uses
19
+
20
+ As described in [PAPER](https://kyutai.org), the pretrained ARC-Encoders can be fine-tuned to perform various downstream tasks.
21
+ You can also adapt an ARC-Encoder to a new pooling factor (PF) by fine-tuning it on the desired PF.
22
+ For optimal results, we recommend fine-tuning toward a lower PF than the one used during pretraining.
23
+ 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).
24
+
25
+ ### Licensing
26
+
27
+ ARC-Encoders are licensed under the CC-BY 4.0 license.
28
+
29
+
30
+ ## Citations
31
+
32
+ If you use one of these models, please cite:
33
+
34
+ ```
35
+ blabla
36
+ ```