-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (82 loc) · 3.31 KB
/
index.html
File metadata and controls
95 lines (82 loc) · 3.31 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
<html>
<head>
<title>Dowsing</title>
</head>
<body>
<header>
<h1></h1>
<h2>Dowsing: A Task-Driven Approach for Multiple-View Visualizations Dynamic Recommendation</h2>
<hr>
</header>
<div>
<img id="main_pic" width="100%" src="fig1.jpg">
</div>
<p>
Most users are able to obtain their explorable ideas for a data table but cannot clearly
declare their analysis tasks as visual queries. Visualization recommendation methods can reduce the demand for
data and design knowledge of visual analysis by extracting or referring information in existing high-quality
views.
</p>
<p>
However, most solutions need users to articulate a precise constraint when they try to steer
recommendations with their intentions and insights. To address this limitation, we allowed participants to
create and alter multiple views for data exploration in a Workshop to further examine the analytical
requirements entailed by users constantly generating charts. Our deep learning model was built using
triangulation from Workshop to dynamically perceive the users’ analytical tasks in the editing sequence on data
and views.
</p>
<p>We provided Dowsing, a mixed-initiative recommendation system for multiple-view visualizations. It
can utilize and expose the user’s potential analysis tasks to recommend visualizations during the explorative
building phase. Meanwhile, Dowsing allows users to confirm and edit their intentions as they explore further to
quickly adapt to changing the analysis requirements. We evaluated our deep learning model through quantitative
experiments and verified the effectiveness of Dowsing by user study using vega-datasets.
</p>
<img width="100%" src="workflow.jpg">
<p>The workflow of Dowsing is shown as above. The system can be devided into two main parts: the perception and the
recommendation generation. The preception uses LSTM model, together with statistical methods, to predict user
intent. The user intent, represented as a set of constraints, is mixed with data facts and generic visualization
rules and used
together with the ASP solver in recommendation generation, which in turn yields a series of recommended views.
</p>
<p>You can watch our overview video below.</p>
<video style="width: 100%;" controls
src="https://dowsing-1256314557.cos.ap-chengdu.myqcloud.com/%231125_Dowsing_Demo%20Video.mp4"></video>
<a href="http://dowsing-machine.com">Demo</a>
<a href="https://github.com/Dowsing-Machine/Dowsing">Github</a>
</body>
<style>
header {
text-align: center;
/* position: sticky; */
/* top: 0; */
background-color: white;
}
header h1 {
margin-bottom: 0;
}
header h2 {
margin-top: 0.2em;
margin-bottom: 0.2em;
}
#main_pic {
transition-property: all;
transition-duration: 150ms;
}
#main_pic:hover {
filter: brightness(.5);
}
#main_pic:hover::before {
content: "aaa";
display: block;
}
img,
video {
margin: 10px 0;
}
body {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
</style>
</html>