-
Notifications
You must be signed in to change notification settings - Fork 111
/
landscape.yml
3447 lines (3447 loc) · 147 KB
/
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
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
crunchbase: https://www.crunchbase.com/organization/accord-net-framework-project
- item:
name: AutoGen
homepage_url: https://github.com/microsoft/autogen
repo_url: https://github.com/microsoft/autogen
logo: autogen.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: Candle
homepage_url: https://github.com/huggingface/candle
repo_url: https://github.com/huggingface/candle
logo: candle.svg
crunchbase: https://www.crunchbase.com/organization/hugging-face
- 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
- item:
name: Mahout
homepage_url: https://mahout.apache.org/
repo_url: https://github.com/apache/mahout
logo: mahout.svg
twitter: https://twitter.com/ApacheMahout
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: ML.net
homepage_url: https://dotnet.microsoft.com/en-us/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
- 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
- item:
name: ZenML
homepage_url: https://zenml.io/
repo_url: https://github.com/zenml-io/zenml
logo: zenml.svg
twitter: https://twitter.com/zenml_io
crunchbase: https://www.crunchbase.com/organization/maiot-c7f4
- subcategory:
name: Platform
items:
- item:
name: Alink
homepage_url: https://github.com/alibaba/Alink
repo_url: https://github.com/alibaba/Alink
logo: alink.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/alibaba
- item:
name: Angel-ML
homepage_url: https://angelml.ai/
project: graduated
repo_url: https://github.com/Angel-ML/angel
logo: angel.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Apache SystemML
homepage_url: https://systemds.apache.org
repo_url: https://github.com/apache/systemds
logo: apache-system-ml.svg
twitter: https://twitter.com/ApacheSystemML
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: AX
homepage_url: https://ax.dev/
repo_url: https://github.com/facebook/Ax
logo: ax.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/facebook
- item:
name: Cortex
homepage_url: https://www.cortex.dev/
repo_url: https://github.com/cortexlabs/cortex
logo: cortex.svg
crunchbase: https://www.crunchbase.com/organization/cortex-dev
- item:
name: ForestFlow
homepage_url: https://forestflow.ai
project: incubating
repo_url: https://github.com/ForestFlow/ForestFlow
logo: forestflow.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: H2o.ai
homepage_url: https://www.h2o.ai/
repo_url: https://github.com/h2oai/h2o-3
logo: h2o-ai.svg
crunchbase: https://www.crunchbase.com/organization/h2o-2
- 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
- item:
name: Metaflow
homepage_url: https://metaflow.org/
repo_url: https://github.com/Netflix/metaflow
logo: metaflow.svg
twitter: https://twitter.com/MetaflowOSS
crunchbase: https://www.crunchbase.com/organization/netflix
- item:
name: MLFlow
homepage_url: https://mlflow.org/
repo_url: https://github.com/mlflow/mlflow
logo: mlflow.svg
twitter: https://twitter.com/MLflow
crunchbase: https://www.crunchbase.com/organization/databricks
- item:
name: Open Platform for Enterprise AI (OPEA)
homepage_url: https://opea.dev
project: sandbox
repo_url: https://github.com/opea-project/GenAIExamples
logo: opea.svg
twitter: https://twitter.com/opeadev
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- 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
- item:
name: Seldon
homepage_url: https://www.seldon.io/
repo_url: https://github.com/SeldonIO/seldon-core
logo: seldon.svg
crunchbase: https://www.crunchbase.com/organization/seldon
- 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
crunchbase: https://www.crunchbase.com/organization/microsoft
- subcategory:
name: Library
items:
- item:
name: 1chipML
homepage_url: https://github.com/1chipML/
project: sandbox
repo_url: https://github.com/1chipML/1chipML
logo: 1chipML.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: AutoGluon
homepage_url: https://auto.gluon.ai/
repo_url: https://github.com/awslabs/autogluon
logo: autogluon.svg
twitter: https://twitter.com/autogluon
crunchbase: https://www.crunchbase.com/organization/amazon-web-services
- 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
- item:
name: DeepCausality
homepage_url: https://DeepCausality.com
project: sandbox
repo_url: https://github.com/deepcausality-rs/deep_causality
logo: deepcausality.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Flashlight
homepage_url: https://github.com/flashlight/flashlight
repo_url: https://github.com/flashlight/flashlight
logo: flashlight.svg
twitter: https://twitter.com/MetaAI
crunchbase: https://www.crunchbase.com/organization/facebook
- item:
name: IREE
homepage_url: https://www.iree.dev/
project: sandbox
repo_url: https://github.com/iree-org/iree
logo: iree2.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: MediaPipe
homepage_url: https://mediapipe.dev/
repo_url: https://github.com/google/mediapipe
logo: mediapipe.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/google
- item:
name: mlpack
homepage_url: https://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
- 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
- item:
name: OpenCV
homepage_url: https://opencv.org
repo_url: https://github.com/opencv/opencv
logo: open-cv.svg
crunchbase: https://www.crunchbase.com/organization/opencv
- item:
name: OpenNN
homepage_url: https://www.opennn.net
repo_url: https://github.com/Artelnics/OpenNN
logo: opennn.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/artelnics
- item:
name: PyCaret
homepage_url: https://pycaret.org/
repo_url: https://github.com/pycaret/pycaret
logo: pycaret.svg
crunchbase: https://www.crunchbase.com/organization/pycaret
- item:
name: Recommenders
homepage_url: https://microsoft-recommenders.readthedocs.io/
project: sandbox
repo_url: https://github.com/microsoft/recommenders
license: MIT
logo: recommenders.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: SapientML
homepage_url: https://github.com/sapientml/sapientml
project: sandbox
repo_url: https://github.com/sapientml/sapientml
logo: sapientml.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- 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
- item:
name: Shogun
homepage_url: https://www.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
- item:
name: Sonnet
homepage_url: https://sonnet.dev/
repo_url: https://github.com/deepmind/Sonnet
logo: sonnet.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/google
- 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
- item:
name: XGBoost
homepage_url: https://xgboost.ai/
repo_url: https://github.com/dmlc/xgboost
logo: xgboost.svg
crunchbase: https://www.crunchbase.com/organization/xgboost
- item:
name: xLearn
homepage_url: https://xlearn-doc.readthedocs.io/en/latest/index.html
repo_url: https://github.com/aksnzhy/xlearn
logo: xlearn.svg
crunchbase: https://www.crunchbase.com/organization/xlearn-open-source-projects
- category:
name: Deep Learning
subcategories:
- subcategory:
name: Framework
items:
- item:
name: Apache SINGA
homepage_url: https://singa.apache.org/en/index.html
repo_url: https://github.com/apache/singa
logo: apache-singa.svg
twitter: https://twitter.com/ApacheSinga
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Chainer
homepage_url: https://chainer.org/
repo_url: https://github.com/chainer/chainer
logo: chainer.svg
twitter: https://twitter.com/CuPy_Team
crunchbase: https://www.crunchbase.com/organization/preferred-networks
- item:
name: CNTK
homepage_url: https://docs.microsoft.com/en-us/cognitive-toolkit/
repo_url: https://github.com/Microsoft/CNTK
logo: cntk.svg
twitter: https://twitter.com/mscntk
crunchbase: https://www.crunchbase.com/organization/microsoft
- item:
name: DeepRec
homepage_url: https://deeprec.readthedocs.io/
project: sandbox
repo_url: https://github.com/alibaba/DeepRec
license: Apache 2.0
logo: deeprec.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Dynamic Neural Network Toolkit
homepage_url: https://dynet.readthedocs.io/en/latest/
repo_url: https://github.com/clab/dynet
logo: dynet.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/carnegie-mellon-university
- item:
name: euler
homepage_url: https://github.com/alibaba/euler
repo_url: https://github.com/alibaba/euler
logo: euler.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/alibaba
- item:
name: MindSpore
homepage_url: https://www.mindspore.cn/en
repo_url: https://github.com/mindspore-ai/mindspore
logo: mindspore.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/huawei
- item:
name: MXNet
homepage_url: https://mxnet.apache.org/versions/1.6
repo_url: https://github.com/apache/incubator-mxnet
logo: apache-mxnet.svg
twitter: https://twitter.com/ApacheMXNet
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: ncnn
homepage_url: https://github.com/Tencent/ncnn
repo_url: https://github.com/Tencent/ncnn
logo: ncnn.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/tencent
- item:
name: PaddlePaddle
homepage_url: https://www.paddlepaddle.org.cn
repo_url: https://github.com/PaddlePaddle/Paddle
logo: paddlepaddle.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/baidu
- item:
name: Pythia
homepage_url: https://github.com/facebookresearch/mmf
repo_url: https://github.com/facebookresearch/mmf
logo: pythia.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/facebook
- item:
name: PyTorch
homepage_url: https://pytorch.org/
repo_url: https://github.com/pytorch/pytorch
logo: py-torch.svg
twitter: https://twitter.com/PyTorch
crunchbase: https://www.crunchbase.com/organization/pytorch
- item:
name: Ryoma
homepage_url: https://github.com/project-ryoma/ryoma
project: sandbox
repo_url: https://github.com/project-ryoma/ryoma
logo: ryoma.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: ShaderNN
homepage_url: https://github.com/inferenceengine/shadernn
project: sandbox
repo_url: https://github.com/inferenceengine/shadernn
logo: ShaderNN.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Tensorflow
homepage_url: https://www.tensorflow.org/
repo_url: https://github.com/tensorflow/tensorflow
logo: tensorflow.svg
twitter: https://twitter.com/TensorFlow
crunchbase: https://www.crunchbase.com/organization/google
- subcategory:
name: Platform
items:
- item:
name: DeepDetect
homepage_url: https://www.deepdetect.com/
repo_url: https://github.com/jolibrain/deepdetect
logo: deepdetect.svg
twitter: https://twitter.com/jolibrain
crunchbase: https://www.crunchbase.com/organization/jolibrain
- item:
name: Determined AI
homepage_url: https://www.determined.ai
repo_url: https://github.com/determined-ai/determined
logo: determined-ai.svg
twitter: https://twitter.com/determinedai
crunchbase: https://www.crunchbase.com/organization/determined-ai
- item:
name: Onepanel
homepage_url: https://docs.onepanel.ai
repo_url: https://github.com/onepanelio/onepanel
logo: onepanel.svg
crunchbase: https://www.crunchbase.com/organization/onepanel
- item:
name: Polyaxon
homepage_url: https://polyaxon.com
repo_url: https://github.com/polyaxon/polyaxon
logo: polyaxon.svg
twitter: https://www.twitter.com/polyaxonAI
crunchbase: https://www.crunchbase.com/organization/polyaxon
- item:
name: TonY
homepage_url: https://github.com/tony-framework/TonY
project: incubating
repo_url: https://github.com/tony-framework/TonY
logo: tony.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: X-DeepLearning
homepage_url: https://github.com/alibaba/x-deeplearning
repo_url: https://github.com/alibaba/x-deeplearning
logo: x-deeplearning.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/alibaba
- subcategory:
name: Library
items:
- item:
name: BigDL
homepage_url: https://bigdl-project.github.io/0.9.0/
repo_url: https://github.com/intel-analytics/BigDL
logo: bigdl.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/intel
- item:
name: Catalyst
homepage_url: https://github.com/catalyst-team/catalyst
repo_url: https://github.com/catalyst-team/catalyst
logo: catalyst.svg
crunchbase: https://www.crunchbase.com/organization/catalyst-team
- item:
name: Eclipse Deeplearning4j
homepage_url: https://deeplearning4j.konduit.ai/
repo_url: https://github.com/eclipse/deeplearning4j
logo: deeplearning4j.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/eclipse-foundation
- item:
name: fast.ai
homepage_url: https://www.fast.ai/
repo_url: https://github.com/fastai/fastai
logo: fast-ai.svg
twitter: https://twitter.com/fastdotai
crunchbase: https://www.crunchbase.com/organization/fast-ai
- item:
name: Keras
homepage_url: https://keras.io/
repo_url: https://github.com/keras-team/keras
logo: keras.svg
twitter: https://twitter.com/fchollet
crunchbase: https://www.crunchbase.com/organization/keras
- item:
name: Neural Network Libraries
homepage_url: https://nnabla.org
repo_url: https://github.com/sony/nnabla
logo: nnl.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/sony
- item:
name: PyTorch Ignite
homepage_url: https://pytorch.org/ignite/
repo_url: https://github.com/pytorch/ignite
logo: py-torch-ignite.svg
twitter: https://twitter.com/pytorch_ignite
crunchbase: https://www.crunchbase.com/organization/pytorch
- item:
name: PyTorch Lightning
homepage_url: https://github.com/PyTorchLightning/pytorch-lightning
repo_url: https://github.com/PyTorchLightning/pytorch-lightning
logo: pytorch-lightning.svg
twitter: https://twitter.com/pytorchlightnin
crunchbase: https://www.crunchbase.com/organization/pytorch-lightning
- item:
name: PyTorchVideo
homepage_url: https://pytorchvideo.org/
repo_url: https://github.com/facebookresearch/pytorchvideo
logo: py-torch-video.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/pytorch
- subcategory:
name: Tool
items:
- item:
name: BeyondML
homepage_url: https://github.com/Beyond-ML-Labs/mann
project: sandbox
repo_url: https://github.com/Beyond-ML-Labs/mann
logo: BeyondML.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: BoTorch
homepage_url: https://botorch.org/
repo_url: https://github.com/pytorch/botorch
logo: botorch.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/facebook
- item:
name: Neural Network Distiller
homepage_url: https://nervanasystems.github.io/distiller/
repo_url: https://github.com/IntelLabs/distiller
logo: distiller.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/intel
- item:
name: Plaid ML
homepage_url: https://www.intel.com/content/www/us/en/artificial-intelligence/plaidml.html
repo_url: https://github.com/plaidml/plaidml
logo: plaidml.svg
twitter: https://twitter.com/plaidml
crunchbase: https://www.crunchbase.com/organization/intel
- item:
name: PyTorch BigGraph
homepage_url: https://torchbiggraph.readthedocs.io/en/latest/
repo_url: https://github.com/facebookresearch/PyTorch-BigGraph
logo: pytorch-biggraph.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/facebook
- item:
name: PyTorch Geometric
homepage_url: https://pytorch-geometric.readthedocs.io/en/latest
repo_url: https://github.com/pyg-team/pytorch_geometric
logo: pytorch-geometric.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/tu-dortmund-university
- item:
name: TVM
homepage_url: https://tvm.ai/
repo_url: https://github.com/apache/tvm
logo: tvm.svg
twitter: https://twitter.com/ApacheTVM
crunchbase: https://www.crunchbase.com/organization/apache
- category:
name: Data
subcategories:
- subcategory:
name: Education
items:
- item:
name: DataPractices
homepage_url: https://datapractices.org/
project: incubating
repo_url: https://github.com/datapractices/data-practices-site
logo: datapractices.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: OpenDS4All
homepage_url: https://github.com/odpi/OpenDS4All
project: incubating
repo_url: https://github.com/odpi/OpenDS4All
logo: opends4all.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- subcategory:
name: Lineage
items:
- item:
name: OpenBytes
homepage_url: https://www.openbytes.io/
project: sandbox
repo_url: https://github.com/Project-OpenBytes/OpenBytes
logo: openbytes.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: OpenDataology
homepage_url: https://github.com/OpenDataology/
project: sandbox
repo_url: https://github.com/OpenDataology/OpenDataology
logo: OpenDataology.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: OpenLineage
homepage_url: https://github.com/OpenLineage
project: graduated
repo_url: https://github.com/OpenLineage/OpenLineage
logo: openlineage.svg
twitter: https://twitter.com/OpenLineage
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- subcategory:
name: Relational DB
items:
- item:
name: CouchDB
homepage_url: https://iceberg.apache.org/
repo_url: https://github.com/apache/couchdb
logo: couchdb.svg
twitter: https://twitter.com/CouchDB
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: MySQL
homepage_url: https://www.mysql.com/
repo_url: https://github.com/mysql/mysql-server
logo: mysql.svg
twitter: https://twitter.com/MySQL
crunchbase: https://www.crunchbase.com/organization/oracle
- item:
name: Postgres
homepage_url: https://www.postgresql.org
repo_url: https://github.com/postgres/postgres
logo: postgresql.svg
twitter: https://twitter.com/PostgreSQL
crunchbase: https://www.crunchbase.com/organization/postgresql
- item:
name: TiKV
homepage_url: https://tikv.org
repo_url: https://github.com/tikv/tikv
logo: tikv.svg
twitter: https://twitter.com/tikvproject
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- subcategory:
name: Store & Format
items:
- item:
name: Alluxio
homepage_url: https://www.alluxio.io/
repo_url: https://github.com/alluxio/alluxio
logo: alluxio.svg
twitter: https://twitter.com/alluxio
crunchbase: https://www.crunchbase.com/organization/alluxio
- item:
name: Apache Iceberg
homepage_url: https://iceberg.apache.org/
repo_url: https://github.com/apache/iceberg
logo: iceberg.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Apache ORC
homepage_url: https://orc.apache.org/
repo_url: https://github.com/apache/orc
logo: apache-orc.svg
twitter: https://twitter.com/apacheorc
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: AresDB
homepage_url: https://eng.uber.com/aresdb/
repo_url: https://github.com/uber/aresdb
logo: aresdb.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/uber
- item:
name: Arrow
homepage_url: https://arrow.apache.org/
repo_url: https://github.com/apache/arrow
logo: arrow.svg
twitter: https://twitter.com/ApacheArrow
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Avro
homepage_url: https://avro.apache.org/
repo_url: https://github.com/apache/avro
logo: avro.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Ceph
homepage_url: https://www.ceph.io/en/
repo_url: https://github.com/ceph/ceph
logo: ceph.svg
twitter: https://twitter.com/Ceph
crunchbase: https://www.crunchbase.com/organization/red-hat
- item:
name: Delta Lake
homepage_url: https://delta.io/
project: incubating
repo_url: https://github.com/delta-io/delta
logo: deltalake.svg
twitter: https://twitter.com/DeltaLakeOSS
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Docarray
homepage_url: https://docarray.jina.ai/
project: graduated
repo_url: https://github.com/docarray/docarray
license: Apache 2.0
logo: docarray.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Dragonfly
homepage_url: https://d7y.io/
repo_url: https://github.com/dragonflyoss/Dragonfly2
logo: dragonfly.svg
twitter: https://twitter.com/dragonfly_oss
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- item:
name: Druid
homepage_url: https://druid.apache.org/
repo_url: https://github.com/apache/druid
logo: apache-druid.svg
twitter: https://twitter.com/druidio
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Hudi
homepage_url: https://eng.uber.com/hoodie/
repo_url: https://github.com/apache/hudi
logo: hudi.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/uber
- item:
name: HugeGraph
homepage_url: https://hugegraph.apache.org/
repo_url: https://github.com/apache/incubator-hugegraph
logo: hugegraph.svg
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: InfluxDB
homepage_url: https://www.influxdata.com/
repo_url: https://github.com/influxdata/influxdb
logo: influx.svg
crunchbase: https://www.crunchbase.com/organization/influxdb
- item:
name: JanusGraph
homepage_url: https://janusgraph.org/
project: incubating
repo_url: https://github.com/JanusGraph/janusgraph
logo: janusgraph.svg
twitter: https://twitter.com/janusgraph
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: LakeSoul
homepage_url: https://www.dmetasoul.com/en/docs/lakesoul/
project: sandbox
repo_url: https://github.com/meta-soul/LakeSoul
license: Apache 2.0
logo: lakesoul.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Milvus
homepage_url: https://milvus.io
project: graduated
repo_url: https://github.com/milvus-io/milvus
logo: milvus.svg
twitter: https://twitter.com/milvusio
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: pandas
homepage_url: https://pandas.pydata.org/
repo_url: https://github.com/pandas-dev/pandas
logo: pandas.svg
twitter: https://twitter.com/pandas_dev
crunchbase: https://www.crunchbase.com/organization/ursa-computing
- item:
name: Parquet
homepage_url: https://parquet.apache.org/
repo_url: https://github.com/apache/parquet-format
logo: parquet.svg
twitter: https://twitter.com/apacheparquet
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: Pilosa
homepage_url: https://www.pilosa.com/
repo_url: https://github.com/pilosa/pilosa
logo: pilosa.svg
crunchbase: https://www.crunchbase.com/organization/pilosa
- item:
name: StarRocks
description: >-
StarRocks is a next-gen sub-second MPP database for full analytics scenarios, including multi-dimensional analytics, real-time analytics and
ad-hoc query.
homepage_url: https://starrocks.io
repo_url: https://github.com/StarRocks/starrocks
logo: starrocks.svg
crunchbase: https://www.crunchbase.com/organization/celerdata
extra:
blog_url: https://www.starrocks.io/blog
youtube_url: https://www.youtube.com/channel/UC38wR-ogamk4naaWNQ45y7Q
slack_url: https://join.slack.com/t/starrocks/shared_invite/zt-z5zxqr0k-U5lrTVlgypRIV8RbnCIAzg
- item:
name: Vald
description: >-
Vald is an advanced, scalable vector search engine, tailored for AI and machine learning applications in the cloud-native ecosystem. Specializing
in high-dimensional vector data, it provides efficient and near real-time search capabilities, essential for handling vast datasets in AI research
and development. Designed for seamless integration and user-friendliness, Vald supports AI innovators with state-of-the-art search technology.
homepage_url: https://vald.vdaas.org/
repo_url: https://github.com/vdaas/vald
additional_repos:
- repo_url: https://github.com/vdaas/vald-client-go
- repo_url: https://github.com/vdaas/vald-client-java
- repo_url: https://github.com/vdaas/vald-client-node
- repo_url: https://github.com/vdaas/vald-client-python
- repo_url: https://github.com/vdaas/vald-client-clj
- repo_url: https://github.com/vdaas/vald-tensorflow-ingress-filter
- repo_url: https://github.com/vdaas/vald-onnx-ingress-filter
- repo_url: https://github.com/vdaas/vald-demo
logo: vald.svg
twitter: https://twitter.com/vdaas_vald
crunchbase: https://www.crunchbase.com/organization/ly-corporation
extra:
blog_url: https://vdaas-vald.medium.com/
blog_jp_url: https://zenn.dev/vald
docker_url: https://hub.docker.com/u/vdaas
helm_chart_url: https://artifacthub.io/packages/chart/vald/vald
operator_chart_url: https://artifacthub.io/packages/chart/vald/vald-helm-operator
slack_url: https://join.slack.com/t/vald-community/shared_invite/zt-db2ky9o4-R_9p2sVp8xRwztVa8gfnPA
- item:
name: VEARCH
homepage_url: https://vearch.github.io/
repo_url: https://github.com/vearch/vearch
logo: vearch.svg
twitter: https://twitter.com/ai_vearch
crunchbase: https://www.crunchbase.com/organization/jd-com
- item:
name: Vespa
homepage_url: https://vespa.ai/
repo_url: https://github.com/vespa-engine/vespa
logo: vespa.svg
twitter: https://twitter.com/vespaengine
crunchbase: https://www.crunchbase.com/organization/verizon-media
- item:
name: Vineyard
description: Vineyard (v6d) is an in-memory immutable data manager.
homepage_url: https://v6d.io/
repo_url: https://github.com/v6d-io/v6d
logo: vineyard.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/cloud-native-computing-foundation
- subcategory:
name: Versioning
items:
- item:
name: dotmesh
homepage_url: https://dotmesh.com/
repo_url: https://github.com/dotmesh-io/dotmesh
logo: dotmesh.svg
crunchbase: https://www.crunchbase.com/organization/dotscience
- item:
name: DVC
homepage_url: https://dvc.org/
repo_url: https://github.com/iterative/dvc
logo: dvc.svg
twitter: https://twitter.com/iterativeai
crunchbase: https://www.crunchbase.com/organization/iterative
- item:
name: FastTrackML
homepage_url: https://fasttrackml.io/
repo_url: https://github.com/G-Research/fasttrackml
license: Apache 2.0
logo: fasttrackml.svg
twitter: https://twitter.com/oss_gr
crunchbase: https://www.crunchbase.com/organization/g-research
- item:
name: Quilt Data
homepage_url: https://docs.quiltdata.com/
repo_url: https://github.com/quiltdata/quilt
logo: quiltdata.svg
crunchbase: https://www.crunchbase.com/organization/quilt-data
- subcategory:
name: Operations
items:
- item:
name: Amundsen
homepage_url: https://www.amundsen.io/
project: incubating
repo_url: https://github.com/amundsen-io/amundsen
logo: amundsen.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Apache Hive
homepage_url: https://hive.apache.org/
repo_url: https://github.com/apache/hive
logo: hive.svg
crunchbase: https://www.crunchbase.com/organization/apache
- item:
name: CKAN
homepage_url: https://ckan.org/
repo_url: https://github.com/ckan/ckan
logo: ckan.svg
twitter: https://twitter.com/ckanproject
crunchbase: https://www.crunchbase.com/organization/open-knowledge-foundation
- item:
name: DataHub
homepage_url: https://github.com/datahub-project/datahub
repo_url: https://github.com/datahub-project/datahub
logo: datahub.svg
crunchbase: https://www.crunchbase.com/organization/linkedin
- item:
name: Datashim
homepage_url: https://github.com/datashim-io/datashim
project: incubating
repo_url: https://github.com/datashim-io/datashim
logo: datashim.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: great_expectations
homepage_url: https://greatexpectations.io/
repo_url: https://github.com/great-expectations/great_expectations
logo: great-expectations.svg
crunchbase: https://www.crunchbase.com/organization/great-expectations-c89a
- item:
name: Marquez
homepage_url: https://marquezproject.github.io/marquez
project: graduated
repo_url: https://github.com/MarquezProject/marquez
logo: marquez.svg
twitter: https://twitter.com/MarquezProject
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Mathesar
homepage_url: https://mathesar.org
repo_url: https://github.com/centerofci/mathesar
license: GPL 3.0
logo: mathesar.svg
crunchbase: https://www.crunchbase.com/organization/center-of-complex-interventions
- item:
name: snorkel
homepage_url: https://www.snorkel.org/
repo_url: https://github.com/snorkel-team/snorkel
logo: snorkel.svg
twitter: https://twitter.com/SnorkelAI
crunchbase: https://www.crunchbase.com/organization/stanford-university
- item:
name: whylogs
homepage_url: https://github.com/whylabs/whylogs
repo_url: https://github.com/whylabs/whylogs
logo: whylogs.svg
crunchbase: https://www.crunchbase.com/organization/whylabs
- subcategory:
name: Feature Engineering
items:
- item:
name: Feast
homepage_url: https://feast.dev/
project: incubating
repo_url: https://github.com/feast-dev/feast
logo: feast.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Feathr
homepage_url: https://github.com/linkedin/feathr
project: sandbox
repo_url: https://github.com/linkedin/feathr
logo: feathr.svg
crunchbase: https://www.crunchbase.com/organization/lf-artificial-intelligence-foundation
- item:
name: Featuretools
homepage_url: https://www.featuretools.com/
repo_url: https://github.com/alteryx/featuretools
logo: featuretools.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/feature-labs
- item:
name: OpenMLDB
homepage_url: https://openmldb.ai/
repo_url: https://github.com/4paradigm/OpenMLDB
logo: openMLDB.svg
twitter: https://twitter.com/openmldb
crunchbase: https://www.crunchbase.com/organization/4paradigm
- item:
name: tsfresh
homepage_url: https://tsfresh.readthedocs.io/en/latest
repo_url: https://github.com/blue-yonder/tsfresh
logo: tsfresh.svg
crunchbase: https://www.crunchbase.com/organization/blue-yonder
- subcategory:
name: Stream Processing
items:
- item: