Instructions to use FWRust/text-sql-URFU-RTF-2C with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use FWRust/text-sql-URFU-RTF-2C 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 FWRust/text-sql-URFU-RTF-2C 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 FWRust/text-sql-URFU-RTF-2C to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for FWRust/text-sql-URFU-RTF-2C to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="FWRust/text-sql-URFU-RTF-2C", max_seq_length=2048, )
FWRust commited on
Commit ·
3c8a698
1
Parent(s): 0c8101f
POC adapter
Browse files- lora.safetensors +3 -0
- params.json +18 -0
- tokenizer.model.v3 +0 -0
lora.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:162376a542dedafe203232e153c20dbeba42c01ef49309fe3de109da36b8bb8d
|
| 3 |
+
size 335594288
|
params.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dim": 4096,
|
| 3 |
+
"n_layers": 32,
|
| 4 |
+
"head_dim": 128,
|
| 5 |
+
"hidden_dim": 14336,
|
| 6 |
+
"n_heads": 32,
|
| 7 |
+
"n_kv_heads": 8,
|
| 8 |
+
"norm_eps": 1e-05,
|
| 9 |
+
"vocab_size": 32768,
|
| 10 |
+
"rope_theta": 1000000.0,
|
| 11 |
+
"lora": {
|
| 12 |
+
"enable": true,
|
| 13 |
+
"rank": 64,
|
| 14 |
+
"dropout": 0.0,
|
| 15 |
+
"scaling": 2.0
|
| 16 |
+
},
|
| 17 |
+
"moe": null
|
| 18 |
+
}
|
tokenizer.model.v3
ADDED
|
Binary file (588 kB). View file
|
|
|