forked from lfai/lfai-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
6854 lines (6854 loc) · 314 KB
/
processed_landscape.yml
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
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: Machine Learning
subcategories:
- subcategory:
name: Framework
items:
- item:
name: Accord.NET
homepage_url: 'http://accord-framework.net/'
repo_url: 'https://github.com/accord-net/framework'
logo: accord-net.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/accord-net-framework-project'
crunchbase_data:
name: Accord.NET Framework
description: Machine Learning Framework
num_employees_min: null
num_employees_max: null
homepage: 'http://accord-framework.net/'
city: Grenoble
region: Rhone-Alpes
country: France
twitter: null
linkedin: null
github_data:
stars: 3317
license: Other
description: 'Machine learning, computer vision, statistics and general scientific computing for .NET'
latest_commit_date: '2018-07-10T00:00:00.000Z'
latest_commit_link: /accord-net/framework/commit/1b3bd76cd9c37b3c3055df16238862c4918889e1
contributors_count: 62
contributors_link: 'https://github.com/accord-net/framework/graphs/contributors'
github_start_commit_data:
start_commit_link: /accord-net/framework/commit/5e834efc89c071bb32c84f41124d5c9a5bbfe1e3
start_date: '2012-04-08T14:05:58Z'
membership_data:
member: false
image_data:
fileName: accord-net.svg
hash: tdvFWfo6hfZQqHqjscAtcoZWk6qztZFzBTVqKWUjYig=
best_practice_data:
badge: false
percentage: null
- item:
name: LightGBM
homepage_url: 'https://github.com/Microsoft/LightGBM'
repo_url: 'https://github.com/Microsoft/LightGBM'
logo: lightgbm.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/microsoft'
crunchbase_data:
name: Microsoft
description: 'Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.microsoft.com'
city: Redmond
region: Washington
country: United States
twitter: 'http://twitter.com/Microsoft'
linkedin: 'https://www.linkedin.com/company/microsoft'
ticker: MSFT
kind: market_cap
github_data:
stars: 7984
license: MIT License
description: >-
A fast, distributed, high performance gradient boosting (GBDT, GBRT, GBM or MART) framework based on decision tree algorithms, used for ranking,
classification and many other machine learning tasks. It is under the umbrella of the DMTK(http://github.com/microsoft/dmtk) project of
Microsoft.
latest_commit_date: '2019-03-09T00:00:00.000Z'
latest_commit_link: /Microsoft/LightGBM/commit/8d6666e0ffb7165096753dc392044af18ef2eae6
release_date: '2019-02-05T00:31:12Z'
release_link: 'https://github.com/Microsoft/LightGBM/releases'
contributors_count: 112
contributors_link: 'https://github.com/Microsoft/LightGBM/graphs/contributors'
github_start_commit_data:
start_commit_link: /Microsoft/LightGBM/commit/1c774687cf571a2b710267c2ba1bd56244da82b4
start_date: '2016-08-05T06:06:01Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 871716487168
effective_ticker: MSFT
image_data:
fileName: light-gbm.svg
hash: onVwSZsDa87+BcpB9T113acDPaePno7M00AlsqDXPyE=
best_practice_data:
badge: false
percentage: null
- item:
name: Mahout
homepage_url: 'https://mahout.apache.org/'
repo_url: 'https://github.com/apache/mahout'
logo: apache-mahout.svg
twitter: 'https://twitter.com/ApacheMahout'
crunchbase: 'https://www.crunchbase.com/organization/apache'
crunchbase_data:
name: Apache Software Foundation
description: 'Apache Software Foundation provides organizational, legal and financial support for Apache open-source software projects.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.apache.org'
city: Forest Hill
region: Maryland
country: United States
twitter: 'http://twitter.com/TheASF'
linkedin: 'https://www.linkedin.com/company/the-apache-software-foundation'
github_data:
stars: 1627
license: Other
description: Mirror of Apache Mahout
latest_commit_date: '2019-03-10T00:00:00.000Z'
latest_commit_link: /apache/mahout/commit/b0cf1694e60f643e352182ea03744c34e96dbac4
release_date: '2019-03-01T17:58:24Z'
release_link: 'https://github.com/apache/mahout/releases'
contributors_count: 31
contributors_link: 'https://github.com/apache/mahout/graphs/contributors'
github_start_commit_data:
start_commit_link: /apache/mahout/commit/e6eaf50b5bf0bca7f435d61b3e8f54022c7cc238
start_date: '2008-01-15T03:13:56Z'
membership_data:
member: false
image_data:
fileName: mahout.svg
hash: cO5szXTXXftwEjFy/KjHTNLIFrrlvcD6ZLAWKA3guRQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-07T02:28:46.000Z
- item:
name: ML.net
homepage_url: 'https://dotnet.microsoft.com/apps/machinelearning-ai/ml-dotnet'
repo_url: 'https://github.com/dotnet/machinelearning'
logo: ml-net.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/microsoft'
crunchbase_data:
name: Microsoft
description: 'Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.microsoft.com'
city: Redmond
region: Washington
country: United States
twitter: 'http://twitter.com/Microsoft'
linkedin: 'https://www.linkedin.com/company/microsoft'
ticker: MSFT
kind: market_cap
github_data:
stars: 5331
license: MIT License
description: ML.NET is an open source and cross-platform machine learning framework for .NET.
latest_commit_date: '2019-03-13T00:00:00.000Z'
latest_commit_link: /dotnet/machinelearning/commit/ec6ff086edf685bdb64e244d14fd4ff8f5e6af4d
contributors_count: 101
contributors_link: 'https://github.com/dotnet/machinelearning/graphs/contributors'
github_start_commit_data:
start_commit_link: /dotnet/machinelearning/commit/f0e639af5ffdc839aae8e65d19b5a9a1f0db634a
start_date: '2018-05-04T00:22:00Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 871716487168
effective_ticker: MSFT
image_data:
fileName: ml-net.svg
hash: AMNyy8A+Z5EXBEn0UwyC7LUYi3UjGXKfgk+WOIkAMng=
best_practice_data:
badge: false
percentage: null
- item:
name: Ray
homepage_url: 'https://bair.berkeley.edu/blog/2018/01/09/ray/'
repo_url: 'https://github.com/ray-project/ray'
logo: ray.svg
crunchbase: 'https://www.crunchbase.com/organization/university-of-california-berkeley'
crunchbase_data:
name: 'University of California, Berkeley'
description: University of California is a public institution for higher education.
num_employees_min: null
num_employees_max: null
homepage: 'http://www.berkeley.edu/'
city: Berkeley
region: California
country: United States
twitter: 'https://twitter.com/UCBerkeley'
linkedin: 'https://www.linkedin.com/edu/university-of-california-berkeley-17939'
kind: funding
funding: 66500000
github_data:
stars: 6178
license: Apache License 2.0
description: A system for parallel and distributed Python that unifies the ML ecosystem.
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /ray-project/ray/commit/490d896f41c0d964fc7199a160d139360617bf0b
release_date: '2018-08-28T23:52:17Z'
release_link: 'https://github.com/ray-project/ray/releases'
contributors_count: 136
contributors_link: 'https://github.com/ray-project/ray/graphs/contributors'
github_start_commit_data:
start_commit_link: /ray-project/ray/commit/3655dfbc2363713c7d9e924d209566972d95a35f
start_date: '2016-02-07T22:18:40Z'
membership_data:
member: false
image_data:
fileName: ray.svg
hash: /DYhxM9rsas0AlxNkFBQ2UIcTNXXXLaywfDO6FvQcTM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-12T23:06:06.000Z
- subcategory:
name: Platform
items:
- item:
name: Apache SystemML
homepage_url: 'https://systemml.apache.org/'
repo_url: 'https://github.com/apache/systemml'
logo: apache-system-ml.svg
twitter: 'https://twitter.com/ApacheSystemML'
crunchbase: 'https://www.crunchbase.com/organization/apache'
crunchbase_data:
name: Apache Software Foundation
description: 'Apache Software Foundation provides organizational, legal and financial support for Apache open-source software projects.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.apache.org'
city: Forest Hill
region: Maryland
country: United States
twitter: 'http://twitter.com/TheASF'
linkedin: 'https://www.linkedin.com/company/the-apache-software-foundation'
github_data:
stars: 736
license: Apache License 2.0
description: Mirror of Apache SystemML
latest_commit_date: '2019-03-11T00:00:00.000Z'
latest_commit_link: /apache/systemml/commit/a060f83f01b268a9fd0582517993d8ebdbe2848a
release_date: '2018-08-17T05:58:26Z'
release_link: 'https://github.com/apache/systemml/releases'
contributors_count: 58
contributors_link: 'https://github.com/apache/systemml/graphs/contributors'
github_start_commit_data:
start_commit_link: /apache/systemml/commit/704ef9a1c297a2fb1f9f266f348b7b0809b84df2
start_date: '2012-01-11T21:58:41Z'
membership_data:
member: false
image_data:
fileName: apache-system-ml.svg
hash: nH3J4OHDllDGXsAhqPk77WG/QJZ3Pr7NOgsIZh9KeFY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2017-12-21T00:25:55.000Z
- item:
name: H2o.ai
homepage_url: 'https://www.h2o.ai/'
repo_url: 'https://github.com/h2oai/h2o-3'
logo: h2o-ai.svg
twitter: 'https://twitter.com/h2oai'
crunchbase: 'https://www.crunchbase.com/organization/h2o-2'
crunchbase_data:
name: H2O.ai
description: H2O.ai provides an open source machine learning platform that makes it easy to build smart applications.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://h2o.ai/'
city: Mountain View
region: California
country: United States
twitter: 'https://twitter.com/h2oai'
linkedin: 'https://www.linkedin.com/company/0xdata'
kind: funding
funding: 73600000
github_data:
stars: 3864
license: Apache License 2.0
description: >-
Open Source Fast Scalable Machine Learning Platform For Smarter Applications (Deep Learning, Gradient Boosting, Random Forest, Generalized
Linear Modeling (Logistic Regression, Elastic Net), K-Means, PCA, Stacked Ensembles, Automatic Machine Learning (AutoML), ...)
latest_commit_date: '2019-03-13T00:00:00.000Z'
latest_commit_link: /h2oai/h2o-3/commit/ad811c9e1f6ead894cb1ff802c5e4d670cb9aeb2
release_date: '2019-03-12T07:08:47Z'
release_link: 'https://github.com/h2oai/h2o-3/releases'
contributors_count: 117
contributors_link: 'https://github.com/h2oai/h2o-3/graphs/contributors'
github_start_commit_data:
start_commit_link: /h2oai/h2o-3/commit/079f9dae869c02c7f5ea47baeacedb6ab4238df5
start_date: '2014-03-03T16:08:07Z'
membership_data:
member: false
image_data:
fileName: h2o-ai.svg
hash: 5oGtYO8PS4JbH0uUXvhL5Anznvp3xKRQm8sGTmLwam0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-12T19:59:39.000Z
- item:
name: Kubeflow
homepage_url: 'https://www.kubeflow.org/'
repo_url: 'https://github.com/kubeflow/kubeflow'
logo: kubeflow.svg
twitter: 'https://twitter.com/kubeflow'
crunchbase: 'https://www.crunchbase.com/organization/google'
crunchbase_data:
name: Google
description: Google is a multinational corporation that is specialized in internet-related services and products.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.google.com/'
city: Mountain View
region: California
country: United States
twitter: 'https://twitter.com/google'
linkedin: 'https://www.linkedin.com/company/google'
ticker: GOOG
kind: market_cap
github_data:
stars: 6191
license: Apache License 2.0
description: Machine Learning Toolkit for Kubernetes
latest_commit_date: '2019-03-13T00:00:00.000Z'
latest_commit_link: /kubeflow/kubeflow/commit/49b07c32915cb0393227e68765e348b148cd4571
release_date: '2019-01-15T00:15:01Z'
release_link: 'https://github.com/kubeflow/kubeflow/releases'
contributors_count: 139
contributors_link: 'https://github.com/kubeflow/kubeflow/graphs/contributors'
github_start_commit_data:
start_commit_link: /kubeflow/kubeflow/commit/3f3f74931bb99615677fd6ef5413ad9255802dd0
start_date: '2017-11-30T22:36:56Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 831888228352
effective_ticker: GOOG
image_data:
fileName: kubeflow.svg
hash: 8C0DZjQ7HMZxMnFemZWw8N8NbUHyCg2J3HWAPxmMJMI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-12T23:02:23.000Z
- item:
name: MLFlow
homepage_url: 'https://mlflow.org/'
repo_url: 'https://github.com/mlflow/mlflow'
logo: mlflow.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/databricks'
crunchbase_data:
name: Databricks
description: 'Databricks accelerates innovation by unifying analytics across data science, data engineering, and the business.'
num_employees_min: 251
num_employees_max: 500
homepage: 'https://databricks.com'
city: San Francisco
region: California
country: United States
twitter: 'http://twitter.com/databricks'
linkedin: 'https://www.linkedin.com/company/databricks/'
kind: funding
funding: 497000000
github_data:
stars: 3259
license: Apache License 2.0
description: Open source platform for the machine learning lifecycle
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /mlflow/mlflow/commit/f9c140ff635b71ee4e99ba7828994dd7d363ec0d
release_date: '2018-10-01T22:51:31Z'
release_link: 'https://github.com/mlflow/mlflow/releases'
contributors_count: 77
contributors_link: 'https://github.com/mlflow/mlflow/graphs/contributors'
github_start_commit_data:
start_commit_link: /mlflow/mlflow/commit/7a69ba64ef269b2a5534e16fe888050a83224ef3
start_date: '2018-06-05T16:08:54Z'
membership_data:
member: false
image_data:
fileName: ml-flow.svg
hash: CryJCzefVmhaawUAXe3mwYvgJJzVx3soF5VyWciFJ6s=
best_practice_data:
badge: false
percentage: null
- item:
name: PredictionIO
homepage_url: 'https://predictionio.apache.org/'
repo_url: 'https://github.com/apache/predictionio'
logo: apache-predictionio.svg
twitter: 'https://twitter.com/ApachePIO'
crunchbase: 'https://www.crunchbase.com/organization/apache'
crunchbase_data:
name: Apache Software Foundation
description: 'Apache Software Foundation provides organizational, legal and financial support for Apache open-source software projects.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.apache.org'
city: Forest Hill
region: Maryland
country: United States
twitter: 'http://twitter.com/TheASF'
linkedin: 'https://www.linkedin.com/company/the-apache-software-foundation'
github_data:
stars: 11687
license: Apache License 2.0
description: 'PredictionIO, a machine learning server for developers and ML engineers.'
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /apache/predictionio/commit/a04822018fc9af6d0774e0a6814427ccd9ec3612
release_date: '2019-03-11T05:07:39Z'
release_link: 'https://github.com/apache/predictionio/releases'
contributors_count: 133
contributors_link: 'https://github.com/apache/predictionio/graphs/contributors'
github_start_commit_data:
start_commit_link: /apache/predictionio/commit/fe6dec6237a6aa3fc4f7280b1393abf75a19e23e
start_date: '2013-01-25T19:42:32Z'
membership_data:
member: false
image_data:
fileName: prediction-io.svg
hash: rV9/2aUZAXAtXbWbARwhFU/o5YKRGUzuQrf4aSsp0qg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2017-10-02T22:08:41.000Z
- item:
name: Seldon
homepage_url: 'https://www.seldon.io/'
repo_url: 'https://github.com/SeldonIO/seldon-core'
logo: seldon.svg
twitter: 'https://twitter.com/seldon_io'
crunchbase: 'https://www.crunchbase.com/organization/seldon'
crunchbase_data:
name: Seldon
description: Seldon is the open-source machine learning pipeline for real-time recommendations and enterprise-grade predictive analytics.
num_employees_min: 1
num_employees_max: 10
homepage: 'https://www.seldon.io/'
city: London
region: England
country: United Kingdom
twitter: 'http://twitter.com/seldon_io'
linkedin: 'https://www.linkedin.com/company/rummble-labs/'
kind: funding
funding: 4279681
github_data:
stars: 783
license: Apache License 2.0
description: Machine Learning Deployment for Kubernetes
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /SeldonIO/seldon-core/commit/d4992e5d8c15d059af188fd93f17d97a16170a5b
contributors_count: 18
contributors_link: 'https://github.com/SeldonIO/seldon-core/graphs/contributors'
github_start_commit_data:
start_commit_link: /SeldonIO/seldon-core/commit/ebc6741c677eefaf59394d804cdc611aea568a27
start_date: '2017-02-21T11:14:14Z'
membership_data:
member: false
image_data:
fileName: seldon.svg
hash: gpngYdiuzASpO2B54TL6qDB2DKSOhOps1IucWP/d2mg=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-12T21:13:02.000Z
- item:
name: Vowpal Wabbit
homepage_url: 'https://github.com/VowpalWabbit/vowpal_wabbit/wiki'
repo_url: 'https://github.com/VowpalWabbit/vowpal_wabbit'
logo: vowpal-wabbit.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/microsoft'
crunchbase_data:
name: Microsoft
description: 'Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.'
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.microsoft.com'
city: Redmond
region: Washington
country: United States
twitter: 'http://twitter.com/Microsoft'
linkedin: 'https://www.linkedin.com/company/microsoft'
ticker: MSFT
kind: market_cap
github_data:
stars: 6160
license: Other
description: >-
Vowpal Wabbit is a machine learning system which pushes the frontier of machine learning with techniques such as online, hashing, allreduce,
reductions, learning2search, active, and interactive learning.
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /VowpalWabbit/vowpal_wabbit/commit/eb63f84a6c99e9e98a221189912babd236f14d89
release_date: '2019-02-05T18:05:24Z'
release_link: 'https://github.com/VowpalWabbit/vowpal_wabbit/releases'
contributors_count: 160
contributors_link: 'https://github.com/VowpalWabbit/vowpal_wabbit/graphs/contributors'
github_start_commit_data:
start_commit_link: /VowpalWabbit/vowpal_wabbit/commit/89b6cd6a38264153ae425117e09ceff3d4d92b3e
start_date: '2009-04-29T23:16:59Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 871716487168
effective_ticker: MSFT
image_data:
fileName: vowpal-wabbit.svg
hash: 2OK/ZqekBp4/jX1vIPHzInuP9HWtnu3fxaJuJCg/Ffo=
best_practice_data:
badge: false
percentage: null
- subcategory:
name: Library
items:
- item:
name: CatBoost
homepage_url: 'https://catboost.ai'
repo_url: 'https://github.com/catboost/catboost'
logo: catboost.svg
twitter: 'https://twitter.com/catboostml'
crunchbase: 'https://www.crunchbase.com/organization/yandex'
crunchbase_data:
name: Yandex
description: Yandex is a multinational technology company that provides internet-related services and operates a search engine platform in Russia.
num_employees_min: 5001
num_employees_max: 10000
homepage: 'http://www.yandex.ru'
city: Moscow
region: Moscow City
country: Russian Federation
twitter: 'http://twitter.com/yandexcom'
linkedin: 'https://www.linkedin.com/company/yandex'
ticker: YNDX
kind: market_cap
github_data:
stars: 3774
license: Apache License 2.0
description: >-
A fast, scalable, high performance Gradient Boosting on Decision Trees library, used for ranking, classification, regression and other machine
learning tasks for Python, R, Java, C++. Supports computation on CPU and GPU.
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /catboost/catboost/commit/8a8c98ca05db36f8ba5295117663d7ac18d3506c
contributors_count: 101
contributors_link: 'https://github.com/catboost/catboost/graphs/contributors'
github_start_commit_data:
start_commit_link: /catboost/catboost/commit/37378d278a57a2464547e07e48a2c779d888e174
start_date: '2017-07-18T05:33:21Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 11553787904
effective_ticker: YNDX
image_data:
fileName: cat-boost.svg
hash: m249WT1A0ZXQswBINo+ASFb/YrX0eBBOGJoLEl6S/tc=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-05T09:53:39.000Z
- item:
name: MLlib
homepage_url: 'https://spark.apache.org/mllib/'
repo_url: 'https://github.com/apache/spark'
logo: mllib.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/apache'
crunchbase_data:
name: Apache Software Foundation
description: 'Apache Software Foundation provides organizational, legal and financial support for Apache open-source software projects.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.apache.org'
city: Forest Hill
region: Maryland
country: United States
twitter: 'http://twitter.com/TheASF'
linkedin: 'https://www.linkedin.com/company/the-apache-software-foundation'
github_data:
stars: 20900
license: Apache License 2.0
description: Apache Spark
latest_commit_date: '2019-03-13T00:00:00.000Z'
latest_commit_link: /apache/spark/commit/7beb464564a04004c638d6b0e1d8aafd9f038a0a
release_date: '2019-03-10T06:33:54Z'
release_link: 'https://github.com/apache/spark/releases'
contributors_count: 1349
contributors_link: 'https://github.com/apache/spark/graphs/contributors'
github_start_commit_data:
start_commit_link: /apache/spark/commit/df29d0ea4c8b7137fdd1844219c7d489e3b0d9c9
start_date: '2010-03-29T23:17:55Z'
membership_data:
member: false
image_data:
fileName: m-llib.svg
hash: vtGh+CXFmbhI/thZbWABBDr1xknhEKyoUY287wLwXkk=
best_practice_data:
badge: false
percentage: null
- item:
name: mlpack
homepage_url: 'http://www.mlpack.org/'
repo_url: 'https://github.com/mlpack/mlpack'
logo: mlpack.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/georgia-institute-of-technology'
crunchbase_data:
name: Georgia Institute of Technology
description: 'The Georgia Institute of Technology is a state-funded research university based in Atlanta, Georgia.'
num_employees_min: null
num_employees_max: null
homepage: 'http://gatech.edu'
city: Atlanta
region: Georgia
country: United States
twitter: 'https://twitter.com/georgiatech'
linkedin: 'https://www.linkedin.com/school/3558'
kind: funding
funding: 600000
github_data:
stars: 2683
license: Other
description: 'mlpack: a scalable C++ machine learning library -- '
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /mlpack/mlpack/commit/153899e960b9340b0f635345d10c62bcad022ab0
contributors_count: 139
contributors_link: 'https://github.com/mlpack/mlpack/graphs/contributors'
github_start_commit_data:
start_commit_link: /mlpack/mlpack/commit/5a7b54f0a126066ed9f5e0a0c1d6aab045c315b6
start_date: '2007-03-13T21:27:11Z'
membership_data:
member: false
image_data:
fileName: mlpack.svg
hash: L9MtgMNKZMPNTsgsZKCWzBUUmTKyupy8Zx2zY8T++rY=
best_practice_data:
badge: false
percentage: null
- item:
name: Nilearn
homepage_url: 'https://nilearn.github.io/'
repo_url: 'https://github.com/nilearn/nilearn'
logo: nilearn.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/inria'
crunchbase_data:
name: INRIA
description: INRIA is the French National Institute for computer science and applied mathematics.
num_employees_min: 1001
num_employees_max: 5000
homepage: 'http://www.inria.fr/en'
city: Rocquencourt
region: Ile-de-France
country: France
twitter: 'http://twitter.com/Inria'
linkedin: 'https://www.linkedin.com/company/inria'
github_data:
stars: 498
license: Other
description: Machine learning for NeuroImaging in Python
latest_commit_date: '2019-03-07T00:00:00.000Z'
latest_commit_link: /nilearn/nilearn/commit/77dbcfee8fcf93929ad21c51bf607d798c40dd23
release_date: '2018-11-16T15:52:38Z'
release_link: 'https://github.com/nilearn/nilearn/releases'
contributors_count: 85
contributors_link: 'https://github.com/nilearn/nilearn/graphs/contributors'
github_start_commit_data:
start_commit_link: /nilearn/nilearn/commit/f5e6d4fedb35abaa16929c8d49dcfd5a0b325190
start_date: '2011-01-09T19:22:14Z'
membership_data:
member: false
image_data:
fileName: nilearn.svg
hash: LhB9ahFAJ5sex+VRuhXp00DEuNmSFsFHFZAdjIWeK7Y=
best_practice_data:
badge: false
percentage: null
- item:
name: OpenNN
homepage_url: 'http://www.opennn.net/'
repo_url: 'https://github.com/Artelnics/OpenNN'
logo: opennn.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/artelnics'
crunchbase_data:
name: Artelnics
description: Artelnics is a company that develops advanced analytics software.
num_employees_min: 1
num_employees_max: 10
homepage: 'https://www.artelnics.com'
city: Santa Marta De Tormes
region: Castilla y Leon
country: Spain
twitter: 'https://twitter.com/artelnics'
linkedin: 'https://www.linkedin.com/company/artelnics'
kind: funding
funding: 55997
github_data:
stars: 601
license: GNU Lesser General Public License v3.0
description: OpenNN - Open Neural Networks Library
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /Artelnics/OpenNN/commit/1741837d3d8f530ff7a6af6ebe238381d10fdb56
release_date: '2018-11-22T09:14:25Z'
release_link: 'https://github.com/Artelnics/OpenNN/releases'
contributors_count: 9
contributors_link: 'https://github.com/Artelnics/OpenNN/graphs/contributors'
github_start_commit_data:
start_commit_link: /Artelnics/OpenNN/commit/dd74227134fc1d260e2d279b91d2481077abdce9
start_date: '2015-11-13T15:30:27Z'
membership_data:
member: false
image_data:
fileName: open-nn.svg
hash: hh7sNaUvotUDltFWsgsbBE38u4CCtmmBX9xsdtKz+Wc=
best_practice_data:
badge: false
percentage: null
- item:
name: SciKit-learn
homepage_url: 'https://scikit-learn.org/stable/'
repo_url: 'https://github.com/scikit-learn/scikit-learn'
logo: sci-kit-learn.svg
twitter: ' https://twitter.com/scikit_learn'
crunchbase: 'https://www.crunchbase.com/organization/numfocus'
crunchbase_data:
name: NumFOCUS
description: 'NumFOCUS is a 501(c)(3) nonprofit that supports and promotes world-class, innovative, open source scientific software.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.numfocus.org/'
city: Austin
region: Texas
country: United States
twitter: 'https://twitter.com/numfocus'
linkedin: null
github_data:
stars: 33803
license: Other
description: 'scikit-learn: machine learning in Python'
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /scikit-learn/scikit-learn/commit/f867ccc533539095f20e6d209f93ab95207eb173
release_date: '2018-08-29T14:04:43Z'
release_link: 'https://github.com/scikit-learn/scikit-learn/releases'
contributors_count: 1275
contributors_link: 'https://github.com/scikit-learn/scikit-learn/graphs/contributors'
github_start_commit_data:
start_commit_link: /scikit-learn/scikit-learn/commit/92fbeab6ad94b6683377e26e8af7dd1cb86d615e
start_date: '2010-01-05T13:26:32Z'
membership_data:
member: false
image_data:
fileName: sci-kit-learn.svg
hash: RlrZU4LxY3d3pm4dveqi2wQjVZDEpNIoM2Dvm1D3ioY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-01-31T09:18:46.000Z
- item:
name: Shogun
homepage_url: 'http://shogun.ml/'
repo_url: 'https://github.com/shogun-toolbox/shogun'
logo: shogun.svg
twitter: 'https://twitter.com/ShogunML'
crunchbase: 'https://www.crunchbase.com/organization/numfocus'
crunchbase_data:
name: NumFOCUS
description: 'NumFOCUS is a 501(c)(3) nonprofit that supports and promotes world-class, innovative, open source scientific software.'
num_employees_min: 1
num_employees_max: 10
homepage: 'http://www.numfocus.org/'
city: Austin
region: Texas
country: United States
twitter: 'https://twitter.com/numfocus'
linkedin: null
github_data:
stars: 2372
license: BSD 3-Clause "New" or "Revised" License
description: Shōgun
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /shogun-toolbox/shogun/commit/af723e0489cf4eba3c743fb23e8c484c288f61e2
release_date: '2015-01-18T11:05:05Z'
release_link: 'https://github.com/shogun-toolbox/shogun/releases'
contributors_count: 158
contributors_link: 'https://github.com/shogun-toolbox/shogun/graphs/contributors'
github_start_commit_data:
start_commit_link: /shogun-toolbox/shogun/commit/df17cc4574995c93428fd03f518b8aee98a72579
start_date: '2006-06-05T14:33:25Z'
membership_data:
member: false
image_data:
fileName: shogun.svg
hash: 9l/Z0m7QKkVw+VU0avBZTUv5mg0Fgd+Y/m9yq66KOhw=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-03T12:08:48.000Z
- item:
name: Sonnet
homepage_url: 'https://deepmind.github.io/sonnet/'
repo_url: 'https://github.com/deepmind/Sonnet'
logo: sonnet.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/google'
crunchbase_data:
name: Google
description: Google is a multinational corporation that is specialized in internet-related services and products.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.google.com/'
city: Mountain View
region: California
country: United States
twitter: 'https://twitter.com/google'
linkedin: 'https://www.linkedin.com/company/google'
ticker: GOOG
kind: market_cap
github_data:
stars: 7399
license: Apache License 2.0
description: TensorFlow-based neural network library
latest_commit_date: '2019-02-26T00:00:00.000Z'
latest_commit_link: /deepmind/sonnet/commit/c2b3edaca63032985897c6e629a55cd02c19d53e
release_date: '2019-02-26T17:34:24Z'
release_link: 'https://github.com/deepmind/Sonnet/releases'
contributors_count: 21
contributors_link: 'https://github.com/deepmind/Sonnet/graphs/contributors'
github_start_commit_data:
start_commit_link: /deepmind/sonnet/commit/3a305e16af9e274b89db2834e3b7cea9cea6806f
start_date: '2017-04-06T16:20:35Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 831888228352
effective_ticker: GOOG
image_data:
fileName: sonnet.svg
hash: 2vJ5gcmuiEmZy6KNt7RkhbBXFG238+fO3ZK3DiW4GjI=
best_practice_data:
badge: false
percentage: null
- item:
name: Tensor Comprehensions
homepage_url: 'https://facebookresearch.github.io/TensorComprehensions/'
repo_url: 'https://github.com/facebookresearch/TensorComprehensions'
logo: tensorcomprehensions.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/facebook'
crunchbase_data:
name: Facebook
description: Facebook is an online social networking service that enables its users to connect with friends and family.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.facebook.com'
city: Menlo Park
region: California
country: United States
twitter: 'https://twitter.com/facebook'
linkedin: 'https://www.linkedin.com/company/facebook'
ticker: FB
kind: market_cap
github_data:
stars: 1429
license: Apache License 2.0
description: A domain specific language to express machine learning workloads.
latest_commit_date: '2018-08-31T00:00:00.000Z'
latest_commit_link: /facebookresearch/TensorComprehensions/commit/220b5902645886fc2feac61770018419ca5411bc
contributors_count: 27
contributors_link: 'https://github.com/facebookresearch/TensorComprehensions/graphs/contributors'
github_start_commit_data:
start_commit_link: /facebookresearch/TensorComprehensions/commit/747c0a6d8b0158abd89ff1f90963ef61a83f8fa1
start_date: '2018-02-13T15:46:23Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 490657939456
effective_ticker: FB
image_data:
fileName: tensor-comprehensions.svg
hash: pd65nTwyUZLIBewIvZGuq59x0/S+vx89bAH3npsLpfc=
best_practice_data:
badge: false
percentage: null
- item:
name: TransmogrifAI
homepage_url: 'https://transmogrif.ai/'
repo_url: 'https://github.com/salesforce/TransmogrifAI'
logo: transmogrifai.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/salesforce'
crunchbase_data:
name: Salesforce
description: Salesforce is a global cloud computing company that develops CRM solutions and provides business software on a subscription basis.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'https://www.salesforce.com'
city: San Francisco
region: California
country: United States
twitter: 'http://twitter.com/salesforce'
linkedin: 'https://www.linkedin.com/company/salesforce'
ticker: CRM
kind: market_cap
github_data:
stars: 1340
license: BSD 3-Clause "New" or "Revised" License
description: >-
TransmogrifAI (pronounced trăns-mŏgˈrə-fī) is an AutoML library for building modular, reusable, strongly typed machine learning workflows on
Spark with minimal hand tuning
latest_commit_date: '2019-03-11T00:00:00.000Z'
latest_commit_link: /salesforce/TransmogrifAI/commit/73d2da7439c04145978cbc463ebbf329d53597e6
contributors_count: 24
contributors_link: 'https://github.com/salesforce/TransmogrifAI/graphs/contributors'
github_start_commit_data:
start_commit_link: /salesforce/TransmogrifAI/commit/d99f896ba2c4e4323043a4fedeaf7aca72afefc2
start_date: '2017-12-01T20:09:05Z'
membership_data:
member: false
yahoo_finance_data:
market_cap: 122033881088
effective_ticker: CRM
image_data:
fileName: transmogrif-ai.svg
hash: 4m/T1JW5vpFG6J5zybxZxEzbfy3G7Iae2BCkGeeElsw=
best_practice_data:
badge: 2557
percentage: 100
- item:
name: XGBoost
homepage_url: 'https://xgboost.ai/'
repo_url: 'https://github.com/dmlc/xgboost'
logo: xgboost.svg
twitter: 'https://twitter.com/XGBoostProject'
crunchbase: 'https://www.crunchbase.com/organization/xgboost'
crunchbase_data:
name: XGBoost
description: Open Source Project
num_employees_min: null
num_employees_max: null
homepage: 'https://xgboost.ai/'
city: Seattle
region: Washington
country: United States
twitter: 'https://twitter.com/XGBoostProject'
linkedin: null
github_data:
stars: 15129
license: Apache License 2.0
description: >-
Scalable, Portable and Distributed Gradient Boosting (GBDT, GBRT or GBM) Library, for Python, R, Java, Scala, C++ and more. Runs on single
machine, Hadoop, Spark, Flink and DataFlow
latest_commit_date: '2019-03-12T00:00:00.000Z'
latest_commit_link: /dmlc/xgboost/commit/b833b642eca0cc4e3975958ba093d0d8cd25c4ea
contributors_count: 347
contributors_link: 'https://github.com/dmlc/xgboost/graphs/contributors'
github_start_commit_data:
start_commit_link: /dmlc/xgboost/commit/225aa9841b94fefeba103d4e4567aaedba76a0fc
start_date: '2014-02-06T17:28:03Z'
membership_data:
member: false
image_data:
fileName: xg-boost.svg
hash: hW7oguYLYje61UG5K+I9zdMqghCHrEjWJoBjIHk5trY=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-03-06T04:14:19.000Z
- item:
name: xLearn
homepage_url: 'https://xlearn-doc.readthedocs.io/en/latest/index.html'
repo_url: 'https://github.com/aksnzhy/xlearn'
logo: xlearn.svg
twitter: null
crunchbase: 'https://www.crunchbase.com/organization/xlearn-open-source-projects'
crunchbase_data:
name: xLearn Open Source Project
description: 'xLearn is a high performance, easy-to-use, and scalable machine learning package.'
num_employees_min: null
num_employees_max: null
homepage: 'https://xlearn-doc.readthedocs.io'
city: Beijing
region: Beijing
country: China
twitter: null
linkedin: null
github_data: