-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
657 lines (641 loc) · 20.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-167835952-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-167835952-1');
</script>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title></title>
<meta property="og:title" content="SmartNoise" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content="An open source platform for differential privacy in machine learning and analytics"
/>
<meta property="og:image" content="images/smartnoise-meta-image.jpg" />
<meta
property="og:url"
content="https://smartnoise.org"
/>
<link
rel="shortcut icon"
type="images/x-icon"
href="images/smartnoise-favicon.ico"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container pt-3 pb-3">
<button
class="navbar-toggler navbar-light"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon icon-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto text-center">
<li class="nav-item pr-3">
<a class="nav-link" href="#differential-privacy"
>Differential Privacy</a
>
</li>
<li class="nav-item pr-3">
<a class="nav-link" href="#how-it-works">About</a>
</li>
<li class="nav-item pr-3">
<a class="nav-link" href="#contribute">Contribute</a>
</li>
<li>
<a
class="navbar-btn"
href="https://github.com/opendp"
>GitHub</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navigation -->
<!-- Masthead -->
<div class="container-fluid masthead">
<div class="container">
<div
class="use-data row align-items-center pb-5 justify-content-md-center"
>
<div class="col-sm-12 col-md-8 col-lg-6 order-lg-1 text-center px-5">
<img class="img-fluid" src="images/main-graphic.png" alt="" />
</div>
<div class="col-sm-12 col-lg-6 order-lg-0">
<h1 class="text-center text-md-left">
Use Data.<br />Preserve Privacy.
</h1>
<h3 class="text-center text-md-left white pb-3">
A differential privacy toolkit for analytics and machine learning
</h3>
<p class="text-center text-md-left pb-4 alpha light">
This toolkit uses state-of-the-art differential privacy (DP) techniques
to inject noise into data, to prevent disclosure of sensitive information
and manage exposure risk.
</p>
<div class="row">
<div class="col-sm-12 text-center text-md-left">
<a
class="masthead-btn text-center"
href="https://github.com/opendp/smartnoise-sdk"
>Get Started</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Masthead -->
<!-- Masthead Cards -->
<div class="container-fluid header-cards header-card-container" id="about">
<div class="container">
<div class="row text-center justify-content-md-center pb-5">
<div class="col-12 col-lg-4 pb-4">
<div class="card h-100 header-card px-5 pb-3">
<div class="card-body">
<img
class="img-fluid mx-auto icons pb-4 icon-dark"
src="images/icon-01-purple.png"
alt=""
/>
<img
class="img-fluid mx-auto icons pb-4 icon-light"
src="images/icon-01-white.png"
alt=""
/>
<p class="card-text medium">
Based on the latest innovation in differential privacy
research and best practices from real-world applications
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-4 pb-4">
<div class="card h-100 header-card px-5 pb-3">
<div class="card-body">
<img
class="img-fluid mx-auto icons pb-4 icon-dark"
src="images/icon-02-purple.png"
alt=""
/>
<img
class="img-fluid mx-auto icons pb-4 icon-light"
src="images/icon-02-white.png"
alt=""
/>
<p class="card-text medium">
Designed for both statistical analysis and machine learning
applications
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-4 pb-4">
<div class="card h-100 header-card px-5 pb-3">
<div class="card-body">
<img
class="img-fluid mx-auto icons pb-4 icon-dark"
src="images/icon-03-purple.png"
alt=""
/>
<img
class="img-fluid mx-auto icons pb-4 icon-light"
src="images/icon-03-white.png"
alt=""
/>
<p class="card-text medium">
Open source framework to create and test new algorithms and
techniques.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Masthead Cards -->
<!-- Section 1 -->
<div class="container-fluid section-1 mb-4" id="differential-privacy">
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-12 text-center mb-4">
<h2 class="pb-4 top">Why this toolkit?</h2>
</div>
<div
class="col-md-6 col-lg-6 my-auto text-center text-md-left order-2 order-md-1"
>
<h3 class="pb-3 bold">
Based on cutting-edge Differential Privacy algorithms
</h3>
<p class="medium">
Data scientists, analysts, scientific researchers and policy
makers often need to analyze data that contains sensitive personal
information that must remain private.
</p>
<p class="medium">
Commonly-used privacy techniques are limiting and can result in
leaks in sensitive information.
</p>
<p class="medium">
Differential Privacy is a technique that offers strong privacy
assurances, preventing data leaks and re-identification of
individuals in a dataset.
</p>
</div>
<div class="col-md-6 col-lg-4 pb-5 pb-md-0 order-md-2">
<img
class="img-fluid mx-auto white-noise-icon"
src="images/graphic-01.png"
alt=""
/>
</div>
<div class="col-sm-12 col-lg-4 text-center pt-3 pb-5 order-3">
<a
class="purple-btn mb-5"
href="https://www.microsoft.com/en-us/research/publication/platform-for-differential-privacy"
>Learn More</a
>
<a
href="http://privacytools.seas.harvard.edu/files/privacytools/files/pedagogical-document-dp_0.pdf"
><p class="text-link">Theory Behind Differential Privacy</p></a
>
</div>
</div>
</div>
</div>
<!-- Section 1 -->
<!-- Section 2 -->
<div class="container-fluid section-2 gradient-2 pb-4">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-md-5 pb-5">
<div class="dark-card h-100 px-5 py-4">
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-white"
src="images/icon-6.png"
alt=""
/>
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-purple"
src="images/icon-6-dark.png"
alt=""
/>
<h5 class="text-center text-lg-left pb-2 card-text">
Flexible native runtime
</h5>
<p class="text-center text-lg-left card-bullet">
A native runtime library to generate and validate differential
privacy results that can be used with C, C++, Python, R, and
other languages.
</p>
</div>
</div>
<div class="col-12 col-md-5 pb-5">
<div class="dark-card h-100 px-5 py-4">
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-white"
src="images/icon-7.png"
alt=""
/>
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-purple"
src="images/icon-7-dark.png"
alt=""
/>
<h5 class="text-center text-lg-left pb-2 card-text">
Built-in Connectivity to Data Sources
</h5>
<p class="text-center text-lg-left card-text card-bullet">
Access data from Data Lakes, SQL Server, Postgres, Apache Spark,
Apache Presto, and CSV files.
</p>
</div>
</div>
<div class="w-100"></div>
<div class="col-12 col-md-5 pb-5">
<div class="dark-card h-100 px-5 py-4">
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-white"
src="images/icon-8.png"
alt=""
/>
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-purple"
src="images/icon-8-dark.png"
alt=""
/>
<h5 class="text-center text-lg-left pb-2 card-text">
Granular Privacy Risk Controls
</h5>
<p class="text-center text-lg-left card-text card-bullet">
Track privacy risk by managing multiple requests on data. Use
privacy budgets to control the number of queries permitted by
different users.
</p>
</div>
</div>
<div class="col-12 col-md-5 pb-5">
<div class="dark-card h-100 px-5 py-4">
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-white"
src="images/icon-9.png"
alt=""
/>
<img
class="img-fluid mx-auto mx-lg-0 native-runtime-library-icons mb-4 icon-purple"
src="images/icon-9-dark.png"
alt=""
/>
<h5 class="text-center text-lg-left pb-2 card-text">
Privacy Loss Tester
</h5>
<p class="text-center text-lg-left card-text card-bullet">
An evaluator to automatically stress test existing differential
privacy algorithms.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Section 2 -->
<!-- Section 3 -->
<div class="container-fluid section-3 pt-5" id="how-it-works">
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-12 text-center">
<h2 class="pb-3 top pt-5">How It Works</h2>
<p class="medium">
This Toolkit is designed to be a layer between queries and data
systems to protect sensitive data.
</p>
</div>
</div>
<div class="row justify-content-lg-center">
<div class="col-12 col-lg-6 text-center">
<img
class="img-fluid mx-auto mb-4"
src="images/how-it-works-diagram.png"
alt=""
/>
</div>
<div class="col-12 col-lg-6 text-center noise-02">
<img class="img-fluid" src="images/noise-02.png" alt="" />
</div>
<div class="col-12 text-center">
<p class="medium pb-4 pt-3">
When a user queries the data or trains a model, the
system:
</p>
</div>
</div>
<div class="row justify-content-lg-center">
<div class="col-12 col-lg-3 pb-4">
<div class="card h-100 header-card">
<div class="card-body">
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-dark"
src="images/number-01.png"
alt=""
/>
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-light"
src="images/number-01-light.png"
alt=""
/>
<p class="text-center card-text px-3 medium">
Adds statistical noise to the results,
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-3 pb-4">
<div class="card h-100 header-card">
<div class="card-body">
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-dark"
src="images/number-02.png"
alt=""
/>
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-light"
src="images/number-02-light.png"
alt=""
/>
<p class="text-center card-text px-3 medium">
Calculates the privacy risk metric or information budget, used
by the query,
</p>
</div>
</div>
</div>
<div class="col-12 col-lg-3 pb-4">
<div class="card h-100 header-card">
<div class="card-body">
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-dark"
src="images/number-03.png"
alt=""
/>
<img
class="img-fluid mx-auto white-noise-icons mb-3 mt-2 icon-light"
src="images/number-03-light.png"
alt=""
/>
<p class="text-center card-text px-3 medium">
Subtracts from the remaining budget to limit further queries.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Section 3 -->
<!-- Section 4 -->
<div class="container-fluid section-4">
<div class="container">
<div class="row justify-content-lg-center pb-3">
<div class="col-sm-12 col-lg-5 text-center mb-4">
<h2>Applications</h2>
</div>
</div>
<div class="row justify-content-lg-center preserving-privacy-1">
<div class="col-md-6 col-lg-7 order-md-2 pb-5 pb-md-0">
<img
class="img-fluid mx-auto dashboard-desktop"
src="images/dashboard-03.png"
alt=""
/>
<img
class="img-fluid mx-auto dashboard-mobile"
src="images/dashboard-03-mobile.png"
alt=""
/>
</div>
<div class="col-md-6 col-lg-4 offset-lg-1 order-md-1 pr-md-5">
<h4 class="text-center text-lg-left pb-2">
Differential Privacy for Statistical Analysis
</h4>
<li class="img-fluid check-icon pb-3 dark">
In-built support for commonly used mathematical and statistical
operators
</li>
<li class="img-fluid check-icon pb-4 dark">
Use cases span healthcare, sensitive socio-economic data and more
</li>
<div class="text-center text-md-left">
<a
class="masthead-btn text-center"
href="https://github.com/opendp/smartnoise-sdk/tree/main/sql/samples"
>Examples</a
>
</div>
</div>
</div>
<div class="row justify-content-lg-center preserving-privacy-2">
<div class="col-md-6 col-lg-7 pb-5 pb-md-0">
<img
class="img-fluid mx-auto dashboard-desktop"
src="images/dashboard-04.png"
alt=""
/>
<img
class="img-fluid mx-auto dashboard-mobile"
src="images/dashboard-04-mobile.png"
alt=""
/>
</div>
<div class="col-md-6 col-lg-4 pl-md-5">
<h4 class="text-center text-lg-left">
Differential Privacy in Machine Learning
</h4>
<li class="img-fluid check-icon pb-3 dark">
Built-in support for training simple machine learning models like
linear and logistic regression
</li>
<li class="img-fluid check-icon pb-4 dark">
Compatible with open-source training libraries such TensorFlow
Privacy
</li>
<div class="text-center text-md-left">
<a
class="masthead-btn text-center"
href="https://github.com/opendp/smartnoise-sdk/tree/main/synth/samples"
>Examples</a
>
</div>
</div>
</div>
</div>
</div>
<!-- Section 4 -->
<!-- Section 5 -->
<div class="container-fluid gradient-purple section-5" id="getting-started">
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-sm-12 col-lg-4 text-center">
<h1 class="pb-3">Getting Started</h1>
<p class="pb-3">Build and deploy easily with the Differential Privacy toolkit!</p>
<a
class="white-btn"
href="https://github.com/opendp/smartnoise-sdk"
>Install the toolkit</a
>
</div>
</div>
</div>
</div>
<!-- Section 5 -->
<!-- Section 6 -->
<div class="container-fluid section-6" id="contribute">
<div class="container inner-box">
<div class="row justify-content-lg-center pb-5 pt-5">
<div class="col-sm-12 col-lg-6 text-center mb-5">
<h2 class="pb-4">Contribute</h2>
<p class="medium pb-4">
As a community project we encourage you to join the effort
and contribute feedback, algorithms, ideas and more, so we can evolve the toolkit together!
</p>
<a
class="purple-btn mb-2"
href="https://github.com/opendp/smartnoise-sdk/blob/main/contributing.rst"
>Contribute</a
>
</div>
</div>
</div>
</div>
<!-- Section 6 -->
<!-- Section 7 -->
<div class="container-fluid section-7 mb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h2 class="pb-5">Key Contributors</h2>
</div>
<div class="col-7 col-md-2 my-auto text-center logo-1 pb-5">
<img class="img-fluid mx-auto" src="images/logo-01.png" alt="" />
</div>
<div class="col-7 col-md-2 my-auto text-center logo-2 pb-5">
<img class="img-fluid mx-auto" src="images/logo-02.png" alt="" />
</div>
<div class="col-7 col-md-2 my-auto text-center logo-3 pb-5">
<img class="img-fluid mx-auto" src="images/logo-03.png" alt="" />
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 text-center">
<p class="medium">With support from</p>
</div>
<!-- <div class="col-7 col-md-2 my-auto text-center logo-4 pb-5">
<img class="img-fluid mx-auto" src="images/logo-04.png" alt=""/>
</div> -->
<div class="col-7 col-md-2 my-auto text-center logo-5 pb-5">
<img class="img-fluid mx-auto" src="images/logo-05.png" alt="" />
</div>
<div class="col-8 col-md-2 my-auto text-center logo-6 pb-4 pb-md-5">
<img class="img-fluid mx-auto" src="images/logo-06.png" alt="" />
</div>
<div class="col-5 col-md-2 my-auto text-center logo-7 pb-5">
<img
class="img-fluid mx-auto logo-7-icon"
src="images/logo-07.png"
alt=""
/>
</div>
</div>
</div>
</div>
<!-- Section 7 -->
<!-- Footer -->
<div class="container-fluid gradient-footer footer">
<div class="container">
<div class="row pt-lg-5 pb-5">
<div class="col-12 col-lg-4 text-center text-lg-left pt-4 my-auto">
<p class="copyright">
Copyright © 2020 Microsoft. All rights reserved.
</p>
</div>
<div
class="col-12 col-lg-6 d-flex align-items-center justify-content-md-center flex-column flex-md-row"
>
<div class="mr-md-3">
<a class="nav-link" href="https://www.microsoft.com/en-us/research/publication/platform-for-differential-privacy/"
><p class="mb-md-0">About</p></a
>
</div>
<div class="mr-md-3">
<a class="nav-link" href="http://opendp.io/"
><p class="mb-md-0">About Open DP</p></a
>
</div>
<div class="mr-md-3">
<a class="nav-link" href="mailto:[email protected]"
><p class="mb-md-0">Contact Us</p></a
>
</div>
<a
class="footer-btn-transparent text-center"
href="https://github.com/opendp"
>GitHub</a
>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>