Text Generation
Transformers
TensorBoard
Safetensors
gemma3_text
Generated from Trainer
sft
trl
conversational
text-generation-inference
Instructions to use pag6521/MyGemmaNPC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pag6521/MyGemmaNPC with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="pag6521/MyGemmaNPC") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("pag6521/MyGemmaNPC") model = AutoModelForCausalLM.from_pretrained("pag6521/MyGemmaNPC") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use pag6521/MyGemmaNPC with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pag6521/MyGemmaNPC" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pag6521/MyGemmaNPC", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/pag6521/MyGemmaNPC
- SGLang
How to use pag6521/MyGemmaNPC 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 "pag6521/MyGemmaNPC" \ --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": "pag6521/MyGemmaNPC", "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 "pag6521/MyGemmaNPC" \ --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": "pag6521/MyGemmaNPC", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use pag6521/MyGemmaNPC with Docker Model Runner:
docker model run hf.co/pag6521/MyGemmaNPC
Training in progress, epoch 1
Browse files- README.md +2 -2
- config.json +1 -1
- model.safetensors +1 -1
- runs/Aug27_19-59-39_f2a6e1a3d786/events.out.tfevents.1756324798.f2a6e1a3d786.605.0 +3 -0
- training_args.bin +1 -1
README.md
CHANGED
|
@@ -4,8 +4,8 @@ library_name: transformers
|
|
| 4 |
model_name: MyGemmaNPC
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
-
- trl
|
| 8 |
- sft
|
|
|
|
| 9 |
licence: license
|
| 10 |
---
|
| 11 |
|
|
@@ -35,7 +35,7 @@ This model was trained with SFT.
|
|
| 35 |
### Framework versions
|
| 36 |
|
| 37 |
- TRL: 0.21.0
|
| 38 |
-
- Transformers: 4.55.
|
| 39 |
- Pytorch: 2.8.0+cu126
|
| 40 |
- Datasets: 4.0.0
|
| 41 |
- Tokenizers: 0.21.4
|
|
|
|
| 4 |
model_name: MyGemmaNPC
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
|
|
|
| 7 |
- sft
|
| 8 |
+
- trl
|
| 9 |
licence: license
|
| 10 |
---
|
| 11 |
|
|
|
|
| 35 |
### Framework versions
|
| 36 |
|
| 37 |
- TRL: 0.21.0
|
| 38 |
+
- Transformers: 4.55.4
|
| 39 |
- Pytorch: 2.8.0+cu126
|
| 40 |
- Datasets: 4.0.0
|
| 41 |
- Tokenizers: 0.21.4
|
config.json
CHANGED
|
@@ -47,7 +47,7 @@
|
|
| 47 |
"rope_theta": 1000000.0,
|
| 48 |
"sliding_window": 512,
|
| 49 |
"torch_dtype": "bfloat16",
|
| 50 |
-
"transformers_version": "4.55.
|
| 51 |
"use_bidirectional_attention": false,
|
| 52 |
"use_cache": true,
|
| 53 |
"vocab_size": 262144
|
|
|
|
| 47 |
"rope_theta": 1000000.0,
|
| 48 |
"sliding_window": 512,
|
| 49 |
"torch_dtype": "bfloat16",
|
| 50 |
+
"transformers_version": "4.55.4",
|
| 51 |
"use_bidirectional_attention": false,
|
| 52 |
"use_cache": true,
|
| 53 |
"vocab_size": 262144
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 536223056
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7833586c1e7e2a41ba630e6ae930f0e240e9a8b4f9c22c90fc08f36531e23619
|
| 3 |
size 536223056
|
runs/Aug27_19-59-39_f2a6e1a3d786/events.out.tfevents.1756324798.f2a6e1a3d786.605.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:929da9ac687ee8c0ad225ee87d65d0c3cda5319574735c133f4b9a586eaa88fe
|
| 3 |
+
size 10217
|
training_args.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 6225
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:249a7f95c312ddb359092c4b3519b1d715b73bfb23b28ac798729c6ae3f834b9
|
| 3 |
size 6225
|