nielsr HF Staff commited on
Commit
677cd25
·
verified ·
1 Parent(s): 2652292

Fix metadata, add pipeline tag and library name

Browse files

This PR improves the model card's metadata by:

- removing the `arxiv` field from the YAML metadata, since it belongs in the markdown content rather than the metadata
- adding `pipeline_tag: text-generation` so the model can be found under the text-generation pipeline
- adding `library_name: transformers` to enable the automated Transformers usage snippet
- linking to the paper on the Hugging Face Papers page

Files changed (1) hide show
  1. README.md +7 -4
README.md CHANGED
@@ -1,11 +1,14 @@
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
 
 
1
  ---
 
2
  tags:
3
+ - functionalizer
4
+ - tokenizer
5
+ - gpt2
6
+ library_name: transformers
7
+ pipeline_tag: text-generation
8
  ---
9
 
10
+ This model was presented in the paper [The Functionalizer: Lossless Functional Decomposition for Subword Tokenization](https://huggingface.co/papers/2609.15991).
11
+
12
  ## Functionalizer 100M model
13
  This is a 100M example model. Each model is trained on the dataset specified in the name for 50000 epochs with the given seed.
14