Instructions to use JakeOh/llada10sft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JakeOh/llada10sft with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("JakeOh/llada10sft", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| {{ bos_token }} | |
| {%- for message in messages %} | |
| {%- if (message['role'] == 'system') -%} | |
| {{'System:' + '\n' + message['content'].strip() + '\n'}} | |
| {%- elif (message['role'] == 'user') -%} | |
| {{'Q:' + message['content'].strip() + '\n' + 'A:'}} | |
| {%- elif message['role'] == 'assistant' -%} | |
| {{message['content'].strip() + eos_token}} | |
| {%- endif %} | |
| {%- endfor %} | |