-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentities.json
84 lines (80 loc) · 1.75 KB
/
entities.json
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
var entities = {"All sessions" : {
"type": [
"paper",
"courses",
"SIG",
"invited talk"
],
"personas": [
"UIST",
"Web",
"Usability",
"Design"
],
"communities":
["Design",
"Health",
"Accessibility"],
"title":
["Course: HCI funding",
"SIG: Digital Art",
"Leveraging the Crowd"]
},
"All submissions" : {
"type": [
"paper",
"courses",
"SIG",
"invited talk"],
"best paper" : [
"True",
"False"],
"title" : [
"Changing requirements to HCI funding: A global perspective",
"Digital Art: Evaluation, Appreciation, Critique (Invited SIG)",
"Human Computation Tasks with Global Constraints",
"Direct Answers for Search Queries in the Long Tail",
"Strategies for Crowdsourcing Social Data Analysis"]
},
"All people": {
"names": ["Juho Kim", "Haoqi Zhang", "Rob Miller", "Michael Bernstein", "Edith Law", "Chuck Bartowski"],
"mod": ["is", "is not"]
}
}
var constraintObjects = {
"room" : {
"room" : [
"A",
"B",
"C",
"D",
"E",
"F",
"11AB",
"12AB",
"13"
],
"size" : [ "large", "medium", "small"],
"mod" :[ "in", "not in", "near", "far"]
},
"time" : {
"time":
[
"11:30 AM",
"1:00 PM",
"2:30 PM"
],
"mod": ["at", "before", "after", "same", "different"]
},
"date" :{
"date": [
"Monday May 5th",
"Tuesday May 6th",
"Wednesday May 7th"
],
"mod": ["on", "before", "after", "same", "different"]
}
}
var constraintComparator = ["should be in session with",
"should not be in session with",
"should not be opposite"];