Instructions to use fqb/orph_multi_lora_adapters with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fqb/orph_multi_lora_adapters with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("fqb/orph_multi_lora_adapters", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Unsloth Studio new
How to use fqb/orph_multi_lora_adapters 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 fqb/orph_multi_lora_adapters 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 fqb/orph_multi_lora_adapters to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for fqb/orph_multi_lora_adapters to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="fqb/orph_multi_lora_adapters", max_seq_length=2048, )
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- tokenizer_config.json +4 -0
tokenizer_config.json
CHANGED
|
@@ -6,12 +6,16 @@
|
|
| 6 |
"extra_special_tokens": [
|
| 7 |
"<|audio|>"
|
| 8 |
],
|
|
|
|
| 9 |
"is_local": false,
|
|
|
|
| 10 |
"model_input_names": [
|
| 11 |
"input_ids",
|
| 12 |
"attention_mask"
|
| 13 |
],
|
| 14 |
"model_max_length": 131072,
|
| 15 |
"model_specific_special_tokens": {},
|
|
|
|
|
|
|
| 16 |
"tokenizer_class": "TokenizersBackend"
|
| 17 |
}
|
|
|
|
| 6 |
"extra_special_tokens": [
|
| 7 |
"<|audio|>"
|
| 8 |
],
|
| 9 |
+
"from_slow": true,
|
| 10 |
"is_local": false,
|
| 11 |
+
"legacy": false,
|
| 12 |
"model_input_names": [
|
| 13 |
"input_ids",
|
| 14 |
"attention_mask"
|
| 15 |
],
|
| 16 |
"model_max_length": 131072,
|
| 17 |
"model_specific_special_tokens": {},
|
| 18 |
+
"pad_token": "<|finetune_right_pad_id|>",
|
| 19 |
+
"padding_side": "left",
|
| 20 |
"tokenizer_class": "TokenizersBackend"
|
| 21 |
}
|