Text Generation
Transformers
Safetensors
gated_deltanet
Generated from Trainer
alignment-handbook
sft
trl
conversational
Instructions to use PatrickHaller/gdn-midtraining-sft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PatrickHaller/gdn-midtraining-sft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="PatrickHaller/gdn-midtraining-sft") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("PatrickHaller/gdn-midtraining-sft", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use PatrickHaller/gdn-midtraining-sft with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "PatrickHaller/gdn-midtraining-sft" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PatrickHaller/gdn-midtraining-sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/PatrickHaller/gdn-midtraining-sft
- SGLang
How to use PatrickHaller/gdn-midtraining-sft 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 "PatrickHaller/gdn-midtraining-sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PatrickHaller/gdn-midtraining-sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "PatrickHaller/gdn-midtraining-sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "PatrickHaller/gdn-midtraining-sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use PatrickHaller/gdn-midtraining-sft with Docker Model Runner:
docker model run hf.co/PatrickHaller/gdn-midtraining-sft
Model save
Browse files- all_results.json +9 -0
- generation_config.json +1 -3
- train_results.json +9 -0
- trainer_state.json +0 -0
all_results.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 2.0,
|
| 3 |
+
"total_flos": 3.1404917922249834e+19,
|
| 4 |
+
"train_loss": 1.4016287254459527,
|
| 5 |
+
"train_runtime": 304386.5826,
|
| 6 |
+
"train_samples": 1092328,
|
| 7 |
+
"train_samples_per_second": 7.177,
|
| 8 |
+
"train_steps_per_second": 0.06
|
| 9 |
+
}
|
generation_config.json
CHANGED
|
@@ -1,9 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 0,
|
| 4 |
-
"eos_token_id":
|
| 5 |
-
2
|
| 6 |
-
],
|
| 7 |
"pad_token_id": 0,
|
| 8 |
"transformers_version": "4.57.3"
|
| 9 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"_from_model_config": true,
|
| 3 |
"bos_token_id": 0,
|
| 4 |
+
"eos_token_id": 2,
|
|
|
|
|
|
|
| 5 |
"pad_token_id": 0,
|
| 6 |
"transformers_version": "4.57.3"
|
| 7 |
}
|
train_results.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 2.0,
|
| 3 |
+
"total_flos": 3.1404917922249834e+19,
|
| 4 |
+
"train_loss": 1.4016287254459527,
|
| 5 |
+
"train_runtime": 304386.5826,
|
| 6 |
+
"train_samples": 1092328,
|
| 7 |
+
"train_samples_per_second": 7.177,
|
| 8 |
+
"train_steps_per_second": 0.06
|
| 9 |
+
}
|
trainer_state.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|