0
stars
4
commits
1
linked in READMEs
Jun 21, 2026
updated
LoRA adapter trained from Qwen/Qwen2.5-1.5B-Instruct on data/model_kit/clawd_future_drill_processed.
Hub model ID: solanaclawd/clawd-solana-masterpiece-qwen15-lora
q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_projoutputs/clawd-solana-masterpiece-qwen15-lora-mac-v3| Metric | Value |
|---|---|
epoch | 0.329331 |
total_flos | 4.4773e+14 |
train_loss | 0.285656 |
train_runtime | 74.1024 |
train_samples_per_second | 2.591 |
train_steps_per_second | 2.591 |
This adapter is intended for Solana-native Clawd agents that need project-local context around core-ai, Helius integrations, Clawd Code, Clawd Grok, MCP server conventions, agent skills, and the existing Solana/DeFi/ZK instruction corpus.
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_model = "Qwen/Qwen2.5-1.5B-Instruct"
adapter_id = "solanaclawd/clawd-solana-masterpiece-qwen15-lora"
tokenizer = AutoTokenizer.from_pretrained(base_model, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(base_model, device_map="auto", trust_remote_code=True)
model = PeftModel.from_pretrained(model, adapter_id)
The dataset builder runs in public-safe mode by default and excludes common secret filenames, private key/token patterns, binary artifacts, dependency folders, lockfiles, and high-risk security records that are not suitable for public dataset release.
This adapter is a research/developer artifact. Live trading or wallet actions must remain behind separate execution clients, simulation, explicit operator approval, and pre-trade risk gates.
4 commits
0
stars
4
commits
1
linked in READMEs
Jun 21, 2026
updated
LoRA adapter trained from Qwen/Qwen2.5-1.5B-Instruct on data/model_kit/clawd_future_drill_processed.
Hub model ID: solanaclawd/clawd-solana-masterpiece-qwen15-lora
q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_projoutputs/clawd-solana-masterpiece-qwen15-lora-mac-v3| Metric | Value |
|---|---|
epoch | 0.329331 |
total_flos | 4.4773e+14 |
train_loss | 0.285656 |
train_runtime | 74.1024 |
train_samples_per_second | 2.591 |
train_steps_per_second | 2.591 |
This adapter is intended for Solana-native Clawd agents that need project-local context around core-ai, Helius integrations, Clawd Code, Clawd Grok, MCP server conventions, agent skills, and the existing Solana/DeFi/ZK instruction corpus.
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_model = "Qwen/Qwen2.5-1.5B-Instruct"
adapter_id = "solanaclawd/clawd-solana-masterpiece-qwen15-lora"
tokenizer = AutoTokenizer.from_pretrained(base_model, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(base_model, device_map="auto", trust_remote_code=True)
model = PeftModel.from_pretrained(model, adapter_id)
The dataset builder runs in public-safe mode by default and excludes common secret filenames, private key/token patterns, binary artifacts, dependency folders, lockfiles, and high-risk security records that are not suitable for public dataset release.
This adapter is a research/developer artifact. Live trading or wallet actions must remain behind separate execution clients, simulation, explicit operator approval, and pre-trade risk gates.
4 commits