A reasoning model fine-tuned to produce Joycean-styled reasoning traces constrained to Finnegans Wake vocabulary, while maintaining factual correctness on standard benchmarks.
TinyTim takes questions and produces reasoning traces where the thinking process is expressed using vocabulary drawn from James Joyce's Finnegans Wake, while the final answers remain factually correct. It demonstrates that linguistic style and factual reasoning are separable — a model can reason in any register.
1from npcpy.ft.sft import load_sft_model, predict_sft
2
3model, tokenizer = load_sft_model("npc-worldwide/tinytim-v2-1b-it")
4response = predict_sft(model, tokenizer, "What is the capital of France?", max_new_tokens=300)
5print(response)