Text Generation
PyTorch
English
gpt2
nielsr HF Staff commited on
Commit
e63e32e
·
verified ·
1 Parent(s): 4a8d07d

Add `library_name` metadata tag

Browse files

This PR improves the model card by adding the `library_name: transformers` tag to the metadata. This will enable the automatic display of a code snippet for using the model with the 🤗 Transformers library, making it easier for users to get started.

The model's `config.json` indicates compatibility with `GPT2LMHeadModel` and `transformers_version: "4.42.0.dev0"`, confirming its integration with the library.

Files changed (1) hide show
  1. README.md +5 -3
README.md CHANGED
@@ -1,15 +1,17 @@
1
  ---
2
- license: apache-2.0
 
3
  datasets:
4
  - databricks/databricks-dolly-15k
5
  language:
6
  - en
 
7
  metrics:
8
  - rouge
9
- base_model:
10
- - openai-community/gpt2-xl
11
  pipeline_tag: text-generation
 
12
  ---
 
13
  # teacher-gpt2-1.5B
14
 
15
  [paper](https://arxiv.org/abs/2306.08543) | [code](https://github.com/microsoft/LMOps/tree/main/minillm)
 
1
  ---
2
+ base_model:
3
+ - openai-community/gpt2-xl
4
  datasets:
5
  - databricks/databricks-dolly-15k
6
  language:
7
  - en
8
+ license: apache-2.0
9
  metrics:
10
  - rouge
 
 
11
  pipeline_tag: text-generation
12
+ library_name: transformers
13
  ---
14
+
15
  # teacher-gpt2-1.5B
16
 
17
  [paper](https://arxiv.org/abs/2306.08543) | [code](https://github.com/microsoft/LMOps/tree/main/minillm)