Instructions to use makotonlo/LLM2026_DPO_SFT19_v18 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio
How to use makotonlo/LLM2026_DPO_SFT19_v18 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for makotonlo/LLM2026_DPO_SFT19_v18 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for makotonlo/LLM2026_DPO_SFT19_v18 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for makotonlo/LLM2026_DPO_SFT19_v18 to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="makotonlo/LLM2026_DPO_SFT19_v18", max_seq_length=2048, )
LLM2026_DPO_SFT19_v18 (Silent Expert v18)
This model is a specialized fine-tune of Qwen2.5-7B designed for pure data output. Through Direct Preference Optimization (DPO), it has been trained to be a "Silent Expert"โit suppresses all conversational filler, greetings, and explanations.
๐ Key Characteristics
- Absolute Silence: Eliminates conversational preambles like "Certainly!", "Here is the data," and concluding remarks.
- Zero Formatting Noise: Trained to avoid Markdown backticks (e.g.,
```json) that often cause parsing errors in automated pipelines. - Raw Data Focus: Outputs immediate, structured content starting from the very first character.
- Hybrid Delivery: This repository contains both a 16-bit physically merged model for standalone use and a LoRA adapter (
adapter_config.json) for PEFT workflows.
๐ Usage
1. Loading as an Adapter (PEFT)
Recommended if you want to use the model within the Unsloth or PEFT framework:
from unsloth import FastLanguageModel
from peft import PeftModel
model, tokenizer = FastLanguageModel.from_pretrained(
model_name = "unsloth/Qwen2.5-7B-Instruct-bnb-4bit",
load_in_4bit = True,
)
model = PeftModel.from_pretrained(model, "makotonlo/LLM2026_DPO_SFT19_v18")
### ๐ ๏ธ How to apply this immediately
You can either click **"Edit model card"** in your browser and paste the text above, or run this quick Python cell in your Colab to push the update automatically:
```python
from huggingface_hub import HfApi
from google.colab import userdata
api = HfApi()
repo_id = "makotonlo/LLM2026_DPO_SFT19_v18"
token = userdata.get('HF_TOKEN')
# Define the English content
readme_content = """ (Paste the Markdown above here) """
with open("README.md", "w", encoding="utf-8") as f:
f.write(readme_content)
api.upload_file(
path_or_fileobj="README.md",
path_in_repo="README.md",
repo_id=repo_id,
token=token
)
print("โ
README updated to standard English professional format!")
- Downloads last month
- 7
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support
Model tree for makotonlo/LLM2026_DPO_SFT19_v18
Base model
Qwen/Qwen2.5-7B Finetuned
Qwen/Qwen2.5-7B-Instruct Quantized
unsloth/Qwen2.5-7B-Instruct-bnb-4bit