Instructions to use JupiterJil/cyberspace-llama32-3b-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use JupiterJil/cyberspace-llama32-3b-lora with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/llama-3.2-3b-instruct-bnb-4bit") model = PeftModel.from_pretrained(base_model, "JupiterJil/cyberspace-llama32-3b-lora") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use JupiterJil/cyberspace-llama32-3b-lora 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 JupiterJil/cyberspace-llama32-3b-lora 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 JupiterJil/cyberspace-llama32-3b-lora to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for JupiterJil/cyberspace-llama32-3b-lora to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="JupiterJil/cyberspace-llama32-3b-lora", max_seq_length=2048, )
Cyberspace Presales Co-Pilot β Llama 3.2 3B LoRA Adapter
LoRA adapter for Cyberspace Limited's Vertical AI Presales Co-Pilot.
Training Summary
- Base model:
meta-llama/Llama-3.2-3B-Instruct - Method: LoRA (QLoRA 4-bit) via Unsloth
- Dataset: 132 Cyberspace proposals (ChatML format, zero template bleed)
- Final loss: 1.6964 (target: 1.0β1.8 β )
- Training time: ~2.7 min on A100 80GB
LoRA Config
- Rank: 8
- Alpha: 8
- Dropout: 0.05
- Target modules: q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj
- Epochs: 3
- LR: 2e-4 (cosine scheduler)
train_on_responses_only: True
Usage
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-3B-Instruct")
model = PeftModel.from_pretrained(base, "JupiterJil/cyberspace-llama32-3b-lora")
Production Artifact
For inference, use the GGUF Q5_K_M version: JupiterJil/cyberspace-llama32-3b-gguf
- Downloads last month
- 2
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support
Model tree for JupiterJil/cyberspace-llama32-3b-lora
Base model
meta-llama/Llama-3.2-3B-Instruct