forked from manzanillo/word2viz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_DE.html
More file actions
169 lines (169 loc) · 5.55 KB
/
index_DE.html
File metadata and controls
169 lines (169 loc) · 5.55 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
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
<html>
<head>
<title>Wortanalogien entdecken</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="An interactive projection of GloVe word vectors in D3.js."
/>
<meta name="keywords" content="glove,word2vec,analogy,d3js,gender" />
<meta name="author" content="Julia Bazińska, Piotr Migdał" />
<meta property="og:title" content="Explore word analogies" />
<meta property="og:url" content="https://lamyiowce.github.io/word2viz/" />
<meta
property="og:description"
content="An interactive projection of GloVe word vectors in D3.js."
/>
<meta
property="og:image"
content="https://lamyiowce.github.io/word2viz/word2viz_screenshot.png"
/>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp"
crossorigin="anonymous"
/>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"
></script>
<script src="src/utils.js" type="text/javascript"></script>
<script src="src/plot.js" type="text/javascript"></script>
<script src="src/parse_data.js" type="text/javascript"></script>
<link rel="stylesheet" href="src/main.css" />
</head>
<body>
<div style="float: right; width: 40%; padding: 10px" id="menu">
<h1>Wortanalogien entdecken</h1>
<div id="selectDiv">
<h4>Was möchtest du sehen?</h4>
<select id="dataSelect" class="form-control custom"></select>
</div>
<div id="modifyDiv">
<h4>Wörter ändern</h4>
<div
id="errorDiv"
class="alert alert-danger"
style="display: none"
></div>
<div class="form-inline">
<input
name="addWordInput"
id="addWordInput"
type="text"
class="form-control"
placeholder="Wort eingeben..."
/>
<input
name="addButton"
value="Wort hinzufügen"
id="addButton"
type="button"
class="btn btn-default button-custom"
/>
</div>
<div class="form-inline">
<input
name="addPairInput"
id="addPairInput1"
type="text"
class="form-control"
placeholder="Neues Wort eingeben..."
/>
<input
name="addPairInput"
id="addPairInput2"
type="text"
class="form-control"
placeholder="Neues Wort eingeben..."
/>
<input
name="addPairButton"
value="Wortpaar hinzufügen"
id="addPairButton"
type="button"
class="btn btn-default button-custom"
/>
</div>
<br />
<div class="form-inline">
<label for="Xaxis1">X-Achse:</label>
<input
name="Xaxis1"
id="Xaxis1"
type="text"
class="form-control"
placeholder="X axis left"
/>
<input
name="Xaxis0"
id="Xaxis0"
type="text"
class="form-control"
placeholder="X axis right"
/>
</div>
<div class="form-inline">
<label for="Yaxis1">Y-Achse:</label>
<input
name="Yaxis1"
id="Yaxis1"
type="text"
class="form-control"
placeholder="Y axis down"
/>
<input
name="Yaxis0"
id="Yaxis0"
type="text"
class="form-control"
placeholder="Y axis up"
/>
</div>
<input
name="changeAxesButton"
value="Achsenbeschriftungen ändern"
id="changeAxesButton"
type="button"
class="btn btn-default button-custom"
/>
</div>
<br />Interaktive Visualisierung von Wortanalogien in GloVe.
<em>Hovern</em> um hervorzuheben, <em>Doppelklick</em> zum Entfernen.
<em>Ändere die Achsen</em>, indem du angibst auf welche Wortdifferenzen du
Worte projizieren willst. Dieses Projekt nutzt (komprimierte)
vortrainierte Wortvektoren von
<a target="_blank" href="http://nlp.stanford.edu/projects/glove/"
>glove.6B.50d</a
>. Made by Julia Bazińska under the mentorship of Piotr Migdał (2017).
<br />
<a
target="_blank"
href="http://p.migdal.pl/2017/01/06/king-man-woman-queen-why.html"
class="btn btn-primary button-big-margin"
>Erfahre mehr in ihrem Blogpost!</a
>
</div>
<div id="plotDiv" style="width: 720; height: 520">
<h3 id="bePatient">Bitte warten (30MB müssen geladen werden)...</h3>
</div>
<script
id="js-script-tag"
data-language="en"
src="src/main.js"
type="text/javascript"
></script>
</body>
</html>