baotoan2002
commited on
Commit
·
f9affc0
1
Parent(s):
356707e
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
---
|
2 |
license: openrail
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: openrail
|
3 |
+
metrics:
|
4 |
+
- bleu
|
5 |
+
library_name: adapter-transformers
|
6 |
+
pipeline_tag: text-generation
|
7 |
+
tags:
|
8 |
+
- code
|
9 |
---
|
10 |
+
|
11 |
+
## Text Generation Using GPT-2 in Hugging Face
|
12 |
+
This repository provides an example of how to use the GPT-2 language model in Hugging Face for text generation tasks. GPT-2 is a powerful natural language processing model that can generate human-like text, and Hugging Face is a popular open-source library for working with NLP models.
|
13 |
+
|
14 |
+
## Requirements
|
15 |
+
Python 3.6 or higher
|
16 |
+
Hugging Face transformers library
|
17 |
+
PyTorch or TensorFlow
|
18 |
+
|
19 |
+
## Installation
|
20 |
+
Clone this repository: git clone ```https://github.com/sonyway01/Deep-Learning/Final%20Project```
|
21 |
+
Navigate to the repository directory: ```cd Final Project```
|
22 |
+
Install the required libraries: ```pip install -r requirements.txt```
|
23 |
+
|
24 |
+
## Usage
|
25 |
+
Download the GPT-2 pre-trained model: ```python download_model.py```
|
26 |
+
Edit the ```generate_text.py``` file to include your desired prompt and generate settings.
|
27 |
+
Run the ```generate_text.py file``` to generate text: ```python generate_text.py```
|
28 |
+
Customization
|
29 |
+
You can customize the GPT-2 model and the text generation settings by editing the ```generate_text.py``` file. For example, you can change the prompt text, the number of tokens to generate, the temperature setting for the model, and more.
|
30 |
+
|
31 |
+
## References
|
32 |
+
Hugging Face Transformers library: ```https://github.com/huggingface/transformers```
|
33 |
+
GPT-2 model by me: ```https://huggingface.co/baotoan2002/GPT-2```
|
34 |
+
OpenAI GPT-2 model: ```https://openai.com/models/gpt-2/```
|
35 |
+
|
36 |
+
## License
|
37 |
+
This repository is licensed under the [openrail] License. See the LICENSE file for details.
|
38 |
+
|
39 |
+
## Acknowledgments
|
40 |
+
Special thanks to the Hugging Face team for their excellent work on the Transformers library.
|
41 |
+
Thanks to OpenAI for providing the pre-trained GPT-2 model.
|