Text Generation
Transformers
TensorBoard
Safetensors
gpt2
Generated from Trainer
text-generation-inference
Instructions to use GPT-JF/Model_1A_Clinton with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GPT-JF/Model_1A_Clinton with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="GPT-JF/Model_1A_Clinton")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("GPT-JF/Model_1A_Clinton") model = AutoModelForCausalLM.from_pretrained("GPT-JF/Model_1A_Clinton") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use GPT-JF/Model_1A_Clinton with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GPT-JF/Model_1A_Clinton" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GPT-JF/Model_1A_Clinton", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/GPT-JF/Model_1A_Clinton
- SGLang
How to use GPT-JF/Model_1A_Clinton with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "GPT-JF/Model_1A_Clinton" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GPT-JF/Model_1A_Clinton", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "GPT-JF/Model_1A_Clinton" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GPT-JF/Model_1A_Clinton", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use GPT-JF/Model_1A_Clinton with Docker Model Runner:
docker model run hf.co/GPT-JF/Model_1A_Clinton
Model save
Browse files- README.md +3 -3
- generation_config.json +1 -1
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
-
base_model: gpt2
|
| 4 |
tags:
|
| 5 |
- generated_from_trainer
|
| 6 |
model-index:
|
|
@@ -13,7 +13,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 13 |
|
| 14 |
# Model_1A_Clinton
|
| 15 |
|
| 16 |
-
This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) on
|
| 17 |
|
| 18 |
## Model description
|
| 19 |
|
|
@@ -46,7 +46,7 @@ The following hyperparameters were used during training:
|
|
| 46 |
|
| 47 |
### Framework versions
|
| 48 |
|
| 49 |
-
- Transformers 4.
|
| 50 |
- Pytorch 2.1.0+cu118
|
| 51 |
- Datasets 2.15.0
|
| 52 |
- Tokenizers 0.15.0
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
base_model: gpt2-medium
|
| 4 |
tags:
|
| 5 |
- generated_from_trainer
|
| 6 |
model-index:
|
|
|
|
| 13 |
|
| 14 |
# Model_1A_Clinton
|
| 15 |
|
| 16 |
+
This model is a fine-tuned version of [gpt2-medium](https://huggingface.co/gpt2-medium) on the None dataset.
|
| 17 |
|
| 18 |
## Model description
|
| 19 |
|
|
|
|
| 46 |
|
| 47 |
### Framework versions
|
| 48 |
|
| 49 |
+
- Transformers 4.35.2
|
| 50 |
- Pytorch 2.1.0+cu118
|
| 51 |
- Datasets 2.15.0
|
| 52 |
- Tokenizers 0.15.0
|
generation_config.json
CHANGED
|
@@ -2,5 +2,5 @@
|
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 50256,
|
| 4 |
"eos_token_id": 50256,
|
| 5 |
-
"transformers_version": "4.
|
| 6 |
}
|
|
|
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 50256,
|
| 4 |
"eos_token_id": 50256,
|
| 5 |
+
"transformers_version": "4.35.2"
|
| 6 |
}
|