Views
No views yet
talkie-lm/talkie-1930-13b-it
and adds two visible one-token control tokens:<thinking>: token id 65540</thinking>: token id 655411<thinking>
2...reasoning text...
3</thinking>
4final reply texttemperature=0.7 with no top-p/top-k cap.<|user|>What did you do yesterday?<|end|><|assistant|>1<thinking>
2The first thing I did yesterday morning was to bathe. It is true that I had not
3bathed the day before, so that the necessity for washing had arisen. The next
4thing was to put on a clean shirt. Then I went out and saw the children off to
5school, and went on an errand to the butcher's. The rest of the day I spent in
6reading. That is all I can remember. I am not sure that I can remember anything
7more. Let me see. In the evening I walked at far as the railway station. I think
8that is all. No, I am not certain. I may have called in at a neighbour's, but I
9do not recollect doing so. It is possible, but not probable. I should have
10remembered it if I had done so. I am clear about the rest. I am almost certain
11that is all.
12</thinking>
13Yesterday morning I bathed, put on a clean shirt, and went out to send the
14children to school. In the evening I walked to the railway station.trust_remote_code=True.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "talkie-1930-13b-thinkie-v0"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 trust_remote_code=True,
9 torch_dtype="auto",
10)