-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Closed
Labels
Description
I set the stop token as ., but the output text will not include the stop token, so can the stop tokens be retained in the output?
request:
curl http://localhost:8081/generate \
-H "Content-Type: application/json" \
-d '{
"text": "Once upon a time,",
"sampling_params": {
"max_new_tokens": 1024,
"temperature": 0,
"stop": ".",
}
}'response:
{"text":" and in a land far, far away, there was a young girl named Lily","meta_info":{"prompt_tokens":6,"completion_tokens":18,"id":"fe8e78ca46ab4f4bb69842202201288c"}}Reactions are currently unavailable