Views
No views yet
../checkpoint-2253| File | Purpose |
|---|---|
model.safetensors | Full model weights in safetensors format. |
config.json | Model architecture config. |
generation_config.json | Default generation parameters. |
tokenizer.json | Fast tokenizer file. |
tokenizer_config.json | Tokenizer configuration and added token metadata. |
special_tokens_map.json | Special token mapping. |
added_tokens.json | Added token definitions. |
vocab.json | BPE vocabulary. |
merges.txt | BPE merge rules. |
chat_template.jinja | Chat prompt template. |
../checkpoint-2253 and are not required for normal inference:global_step2251/latesttrainer_state.jsontraining_args.binscheduler.ptrng_state_*.pthzero_to_fp32.pyllamaf:torch 2.7.0+cu126transformers 4.52.1safetensors 0.5.3NVIDIA GeForce RTX 3090 Ti1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tokenizer = AutoTokenizer.from_pretrained("../splitter-model", local_files_only=True)
4model = AutoModelForCausalLM.from_pretrained(
5 "../splitter-model",
6 local_files_only=True,
7 torch_dtype="bfloat16",
8 device_map={"": 0},
9)