File size: 493 Bytes
24f1cd9
 
 
 
 
 
 
 
 
 
 
307191b
 
 
 
 
 
 
24f1cd9
307191b
 
 
 
 
24f1cd9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
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)