-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1117 lines (1017 loc) · 44 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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- [if startif]
/*!
* ==============================================================================
Copyright (c) Towards AI, Inc. | All Rights Reserved.
* ==============================================================================
*/
[endif] -->
<head>
<!-- Analytics Sponsors -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script data-cfasync="false" async src="https://www.googletagmanager.com/gtag/js?id=G-9D3HKKFV1Q">
</script>
<script data-cfasync="false">
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9D3HKKFV1Q', { 'anonymize_ip': true });
</script>
<!-- /Analytics Sponsors -->
<!-- Analytics -->
<script data-cfasync="false" async src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js"></script>
<script data-cfasync="false" async src="https://www.googletagmanager.com/gtag/js?id=G-9D3HKKFV1Q"></script>
<script data-cfasync="false">
window.dataLayer = window.dataLayer || [];
function ga(){dataLayer.push(arguments);}
ga('js', new Date());
ga('config', 'G-9D3HKKFV1Q', { 'anonymize_ip': true });
</script>
<!-- /Analytics -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- OG:Graph Protocol -->
<!-- COMMON TAGS -->
<title>Helping Scale AI & Technology Startups to Enterprises | Towards AI</title>
<!-- Search Engine -->
<meta name="author" content="Roberto Iriondo">
<meta name="publisher" content="Towards AI" />
<meta name="description" content="Take the lead against your competition rapidly and effectively. We help scale AI and technology organizations, from startups to enterprises by unleashing their content marketing and demand generation needs.">
<link href="https://sponsors.towardsai.net/" rel="canonical"/>
<meta name="image" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<!-- Schema.org for Google -->
<meta itemprop="name" content="Helping Scale AI & Technology Startups to Enterprises | Towards AI">
<meta itemprop="description" content="Take the lead against your competition rapidly and effectively. We help scale AI and technology organizations, from startups to enterprises by unleashing their content marketing and demand generation needs.">
<meta itemprop="image" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Helping Scale AI & Technology Startups to Enterprises | Towards AI">
<meta name="twitter:description" content="Take the lead against your competition rapidly and effectively. We help scale AI and technology organizations, from startups to enterprises by unleashing their content marketing and demand generation needs.">
<meta name="twitter:site" content="@towards_ai">
<meta name="twitter:creator" content="@towards_ai">
<meta name="twitter:image:src" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta property="og:title" content="Helping Scale AI & Technology Startups to Enterprises | Towards AI">
<meta property="og:description" content="Take the lead against your competition rapidly and effectively. We help scale AI and technology organizations, from startups to enterprises by unleashing their content marketing and demand generation needs.">
<meta property="og:image" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<meta property="og:image:alt" content="Image by ThisIsEngineering, on Pexels, https://www.pexels.com/@thisisengineering">
<meta property="og:image:url" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<meta property="og:image:secure_url" content="https://sponsors.towardsai.net/assets/images/og-graph.jpg">
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:url" content="https://sponsors.towardsai.net/">
<meta property="og:site_name" content="Helping Scale AI & Technology Startups to Enterprises | Towards AI">
<meta property="fb:admins" content="654417927">
<meta property="fb:app_id" content="1166924400135297">
<meta property="og:type" content="website">
<!-- /OG:Graph Protocol -->
<link rel="icon" type="image/png" href="https://towardsai.net/wp-content/uploads/2019/05/towards-ai-square-circle-png.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap" media="none" onload="if(media!='all')media='all'"/>
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"/>
</noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css" media="none" onload="if(media!='all')media='all'"/>
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css"/>
</noscript>
<meta name="robots" content="noarchive"/>
<meta name="googlebot" content="noarchive"/>
<meta name="theme-color" content="#00adff"/>
<meta content="#00adff" name="msapplication-TileColor"/>
<style>
html, body {
overflow-x: hidden !important;
max-width: 100%;
width: 100%;
font-size: 62.5%;
}
body {
background: #fff;
font-family: Poppins, Helvetica, Arial, sans-serif;
font-size: 1.6rem;
line-height: 1.5;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
.hidden, .oculto {
position: absolute !important;
display: none !important;
height: 0px !important;
width: 0px !important;
left: -99999px;
}
h2 {
color: #0f3658 !important;
}
a {
color: #00adff;
}
a:hover, a:focus, a:target {
opacity: .8;
}
header {
width: 100%;
background: #fff;
position: relative;
overflow: visible;
z-index: 1;
border-bottom: 1px solid #e9e9e9;
}
.logo {
margin: auto;
width: 50px;
height: 50px;
overflow: hidden;
border: 1px solid #e9e9e9;
border-radius: 50%;
-webkit-transform: translateY(10px);
-moz-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
position: relative;
z-index: 2;
}
.logo img {
width: 100%;
max-width: 100%;
height: auto;
display: inline-block;
vertical-align: baseline;
position: relative;
left: 0;
top: 0;
right: 0;
bottom: 0;
border: none;
transform: none;
}
.btn-back {
text-align: center;
display: block;
position: absolute;
margin: 5px;
top: 0;
overflow: hidden;
font-size: 1.4rem;
text-decoration: none;
padding: 0;
color: #495057;
border-radius: 50%;
border: 2px solid #495057;
width: 40px;
height: 40px;
line-height: 2.8;
}
.tip {
padding: 10px 0 10px;
line-height: 25px;
color: #666;
text-align: center;
font-size: 1.4rem;
}
.social-media {
text-align: center;
vertical-align: middle;
}
.social-media ul {
padding-left: 0;
padding-right: 0;
}
.social-media ul li {
display: inline-block;
margin-left: 5px;
margin-right: 5px;
}
.social-media a {
font-size: 20px;
text-decoration: none;
color: #495057;
}
/* Slider */
#slider {
max-width: 1920px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#slider button {
display: none;
}
/* /Slider */
/* CTA */
.cta {
vertical-align: text-top;
color: #00adff;
}
.cta a {
text-decoration: none;
font-weight: 700;
}
.cta a:hover, .cta a:focus {
opacity: 0.8;
font-size: 1.5rem;
font-weight: 500;
}
/* CTA */
/* Alignments */
.center {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
.justify {
text-align: justify;
}
/* /Alignments */
/* Cookie Consent */
.tai-gdpr-ccpa {
width: 85vw;
margin-left: 5vw;
margin-right: 5vw;
text-align: center;
background: #fff;
z-index: 999999 !important;
color: #000;
border-radius: 5px;
position: fixed;
bottom: -5px;
display: flex;
padding: 10px;
line-height: 1.5;
box-shadow: rgb(204, 204, 204) 0px 0px 2px;
}
.tai-gdpr-ccpa a {
border-bottom: 1px solid #000;
}
.tai-gdpr-ccpa p {
text-align: justify;
font-size: 1.2rem !important;
margin-bottom: unset;
}
.tai-gdpr-ccpa button {
background: unset;
border: unset;
margin-left: 10px;
width: 40px;
height: 40px;
padding: 5px;
cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1920px) {
.tai-gdpr-ccpa {
margin-left: 25vw;
margin-right: 25vw;
width: 50vw;
}
.tai-gdpr-ccpa p {
font-size: 1.3rem !important;
}
}
@media screen and (min-width: 1921px) {
.tai-gdpr-ccpa {
margin-left: 33%;
margin-right: 33%;
width: 34%;
}
.tai-gdpr-ccpa p {
font-size: 1.4rem !important;
}
}
/* Spacing */
.mt-1 {
margin-top: 10px !important;
}
.mt-2 {
margin-top: 20px !important;
}
.pt-1 {
padding-top: 10px !important;
}
.pt-2 {
padding-top: 20px !important;
}
.mb-1 {
margin-bottom: 10px !important;
}
.mb-2 {
margin-bottom: 20px !important;
}
.pb-1 {
padding-bottom: 10px !important;
}
.pb-2 {
padding-bottom: 20px !important;
}
/* /Spacing */
/* /Cookie Consent */
hr {
border: 0;
}
.copyright {
width: 100vw;
font-size: 1.4rem;
margin-top: 100px;
text-align: center;
margin-bottom: 20px;
}
.copyright a {
color: #00adff;
}
.copyright mark {
background-color: unset;
}
/* Members */
.members {
width: 600px;
}
.members h4 {
font-size: 1.6rem;
letter-spacing: 0.5px;
font-weight: 600;
}
.members p {
text-align: justify;
}
.members a {
color: #00adff;
text-decoration: none;
border-bottom: 1px solid #00adff;
}
.members input {
}
.members label {
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
.members .join {
width: 150px;
margin-top: 20px;
background: #00adff;
color: #fff;
width: 150px;
font-size: 1.6rem;
letter-spacing: 2px;
border: 0;
border-radius: 10px;
cursor: pointer;
}
.members .join:hover, .members .join:focus {
opacity: .8;
}
@media screen and (max-width: 768px) {
.members {
width: 90vw;
}
.members input, .members textarea {
width: 85vw;
}
.members textarea {
height: 100px;
}
}
.members iframe {
font-family: inherit !important;
}
.members-button {
margin: 20px auto;
outline: none;
display: block;
height: 45px;
width: 226px;
border-radius: 6px;
background: rgba(0, 0, 0, 0.631373);
color: #fff;
box-shadow: 1px 1px 3px 0 rgba(0,0,0,.03);
font-family: inherit !important;
font-size: 1.8rem;
font-weight: 500;
border: none;
cursor: pointer;
}
.signup {
font-family: inherit !important;
padding: 50px 10px 50px;
background-color: #04acfc;
color: #fff;
}
.signup a {
font-family: inherit !important;
color: #fff !important;
border-bottom: 1px solid #00adff !important;
}
.couponLink {
font-size: smaller !important;
}
.couponError {
color: #fff !important;
}
#ama {
width: 100%;
height: 240px;
}
.mt-20 {
margin-top: 20px;
}
.sponsors {
max-width: 100%;
}
.i-sponsors {
margin-top: 20px;
}
.i-sponsors a {
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
text-decoration: none;
background: gray;
color: #fff;
border: 0;
border-radius: 5px;
cursor: pointer;
}
.i-sponsors a:hover, .i-sponsors a:focus, .i-sponsors a:target {
opacity: unset;
}
.container {
max-width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding-right: -15px;
padding-left: -15px;
}
.col {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
padding-top: 15px;
padding-bottom: 15px;
}
.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-clip: border-box;
/*border: 1px solid rgba(0,0,0,.03);*/
border-radius: .25rem;
}
.card img {
max-width: 100%;
border-radius: 1.5rem;
min-height: 250px;
}
#submission {
width: 600px;
}
#submission h4 {
font-size: 16px;
letter-spacing: 0.5px;
font-weight: 600;
}
#submission p {
text-align: justify;
line-height: 2.5;
}
#submission a {
color: #00adff;
text-decoration: none;
border-bottom: 1px solid #00adff;
}
#submission ul {
list-style: none;
font-weight: 600;
line-height: 2;
}
#submission input {
}
#submission label {
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
#submission .submit {
float: left;
margin-top: 20px;
background: #00adff;
padding: 10px;
color: #fff;
width: 150px;
font-size: 16px;
letter-spacing: 2px;
border: 0;
border-radius: 10px;
cursor: pointer;
}
#submission .submit:hover, #submission .submit:focus {
opacity: .8;
}
@media screen and (max-width: 768px) {
#submission {
width: 90vw;
}
#submission input, #submission textarea {
width: 85vw;
}
#submission textarea {
height: 100px;
}
}
/*==================================================================
This website uses the "form control" module from Bootstrap
The MIT License (MIT)
Copyright (c) 2011-2021 Twitter, Inc.
Copyright (c) 2011-2021 The Bootstrap Authors
Module: https://github.com/twbs/bootstrap/blob/main/scss/forms/_form-control.scss
==================================================================*/
/* Form Control */
.form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}
.form-control::-moz-placeholder {
color: #999;
opacity: 1
}
.form-control:-ms-input-placeholder {
color: #999
}
.form-control::-webkit-input-placeholder {
color: #999
}
.form-control::-ms-expand {
background-color: transparent;
border: 0
}
.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
background-color: #eee;
opacity: 1
}
.form-control[disabled],fieldset[disabled] .form-control {
cursor: not-allowed
}
textarea.form-control {
height: auto
}
input[type=search] {
-webkit-appearance: none
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control {
line-height:34px
}
input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month] {
line-height: 30px
}
input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month] {
line-height: 46px
}
}
.form-checks {
text-align: left;
line-height: 2;
}
.form-checks label {
float: unset !important;
}
/* /Form Control */
@media screen and (min-width: 600px) and (max-width: 960px) {
.col {
-webkit-box-flex: 0;
-ms-flex: 0 0 44.50%;
flex: 0 0 44.50%;
max-width: 44.50%;
}
}
@media screen and (min-width: 961px) and (max-width: 1150px) {
.container {
max-width: 1100px;
}
.col {
-webkit-box-flex: 0;
-ms-flex: 0 0 30%;
flex: 0 0 30%;
max-width: 30%;
}
}
@media screen and (min-width: 1151px) {
.container {
max-width: 1100px;
}
.col {
-webkit-box-flex: 0;
-ms-flex: 0 0 22.25%;
flex: 0 0 22.25%;
max-width: 22.25%;
}
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/tiny-slider.css">
<!--[if (lt IE 9)]><script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/min/tiny-slider.helper.ie8.js"></script><![endif]-->
</head>
<body class="center">
<!-- Catcha -->
<script type="text/javascript">
function onSubmit(token) {
document.getElementById("sponsors-form").submit();
}
</script>
<!-- /Catcha -->
<header>
<div class="logo">
<a href="https://towardsai.net/?utm_source=sponsors.towardsai.net&utm_medium=referral" target="_blank" rel="noopener" aria-hidden="true" tabindex="-1">
<img src="https://towardsai.net/wp-content/uploads/2019/05/towards-ai-square-circle-png.png" alt="Towards AI">
</a>
</div>
<a title="Go Back" class="btn-back" href="javascript:history.back()" rel="noopener">
<i class="fa fa-arrow-left"></i>
</a>
<div class="tip">
<div class="social-media">
<ul>
<li>
<a alt="Towards AI Website" class="fa fa-globe" href="https://towardsai.net?utm_source=sponsors.towardsai.net&utm_medium=referral" rel="noopener" target="_blank" title="Towards AI"></a>
</li>
<li>
<a alt="Towards AI on Google News" class="fa fa-google" href="https://news.google.com/publications/CAAqBwgKMNiLmgswgpayAw?oc=3&ceid=US:en" rel="noopener" target="_blank" title="Towards AI"></a>
</li>
<li>
<a alt="Towards AI on Github" class="fa fa-github" href="https://github.com/towardsai/" rel="noopener" target="_blank" title="Towards AI"></a>
</li>
<li>
<a alt="Towards AI on Medium" class="fa fa-medium" href="https://medium.com/towards-artificial-intelligence" rel="noopener" target="_blank" title="Towards AI"></a>
</li>
<li>
<a alt="Towards AI on Facebook" class="fa fa-facebook" href="https://www.facebook.com/towardsAl/" rel="noopener" target="_blank" title="Towards AI on Facebook"></a>
</li>
<li>
<a alt="Towards AI on Twitter" class="fa fa-twitter" href="https://twitter.com/towards_ai?lang=en" rel="noopener" target="_blank" title="Towards AI on Twitter"></a>
</li>
<li>
<a alt="Towards AI on LinkedIn" class="fa fa-linkedin" href="https://www.linkedin.com/company/towards-artificial-intelligence/" rel="noopener" target="_blank" title="Towards AI on LinkedIn"></a>
</li>
<li>
<a alt="Towards AI on Instagram" class="fa fa-instagram" href="https://www.instagram.com/towards_ai/?hl=en" rel="noopener" target="_blank" title="Towards AI on Instagram"></a>
</li>
<li>
<a alt="Towards AI News - RSS Feed" class="fa fa-rss" href="https://feeds.feedburner.com/towards-ai" rel="noopener" target="_blank" title="Towards AI News - RSS Feed"></a>
</li>
<li>
<a alt="Email us" class="fa fa-envelope" href="mailto:sponsors@towardsai.net" rel="noopener" target="_blank" title="Email us"></a>
</li>
</ul>
</div>
<div class="cta">
[ <a title="Publication" href="https://towardsai.net/p?utm_source=sponsors.towardsai.net&utm_medium=referral" target="_blank" rel="noopener">Pub</a> ] |
[ <a title="Subscribe" href="https://medium.com/towards-artificial-intelligence/newsletters/towards-ai-newsletter?utm_source=sponsors.towardsai.net&utm_medium=referral" target="_blank" rel="noopener">Subscribe</a> ] |
[ <a title="AI Community" href="https://members.towardsai.net/?utm_source=sponsors.towardsai.net&utm_medium=referral" target="_blank" rel="noopener">AI Community</a> ] |
[ <a title="Shop" href="https://ws.towardsai.net/shop?utm_source=sponsors.towardsai.net&utm_medium=referral" target="_blank" rel="noopener">Shop</a> ]
</div>
</div>
</header>
<section id="sponsors" class="sponsors">
<h1>Featured Sponsors of Towards AI</h1>
<!-- NOTE: prior to v2.2.1 tiny-slider.js need to be in <body> -->
<script>
/* Slider
The MIT License (MIT) | Copyright (c) 2015 William Lin
https://github.com/ganlanyuan/tiny-slider/blob/master/LICENSE
*/
setTimeout (function () {
var slider = tns({
container: '#autoWidth-lazyload',
arrowKeys: true,
autoplay: true,
//autoWidth: true,
controls: false,
fixedWidth: 250,
slideBy: 2.6,
gutter: 10,
mouseDrag: true,
loop: true,
//lazyload: true,
swipeAngle: false,
speed: 1200,
items: 1,
responsive: {
300: {
autoWidth: true,
edgePadding: -70,
gutter: 20,
items: 1,
slideBy: 1
},
640: {
autoWidth: true,
edgePadding: 150,
gutter: 20,
items: 2
},
700: {
gutter: 30
},
900: {
items: 3
},
1200: {
items: 5
}
}
});
}), 500;
</script>
<!-- Slider -->
<div id="slider">
<div id="autoWidth-lazyload" class="my-slider">
<div>
<div class="card">
<a title="Anyscale" href="https://www.anyscale.com/" target="_blank" rel="noopener">
<img alt="" src="assets/images/anyscale-logo.jpg"/>
<h2>Anyscale</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Expert.AI" href="https://www.expert.ai/" target="_blank" rel="noopener">
<img alt="Expert.AI" src="assets/images/expert-ai-logo.jpg"/>
<h2>Expert.AI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="NVIDIA AI" href="https://nvidia.ai/" target="_blank" rel="noopener">
<img alt="NVIDIA AI" src="assets/images/nvidia-ai-logo.png"/>
<h2>NVIDIA AI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Amazon Science" href="https://www.amazon.science/" target="_blank" rel="noopener">
<img alt="Amazon Science" src="assets/images/amazon-science-logo.jpg"/>
<h2>Amazon Science</h2>
</a>
</div>
</div>
<div class="">
<div class="card">
<a title="Snorkel AI" href="https://snorkel.ai/" target="_blank" rel="noopener">
<img alt="Snorkel AI" src="assets/images/snorkel-ai-logo.jpg"/>
<h2>Snorkel AI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Superb AI" href="https://www.superb-ai.com/" target="_blank" rel="noopener">
<img alt="Superb AI" src="assets/images/superb-ai-logo.jpg"/>
<h2>Superb AI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Determined AI" href="https://determined.ai/" target="_blank" rel="noopener">
<img alt="Determined AI" src="assets/images/determined-ai-logo.png"/>
<h2>Determined AI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Lambda Labs" href="https://lambdalabs.com/" target="_blank" rel="noopener">
<img alt="Lambda Labs" src="assets/images/lambda-labs-logo.jpg"/>
<h2>Lambda Labs</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Gradient Flow" href="https://gradientflow.com/" target="_blank" rel="noopener">
<img alt="Gradient Flow" src="assets/images/gradient-flow-logo.jpg"/>
<h2>Gradient Flow</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="John Snow Labs" href="https://www.johnsnowlabs.com/" target="_blank" rel="noopener">
<img alt="John Snow Labs" src="assets/images/john-snow-labs-logo.png"/>
<h2>John Snow Labs</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Mohammed Bin Zayed University of Artificial Intelligence" href="https://mbzuai.ac.ae/" target="_blank" rel="noopener">
<img alt="Mohammed Bin Zayed University of Artificial Intelligence" src="assets/images/mbzuai-logo.png"/>
<h2>MBZUAI</h2>
</a>
</div>
</div>
<div>
<div class="card">
<a title="Carnegie Mellon University" href="https://cmu.edu" target="_blank" rel="noopener">
<img alt="Carnegie Mellon University" src="assets/images/cmu-logo.png"/>
<h2>Carnegie Mellon University</h2>
</a>
</div>
</div>
</div>
<!-- or ul.my-slider > li -->
<!--
<div class="i-sponsors">
<a title="Individual Sponsors" role="button" title="Individual Sponsors" href="#">[ Individual Sponsors (Coming Soon) ]</a>
</div>
-->
</div>
<!-- /Slider -->
</section>
<section id="submission" class="center">
<!-- <h2><a title="Become a sponsor and grow your brand" href="#sponsors-form">Become a Sponsor</a></h2> -->
<h2><a title="Become a sponsor and grow your brand" href="https://www.passionfroot.me/towards-ai" target="_blank" rel="noopener">Become a Sponsor</a></h2>
<h3>About Towards AI:</h3>
<p><a title="Towards AI" href="https://towardsai.net/p" target="_blank">Towards AI</a> makes learning, working and starting a company in AI and Machine Learning more accessible.
Towards AI publishes over 30 AI & Machine Learning articles and tutorials weekly and builds open-source learning platforms. 385,000 followers on social media, hundreds of thousands of article reads per month and over 2,000 contributing authors
Towards AI weekly newsletter for AI students and practitioners; 92,000 subscribers.<br>
Learn AI Together Discord; 45,000 members. We host; Technical Q&A, Collab requests, AI discussions, live seminars, tutorials and more.
</p>
<h3>How can Towards AI help?</h3>
<p>If you develop products using AI and Machine Learning or for AI students or practitioners, Towards AI can help you to build your brand within the AI community, support your marketing efforts or support your AI content needs.<br>
<strong>Please let us know if you would like to explore a partnership or sponsorship with Towards AI by filling out the form in the following link:</strong>
<h2><a title="Become a sponsor and grow your brand" href="https://www.passionfroot.me/towards-ai" target="_blank" rel="noopener">Become a Sponsor</a></h2>
<hr>
<form id="sponsors-form" class="oculto" action="https://formspree.io/f/xleaeled" method="post">
<label class="justify" for="name">Full name:</label>
<input class="form-control" name="Name" id="name" placeholder="Type your answer here..." required="">
<label class="justify" for="name">Title:</label>
<input class="form-control" name="Title" id="title" placeholder="CEO, CTO, CMO, CXO, Head of Marketing, Content Lead, Product Manager, etc." required="">
<label class="justify" for="name">Company name:</label>
<input class="form-control" name="Company Name" id="company-name" placeholder="Example Inc." required="">
<label class="justify" for="draft">Company Website:</label>
<input class="form-control" name="Company Website" id="company-website" placeholder="https://example.com/" required="">
<label for="email">Your Work Email Address:</label>
<input class="form-control" name="Email" id="email" type="email" placeholder="example@company.com" required="">
<!--
<div class="form-checks">
<span>Hown can we help?</span>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="newsletters" value="newsletters" id="1">
<label class="form-check-label" for="1">
Newsletters
</label>
</div>