Views
No views yet
tulu3sft-normal-smollm-1p7b-100B-20n-2048sl-960gbsz-no-bad-data.checkpoint-500, checkpoint-1000,
and checkpoint-1270.1from transformers import pipeline
2
3question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
4generator = pipeline(
5 "text-generation",
6 model="Raghav-Singhal/dpo-tulu3-lr5e-7-tulu3sft-100B-no-bad-data-off-policy-if",
7 device="cuda",
8)
9output = generator(
10 [{"role": "user", "content": question}],
11 max_new_tokens=128,
12 return_full_text=False,
13)[0]
14print(output["generated_text"])