25 lines
493 B
Markdown
25 lines
493 B
Markdown
|
|
---
|
||
|
|
license: apache-2.0
|
||
|
|
base_model: mistralai/Mistral-7B-v0.1
|
||
|
|
tags:
|
||
|
|
- mistral
|
||
|
|
- fine-tuned
|
||
|
|
- unsloth
|
||
|
|
- text-generation
|
||
|
|
pipeline_tag: text-generation
|
||
|
|
---
|
||
|
|
|
||
|
|
# Mistral Fine-Tuned Model
|
||
|
|
|
||
|
|
## Description
|
||
|
|
This is a fine-tuned version of Mistral 7B using Unsloth.
|
||
|
|
|
||
|
|
## Usage
|
||
|
|
|
||
|
|
```python
|
||
|
|
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||
|
|
|
||
|
|
model_id = "varundevmishra09/mistral-finetuned"
|
||
|
|
|
||
|
|
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
||
|
|
model = AutoModelForCausalLM.from_pretrained(model_id)
|