Text Generation
PEFT
Safetensors
banking
intent-classification
lora
sft
qlora
unsloth
gemma
fine-tuned
vietnamese
Instructions to use anyu205/banking_intent_gemma2_unsloth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use anyu205/banking_intent_gemma2_unsloth with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/gemma-2-9b-bnb-4bit") model = PeftModel.from_pretrained(base_model, "anyu205/banking_intent_gemma2_unsloth") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Unsloth Studio new
How to use anyu205/banking_intent_gemma2_unsloth 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 anyu205/banking_intent_gemma2_unsloth 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 anyu205/banking_intent_gemma2_unsloth to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for anyu205/banking_intent_gemma2_unsloth to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="anyu205/banking_intent_gemma2_unsloth", max_seq_length=2048, )
File size: 1,697 Bytes
0f79b99 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | [
{"Series":"I", "X":10.0, "Y":8.04},
{"Series":"I", "X":8.0, "Y":6.95},
{"Series":"I", "X":13.0, "Y":7.58},
{"Series":"I", "X":9.0, "Y":8.81},
{"Series":"I", "X":11.0, "Y":8.33},
{"Series":"I", "X":14.0, "Y":9.96},
{"Series":"I", "X":6.0, "Y":7.24},
{"Series":"I", "X":4.0, "Y":4.26},
{"Series":"I", "X":12.0, "Y":10.84},
{"Series":"I", "X":7.0, "Y":4.81},
{"Series":"I", "X":5.0, "Y":5.68},
{"Series":"II", "X":10.0, "Y":9.14},
{"Series":"II", "X":8.0, "Y":8.14},
{"Series":"II", "X":13.0, "Y":8.74},
{"Series":"II", "X":9.0, "Y":8.77},
{"Series":"II", "X":11.0, "Y":9.26},
{"Series":"II", "X":14.0, "Y":8.10},
{"Series":"II", "X":6.0, "Y":6.13},
{"Series":"II", "X":4.0, "Y":3.10},
{"Series":"II", "X":12.0, "Y":9.13},
{"Series":"II", "X":7.0, "Y":7.26},
{"Series":"II", "X":5.0, "Y":4.74},
{"Series":"III", "X":10.0, "Y":7.46},
{"Series":"III", "X":8.0, "Y":6.77},
{"Series":"III", "X":13.0, "Y":12.74},
{"Series":"III", "X":9.0, "Y":7.11},
{"Series":"III", "X":11.0, "Y":7.81},
{"Series":"III", "X":14.0, "Y":8.84},
{"Series":"III", "X":6.0, "Y":6.08},
{"Series":"III", "X":4.0, "Y":5.39},
{"Series":"III", "X":12.0, "Y":8.15},
{"Series":"III", "X":7.0, "Y":6.42},
{"Series":"III", "X":5.0, "Y":5.73},
{"Series":"IV", "X":8.0, "Y":6.58},
{"Series":"IV", "X":8.0, "Y":5.76},
{"Series":"IV", "X":8.0, "Y":7.71},
{"Series":"IV", "X":8.0, "Y":8.84},
{"Series":"IV", "X":8.0, "Y":8.47},
{"Series":"IV", "X":8.0, "Y":7.04},
{"Series":"IV", "X":8.0, "Y":5.25},
{"Series":"IV", "X":19.0, "Y":12.50},
{"Series":"IV", "X":8.0, "Y":5.56},
{"Series":"IV", "X":8.0, "Y":7.91},
{"Series":"IV", "X":8.0, "Y":6.89}
]
|