-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
103 lines (101 loc) · 2.63 KB
/
Copy pathconstants.ts
File metadata and controls
103 lines (101 loc) · 2.63 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import { AIModel, ModelType } from './types';
export const MOCK_MODELS: AIModel[] = [
{
id: 'hunyuan-video',
name: 'HunyuanVideo',
provider: 'Tencent',
type: ModelType.VIDEO,
parameters: '13B',
minVram: 24,
tags: ['#실사풍', '#역동적', '#오픈소스'],
description: '높은 시간적 일관성을 자랑하는 강력한 오픈소스 비디오 생성 모델입니다.',
stats: {
speed: 60,
quality: 90,
textAdherence: 85,
vramEfficiency: 40,
costEfficiency: 70,
},
costPerMin: 0.05,
},
{
id: 'cogvideox-5b',
name: 'CogVideoX-5B',
provider: 'Zhipu AI',
type: ModelType.VIDEO,
parameters: '5B',
minVram: 12,
tags: ['#고효율', '#일반GPU', '#애니풍'],
description: '일반 소비자용 GPU에서도 구동 가능한 경량화된 고품질 비디오 모델입니다.',
stats: {
speed: 85,
quality: 75,
textAdherence: 80,
vramEfficiency: 90,
costEfficiency: 95,
},
costPerMin: 0.02,
},
{
id: 'flux-1-pro',
name: 'Flux.1 Pro',
provider: 'Black Forest Labs',
type: ModelType.IMAGE,
parameters: '12B',
minVram: 16,
tags: ['#최고성능', '#텍스트표현', '#예술적'],
description: '탁월한 프롬프트 이해도와 텍스트 렌더링 능력을 갖춘 최첨단 이미지 생성 모델입니다.',
stats: {
speed: 70,
quality: 98,
textAdherence: 99,
vramEfficiency: 60,
costEfficiency: 60,
},
costPerMin: 0.03,
},
{
id: 'svd-xt',
name: 'Stable Video Diffusion XT',
provider: 'Stability AI',
type: ModelType.VIDEO,
parameters: 'Unknown',
minVram: 20,
tags: ['#이미지To비디오', '#안정적'],
description: '정지된 이미지를 영상으로 변환하는 데 탁월하며 안정적인 모션을 제공합니다.',
stats: {
speed: 50,
quality: 80,
textAdherence: 60,
vramEfficiency: 50,
costEfficiency: 65,
},
costPerMin: 0.04,
},
{
id: 'mochi-1',
name: 'Mochi-1',
provider: 'Genmo',
type: ModelType.VIDEO,
parameters: '10B',
minVram: 80,
tags: ['#고해상도', '#물리엔진'],
description: '물리 법칙을 잘 반영한 고해상도 비디오 생성 모델입니다. 높은 연산 능력이 필요합니다.',
stats: {
speed: 30,
quality: 92,
textAdherence: 88,
vramEfficiency: 20,
costEfficiency: 30,
},
costPerMin: 0.12,
},
];
export const HARDWARE_OPTIONS = [
'RTX 4090 (24GB)',
'RTX 3090 (24GB)',
'RTX 4080 (16GB)',
'A100 (40GB)',
'A100 (80GB)',
'H100 (80GB)'
];