|
from typing import Dict, List, Any |
|
from transformers import AutoProcessor, MusicgenForConditionalGeneration |
|
import torch |
|
|
|
|
|
class EndpointHandler: |
|
def __init__(self, path=""): |
|
|
|
self.processor = AutoProcessor.from_pretrained(path) |
|
|
|
|
|
self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu") |
|
|
|
|
|
self.model = MusicgenForConditionalGeneration.from_pretrained(path) |
|
self.model.to(self.device) |
|
|
|
def __call__(self, data: Dict[str, Any]) -> Dict[str, str]: |
|
""" |
|
Args: |
|
data (:dict:): |
|
The payload with the text prompt and generation parameters. |
|
""" |
|
|
|
inputs = data.pop("inputs", data) |
|
parameters = data.pop("parameters", None) |
|
duration = parameters.pop("duration", None) |
|
|
|
if duration is not None: |
|
|
|
max_new_tokens = int(duration * 50) |
|
else: |
|
max_new_tokens = 256 |
|
|
|
|
|
inputs = self.processor( |
|
text=[inputs], |
|
padding=True, |
|
return_tensors="pt",).to(self.device) |
|
|
|
|
|
if parameters is not None and 'duration' in parameters: |
|
parameters.pop('duration') |
|
|
|
|
|
if parameters is not None: |
|
outputs = self.model.generate(**inputs, max_new_tokens=max_new_tokens, **parameters) |
|
else: |
|
outputs = self.model.generate(**inputs, max_new_tokens=max_new_tokens) |
|
|
|
|
|
prediction = outputs[0].cpu().numpy() |
|
|
|
return [{"generated_text": prediction}] |
|
|