mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-05-28 08:07:03 +08:00
Co-authored-by: Roger Wang <ywang@roblox.com> Co-authored-by: Isotr0py <mozf@mail2.sysu.edu.cn>
13 lines
419 B
Python
13 lines
419 B
Python
# Adapted from
|
|
# https://huggingface.co/nvidia/NVLM-D-72B/blob/main/configuration_nvlm_d.py
|
|
# --------------------------------------------------------
|
|
# NVLM-D
|
|
# Copyright (c) 2024 NVIDIA
|
|
# Licensed under Apache 2.0 License [see LICENSE for details]
|
|
# --------------------------------------------------------
|
|
from .internvl import InternVLChatConfig
|
|
|
|
|
|
class NVLM_D_Config(InternVLChatConfig):
|
|
model_type = 'NVLM_D'
|