nielsr HF Staff commited on
Commit
a726f81
·
verified ·
1 Parent(s): ee75175

Add pipeline_tag and library_name to model card

Browse files

This PR enhances the model card by adding the `pipeline_tag: text-generation` and `library_name: transformers` to the metadata section.

- The `pipeline_tag` (text-generation) improves the model's discoverability on the Hugging Face Hub, as it aligns with the model's primary tasks of code generation, math problem solving, and planning.
- The `library_name` (transformers) enables the automated "How to use" widget on the model page, providing users with predefined code snippets for easy integration and inference, based on the model's compatibility with the `transformers` library as evidenced by its `config.json`.

Please review and merge this PR if everything looks good.

Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -1,7 +1,7 @@
1
  ---
2
- license: apache-2.0
3
  language:
4
  - en
 
5
  tags:
6
  - reinforcement-learning
7
  - code-generation
@@ -10,6 +10,8 @@ tags:
10
  - llada
11
  size_categories:
12
  - 8B
 
 
13
  ---
14
 
15
  # LLaDA-8B-BGPO-code
@@ -47,5 +49,4 @@ size_categories:
47
 
48
  - Primarily designed for code generation tasks.
49
  - Performance may vary on other tasks.
50
- - Requires appropriate computational resources for inference.
51
-
 
1
  ---
 
2
  language:
3
  - en
4
+ license: apache-2.0
5
  tags:
6
  - reinforcement-learning
7
  - code-generation
 
10
  - llada
11
  size_categories:
12
  - 8B
13
+ pipeline_tag: text-generation
14
+ library_name: transformers
15
  ---
16
 
17
  # LLaDA-8B-BGPO-code
 
49
 
50
  - Primarily designed for code generation tasks.
51
  - Performance may vary on other tasks.
52
+ - Requires appropriate computational resources for inference.