Skip to content

Commit 81b993d

Browse files
committed
Initial commit.
1 parent 2a3d5cc commit 81b993d

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

multimodal/vl2l/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# MLPerf Inference Vision-language-to-language (VL2L) Reference Implementation
2+
3+
[Qwen3-VL-235B-A22B](https://github.com/QwenLM/Qwen3-VL/tree/4aae93c9fcca19d7cbca6b095d64f578d25ed75f)
4+
is currently selected as the model for the VL2L benchmark.

multimodal/vl2l/pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[tool.ruff]
2+
lint.select = ["ALL"]
3+
lint.ignore = [
4+
"ANN002", # Missing type annotation for `*args`"
5+
"ANN003", # Missing type annotation for `**kwargs`
6+
]
7+
8+
[tool.ruff.lint.pydocstyle]
9+
convention = "google"
10+
11+
[tool.mypy]
12+
check_untyped_defs = true
13+
plugins = ['pydantic.mypy']

0 commit comments

Comments
 (0)