Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions qwen/qwen-110B-chat/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
external_package_dirs: []
model_metadata:
example_model_input: {"prompt": "How long would it take to reach the sun?"}
model_name: Qwen1.5-vllm-streaming
python_version: py310
requirements:
- torch==2.2.1
- transformers==4.40.0
- vllm==0.4.1
- asyncio==3.4.3
- ray
resources:
accelerator: A100:4
use_gpu: true
secrets: {}
system_packages: []
Empty file.
65 changes: 65 additions & 0 deletions qwen/qwen-110B-chat/model/model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
import subprocess
import uuid
from transformers import AutoTokenizer

from vllm import SamplingParams
from vllm.engine.arg_utils import AsyncEngineArgs
from vllm.engine.async_llm_engine import AsyncLLMEngine


class Model:
def __init__(self, model_name="Qwen/Qwen1.5-110B-Chat"):
self.model_name = model_name
self.tokenizer = None
self.sampling_params = None

command = "ray start --head"
subprocess.check_output(command, shell=True, text=True)
Comment on lines +16 to +17
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is still necessary with newer vlllm versions

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was getting this error without this command. I read it somewhere online to use this if our model loading isn't being done in the main thread.

during pod startup:
Screenshot 2024-05-03 at 12 49 19

During inference:
Screenshot 2024-05-03 at 12 48 53


def load(self):
self.model_args = AsyncEngineArgs(
model=self.model_name,
dtype='auto',
enforce_eager=True,
tensor_parallel_size=4

)

self.tokenizer = AutoTokenizer.from_pretrained(self.model_name)

self.sampling_params = SamplingParams( # Using default values
temperature=0.7,
top_p=0.8,
repetition_penalty=1.05,
max_tokens=512
)

self.llm_engine = AsyncLLMEngine.from_engine_args(self.model_args)

async def predict(self, model_input):
message = model_input.pop("prompt")

prompt = [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": message}
]

text = self.tokenizer.apply_chat_template(
prompt,
tokenize=False,
add_generation_prompt=True
)

idx = str(uuid.uuid4().hex)
vllm_generator = self.llm_engine.generate(text, self.sampling_params, idx)

async def generator():
full_text = ""
async for output in vllm_generator:
text = output.outputs[0].text
delta = text[len(full_text) :]
full_text = text
yield delta

return generator()