nielsr HF Staff commited on
Commit
9836600
·
verified ·
1 Parent(s): 2a2429c

Fix metadata: remove arxiv_id, add pipeline tag and library name

Browse files

This PR improves the model card by:

- Removing the `arxiv` field from the YAML metadata (the arxiv ID is already referenced in the markdown citation).
- Adding `library_name: transformers`, since the model uses the `GPT2LMHeadModel` architecture and is compatible with the Transformers library.
- Adding `pipeline_tag: text-generation` so the model is correctly categorized.
- Adding a link to the paper in the markdown content.

Files changed (1) hide show
  1. README.md +8 -4
README.md CHANGED
@@ -1,12 +1,16 @@
1
  ---
2
- arxiv: 2609.15991
 
3
  tags:
4
- - functionalizer
5
- - tokenizer
6
- - gpt2
7
  ---
8
 
9
  ## Functionalizer 100M model
 
 
 
10
  This is a 100M example model. Each model is trained on the dataset specified in the name for 50000 epochs with the given seed.
11
 
12
  The model was trained using the Functionalizer framework. Training code and detailed performance analysis are available: https://github.com/connor-makowski/functionalizer
 
1
  ---
2
+ library_name: transformers
3
+ pipeline_tag: text-generation
4
  tags:
5
+ - functionalizer
6
+ - tokenizer
7
+ - gpt2
8
  ---
9
 
10
  ## Functionalizer 100M model
11
+
12
+ This model is based on [The Functionalizer: Lossless Functional Decomposition for Subword Tokenization](https://huggingface.co/papers/2609.15991).
13
+
14
  This is a 100M example model. Each model is trained on the dataset specified in the name for 50000 epochs with the given seed.
15
 
16
  The model was trained using the Functionalizer framework. Training code and detailed performance analysis are available: https://github.com/connor-makowski/functionalizer