Spaces:
Runtime error
Runtime error
File size: 2,155 Bytes
1314bf5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# Model Configuration for Vision Language Models and Language Models
# This file contains model configurations for easy integration
models:
# InternVL Vision-Language Models
InternVL3-8B:
name: "InternVL3-8B"
model_id: "OpenGVLab/InternVL3-8B"
model_type: "internvl"
description: "Fastest model, good for quick processing"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "non-quantized(fp16)"
InternVL3-14B:
name: "InternVL3-14B"
model_id: "OpenGVLab/InternVL3-14B"
model_type: "internvl"
description: "Balanced performance and quality"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "quantized(8bit)"
InternVL3-38B:
name: "InternVL3-38B"
model_id: "OpenGVLab/InternVL3-38B"
model_type: "internvl"
description: "Highest quality, requires significant GPU memory"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "quantized(8bit)"
InternVL3_5-8B:
name: "InternVL3_5-8B"
model_id: "OpenGVLab/InternVL3_5-8B"
model_type: "internvl"
description: "Fastest model, good for quick processing"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "non-quantized(fp16)"
# Qwen Language Models (Text-only)
Qwen2.5-7B-Instruct:
name: "Qwen2.5-7B-Instruct"
model_id: "Qwen/Qwen2.5-7B-Instruct"
model_type: "qwen"
description: "Qwen2.5 7B instruction-tuned model for text generation"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "quantized(8bit)"
Qwen2.5-14B-Instruct:
name: "Qwen2.5-14B-Instruct"
model_id: "Qwen/Qwen2.5-14B-Instruct"
model_type: "qwen"
description: "Qwen2.5 14B instruction-tuned model for better text generation"
supported_quantizations:
- "non-quantized(fp16)"
- "quantized(8bit)"
default_quantization: "quantized(8bit)"
# Default model selection
default_model: "InternVL3-8B" |