Instructions to use SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall 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 SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall 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 SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="SousiOmine/sarashina2.2-3b-instruct-v0.1-Pythonic-FunctionCall", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
tags:
|
| 4 |
-
- unsloth
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- unsloth
|
| 5 |
+
language:
|
| 6 |
+
- ja
|
| 7 |
+
datasets:
|
| 8 |
+
- SousiOmine/Japanese-Pythonic-FunctionCall
|
| 9 |
+
- Kendamarron/jimba-instruction-all
|
| 10 |
+
base_model:
|
| 11 |
+
- sbintuitions/sarashina2.2-3b-instruct-v0.1
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
https://qiita.com/SousiOmine/items/23313089c7c3f498996b
|
| 15 |
+
|
| 16 |
+
# 概要
|
| 17 |
+
sbintuitions/sarashina2.2-3b-instruct-v0.1に、
|
| 18 |
+
Kendamarron/jimba-instruction-allとSousiOmine/Japanese-Pythonic-FunctionCallを用いたQLoRAファインチューニングを行い、
|
| 19 |
+
python関数の呼び出しに対応させたモデルです。
|
| 20 |
+
|
| 21 |
+
# 使い方
|
| 22 |
+
|
| 23 |
+
# 注意点
|
| 24 |
+
- チャットテンプレートが関数呼び出しに対応していません。
|