Instructions to use indrasn0wal/SQL_Llama with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use indrasn0wal/SQL_Llama 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 indrasn0wal/SQL_Llama 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 indrasn0wal/SQL_Llama to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for indrasn0wal/SQL_Llama to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="indrasn0wal/SQL_Llama", max_seq_length=2048, )
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- README.md +1 -1
- adapter_config.json +4 -4
README.md
CHANGED
|
@@ -8,4 +8,4 @@ base_model:
|
|
| 8 |
- unsloth/llama-3-8b-bnb-4bit
|
| 9 |
datasets:
|
| 10 |
- gretelai/synthetic_text_to_sql
|
| 11 |
-
---
|
|
|
|
| 8 |
- unsloth/llama-3-8b-bnb-4bit
|
| 9 |
datasets:
|
| 10 |
- gretelai/synthetic_text_to_sql
|
| 11 |
+
---
|
adapter_config.json
CHANGED
|
@@ -23,13 +23,13 @@
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
| 26 |
-
"down_proj",
|
| 27 |
-
"q_proj",
|
| 28 |
"o_proj",
|
| 29 |
"k_proj",
|
| 30 |
-
"
|
|
|
|
| 31 |
"gate_proj",
|
| 32 |
-
"up_proj"
|
|
|
|
| 33 |
],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|
|
|
|
| 23 |
"rank_pattern": {},
|
| 24 |
"revision": null,
|
| 25 |
"target_modules": [
|
|
|
|
|
|
|
| 26 |
"o_proj",
|
| 27 |
"k_proj",
|
| 28 |
+
"q_proj",
|
| 29 |
+
"down_proj",
|
| 30 |
"gate_proj",
|
| 31 |
+
"up_proj",
|
| 32 |
+
"v_proj"
|
| 33 |
],
|
| 34 |
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|