Instructions to use OnAnOrange/llada-8b-arxiv-nc-topo-2hop-r128-ep9-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use OnAnOrange/llada-8b-arxiv-nc-topo-2hop-r128-ep9-v1 with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
Configuration Parsing Warning:In adapter_config.json: "peft.task_type" must be a string
llada-8b-arxiv-nc-topo-2hop-r128-ep9-v1
This repository contains a LoRA adapter checkpoint for LLaDA-8B trained for graph node classification on arxiv with topology-aware 2hop graph context.
Model Details
- Base model:
GSAI-ML/LLaDA-8B-Instruct - Adapter type: LoRA / PEFT adapter
- Dataset:
arxiv - Task:
nc(node classification) - Graph context:
topo(topology-aware) - Hop setting:
2hop - LoRA rank:
r128 - Training epochs:
ep9 - Selected checkpoint:
checkpoint-640
Files
adapter_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 provenance
Usage
from transformers import AutoModel, AutoTokenizer
from peft import PeftModel
base_model_id = "GSAI-ML/LLaDA-8B-Instruct"
adapter_id = "OnAnOrange/llada-8b-arxiv-nc-topo-2hop-r128-ep9-v1"
tokenizer = AutoTokenizer.from_pretrained(adapter_id, trust_remote_code=True)
base_model = AutoModel.from_pretrained(
base_model_id,
trust_remote_code=True,
torch_dtype="auto",
)
model = PeftModel.from_pretrained(base_model, adapter_id)
The exact inference wrapper depends on the DLM-Graph/LLaDA evaluation pipeline. This repository publishes the trained adapter and provenance files, not a standalone merged full model.
Provenance
Original local training run:
tmdlm-llada-8b-arxiv-nc-2hop-r128-ep9-arxiv_nc_sec23_20260522_1752_64gpu_9ep_r128_digit0pad_fulltrain
The uploaded checkpoint is checkpoint-640 from that run. See
metadata.json and SOURCE_RUN.txt for the exact local source path.
Limitations
This checkpoint is specialized for DLM-Graph experiments. It is not intended as a general-purpose instruction model. Users should evaluate it within the same graph prompting and decoding setup used by the DLM-Graph experiments.
- Downloads last month
- 1
Model tree for OnAnOrange/llada-8b-arxiv-nc-topo-2hop-r128-ep9-v1
Base model
GSAI-ML/LLaDA-8B-Instruct
Task type is invalid.