Views
No views yet
GSAI-ML/LLaDA-8B-Instructcora-pubmednc (node classification)topo (topology-aware)2hopr64ep10checkpoint-306adapter_model.safetensors: LoRA adapter weightsadapter_config.json: PEFT adapter configurationtokenizer.json, tokenizer_config.json, special_tokens_map.json: tokenizer fileschat_template.jinja: chat template used with the checkpointtraining_args.bin: serialized training argumentsmetadata.json: structured provenance metadataSOURCE_RUN.txt: source training run provenance1from transformers import AutoModel, AutoTokenizer
2from peft import PeftModel
3
4base_model_id = "GSAI-ML/LLaDA-8B-Instruct"
5adapter_id = "OnAnOrange/llada-8b-cora-pubmed-nc-topo-2hop-r64-ep10-v2"
6
7tokenizer = AutoTokenizer.from_pretrained(adapter_id, trust_remote_code=True)
8base_model = AutoModel.from_pretrained(
9 base_model_id,
10 trust_remote_code=True,
11 torch_dtype="auto",
12)
13model = PeftModel.from_pretrained(base_model, adapter_id)tmdlm-llada-8b-cora-pubmed-nc-2hop-topo-mcdigit-d0-bal-nonb-r64-ep10-cora_nc_topo_replicate_20260523_2109_mcdigit_d0_bal_nonbcheckpoint-306 from that run. See
metadata.json and SOURCE_RUN.txt for the exact local source path.