Downloads · 30 days
0
ATL-Machine/affine-test-02
affine-test-02 is a machine learning model from ATL-Machine. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for peft. The card lists the license as apache-2.0.
This model is a fine-tuned version of ineso22/affine-vscode using LoRA (Low-Rank Adaptation).
Downloads · 30 days
0
Access
Public
Updated Jan 24, 2026
Parameters
4B
32.2 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors8 GB · 100%
From the Hugging Face model README
This model is a fine-tuned version of ineso22/affine-vscode using LoRA (Low-Rank Adaptation).
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model = AutoModelForCausalLM.from_pretrained(
"out_lgc/merged_model",
torch_dtype=torch.bfloat16,
trust_remote_code=True,
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained("out_lgc/merged_model")
# Your inference code here