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

Model: vanillaOVO/supermario_v4
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-05-08 15:59:29 +08:00
commit 2b87286987
9 changed files with 91289 additions and 0 deletions

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
---
base_model: []
tags:
- mergekit
- merge
license: apache-2.0
---
This is a merge of pre-trained language models created based on [DARE](https://arxiv.org/abs/2311.03099) using [mergekit](https://github.com/cg123/mergekit).
More descriptions of the model will be added soon.
### **Loading the Model**
Use the following Python code to load the model:
```python
import torch
from transformers import MistralForCausalLM, AutoTokenizer
model = MistralForCausalLM.from_pretrained("vanillaOVO/supermario_v4", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("vanillaOVO/supermario_v4")
```
### **Generating Text**
To generate text, use the following Python code:
```python
text = "Large language models are "
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
```