Instructions to use matteodagos/meme with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps Settings
- Unsloth Studio
How to use matteodagos/meme 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 matteodagos/meme 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 matteodagos/meme to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for matteodagos/meme to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="matteodagos/meme", max_seq_length=2048, )
Upload model trained with Unsloth
Browse filesUpload model trained with Unsloth 2x faster
- tokenizer_config.json +1 -1
tokenizer_config.json
CHANGED
|
@@ -227,7 +227,7 @@
|
|
| 227 |
"<|video_pad|>"
|
| 228 |
],
|
| 229 |
"bos_token": null,
|
| 230 |
-
"chat_template": "{% set sep = \"<|im_end|>\\n\" %}\n<|im_start|>system\nYou are a concise STEM tutor. For every multiple-choice question\nanswer **only** with the single capital letter (A–
|
| 231 |
"clean_up_tokenization_spaces": false,
|
| 232 |
"eos_token": "<|endoftext|>",
|
| 233 |
"errors": "replace",
|
|
|
|
| 227 |
"<|video_pad|>"
|
| 228 |
],
|
| 229 |
"bos_token": null,
|
| 230 |
+
"chat_template": "{% set sep = \"<|im_end|>\\n\" %}\n<|im_start|>system\nYou are a concise STEM tutor. For every multiple-choice question\nanswer **only** with the single capital letter (A–D) that is correct.\nDo not output explanations or newlines.{{ sep }}\n{% for m in messages %}\n<|im_start|>{{ m[\"role\"] }}\n{{ m[\"content\"] | trim }}{{ sep }}\n{% endfor %}\n<|im_start|>assistant\n",
|
| 231 |
"clean_up_tokenization_spaces": false,
|
| 232 |
"eos_token": "<|endoftext|>",
|
| 233 |
"errors": "replace",
|