jefowers commited on
Commit
72f6d64
·
verified ·
1 Parent(s): 9432e68

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen2.5-Coder-7B-Instruct
4
+ tags:
5
+ - safetensors
6
+ - text-generation
7
+ ---
8
+
9
+ # Playable1
10
+
11
+ This is a fine-tuned version of Qwen/Qwen2.5-Coder-7B-Instruct using the 'iat-05-1' adapter.
12
+
13
+ ## Model Details
14
+
15
+ - **Base Model:** Qwen/Qwen2.5-Coder-7B-Instruct
16
+ - **Adapter:** iat-05-1
17
+ - **Format:** SafeTensors
18
+
19
+ ## Usage
20
+
21
+ This model can be used with transformers library:
22
+
23
+ ```python
24
+ from transformers import AutoModelForCausalLM, AutoTokenizer
25
+
26
+ model = AutoModelForCausalLM.from_pretrained("playable/Playable1")
27
+ tokenizer = AutoTokenizer.from_pretrained("playable/Playable1")
28
+
29
+ inputs = tokenizer("Your prompt here", return_tensors="pt")
30
+ outputs = model.generate(**inputs)
31
+ print(tokenizer.decode(outputs[0]))
32
+ ```