chargoddard/rpguild
Viewer • Updated • 294k • 102 • 33
How to use jinymusim/RPGPT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="jinymusim/RPGPT") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("jinymusim/RPGPT")
model = AutoModelForCausalLM.from_pretrained("jinymusim/RPGPT")How to use jinymusim/RPGPT with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "jinymusim/RPGPT"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "jinymusim/RPGPT",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/jinymusim/RPGPT
How to use jinymusim/RPGPT with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "jinymusim/RPGPT" \
--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": "jinymusim/RPGPT",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "jinymusim/RPGPT" \
--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": "jinymusim/RPGPT",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use jinymusim/RPGPT with Docker Model Runner:
docker model run hf.co/jinymusim/RPGPT
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("jinymusim/RPGPT")
model = AutoModelForCausalLM.from_pretrained("jinymusim/RPGPT")GPT2 model trained on Role Playing datset.
The model containes 4 custom tokens to diffirentiate between Character, Context and Input data.
The Expected input to the model is therefore:
"<|CHAR|> Character Info <|CONTEXT|> Dialog or generation context <|INPUT|> User input"
The model is trained to include Response token to what we consider responce.
Meaning the model output will be:
"<|CHAR|> Character Info <|CONTEXT|> Dialog or generation context <|INPUT|> User input <|RESPONSE|> Model Response"
The actual output can be extracted by split function
model_out = "<|CHAR|> Character Info <|CONTEXT|> Dialog or generation context <|INPUT|> User input <|RESPONSE|> Model Response".split('<|RESPONSE|>')[-1]
For more easy use, cosider downloading scripts from my repo https://github.com/jinymusim/DialogSystem
Then use the included classes as follows.
from utils.dialog_model import DialogModel
from transformers import AutoTokenizer
model = DialogModel('jinymusim/RPGPT', resize_now=False)
tok = AutoTokenizer.from_pretrained('jinymusim/RPGPT')
tok.model_max_length = 1024
char_name ="James Smith"
bio="Age: 30, Gender: Male, Hobies: Training language models"
model.set_character(char_name, bio)
print(model.generate_self(tok)) # For Random generation
print(model.generate(tok, input("USER>").strip())) # For user input converasion
Other wise use standard huggingface interface
from transformers import AutoTokenizer, AutoModelForCausalLM
model = AutoModelForCausalLM('jinymusim/RPGPT')
tok = AutoTokenizer.from_pretrained('jinymusim/RPGPT')
tok.model_max_length = 1024
char_name ="James Smith"
bio="Age: 30, Gender: Male, Hobies: Training language models"
context = []
input_ids = tok.encode(f"<|CHAR|> {char_name}, Bio: {bio} <|CONTEXT|> {' '.join(context} <|INPUT|> {input('USER>')}")
response_out = model.generate(input_ids,
max_new_tokens= 150,
do_sample=True,
top_k=50,
early_stopping=True,
eos_token_id=tokenizer.eos_token_id,
pad_token_id=tokenizer.pad_token_id)
print(response_out)
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jinymusim/RPGPT")