Instructions to use rfvasile/LinalgZero-SFT-LoRA-NST with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rfvasile/LinalgZero-SFT-LoRA-NST with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("rfvasile/LinalgZero-SFT-LoRA-NST", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use rfvasile/LinalgZero-SFT-LoRA-NST 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 rfvasile/LinalgZero-SFT-LoRA-NST 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 rfvasile/LinalgZero-SFT-LoRA-NST to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rfvasile/LinalgZero-SFT-LoRA-NST to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="rfvasile/LinalgZero-SFT-LoRA-NST", max_seq_length=2048, )
Razvan Vasile commited on
End of training
Browse files
README.md
CHANGED
|
@@ -1,18 +1,22 @@
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/Qwen2.5-3B
|
|
|
|
| 3 |
library_name: transformers
|
| 4 |
-
model_name:
|
| 5 |
tags:
|
| 6 |
- generated_from_trainer
|
| 7 |
-
-
|
| 8 |
-
-
|
|
|
|
| 9 |
- sft
|
|
|
|
|
|
|
| 10 |
licence: license
|
| 11 |
---
|
| 12 |
|
| 13 |
-
# Model Card for
|
| 14 |
|
| 15 |
-
This model is a fine-tuned version of [unsloth/Qwen2.5-3B](https://huggingface.co/unsloth/Qwen2.5-3B).
|
| 16 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 17 |
|
| 18 |
## Quick start
|
|
|
|
| 1 |
---
|
| 2 |
base_model: unsloth/Qwen2.5-3B
|
| 3 |
+
datasets: atomwalk12/linalgzero-sft-110
|
| 4 |
library_name: transformers
|
| 5 |
+
model_name: Qwen/Qwen2.5-3B
|
| 6 |
tags:
|
| 7 |
- generated_from_trainer
|
| 8 |
+
- linear-algebra
|
| 9 |
+
- linalg-zero
|
| 10 |
+
- tool-use
|
| 11 |
- sft
|
| 12 |
+
- trl
|
| 13 |
+
- unsloth
|
| 14 |
licence: license
|
| 15 |
---
|
| 16 |
|
| 17 |
+
# Model Card for Qwen/Qwen2.5-3B
|
| 18 |
|
| 19 |
+
This model is a fine-tuned version of [unsloth/Qwen2.5-3B](https://huggingface.co/unsloth/Qwen2.5-3B) on the [atomwalk12/linalgzero-sft-110](https://huggingface.co/datasets/atomwalk12/linalgzero-sft-110) dataset.
|
| 20 |
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 21 |
|
| 22 |
## Quick start
|