| from typing import Any, Dict, List, Optional, Type | |
| import torch.nn as nn | |
| from transformers.configuration_utils import PretrainedConfig | |
| from transformers.processing_utils import ProcessorMixin | |
| from transformers.tokenization_utils_base import PreTrainedTokenizerBase | |
| from sglang.srt.managers.io_struct import ( | |
| EmbeddingReqInput, | |
| GenerateReqInput, | |
| ImageDataInputItem, | |
| ) | |
| from sglang.srt.models.vila import VILAForConditionalGeneration | |
| from sglang.srt.multimodal.processors.base_processor import ( | |
| BaseMultimodalProcessor, | |
| MultimodalSpecialTokens, | |
| ) | |
| from sglang.srt.server_args import ServerArgs | |
| class VILAProcessor(ProcessorMixin): | |
| """A stub class for the VILA processor.""" | |
| tokenizer: PreTrainedTokenizerBase | |
| class VILAMultimodalProcessor(BaseMultimodalProcessor): | |
| models: List[Type[nn.Module]] = [VILAForConditionalGeneration] | |
| _processor: VILAProcessor | |
| def __init__( | |
| self, | |
| hf_config: PretrainedConfig, | |
| server_args: ServerArgs, | |
| _processor: VILAProcessor, | |
| *args, | |
| **kwargs, | |
| ) -> None: | |
| super().__init__(hf_config, server_args, _processor, *args, **kwargs) | |
| self.mm_tokens = MultimodalSpecialTokens( | |
| image_token=self._processor.tokenizer.image_token, | |
| image_token_id=hf_config.image_token_id, | |
| video_token_id=hf_config.video_token_id, | |
| ).build(_processor) | |
| async def process_mm_data_async( | |
| self, | |
| image_data: Optional[ImageDataInputItem | List[ImageDataInputItem]], | |
| input_text: str | List[int], | |
| request_obj: GenerateReqInput | EmbeddingReqInput, | |
| **kwargs, | |
| ) -> Optional[Dict[str, Any]]: | |
| base_output = self.load_mm_data( | |
| prompt=input_text, | |
| multimodal_tokens=self.mm_tokens, | |
| image_data=image_data, | |
| ) | |
| mm_items, input_ids, _ = self.process_and_combine_mm_data( | |
| base_output, self.mm_tokens | |
| ) | |
| return { | |
| "input_ids": input_ids.tolist(), | |
| "mm_items": mm_items, | |
| "im_token_id": self.mm_tokens.image_token_id, | |
| "video_token_id": self.mm_tokens.video_token_id, | |
| } | |
Xet Storage Details
- Size:
- 2.19 kB
- Xet hash:
- d45be5cb6eb8d30dd8997864595cb973e09d10036ab4e3144d30840c25925217
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.