File size: 767 Bytes
72f6d64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
26
27
28
29
30
31
32
33
---

license: apache-2.0
base_model: Qwen/Qwen2.5-Coder-7B-Instruct
tags:
- safetensors
- text-generation
---


# Playable1

This is a fine-tuned version of Qwen/Qwen2.5-Coder-7B-Instruct using the 'iat-05-1' adapter.

## Model Details

- **Base Model:** Qwen/Qwen2.5-Coder-7B-Instruct
- **Adapter:** iat-05-1
- **Format:** SafeTensors

## Usage

This model can be used with transformers library:

```python

from transformers import AutoModelForCausalLM, AutoTokenizer



model = AutoModelForCausalLM.from_pretrained("playable/Playable1")

tokenizer = AutoTokenizer.from_pretrained("playable/Playable1")



inputs = tokenizer("Your prompt here", return_tensors="pt")

outputs = model.generate(**inputs)

print(tokenizer.decode(outputs[0]))

```