forked from cheng-tan/vowpalwabbit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
172 lines (164 loc) · 5.88 KB
/
about.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
---
layout: default
body_class: about
---
<div class="content about_container">
<div class="hero_container">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col col-lg-10">
<h2>
Real problems and uniquely framed solutions in a real world environment.
</h2>
<p>
Vowpal Wabbit is an open, fast, and efficient online learning system that empowers you to explore, test, and research solutions for a real world impact. Through online learning and community collaboration, you can apply real data sets for meaningful results.
</p>
</div>
</div>
</div>
</div>
{% assign values=site.core_values | sort: 'order' %}
<div class="values_container">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-sm col-lg-8">
<h2>
Our core values
</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Consectetur adipiscing elit ut aliquam purus sit amet luctus venenatis.
</p>
</div>
</div>
<div class="row values">
{% for value in values %}
<div class="col-sm col-lg-3">
<div class="value text-center">
<img src={{value.icon}} />
<h3 class="title">
{{value.title}}
</h3>
<p>
{{value.description}}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="contributions_container">
<div class="container">
<div class="row">
<div class="col col-lg-6">
<div class="description">
<h2>
Contributions are valued the same way
</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit amet imperdiet felis. Vestibulum lorem justo, placerat ut placerat ut, pharetra eget lorem. Sed eu nisl vitae lacus molestie eleifend at accumsan ligula.
</p>
</div>
</div>
<div class="col col-lg-6">
<div class="contributions_img">
<img src="assets/images/about/contributions.svg" />
</div>
</div>
</div>
</div>
</div>
<div class="redefine_problems_container">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col col-lg-8">
<h2>
Problems can be redefined with novel solutions
</h2>
<p>
Vowpal Wabbit is structured around the principle of reducing problems to known solutions. When you can structure your problem as a class of problem that has been solved before then you can leverage existing technology. This is how you think about using VW to solve your problems, but it is also how VW works internally. Each reduction reduces to something that has been solved before and in this way we can reuse efficient algorithms that have stood the test of time.
</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm col-lg-8">
<div class="redefine_problems_rabbit">
<img src="assets/images/about/redefine_problems_rabbit.svg" />
</div>
</div>
</div>
</div>
<div class="footer">
</div>
</div>
<div class="real_world_problems_container">
<div class="container">
<div class="row">
<div class="col col-lg-6">
<div class="real_world_problems_img">
<img src="assets/images/about/real_world_problems.svg" />
</div>
</div>
<div class="col col-lg-6">
<div class="description">
<h2>
A system that works in the real world
</h2>
<p>
With a flexible input format, feature hashing, sample efficient algorithms and collection of reductions VW is able to solve many real world problems.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="vw_users_container">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col col-lg-8">
<h2>
Who’s using VW
</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec sit amet imperdiet felis. Vestibulum lorem justo, placerat ut placerat ut, pharetra eget lorem. Sed eu nisl vitae lacus molestie eleifend at accumsan ligula.
</p>
</div>
</div>
{% assign users = site.users | sort: 'order' %}
<div class="row">
{% for user in users %}
<div class="col">
<div class="user">
<img src={{user.image}} />
<h3>
{{ user.title }}
</h3>
<p>
{{ user.description }}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="contributors">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-sm col-lg-8">
<h2>
Contributors on GitHub
</h2>
<p>
As an open technology hosted on GitHub, contributors to Vowpal Wabbit code and research sit all over the world.
</p>
<div class="contributor_link">
<a href="https://github.com/VowpalWabbit/vowpal_wabbit/graphs/contributors" target="_blank">
See who's contributing
</a>
</div>
</div>
</div>
</div>
</div>
</div>