nvidia/Nemotron-ClimbMix
Viewer • Updated • 355M • 7.34k • 129
Extracted XL MatFormer submodel from atrost/climbmix-matformer-353m-1p2b-h100.
ExtractedMatFormerForCausalLMxl352,943,360atrost/climbmix-matformer-353m-1p2b-h10009960b1419b0340d8e918107e3915c0dccd852de1,201,668,096{'num_attention_heads': 16, 'num_key_value_heads': 8, 'intermediate_size': 3584}from transformers import AutoModelForCausalLM, AutoTokenizer
repo_id = "atrost/climbmix-matformer-353m-1p2b-h100-xl"
tokenizer = AutoTokenizer.from_pretrained(repo_id)
model = AutoModelForCausalLM.from_pretrained(
repo_id,
trust_remote_code=True,
torch_dtype="auto",
)
trust_remote_code=True is required for the custom MatFormer extracted architecture.