Add library name and Github link
Browse filesThis PR adds the `library_name` tag to the metadata and includes a link to the GitHub repository for better discoverability and completeness of the model card.
README.md
CHANGED
@@ -1,12 +1,13 @@
|
|
1 |
---
|
2 |
-
|
|
|
3 |
datasets:
|
4 |
- PKU-Alignment/PKU-SafeRLHF
|
5 |
language:
|
6 |
- en
|
7 |
-
|
8 |
-
- HuggingFaceH4/zephyr-7b-beta
|
9 |
pipeline_tag: text-generation
|
|
|
10 |
---
|
11 |
|
12 |
# BFPO
|
@@ -35,7 +36,7 @@ Details of BFPO framework can be found in
|
|
35 |
|
36 |
Here's how you can run the model using the `pipeline()` function from 🤗 Transformers:
|
37 |
|
38 |
-
```
|
39 |
import torch
|
40 |
from transformers import pipeline
|
41 |
|
|
|
1 |
---
|
2 |
+
base_model:
|
3 |
+
- HuggingFaceH4/zephyr-7b-beta
|
4 |
datasets:
|
5 |
- PKU-Alignment/PKU-SafeRLHF
|
6 |
language:
|
7 |
- en
|
8 |
+
license: apache-2.0
|
|
|
9 |
pipeline_tag: text-generation
|
10 |
+
library_name: transformers
|
11 |
---
|
12 |
|
13 |
# BFPO
|
|
|
36 |
|
37 |
Here's how you can run the model using the `pipeline()` function from 🤗 Transformers:
|
38 |
|
39 |
+
```python
|
40 |
import torch
|
41 |
from transformers import pipeline
|
42 |
|