Skip to content

Commit 9c06f52

Browse files
authored
Merge pull request #296 from dusty-nv/dev
added VLM models
2 parents 9c2a93a + 6d98e77 commit 9c06f52

File tree

15 files changed

+5867
-4822
lines changed

15 files changed

+5867
-4822
lines changed

docs/portal/css/modal.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@
117117
border: 1px solid rgba(255,255,255,0.5);
118118
}
119119

120+
.modal-header-extensions select option {
121+
background-color: rgba(100,100,100,1.0);
122+
}
123+
120124
/*.modal-header-extensions div {
121125
margin-left: 0px;
122126
margin-bottom: 10px;

docs/portal/css/models.css

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22
* Styles and elements for certain models
33
*/
44

5-
.modal-header-extensions {
5+
.modal-header-extensions {
66
background-repeat: no-repeat, no-repeat;
77
background-position-x: 0px, right;
88
height: 160px;
9-
}
9+
}
10+
11+
.generic-header {
12+
height: 100px;
13+
}
14+
15+
.vlm-header {
16+
background-image: url('/portal/data/models/images/headers/solar-2.webp');
17+
background-position-y: -110px;
18+
background-size: 1465px 750px;
19+
}
1020

11-
.llama-header {
21+
.llama-header {
1222
padding-top: 20px;
1323
}
1424

docs/portal/data/models/llava.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"llava": {
3+
"name": "LLaVA",
4+
"header": "vlm-header",
5+
"max_context_len": 1024,
6+
"runtimes": ["vllm"],
7+
"tags": ["vlm"],
8+
"links": {
9+
"llava": {
10+
"name": "LLaVA",
11+
"url": "https://llava-vl.github.io/"
12+
}
13+
}
14+
},
15+
"llava-15-7b": {
16+
"name": "LLaVA 1.5 7B",
17+
"url": "hf.co/llava-hf/llava-1.5-7b-hf",
18+
"tags": ["llava", "orin"]
19+
},
20+
"llava-15-13b": {
21+
"name": "LLaVA 1.5 13B",
22+
"url": "hf.co/llava-hf/llava-1.5-13b-hf",
23+
"tags": ["llava", "agx-orin", "orin-nx"]
24+
},
25+
"llava-16-vicuna-7b": {
26+
"name": "LLaVA 1.6 Vicuna 7B",
27+
"url": "hf.co/llava-hf/llava-v1.6-vicuna-7b-hf",
28+
"tags": ["llava", "agx-orin", "orin-nx"],
29+
"blacklist": ["bnb4"]
30+
},
31+
"llava-16-mistral-7b": {
32+
"name": "LLaVA 1.6 Mistral 7B",
33+
"url": "hf.co/llava-hf/llava-v1.6-mistral-7b-hf",
34+
"tags": ["llava", "agx-orin", "orin-nx"],
35+
"blacklist": ["bnb4"]
36+
}
37+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"phi-vision": {
3+
"name": "Phi Vision",
4+
"header": "vlm-header",
5+
"max_context_len": 1024,
6+
"runtimes": ["vllm"],
7+
"tags": ["vlm"],
8+
"links": {
9+
"phi": {
10+
"name": "Phi",
11+
"url": "https://azure.microsoft.com/en-us/products/phi"
12+
}
13+
}
14+
},
15+
"phi-35-vision": {
16+
"name": "Phi 3.5 Vision",
17+
"url": "microsoft/Phi-3.5-vision-instruct",
18+
"tags": ["phi-vision", "orin"]
19+
},
20+
"phi-4-multimodal": {
21+
"name": "Phi 4 Multimodal",
22+
"url": "microsoft/Phi-4-multimodal-instruct",
23+
"tags": ["phi-vision", "orin"]
24+
}
25+
}

docs/portal/data/models/qwen-vl.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"qwen-2.5-vl": {
3+
"name": "Qwen 2.5 VL",
4+
"header": "qwen-header",
5+
"max_context_len": 1024,
6+
"runtimes": ["vllm"],
7+
"tags": ["vlm"],
8+
"links": {
9+
"qwen": {
10+
"name": "Qwen",
11+
"url": "https://qwenlm.github.io"
12+
}
13+
}
14+
},
15+
"qwen-2.5-vl-3b": {
16+
"name": "Qwen 2.5 VL 3B",
17+
"url": "hf.co/Qwen/Qwen2.5-VL-3B-Instruct",
18+
"tags": ["qwen-2.5-vl", "orin"]
19+
},
20+
"qwen-2.5-vl-7b": {
21+
"name": "Qwen 2.5 VL 7B",
22+
"url": "hf.co/Qwen/Qwen2.5-VL-7B-Instruct",
23+
"tags": ["qwen-2.5-vl", "orin"]
24+
}
25+
}

0 commit comments

Comments
 (0)