Text Generation
PyTorch
English
opt
nielsr HF Staff commited on
Commit
b898d48
·
verified ·
1 Parent(s): ac17d19

Add `library_name: transformers` to metadata

Browse files

This PR improves the model card by adding the `library_name: transformers` to the metadata. This is based on the `config.json` file which indicates the model's architecture (`OPTForCausalLM`) and `transformers_version`, confirming its compatibility with the Hugging Face Transformers library. Adding this tag will enable the automated "how to use" widget on the model page, providing users with a clear code snippet to interact with the model.

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
- - facebook/opt-2.7b
11
  pipeline_tag: text-generation
 
12
  ---
 
13
  # MiniLLM-OPT-2.7B
14
 
15
  [paper](https://arxiv.org/abs/2306.08543) | [code](https://github.com/microsoft/LMOps/tree/main/minillm)
 
1
  ---
2
+ base_model:
3
+ - facebook/opt-2.7b
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
  # MiniLLM-OPT-2.7B
16
 
17
  [paper](https://arxiv.org/abs/2306.08543) | [code](https://github.com/microsoft/LMOps/tree/main/minillm)