-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2613 lines (2538 loc) · 124 KB
/
index.html
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Meta tags for social media banners, these should be filled in appropriatly as they are your "business card" -->
<!-- Replace the content tag with appropriate information -->
<meta name="description"
content="We introduce IDEA-Bench, a one-stop library to standardize the inference and evaluation of all the conditional image generation models.">
<meta property="og:title" content="IDEA-Bench: : How Far are Generative Models from Professional Designing?" />
<meta property="og:description"
content="A one-stop library to standardize the inference and evaluation of all the conditional image generation models." />
<meta property="og:url" content="https://ali-vilab.github.io/IDEA-Bench-Page/" />
<!-- Path to banner image, should be in the path listed below. Optimal dimenssions are 1200X630-->
<meta property="og:image" content="static/images/tasks_vis.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:title" content="IDEA-Bench: How Far are Generative Models from Professional Designing?">
<meta name="twitter:description"
content="A one-stop library to standardize the inference and evaluation of all the conditional image generation models.">
<!-- Path to banner image, should be in the path listed below. Optimal dimenssions are 1200X600-->
<meta name="twitter:image" content="static/images/tasks_vis.png">
<meta name="twitter:card" content="summary_large_image">
<!-- Keywords for your paper to be indexed by-->
<meta name="keywords" content="ideabench">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>IDEA-Bench</title>
<link rel="icon" type="image/x-icon" href="static/images/favicon_io/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro" rel="stylesheet">
<link rel="stylesheet" href="static/css/bulma.min.css">
<link rel="stylesheet" href="static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="static/css/bulma-slider.min.css">
<link rel="stylesheet" href="static/css/fontawesome.all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="static/css/index.css">
<script src="static/js/jquery.min.js"></script>
<script src="static/js/main.js"></script>
<script defer src="static/js/fontawesome.all.min.js"></script>
<script src="static/js/bulma-carousel.min.js"></script>
<script src="static/js/bulma-slider.min.js"></script>
<script src="static/js/index.js"></script>
<link rel="stylesheet" type="text/css" href="static/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="static/js/jquery-3.5.1.js"></script>
<script type="text/javascript" charset="utf8" src="static/js/jquery.dataTables.js"></script>
<!-- 引入 ECharts 库 -->
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
</head>
<body>
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title"> IDEA-Bench: How Far are Generative Models from
Professional Designing?</h1>
<img src="static/images/tasks_vis.png" width="100%" alt="IDEA-Bench" />
<div class="is-size-5 publication-authors">
<!-- Paper authors -->
<span class="author-block">
<sup>†</sup>Chen Liang,
</span>
<span class="author-block">
<sup>♠️</sup>Lianghua Huang,
</span>
<span class="author-block">
<sup>♣</sup>Jingwu Fang,
</span>
<span class="author-block">
<sup>♥</sup>Huanzhang Dou,
</span>
<span class="author-block">
<sup>♠️</sup>Wei Wang,
</span>
<span class="author-block">
<sup>♠️</sup>Zhi-Fan Wu,
</span>
<span class="author-block">
<sup>♠️</sup>Yupeng Shi,
</span>
<span class="author-block">
<sup>†</sup>Junge Zhang,
</span>
<span class="author-block">
<sup>♣</sup>Xin Zhao,
</span>
<span class="author-block">
<sup>♠️</sup>Yu Liu,
</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block">
<sup>♠️</sup>Tongyi Lab,
<sup>†</sup>Institute of Automation, Chinese Academy of Sciences,
<sup>♣</sup>University of Sciense and Technology Beijing,
<sup>♥</sup>Zhejiang University
</span>
<span class="author-block"><small>[email protected], [email protected],
[email protected], [email protected]</small></span>
</div>
<div class="column has-text-centered">
<!-- <h2 class="title is-5">ICLR 2024</h2> -->
<div class="publication-links">
<span class="link-block">
<a href="https://huggingface.co/datasets/ali-vilab/IDEA-Bench" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
🤗
</span>
<span>Dataset</span>
</a>
</span>
<!-- Github link -->
<span class="link-block">
<a href="https://github.com/ali-vilab/IDEA-Bench" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Code</span>
</a>
</span>
<!-- ArXiv abstract Link -->
<span class="link-block">
<a href="https://arxiv.org/abs/2412.11767" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>arXiv</span>
</a>
</span>
<span class="link-block">
<a href="https://huggingface.co/spaces/ali-vilab/IDEA-Bench-Arena" target="_blank"
class="external-link button is-normal is-rounded is-dark">
<span>⚔️ Arena</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h2 class="title is-3 has-text-centered">Creative Task Definitions</h2>
<div class="columns is-centered is-multiline">
<!-- Task 1 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Package Rendering</h3>
<p>
<strong>Input:</strong> Concept image of product appearance before
rendering.<br>
<strong>Output:</strong> Realistic 3D rendered image in specific environments.
</p>
</div>
</div>
<!-- Task 2 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Storyboard Creation</h3>
<p>
<strong>Input:</strong> Character definition image or scene definition image<br>
<strong>Output:</strong> Sequential images that illustrate the storyline.
</p>
</div>
</div>
<!-- Task 3 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Dynamic Character Design</h3>
<p>
<strong>Input:</strong> Text description of character traits.<br>
<strong>Output:</strong> Animated character with multiple poses or expressions.
</p>
</div>
</div>
<!-- Task 4 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Layer Decomposition</h3>
<p>
<strong>Input:</strong> A single composite image and detailed layer description
(e.g., background, foreground objects).<br>
<strong>Output:</strong> Multiple images of separated layers that align with the
requirements.
</p>
</div>
</div>
<!-- Task 5 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Product Usage Scenario</h3>
<p>
<strong>Input:</strong> An image of a product with textual descriptions of
potential usage scenarios.<br>
<strong>Output:</strong> Realistic images that showcase the product in various
use-case scenarios.
</p>
</div>
</div>
<!-- Task 6 -->
<div class="column is-one-third">
<div class="box">
<h3 class="title is-5">Portrait Retouching</h3>
<p>
<strong>Input:</strong> A portrait image and a description of desired retouching
(e.g., lighting adjustments, skin smoothing, blemish removal).<br>
<strong>Output:</strong> A professionally retouched image with natural
enhancements.
</p>
</div>
</div>
</div>
<a href="https://huggingface.co/datasets/ali-vilab/IDEA-Bench" class="is-italic">Learn more...</a>
</div>
</div>
</div>
</div>
</section>
<!-- Paper abstract -->
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h2 class="title is-3">Abstract</h2>
<div class="content has-text-justified">
<p>
Real-world design tasks - such as picture book creation, film storyboard development
using character sets, photo retouching, visual effects, and font transfer - are highly
diverse and complex, requiring deep interpretation and extraction of various elements
from instructions, descriptions, and reference images. The resulting images often
implicitly capture key features from references or user inputs, making it challenging to
develop models that can effectively address such varied tasks. While existing visual
generative models can produce high-quality images based on prompts, they face
significant limitations in professional design scenarios that involve varied forms and
multiple inputs and outputs, even when enhanced with adapters like ControlNets and
LoRAs. To address this, we introduce IDEA-Bench, a comprehensive benchmark encompassing
100 real-world design tasks, including rendering, visual effects, storyboarding, picture
books, fonts, style-based, and identity-preserving generation, with 275 test cases to
thoroughly evaluate a model's general-purpose generation capabilities. Notably, even the
best-performing model only achieves 22.48 on IDEA-Bench, while the best general-purpose
model only achieves 6.81. We provide a detailed analysis of these results, highlighting
the inherent challenges and providing actionable directions for improvement.
Additionally, we provide a subset of 18 representative tasks equipped with multimodal
large language model (MLLM)-based auto-evaluation techniques to facilitate rapid model
development and comparison.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End paper abstract -->
<!-- Image carousel -->
<section class="hero">
<div class="hero-body">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<div class="item">
<h2 class="title is-3">Construction Pipeline</h2>
<!-- Your image here -->
<img src="static/images/pipeline.png" alt="IDEA-Bench" />
<h2 class="subtitle">
Fig 1: <b>Dataset construction process of IDEA-Bench.</b> We categorize the task
data
from professional design websites and designers based on generative model
capabilities
and assign capability keywords to each category. For each specific task, we design
image
generation prompts and hierarchical evaluation questions. Evaluators then refine
these
evaluation questions on a representative subset.
</h2>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End image carousel -->
<script>
let currentCardIndex = 0; // 当前卡片索引
const cardDisplay = document.querySelector('.card-display');
const totalCards = document.querySelectorAll('.scrollable-card').length;
function changeCard(direction) {
currentCardIndex += direction;
// 循环滚动
if (currentCardIndex >= totalCards) {
currentCardIndex = 0; // 回到第一个卡片
} else if (currentCardIndex < 0) {
currentCardIndex = totalCards - 1; // 跳到最后一个卡片
}
// 移动卡片容器
const cardWidth = document.querySelector('.scrollable-card').offsetWidth; // 获取单个卡片宽度
cardDisplay.style.transform = `translateX(-${currentCardIndex * cardWidth}px)`;
}
var chartDom = document.getElementById('main');
var myChart = echarts.init(chartDom, null, {
renderer: 'svg'
});
var option;
var data = [
{
name: 'Multi-image to Image',
itemStyle: {
color: '#f0b008' // 森林绿
},
label: {
// 添加 label 属性以更改文本样式
show: true,
color: '#FFFFFF', // 文本颜色(例如白色)
fontSize: 12, // 字体大小(根据需求调整)
fontWeight: 'bold' // 可选:字体粗细
},
children: [
{
name: '3D Effect Generation',
itemStyle: {
color: '#fef0cb' // 海洋绿
},
children: [
{
name: 'Single Reference',
value: 1,
itemStyle: {
color: '#fdf0cb' // 草地绿
}
},
{
name: 'Three View Reference',
value: 1,
itemStyle: {
color: '#fadb9f' // 中等海洋绿
}
}
]
},
{
name: 'Human Attribute Editing',
itemStyle: {
color: '#e9c692' // 保持不变(假设这是绿色或接近绿色的颜色)
},
children: [
{
name: 'Age Transformation',
value: 1,
itemStyle: {
color: '#e9c692' // 森林绿
}
},
{
name: 'Clothes Transformation',
value: 1,
itemStyle: {
color: '#eac898F' // 暗橄榄绿
}
},
{
name: 'Hairstyle Transformation',
value: 1,
itemStyle: {
color: '#eab37f' // 中等海洋绿
}
},
{
name: 'Pose Transformation',
value: 1,
itemStyle: {
color: '#efae70' // 海洋绿
}
},
{
name: 'Sex Transformation',
value: 1,
itemStyle: {
color: '#f0ad5b' // 草地绿
}
},
{
name: 'Tattoo Generation',
value: 1,
itemStyle: {
color: '#eda145' // 中等海洋绿
}
},
{
name: 'Body Painting',
value: 1,
itemStyle: {
color: '#e88c07' // 海洋绿
}
}
]
},
{
name: 'Image Blending',
itemStyle: {
color: '#f0ad5b' // 中等海洋绿
},
children: [
{
name: 'Artist Collage',
value: 1,
itemStyle: {
color: '#e06440' // 暗橄榄绿
}
},
{
name: 'Double Exposure',
value: 1,
itemStyle: {
color: '#de5637' // 浅绿
}
}
]
},
{
name: 'Image Transfer',
itemStyle: {
color: '#e88c07' // 暗橄榄绿
},
children: [
{
name: 'Digital Makeup',
value: 1,
itemStyle: {
color: '#d95504' // 中等海洋绿
}
},
{
name: 'ID Transfer',
value: 1,
itemStyle: {
color: '#da4934' // 森林绿
}
},
{
name: 'Light Transfer',
value: 1,
itemStyle: {
color: '#d83f08' // 草地绿
}
},
{
name: 'Posture Transfer',
value: 1,
itemStyle: {
color: '#ab4121' // 海洋绿
}
},
{
name: 'Style Transfer',
value: 1,
itemStyle: {
color: '#a43e2e' // 浅绿
}
}
]
},
{
name: 'Text Editing',
itemStyle: {
color: '#dd6606' // 中等海洋绿
},
children: [
{
name: 'Text Insertion',
value: 1,
itemStyle: {
color: '#983c30' // 海洋绿
}
},
{
name: 'Text Modification',
value: 1,
itemStyle: {
color: '#883938' // 浅绿
}
},
{
name: 'Text Removal',
value: 1,
itemStyle: {
color: '#673019' // 森林绿
}
},
{
name: 'Text Style Editing',
value: 1,
itemStyle: {
color: '#642508' // 草地绿
}
}
]
},
{
name: 'Panorama Generation',
value: 1,
itemStyle: {
color: '#c55530' // 森林绿
}
},
{
name: 'Special Effect Adding',
value: 1,
itemStyle: {
color: '#aa4221' // 浅绿
}
}
]
},
{
name: 'Text to Multi-image',
itemStyle: {
color: '#ca0018'
},
label: {
// 添加 label 属性以更改文本样式
show: true,
color: '#FFFFFF', // 文本颜色(例如白色)
fontSize: 12, // 字体大小(根据需求调整)
fontWeight: 'bold' // 可选:字体粗细
},
children: [
{
name: 'Animal Growth Process Generation',
value: 1,
itemStyle: {
color: '#883938'
}
},
{
name: 'Plant Growth Process Generation',
value: 1,
itemStyle: {
color: '#983c30'
}
},
{
name: 'Concept Visualization',
value: 1,
itemStyle: {
color: '#a94132'
}
},
{
name: 'Couple Icon Generation',
value: 1,
itemStyle: {
color: '#d2472b'
}
},
{
name: 'Drawing Process Generation',
value: 1,
itemStyle: {
color: '#d83f08'
}
},
{
name: 'Dynamic Character Design',
itemStyle: {
color: '#d31e25'
},
children: [
{
name: 'Expression Design',
value: 1,
itemStyle: {
color: '#8e0e39'
}
},
{
name: 'Pose Design',
value: 1,
itemStyle: {
color: '#8b2c37'
}
}
]
},
{
name: 'Historical Narrative Generation',
value: 1,
itemStyle: {
color: '#ca0018'
}
},
{
name: 'Movie Shots Generation',
value: 1,
itemStyle: {
color: '#cd002c'
}
},
{
name: 'Childrens Book Generation',
value: 1,
itemStyle: {
color: '#bf3e61'
}
},
{
name: 'Physical Laws Illustration',
value: 1,
itemStyle: {
color: '#d83759'
}
},
{
name: 'Style Group Generation',
itemStyle: {
color: '#d83661'
},
children: [
{
name: 'Abstract',
value: 1,
itemStyle: {
color: '#bf3e61'
}
},
{
name: 'Anime',
value: 1,
itemStyle: {
color: '#d8365f'
}
},
{
name: 'Creative',
value: 1,
itemStyle: {
color: '#de5266'
}
},
{
name: 'Cthulhu',
value: 1,
itemStyle: {
color: '#e16972'
}
},
{
name: 'Cyberpunk',
value: 1,
itemStyle: {
color: '#e37981'
}
},
{
name: 'Comic',
value: 1,
itemStyle: {
color: '#e78d97'
}
},
{
name: 'Oil Painting',
value: 1,
itemStyle: {
color: '#e78d97'
}
},
{
name: 'Pixel Art',
value: 1,
itemStyle: {
color: '#eda0aa'
}
},
{
name: 'Sketch',
value: 1,
itemStyle: {
color: '#f0b1ad'
}
},
{
name: 'Woodcut',
value: 1,
itemStyle: {
color: '#dec9cb'
}
}
]
}
]
},
{
name: 'Text to \n Image',
itemStyle: {
color: '#78338a'
},
label: {
// 添加 label 属性以更改文本样式
show: true,
color: '#FFFFFF', // 文本颜色(例如白色)
fontSize: 12, // 字体大小(根据需求调整)
fontWeight: 'bold' // 可选:字体粗细
},
children: [
{
name: 'Poster Generation',
value: 1,
itemStyle: {
color: '#b6376d'
}
},
{
name: 'Architectural Style Generation',
value: 1,
itemStyle: {
color: '#90435b'
}
},
{
name: 'Game UI Generation',
value: 1,
itemStyle: {
color: '#814a78'
}
},
{
name: 'Business Card Generation',
value: 1,
itemStyle: {
color: '#78497d'
}
},
{
name: 'Information Chart Generation',
value: 1,
itemStyle: {
color: '#67418b'
}
},
{
name: 'Interior Design Generation',
value: 1,
itemStyle: {
color: '#5b2e88'
}
},
{
name: 'Landmark Building Generation',
value: 1,
itemStyle: {
color: '#562080'
}
},
{
name: 'LOGO Generation',
value: 1,
itemStyle: {
color: '#4c4394'
}
},
{
name: 'Painting Generation',
value: 1,
itemStyle: {
color: '#4a4494'
}
},
{
name: 'Sculpture Generation',
value: 1,
itemStyle: {
color: '#464aa1'
}
},
{
name: 'Ticket Generation',
value: 1,
itemStyle: {
color: '#3b55a1'
}
}
]
},
{
name: '(Multi-)image to \n Multi-image',
itemStyle: {
color: '#0c77b0'
},
label: {
// 添加 label 属性以更改文本样式
show: true,
color: '#FFFFFF', // 文本颜色(例如白色)
fontSize: 12, // 字体大小(根据需求调整)
fontWeight: 'bold' // 可选:字体粗细
},
children: [
{
name: 'Animal Growth Process Generation',
value: 1,
itemStyle: {
color: '#465fa6'
}
},
{
name: 'Plant Growth Process Generation',
value: 1,
itemStyle: {
color: '#1f4794'
}
},
{
name: 'Real and Anime Interaction',
value: 3,
itemStyle: {
color: '#234480'
},
children: [
{
name: 'Mixed Portrait',
value: 1,
itemStyle: {
color: '#3c9cd3'
}
},
{
name: 'Anime Background',
value: 1,
itemStyle: {
color: '#85bfe7'
}
},
{
name: 'Anime Charcter',
value: 1,
itemStyle: {
color: '#161440'
}
}
]
},
{
name: 'Childrens Book Generation',
itemStyle: {
color: '#26416c'
},
children: [
{
name: 'Role Definition',
value: 1,
itemStyle: {
color: '#5078b8'
}
},
{
name: 'Scenario Definition',
value: 1,
itemStyle: {
color: '#26416c'
}
}
]
},
{
name: 'Creativity Transfer',
value: 1,
itemStyle: {
color: '#273665'
}
},
{
name: 'Layer Decomposition',
value: 1,
itemStyle: {
color: '#223162'
}
},
{
name: 'Lighting Effect Simulation',
value: 1,
itemStyle: {
color: '#192953'
}
},
{
name: 'Movie Shots Generation',
itemStyle: {
color: '#111d45'
},
children: [
{
name: 'Role Definition',
value: 1,
itemStyle: {
color: '#7fcdcc'
}
},
{
name: 'Scenario Definition',
value: 1,
itemStyle: {
color: '#b8e1e3'
}
}
]
},
{
name: 'Appearance Variants',
value: 1,
itemStyle: {
color: '#161440'
}
},
{
name: 'Interior Decoration Variants',
value: 1,
itemStyle: {
color: '#192953'
}
},
{
name: 'Multi View Transformation',
value: 1,
itemStyle: {
color: '#26416c'
}
},
{
name: 'Paintings Undo',
itemStyle: {
color: '#0c77b0'
},
children: [
{
name: 'From Finished Work',
value: 1,
itemStyle: {
color: '#9cd8d8'
}
},
{
name: 'From Semi-Finished Work',
value: 1,
itemStyle: {
color: '#bce3e3'
}
}
]
},
{
name: 'Product Usage Scenario',
value: 1,
itemStyle: {
color: '#3c9cd3'
}
},
{
name: 'Same Pose Generation',
value: 1,