ArtusDev's picture
Upload folder using huggingface_hub
7ce08e5 verified
|
raw
history blame
767 Bytes
metadata
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:

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]))