nielsr HF Staff commited on
Commit
5db8809
·
verified ·
1 Parent(s): ad0624d

Remove arxiv from metadata, add library_name and pipeline_tag

Browse files

This PR improves the model card metadata by:

- Removing the `arxiv` field from the YAML metadata, since arXiv IDs should only be referenced in the markdown content.
- Adding `library_name: transformers`, since the model uses a Transformers-compatible GPT-2 architecture.
- Adding `pipeline_tag: text-generation` so the model is categorized correctly.

It also adds a link to the paper page in the markdown content.

Files changed (1) hide show
  1. README.md +8 -4
README.md CHANGED
@@ -1,16 +1,20 @@
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
13
 
 
 
14
  ### Running the model
15
 
16
  To run the model, use the custom tokenizer fork available here: https://github.com/connor-makowski/tokenizers/tree/functionalizer
 
1
  ---
 
2
  tags:
3
+ - functionalizer
4
+ - tokenizer
5
+ - gpt2
6
+ library_name: transformers
7
+ pipeline_tag: text-generation
8
  ---
9
 
10
  ## Functionalizer 100M model
11
+
12
  This is a 100M example model. Each model is trained on the dataset specified in the name for 50000 epochs with the given seed.
13
 
14
  The model was trained using the Functionalizer framework. Training code and detailed performance analysis are available: https://github.com/connor-makowski/functionalizer
15
 
16
+ Paper: https://huggingface.co/papers/2609.15991
17
+
18
  ### Running the model
19
 
20
  To run the model, use the custom tokenizer fork available here: https://github.com/connor-makowski/tokenizers/tree/functionalizer