canxp-ai

maplept2-coder-25082652

Dedicated Endpoints

Run this model inference on single tenant GPU with unmatched speed and reliability at scale.

Learn more
Container

Run this model inference with full control and performance in your environment.

Learn more

Get help setting up a custom Dedicated Endpoints.

Talk with our engineer to get a quote for reserved GPU instances with discounts.

README

License: other

Quick start (Python)

bash

pip install transformers peft torch

python

from transformers import AutoTokenizer, AutoModelForCausalLM
from peft import PeftModel
base = "Qwen/Qwen3-Coder-30B-A3B-Instruct"
adapter = "canxp-ai/maplept2-coder-25082652"
tokenizer = AutoTokenizer.from_pretrained(base, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
base, torch_dtype="bfloat16", device_map="auto", trust_remote_code=True
)
model = PeftModel.from_pretrained(model, adapter)
prompt = "Hello!"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
out = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(out[0], skip_special_tokens=True))

CLI download

bash

pip install -U "huggingface_hub[cli]"
huggingface-cli download canxp-ai/maplept2-coder-25082652 --local-dir ./maplept2-coder

Training details

  • Base model: Qwen/Qwen3-Coder-30B-A3B-Instruct
  • Method: LORA
  • Epochs: 2
  • Context length: 4096
  • Validation split: 0.1

This adapter inherits the upstream license of the base model. See LICENSE_NOTICE.txt in this repo for details.

Model provider

canxp-ai

Model tree

Base

Qwen/Qwen3-Coder-30B-A3B-Instruct

Adapter

this model

Modalities

Input

Text

Output

Text

Pricing

Dedicated Endpoints

View details

Supported Functionality

Model APIs

Dedicated Endpoints

Container

More information

Explore FriendliAI today