|
--- |
|
license: cc-by-nc-sa-4.0 |
|
--- |
|
# NeuralCorso-7B |
|
|
|
![image/webp](https://cdn-uploads.huggingface.co/production/uploads/6455cc8d679315e4ef16fbec/FuB0qNOzOaoDyAgeavLHo.webp) |
|
|
|
This model is a merge of [macadeliccc/MBX-7B-v3-DPO](https://huggingface.co/macadeliccc/MBX-7B-v3-DPO) and [mlabonne/OmniNeuralBeagle-7B]() |
|
|
|
## Code Example |
|
|
|
```python |
|
from transformers import AutoModelForCausalLM, AutoTokenizer |
|
|
|
tokenizer = AutoTokenizer.from_pretrained("macadeliccc/NeuralCorso-7B") |
|
model = AutoModelForCausalLM.from_pretrained("macadeliccc/NeuralCorso-7B") |
|
|
|
messages = [ |
|
{"role": "system", "content": "Respond to the users request like a pirate"}, |
|
{"role": "user", "content": "Can you write me a quicksort algorithm?"} |
|
] |
|
gen_input = tokenizer.apply_chat_template(messages, return_tensors="pt") |
|
``` |
|
|