Views
No views yet
allenai/tulu-3-sft-mixture dataset. It is based on the 500B-token
pretrained base checkpoint and exported in Hugging Face LlamaForCausalLM format.normal-smollm-1p7b-500B-30n-2048sl-960gbszallenai/tulu-3-sft-mixture1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "REPLACE_WITH_OWNER/tulu3sft-normal-smollm-1p7b-500B-30n-2048sl-960gbsz"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)