初始化项目,由ModelHub XC社区提供模型

Model: varundevmishra09/My_Model
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-05 16:01:58 +08:00
commit 45d96d5287
12 changed files with 282352 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,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)