-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
598 lines (584 loc) · 27.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/style/style.css" />
<!-- Google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<!-- Primary logo -->
<link
rel="shortcut icon"
href="./assets/img/cropped-logo_thumbnail.png"
type="image/x-icon"
/>
<!-- Primary Meta Tags -->
<title>CodeCarbon.io</title>
<meta name="title" content="CodeCarbon.io" />
<meta
name="description"
content="CodeCarbon is a lightweight software package that seamlessly integrates into your Python codebase. It estimates the amount of carbon dioxide (CO2) produced by the cloud or personal computing resources used to execute the code."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://codecarbon.io/" />
<meta property="og:title" content="CodeCarbon.io" />
<meta
property="og:description"
content="CodeCarbon is a lightweight software package that seamlessly integrates into your Python codebase. It estimates the amount of carbon dioxide (CO2) produced by the cloud or personal computing resources used to execute the code."
/>
<meta
property="og:image"
content="https://mlco2.github.io/codecarbon-static-website/assets/img/logo.jpg"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://codecarbon.io/" />
<meta property="twitter:title" content="CodeCarbon.io" />
<meta
property="twitter:description"
content="CodeCarbon is a lightweight software package that seamlessly integrates into your Python codebase. It estimates the amount of carbon dioxide (CO2) produced by the cloud or personal computing resources used to execute the code."
/>
<meta
property="twitter:image"
content="https://mlco2.github.io/codecarbon-static-website/assets/img/logo.jpg"
/>
<script src="./assets/script/index.js" type="module"></script>
</head>
<body>
<header class="header">
<div class="container">
<div class="header_logo">
<img
class="header_logo_big"
src="./assets/img/code-carbon-logo-08-01.svg"
alt=""
/>
<img
class="header_logo_little"
src="./assets/img/code-carbon-logo-08-black-01.svg"
alt=""
/>
</div>
<nav class="header_nav">
<ul class="header_nav_ul">
<li class="header_nav_ul_li in-burger">
<a href="#about"> ABOUT </a>
</li>
<li class="header_nav_ul_li in-burger">
<a href="#howitwork"> HOW IT WORKS </a>
</li>
<li class="header_nav_ul_li in-burger">
<a href="#cta">CALL FOR ACTION</a>
</li>
<li class="header_nav_ul_li in-burger">
<a href="#team"> TEAM </a>
</li>
<li class="header_nav_ul_li">
<a
class="header_nav_ul_li_signup"
rel="noopener"
href="https://github.com/mlco2/codecarbon/issues"
>CONTACT US</a
>
</li>
<li class="header_nav_ul_li">
<label for="burger" class="header_nav_ul_li_burger">
<img src="./assets/img/Hamburger_icon.svg" alt="" />
</label>
<input
type="checkbox"
name="burger_check"
id="burger"
checked="false"
/>
</li>
</ul>
</nav>
</div>
</header>
<div id="isSticky"></div>
<main>
<section class="about" id="about">
<div class="about_track">
<h1 class="about_track_h1">
Track and reduce CO2 emissions from your computing
</h1>
<p class="about_track_p">
AI can benefit society in many ways but, given the
energy needed to support the computing behind AI, these
benefits can come at a high environmental price.
</p>
<p class="about_track_p">
CodeCarbon is a lightweight software package that
seamlessly integrates into your Python codebase. It
estimates the amount of carbon dioxide (CO2) produced by
the cloud or personal computing resources used to
execute the code.
</p>
<p class="about_track_p">
It then shows developers how they can lessen emissions
by optimizing their code or by hosting their cloud
infrastructure in geographical regions that use
renewable energy sources
</p>
</div>
<div class="about_whatitis">
<div class="container">
<h2 class="about_whatitis_h2">What it is</h2>
<ul class="about_whatitis_ul">
<li class="about_whatitis_ul_li">
<img
src="./assets/img/icon1.png"
class="about_whatitis_ul_li_img"
alt=""
/>
<p class="about_whatitis_ul_li_p">
A lightweight and easy-to-use Python pip package
</p>
</li>
<li class="about_whatitis_ul_li">
<img
src="./assets/img/icon2.png"
class="about_whatitis_ul_li_img"
alt=""
/>
<p class="about_whatitis_ul_li_p">
Emissions tracked based on your power
consumption & location-dependent carbon
intensity
</p>
</li>
<li class="about_whatitis_ul_li">
<img
src="./assets/img/icon3.png"
class="about_whatitis_ul_li_img"
alt=""
/>
<p class="about_whatitis_ul_li_p">
Effective visualization of outputs in an
integrated dashboard
</p>
</li>
<li class="about_whatitis_ul_li">
<img
src="./assets/img/icon4.png"
class="about_whatitis_ul_li_img"
alt=""
/>
<p class="about_whatitis_ul_li_p">
Open-source, free, and driven by the community
</p>
</li>
</ul>
</div>
</div>
<div class="about_carrousel carrousel">
<img
class="about_carrousel_img"
src="./assets/img/card1.jpg"
alt=""
loading="lazy"
/>
<img
class="about_carrousel_img"
src="./assets/img/card2.jpg"
alt=""
loading="lazy"
/>
<img
class="about_carrousel_img"
src="./assets/img/card3.jpg"
alt=""
loading="lazy"
/>
<img
class="about_carrousel_img"
src="./assets/img/card5.jpg"
alt=""
loading="lazy"
/>
<img
class="about_carrousel_img"
src="./assets/img/card6.jpg"
alt=""
loading="lazy"
/>
<img
class="about_carrousel_img"
src="./assets/img/card7.jpg"
alt=""
loading="lazy"
/>
</div>
<div class="about_video">
<video
poster="./assets/img/996055932.jpg"
class="about_video_detail"
controls
src="https://player.vimeo.com/external/482564729.hd.mp4?s=70d4f409870b0af74fa5e61d0d17bfe34a4d4282&profile_id=175"
></video>
</div>
<div class="about_callingout">
<div class="container">
<h2 class="about_callingout_title">
Calling out : Read more on Medium
</h2>
<div class="about_callingout_container">
<div class="about_callingout_container_img"></div>
<div class="about_callingout_container_wrapper">
<h3 class="about_callingout_container_wrapper_h3">
COMPUTING EMITS CO2. WE STARTED MEASURING HOW
MUCH.
</h3>
<p class="about_callingout_container_wrapper_p">
A single datacenter can consume large amounts of
energy to run computing code. An innovative new
tracking tool is designed to measure the climate
impact of artificial intelligence.
</p>
<p class="about_callingout_container_wrapper_p">
Kadan Lottick, Silvia Susai, Sorelle Friedler,
and Jonathan Wilson. Energy Usage Reports:
Environmental awareness as part of algorithmic
accountability. NeurIPS Workshop on Tackling
Climate Change with Machine Learning, 2019.
<a
rel="noopener"
href="https://arxiv.org/abs/1911.08354"
>https://arxiv.org/abs/1911.08354</a
>
</p>
<a
class="about_callingout_container_wrapper_a"
href="https://medium.com/bcggamma/ai-computing-emits-co%E2%82%82-we-started-measuring-how-much-807dec8c35e3"
rel="noopener"
>➜</a
>
</div>
</div>
</div>
</div>
</section>
<section class="howitwork" id="howitwork">
<div class="howitwork_howto">
<h2 class="howitwork_howto_h2">How it works</h2>
<ul class="howitwork_howto_ul">
<li class="howitwork_howto_ul_li">
<a
href="https://github.com/mlco2/code-carbon"
target="_blank"
rel="noopener"
>
<img
class="howitwork_howto_ul_li_img not-hovered"
src="./assets/img/hiw_covers_V3-01.svg"
alt=""
/>
<img
class="howitwork_howto_ul_li_img hovered"
src="./assets/img/hiw_covers_V3-06.svg"
alt=""
/>
<p class="howitwork_howto_ul_li_p">
Download the package
</p>
<span class="howitwork_howto_ul_li_a">➜</span>
</a>
</li>
<li class="howitwork_howto_ul_li">
<a
href="https://mlco2.github.io/codecarbon/"
target="_blank"
rel="noopener"
>
<img
class="howitwork_howto_ul_li_img not-hovered"
src="./assets/img/hiw_covers_V3-02.svg"
alt=""
/>
<img
class="howitwork_howto_ul_li_img hovered"
src="./assets/img/hiw_covers_V3-07.svg"
alt=""
/>
<p class="howitwork_howto_ul_li_p">
Read the documentation
</p>
<span class="howitwork_howto_ul_li_a">➜</span>
</a>
</li>
<li class="howitwork_howto_ul_li">
<img
class="howitwork_howto_ul_li_img"
src="./assets/img/hiw_covers_V4-03.svg"
alt=""
/>
<p class="howitwork_howto_ul_li_p">
Embed in your code with just a few lines of code
</p>
</li>
<li class="howitwork_howto_ul_li">
<img
class="howitwork_howto_ul_li_img"
src="./assets/img/hiw_covers_V4-04.svg"
alt=""
/>
<p class="howitwork_howto_ul_li_p">
Run your code and let CodeCarbon track your
emission
</p>
</li>
<li class="howitwork_howto_ul_li">
<img
class="howitwork_howto_ul_li_img"
src="./assets/img/hiw_covers_V4-05.svg"
alt=""
/>
<p class="howitwork_howto_ul_li_p">
Visualize the output in clear dashboards
</p>
</li>
</ul>
</div>
<div class="howitwork_dashboard">
<hgroup class="howitwork_dashboard_hgroup">
<h2 class="howitwork_dashboard_hgroup_h2">Dashboard</h2>
<h3 class="howitwork_dashboard_hgroup_h3">
Visualizing the outputs & insights
</h3>
</hgroup>
<div class="howitwork_dashboard_separator"></div>
<div class="howitwork_dashboard_box">
<img
class="howitwork_dashboard_box_img"
src="./assets/img/dashboard-capture/device_benchmark.png"
alt=""
/>
<p>
Emissions for individual code repositories based on
infrastructure and power consumption.
</p>
</div>
<div class="howitwork_dashboard_box">
<img
class="howitwork_dashboard_box_img"
src="./assets/img/dashboard-capture/device_global.png"
alt=""
/>
<p>
Exemplary equivalents to put emissions in context.
</p>
</div>
<div class="howitwork_dashboard_box">
<img
class="howitwork_dashboard_box_img"
src="./assets/img/dashboard-capture/device_emission2.png"
alt=""
/>
<p>
Recommends compute regions with lower carbon
intensity for major cloud providers – AWS, Azure,
and GCP.
</p>
</div>
</div>
</section>
<section class="cta" id="cta">
<hgroup class="cta_hgroup">
<h2 class="cta_hgroup_h2">Call for action</h2>
<h3 class="cta_hgroup_h3">
Use CodeCarbon, Contribute to its development, and
spread the word !
</h3>
</hgroup>
<div class="cta_box">
<img
class="cta_box_img"
src="./assets/img/fb-cover1-1400x788.jpg"
alt=""
/>
<div class="cta_box_fill"></div>
<p class="cta_box_p">
We look forward to developers and researchers using the
tool and sharing their feedback
</p>
</div>
<div class="cta_box">
<img
class="cta_box_img"
src="./assets/img/fb-cover2-1400x788.jpg"
alt=""
/>
<div class="cta_box_fill"></div>
<p class="cta_box_p">
We look forward to developers contributing to CodeCarbon
development
</p>
</div>
<div class="cta_box">
<img
class="cta_box_img"
src="./assets/img/fb-cover3-1400x788.jpg"
alt=""
/>
<div class="cta_box_fill"></div>
<p class="cta_box_p">
We also encourage you to spread the word about
CodeCarbon among your colleagues and peers in
conferences, on social media platforms, and developer
forums
</p>
</div>
</section>
<section class="actual_contrib ">
<h2>CodeCarbon is maintained by these contributor</h2>
<p class="team_p">
Here is the team that built CodeCarbon. Join us and help
improve CodeCarbon !
</p>
<ul class="actual_contrib_ul"></ul>
</section>
<section class="team" id="team">
<h2 class="team_h2">
CodeCarbon was developed by four partner organizations and
is made freely available to the community.
</h2>
<ul class="team_ul">
<li>
<ul class="team_ul_innerUl">
<li>
<img
src="./assets/img/partner-logos_V1-09.svg"
alt=""
/>
</li>
<li>
<img src="./assets/img/sascha.jpg" alt="" />
<h3>Sasha Luccioni</h3>
<p>Postdoctoral researcher</p>
<p>AI for Humanity</p>
</li>
<li>
<img src="./assets/img/victor.jpg" alt="" />
<h3>Victor Schmidt</h3>
<p>PhD Student</p>
</li>
</ul>
</li>
<li>
<ul class="team_ul_innerUl">
<li>
<img
src="./assets/img/partner-logos_V1-10.svg"
alt=""
/>
</li>
<li>
<img src="./assets/img/tristan.jpg" alt="" />
<h3>Tristan Mallet</h3>
<p>Partner,</p>
<p>Data Science</p>
</li>
<li>
<img src="./assets/img/kamal.jpg" alt="" />
<h3>Kamal Goyal</h3>
<p>Senior AI</p>
<p>Software Engineer</p>
</li>
<li>
<img src="./assets/img/Aditiya.jpg" alt="" />
<h3>Aditiya Joshi</h3>
<p>AI Software Engineer</p>
</li>
</ul>
</li>
<li>
<ul class="team_ul_innerUl">
<li>
<img
src="./assets/img/partner-logos_V1-11.svg"
alt=""
/>
</li>
<li>
<img
src="./assets/img/sorelle_headshot.jpg"
alt=""
/>
<h3>Sorelle Friedler</h3>
<p>Associate Professor,</p>
<p>Computer Science</p>
</li>
<li>
<img src="./assets/img/jonathan.jpg" alt="" />
<h3>Jonathan Wilson</h3>
<p>Associate Professor,</p>
<p>Environmental Studies</p>
</li>
<li>
<img
src="./assets/img/wang-edited.jpg"
alt=""
/>
<h3>Ziyao Wang</h3>
<p>Haverford class of 2022</p>
</li>
</ul>
</li>
<li>
<ul class="team_ul_innerUl">
<li>
<img
src="./assets/img/partner-logos_V1-12.svg"
alt=""
/>
</li>
<li>
<img src="./assets/img/Niko.png" alt="" />
<h3>Nicolas Laskaris</h3>
<p>Data Scientist</p>
</li>
<li>
<img src="./assets/img/Boris.jpg" alt="" />
<h3>Boris Fled</h3>
<p>Senior Software Engineer</p>
</li>
<li>
<img src="./assets/img/Doug.jpg" alt="" />
<h3>Douglas Bank</h3>
<p>Head of Research</p>
</li>
</ul>
</li>
</ul>
</section>
<section class="clever">
<h2 class="clever_title">
Powered by
<a
class="clever_title_link"
href="https://www.clever-cloud.com/"
rel="noopener"
>
CLEVER CLOUD
</a>
</h2>
<p class="clever_text">
Clever Cloud is an IT Automation platform. They manage all
the ops work while you focus on your business value.<br/>
Clever Cloud is supporting the project by providing us free hosting for the Code Carbon API.
</p>
</section>
</main>
<footer class="footer">
<p class="footer_p">© 2021 Code Carbon</p>
</footer>
</body>
</html>