-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
3431 lines (3431 loc) · 190 KB
/
README
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
15618prj https://github.com/sailfish009/15618prj
2020-CBMS-DoubleU-Net https://github.com/sailfish009/2020-CBMS-DoubleU-Net
2D-3D-Semantics https://github.com/sailfish009/2D-3D-Semantics
2D_Elastic-Properties https://github.com/sailfish009/2D_Elastic-Properties
3d-force-graph https://github.com/sailfish009/3d-force-graph
3D-Generative-SBDD https://github.com/sailfish009/3D-Generative-SBDD
3D-MIL-QSAR https://github.com/sailfish009/3D-MIL-QSAR
3d-photo-inpainting https://github.com/sailfish009/3d-photo-inpainting
3D-ResNets-PyTorch https://github.com/sailfish009/3D-ResNets-PyTorch
3DDFA_V2 https://github.com/sailfish009/3DDFA_V2
3DGCN https://github.com/sailfish009/3DGCN
3DInfomax https://github.com/sailfish009/3DInfomax
3Dmol.js https://github.com/sailfish009/3Dmol.js
3DUnetCNN https://github.com/sailfish009/3DUnetCNN
64-3D-RaSGAN https://github.com/sailfish009/64-3D-RaSGAN
A-differentiable-programming-method-for-quantum-control https://github.com/sailfish009/A-differentiable-programming-method-for-quantum-control
abacus-develop https://github.com/sailfish009/abacus-develop
ABChemoinformatics https://github.com/sailfish009/ABChemoinformatics
abinit https://github.com/sailfish009/abinit
abipy https://github.com/sailfish009/abipy
Absolut https://github.com/sailfish009/Absolut
abstract-reasoning-matrices https://github.com/sailfish009/abstract-reasoning-matrices
Acai https://github.com/sailfish009/Acai
accelerate https://github.com/sailfish009/accelerate
accimage https://github.com/sailfish009/accimage
aceql-http https://github.com/sailfish009/aceql-http
ack3 https://github.com/sailfish009/ack3
acl2020 https://github.com/sailfish009/acl2020
acme https://github.com/sailfish009/acme
ACP-DL https://github.com/sailfish009/ACP-DL
activator https://github.com/sailfish009/activator
Active-Contour-Loss https://github.com/sailfish009/Active-Contour-Loss
Active-Contour-Loss-pytorch https://github.com/sailfish009/Active-Contour-Loss-pytorch
Activemotif_based_ML_GASpy https://github.com/sailfish009/Activemotif_based_ML_GASpy
actix-web https://github.com/sailfish009/actix-web
ada-hessian https://github.com/sailfish009/ada-hessian
adabmDCA https://github.com/sailfish009/adabmDCA
AdaBound https://github.com/sailfish009/AdaBound
adahessian https://github.com/sailfish009/adahessian
adanet https://github.com/sailfish009/adanet
adaptive_sampling https://github.com/sailfish009/adaptive_sampling
adblock-rust https://github.com/sailfish009/adblock-rust
ADMETlab https://github.com/sailfish009/ADMETlab
adobe_source_libraries https://github.com/sailfish009/adobe_source_libraries
Advanced-Deep-Learning-with-Keras https://github.com/sailfish009/Advanced-Deep-Learning-with-Keras
Advanced-Machine-Learning-Specialization https://github.com/sailfish009/Advanced-Machine-Learning-Specialization
AdvancedEAST https://github.com/sailfish009/AdvancedEAST
aenet https://github.com/sailfish009/aenet
aequitas https://github.com/sailfish009/aequitas
aesara https://github.com/sailfish009/aesara
agda https://github.com/sailfish009/agda
agg https://github.com/sailfish009/agg
aglio https://github.com/sailfish009/aglio
AGRL.pytorch https://github.com/sailfish009/AGRL.pytorch
AI-Crash-Course https://github.com/sailfish009/AI-Crash-Course
ai-zero https://github.com/sailfish009/ai-zero
aiida-phonopy https://github.com/sailfish009/aiida-phonopy
AIMat https://github.com/sailfish009/AIMat
aimnet https://github.com/sailfish009/aimnet
AINDNet https://github.com/sailfish009/AINDNet
aiohttp https://github.com/sailfish009/aiohttp
aiopipe https://github.com/sailfish009/aiopipe
airflow https://github.com/sailfish009/airflow
aistore https://github.com/sailfish009/aistore
aizynthfinder https://github.com/sailfish009/aizynthfinder
AI_in_Drug_Discovery_Progress https://github.com/sailfish009/AI_in_Drug_Discovery_Progress
akka https://github.com/sailfish009/akka
alacritty-theme https://github.com/sailfish009/alacritty-theme
ALAE https://github.com/sailfish009/ALAE
albumentations https://github.com/sailfish009/albumentations
ale https://github.com/sailfish009/ale
alfabet https://github.com/sailfish009/alfabet
alignn https://github.com/sailfish009/alignn
all-conv-pytorch https://github.com/sailfish009/all-conv-pytorch
alphafill https://github.com/sailfish009/alphafill
alphafold https://github.com/sailfish009/alphafold
alphafold-repl https://github.com/sailfish009/alphafold-repl
alphafold2 https://github.com/sailfish009/alphafold2
Alphafold2_talk https://github.com/sailfish009/Alphafold2_talk
alphafold_pytorch https://github.com/sailfish009/alphafold_pytorch
alphapept https://github.com/sailfish009/alphapept
AlphaSMILES https://github.com/sailfish009/AlphaSMILES
AlphaSpace2 https://github.com/sailfish009/AlphaSpace2
aLRPLoss https://github.com/sailfish009/aLRPLoss
altair https://github.com/sailfish009/altair
Alter-Native https://github.com/sailfish009/Alter-Native
alzheimers_parkinsons https://github.com/sailfish009/alzheimers_parkinsons
AM-GCN https://github.com/sailfish009/AM-GCN
Amazing-Semantic-Segmentation https://github.com/sailfish009/Amazing-Semantic-Segmentation
amazon-braket-sdk-python https://github.com/sailfish009/amazon-braket-sdk-python
ampal https://github.com/sailfish009/ampal
AMPL https://github.com/sailfish009/AMPL
analogmat https://github.com/sailfish009/analogmat
analysis https://github.com/sailfish009/analysis
anarki https://github.com/sailfish009/anarki
android_device_xiaomi_hermes https://github.com/sailfish009/android_device_xiaomi_hermes
angr https://github.com/sailfish009/angr
angular_storefront https://github.com/sailfish009/angular_storefront
AnimalAI-Olympics https://github.com/sailfish009/AnimalAI-Olympics
ANN https://github.com/sailfish009/ANN
anomaly-detection-resources https://github.com/sailfish009/anomaly-detection-resources
antialiased-cnns https://github.com/sailfish009/antialiased-cnns
antibody-pairing https://github.com/sailfish009/antibody-pairing
anvill https://github.com/sailfish009/anvill
aom https://github.com/sailfish009/aom
apbs-pdb2pqr https://github.com/sailfish009/apbs-pdb2pqr
apery https://github.com/sailfish009/apery
apex https://github.com/sailfish009/apex
apitrace https://github.com/sailfish009/apitrace
apollo https://github.com/sailfish009/apollo
apollo-client https://github.com/sailfish009/apollo-client
apollo-server https://github.com/sailfish009/apollo-server
Applied-Deep-Learning-with-Python https://github.com/sailfish009/Applied-Deep-Learning-with-Python
Applied-Deep-Learning-with-PyTorch https://github.com/sailfish009/Applied-Deep-Learning-with-PyTorch
applied-ml https://github.com/sailfish009/applied-ml
applied-ml-1 https://github.com/sailfish009/applied-ml-1
Applying-Math-with-Python https://github.com/sailfish009/Applying-Math-with-Python
aqml https://github.com/sailfish009/aqml
arangodb https://github.com/sailfish009/arangodb
ARC https://github.com/sailfish009/ARC
ARC-solution https://github.com/sailfish009/ARC-solution
AReLU https://github.com/sailfish009/AReLU
aria2 https://github.com/sailfish009/aria2
ariane https://github.com/sailfish009/ariane
arithmetic-circuits https://github.com/sailfish009/arithmetic-circuits
armbian_build https://github.com/sailfish009/armbian_build
Arnold https://github.com/sailfish009/Arnold
arrayfire https://github.com/sailfish009/arrayfire
arraygen https://github.com/sailfish009/arraygen
arrow https://github.com/sailfish009/arrow
arrow_cpp https://github.com/sailfish009/arrow_cpp
arrow_rust https://github.com/sailfish009/arrow_rust
artic https://github.com/sailfish009/artic
Arxiv-Neural-Search https://github.com/sailfish009/Arxiv-Neural-Search
arxiv.py https://github.com/sailfish009/arxiv.py
asdf https://github.com/sailfish009/asdf
asdf-standard https://github.com/sailfish009/asdf-standard
ase https://github.com/sailfish009/ase
ASE_ANI https://github.com/sailfish009/ASE_ANI
asio https://github.com/sailfish009/asio
asio_20160922 https://github.com/sailfish009/asio_20160922
asirra-dogs-cats-classification https://github.com/sailfish009/asirra-dogs-cats-classification
ASKCOS https://github.com/sailfish009/ASKCOS
ASL https://github.com/sailfish009/ASL
assessing_mol_prediction_confidence https://github.com/sailfish009/assessing_mol_prediction_confidence
asteroid https://github.com/sailfish009/asteroid
astroNN https://github.com/sailfish009/astroNN
async-std https://github.com/sailfish009/async-std
asyncio https://github.com/sailfish009/asyncio
asyncpg https://github.com/sailfish009/asyncpg
asyncplusplus https://github.com/sailfish009/asyncplusplus
atari-py https://github.com/sailfish009/atari-py
ATL https://github.com/sailfish009/ATL
atom https://github.com/sailfish009/atom
atom-ide-ui https://github.com/sailfish009/atom-ide-ui
atom-joggling https://github.com/sailfish009/atom-joggling
atom-script https://github.com/sailfish009/atom-script
atom-vim-mode-plus https://github.com/sailfish009/atom-vim-mode-plus
Atom2Vec https://github.com/sailfish009/Atom2Vec
atom3d https://github.com/sailfish009/atom3d
atomate https://github.com/sailfish009/atomate
atomium https://github.com/sailfish009/atomium
atomman https://github.com/sailfish009/atomman
AtomsBase.jl https://github.com/sailfish009/AtomsBase.jl
atomsk https://github.com/sailfish009/atomsk
atomthreads https://github.com/sailfish009/atomthreads
ATSS-EfficientDet-PyTorch https://github.com/sailfish009/ATSS-EfficientDet-PyTorch
attention-cnn https://github.com/sailfish009/attention-cnn
Attention-Gated-Networks https://github.com/sailfish009/Attention-Gated-Networks
AttentionDTA_BIBM https://github.com/sailfish009/AttentionDTA_BIBM
attiny https://github.com/sailfish009/attiny
ATtiny-Rx-only-UART https://github.com/sailfish009/ATtiny-Rx-only-UART
AugLy https://github.com/sailfish009/AugLy
augmix https://github.com/sailfish009/augmix
auth0-spa-js https://github.com/sailfish009/auth0-spa-js
Auto-PyTorch https://github.com/sailfish009/Auto-PyTorch
auto-QChem https://github.com/sailfish009/auto-QChem
AutoAugment https://github.com/sailfish009/AutoAugment
AutoCkt https://github.com/sailfish009/AutoCkt
autofeat https://github.com/sailfish009/autofeat
autogluon https://github.com/sailfish009/autogluon
AutoGraph https://github.com/sailfish009/AutoGraph
autojump https://github.com/sailfish009/autojump
autokeras https://github.com/sailfish009/autokeras
automatminer https://github.com/sailfish009/automatminer
autonomous-learning-library https://github.com/sailfish009/autonomous-learning-library
Autonomous-Underwater-Vehicle-Control-using-Reinforcement-Learning https://github.com/sailfish009/Autonomous-Underwater-Vehicle-Control-using-Reinforcement-Learning
AutoSF https://github.com/sailfish009/AutoSF
av1-spec https://github.com/sailfish009/av1-spec
Avalonia https://github.com/sailfish009/Avalonia
avcpp https://github.com/sailfish009/avcpp
aviary https://github.com/sailfish009/aviary
avTranscoder https://github.com/sailfish009/avTranscoder
awesome-anomaly-detection https://github.com/sailfish009/awesome-anomaly-detection
Awesome-APIs https://github.com/sailfish009/Awesome-APIs
awesome-AutoML https://github.com/sailfish009/awesome-AutoML
awesome-autonomous-vehicles https://github.com/sailfish009/awesome-autonomous-vehicles
Awesome-Best-Papers https://github.com/sailfish009/Awesome-Best-Papers
Awesome-Bioinformatics https://github.com/sailfish009/Awesome-Bioinformatics
awesome-biology https://github.com/sailfish009/awesome-biology
awesome-cheatsheets https://github.com/sailfish009/awesome-cheatsheets
awesome-cheminformatics https://github.com/sailfish009/awesome-cheminformatics
awesome-contrastive-self-supervised-learning https://github.com/sailfish009/awesome-contrastive-self-supervised-learning
awesome-cryoem https://github.com/sailfish009/awesome-cryoem
awesome-datascience https://github.com/sailfish009/awesome-datascience
awesome-decision-tree-papers https://github.com/sailfish009/awesome-decision-tree-papers
awesome-deep-gnn https://github.com/sailfish009/awesome-deep-gnn
awesome-deep-learning https://github.com/sailfish009/awesome-deep-learning
awesome-deep-vision https://github.com/sailfish009/awesome-deep-vision
awesome-efficient-gnn https://github.com/sailfish009/awesome-efficient-gnn
awesome-ehr-deeplearning https://github.com/sailfish009/awesome-ehr-deeplearning
awesome-elixir https://github.com/sailfish009/awesome-elixir
awesome-explainable-graph-reasoning https://github.com/sailfish009/awesome-explainable-graph-reasoning
awesome-feature-engineering https://github.com/sailfish009/awesome-feature-engineering
awesome-fp-js https://github.com/sailfish009/awesome-fp-js
awesome-functional-python https://github.com/sailfish009/awesome-functional-python
awesome-gan-for-medical-imaging https://github.com/sailfish009/awesome-gan-for-medical-imaging
awesome-graph-classification https://github.com/sailfish009/awesome-graph-classification
awesome-graph-explainability-papers https://github.com/sailfish009/awesome-graph-explainability-papers
awesome-graph-generation https://github.com/sailfish009/awesome-graph-generation
Awesome-Graph-Neural-Networks https://github.com/sailfish009/Awesome-Graph-Neural-Networks
awesome-graph-self-supervised-learning https://github.com/sailfish009/awesome-graph-self-supervised-learning
awesome-graphql https://github.com/sailfish009/awesome-graphql
awesome-hpp https://github.com/sailfish009/awesome-hpp
Awesome-Hyperbolic-NeuralNetworks https://github.com/sailfish009/Awesome-Hyperbolic-NeuralNetworks
awesome-investing https://github.com/sailfish009/awesome-investing
awesome-llvm https://github.com/sailfish009/awesome-llvm
awesome-machine-learning https://github.com/sailfish009/awesome-machine-learning
awesome-machine-learning-in-compilers https://github.com/sailfish009/awesome-machine-learning-in-compilers
awesome-materials-informatics https://github.com/sailfish009/awesome-materials-informatics
awesome-meta-learning https://github.com/sailfish009/awesome-meta-learning
Awesome-Meta-Learning-1 https://github.com/sailfish009/Awesome-Meta-Learning-1
Awesome-monocular-3d-object-detection https://github.com/sailfish009/Awesome-monocular-3d-object-detection
awesome-monte-carlo-tree-search-papers https://github.com/sailfish009/awesome-monte-carlo-tree-search-papers
awesome-NeRF https://github.com/sailfish009/awesome-NeRF
awesome-nn-optimization https://github.com/sailfish009/awesome-nn-optimization
awesome-object-detection https://github.com/sailfish009/awesome-object-detection
awesome-papers-fewshot https://github.com/sailfish009/awesome-papers-fewshot
awesome-point-cloud-analysis https://github.com/sailfish009/awesome-point-cloud-analysis
Awesome-Pruning https://github.com/sailfish009/Awesome-Pruning
awesome-python https://github.com/sailfish009/awesome-python
awesome-python-chemistry https://github.com/sailfish009/awesome-python-chemistry
awesome-python-data-science https://github.com/sailfish009/awesome-python-data-science
Awesome-pytorch-list https://github.com/sailfish009/Awesome-pytorch-list
awesome-quantum-chemistry https://github.com/sailfish009/awesome-quantum-chemistry
awesome-quantum-software https://github.com/sailfish009/awesome-quantum-software
awesome-rust https://github.com/sailfish009/awesome-rust
awesome-satellite-imagery-datasets https://github.com/sailfish009/awesome-satellite-imagery-datasets
awesome-scientific-python https://github.com/sailfish009/awesome-scientific-python
awesome-self-supervised-gnn https://github.com/sailfish009/awesome-self-supervised-gnn
awesome-self-supervised-learning https://github.com/sailfish009/awesome-self-supervised-learning
Awesome-Self-Supervised-Papers https://github.com/sailfish009/Awesome-Self-Supervised-Papers
awesome-semi-supervised-learning https://github.com/sailfish009/awesome-semi-supervised-learning
awesome-small-molecule-ml https://github.com/sailfish009/awesome-small-molecule-ml
awesome-source-analysis https://github.com/sailfish009/awesome-source-analysis
awesome-symbolic-execution https://github.com/sailfish009/awesome-symbolic-execution
awesome-text-generation https://github.com/sailfish009/awesome-text-generation
awesome-tiny-object-detection https://github.com/sailfish009/awesome-tiny-object-detection
awesome-transformers-in-medical-imaging https://github.com/sailfish009/awesome-transformers-in-medical-imaging
awesome-vector-search https://github.com/sailfish009/awesome-vector-search
awesome-very-deep-learning https://github.com/sailfish009/awesome-very-deep-learning
Awesome-Visual-Transformer https://github.com/sailfish009/Awesome-Visual-Transformer
awesome-vue https://github.com/sailfish009/awesome-vue
awesome-zero-shot-learning https://github.com/sailfish009/awesome-zero-shot-learning
awesome_ai4eda https://github.com/sailfish009/awesome_ai4eda
Awesome_BigData_AI_DrugDiscovery https://github.com/sailfish009/Awesome_BigData_AI_DrugDiscovery
awesome_OpenSetRecognition_list https://github.com/sailfish009/awesome_OpenSetRecognition_list
awesome_time_series_in_python https://github.com/sailfish009/awesome_time_series_in_python
Ax https://github.com/sailfish009/Ax
axios https://github.com/sailfish009/axios
Azure-Kinect-Sensor-SDK https://github.com/sailfish009/Azure-Kinect-Sensor-SDK
backpack https://github.com/sailfish009/backpack
badger https://github.com/sailfish009/badger
balance-chemical-equations https://github.com/sailfish009/balance-chemical-equations
BalancedGroupSoftmax https://github.com/sailfish009/BalancedGroupSoftmax
bandstructureplots https://github.com/sailfish009/bandstructureplots
BANE https://github.com/sailfish009/BANE
barcode-detect https://github.com/sailfish009/barcode-detect
Barcode-Detection-and-Decoding https://github.com/sailfish009/Barcode-Detection-and-Decoding
BasicBitmap https://github.com/sailfish009/BasicBitmap
BasicSR https://github.com/sailfish009/BasicSR
batchnorm-pruning https://github.com/sailfish009/batchnorm-pruning
bazel https://github.com/sailfish009/bazel
BBB_calculator https://github.com/sailfish009/BBB_calculator
bbo_challenge_starter_kit https://github.com/sailfish009/bbo_challenge_starter_kit
BCDU-Net https://github.com/sailfish009/BCDU-Net
BCNet https://github.com/sailfish009/BCNet
bcompiler https://github.com/sailfish009/bcompiler
bcrypt https://github.com/sailfish009/bcrypt
bcrypt.js https://github.com/sailfish009/bcrypt.js
beaker https://github.com/sailfish009/beaker
Bear https://github.com/sailfish009/Bear
beautiful-atoms https://github.com/sailfish009/beautiful-atoms
bel https://github.com/sailfish009/bel
bel-1 https://github.com/sailfish009/bel-1
benchmark https://github.com/sailfish009/benchmark
benchmarking-gnns https://github.com/sailfish009/benchmarking-gnns
BentoML https://github.com/sailfish009/BentoML
bert https://github.com/sailfish009/bert
bert-fold https://github.com/sailfish009/bert-fold
bert-loves-chemistry https://github.com/sailfish009/bert-loves-chemistry
BERT-pytorch https://github.com/sailfish009/BERT-pytorch
bertviz https://github.com/sailfish009/bertviz
Beta-CROWN https://github.com/sailfish009/Beta-CROWN
betrusted-wiki https://github.com/sailfish009/betrusted-wiki
Better-Python-59-Ways https://github.com/sailfish009/Better-Python-59-Ways
bgflow https://github.com/sailfish009/bgflow
bgfx https://github.com/sailfish009/bgfx
bidd-molmap https://github.com/sailfish009/bidd-molmap
BiDet https://github.com/sailfish009/BiDet
bigassm https://github.com/sailfish009/bigassm
bigbird https://github.com/sailfish009/bigbird
BigInt https://github.com/sailfish009/BigInt
bigint-1 https://github.com/sailfish009/bigint-1
BiGRU-CRF-with-Attention-for-NER https://github.com/sailfish009/BiGRU-CRF-with-Attention-for-NER
big_transfer https://github.com/sailfish009/big_transfer
BiLevel-Graph-Neural-Network https://github.com/sailfish009/BiLevel-Graph-Neural-Network
binding_affinity_calculator https://github.com/sailfish009/binding_affinity_calculator
bio-lm https://github.com/sailfish009/bio-lm
bio-transformers https://github.com/sailfish009/bio-transformers
biobert https://github.com/sailfish009/biobert
biobox https://github.com/sailfish009/biobox
bioconda-recipes https://github.com/sailfish009/bioconda-recipes
bioconvert https://github.com/sailfish009/bioconvert
BiocTerm https://github.com/sailfish009/BiocTerm
BioDiscML https://github.com/sailfish009/BioDiscML
BioExplorer https://github.com/sailfish009/BioExplorer
BioGrakn https://github.com/sailfish009/BioGrakn
bioicons https://github.com/sailfish009/bioicons
Bioinformatics-Algorithms https://github.com/sailfish009/Bioinformatics-Algorithms
bioinformatics-workbook https://github.com/sailfish009/bioinformatics-workbook
biomedbert https://github.com/sailfish009/biomedbert
biomedical-knowledge-mining-book https://github.com/sailfish009/biomedical-knowledge-mining-book
biomedicalresearch2021 https://github.com/sailfish009/biomedicalresearch2021
biopandas https://github.com/sailfish009/biopandas
biopython https://github.com/sailfish009/biopython
bioseq-learning https://github.com/sailfish009/bioseq-learning
biostructmap https://github.com/sailfish009/biostructmap
bioSyntax https://github.com/sailfish009/bioSyntax
biotite https://github.com/sailfish009/biotite
biovec https://github.com/sailfish009/biovec
bio_embeddings https://github.com/sailfish009/bio_embeddings
bipartite-graph-learning https://github.com/sailfish009/bipartite-graph-learning
Bits https://github.com/sailfish009/Bits
bittersweet https://github.com/sailfish009/bittersweet
bjoern https://github.com/sailfish009/bjoern
Blackmire https://github.com/sailfish009/Blackmire
bldc-tool https://github.com/sailfish009/bldc-tool
Blood-Brain-Barrier-Permeability-Prediction https://github.com/sailfish009/Blood-Brain-Barrier-Permeability-Prediction
BNM https://github.com/sailfish009/BNM
BOAH https://github.com/sailfish009/BOAH
bondnet https://github.com/sailfish009/bondnet
boost https://github.com/sailfish009/boost
boost_ui https://github.com/sailfish009/boost_ui
boot https://github.com/sailfish009/boot
bootstrap https://github.com/sailfish009/bootstrap
botorch https://github.com/sailfish009/botorch
bottle https://github.com/sailfish009/bottle
bottleneck https://github.com/sailfish009/bottleneck
bottleneck-transformer-pytorch https://github.com/sailfish009/bottleneck-transformer-pytorch
bottlerocket https://github.com/sailfish009/bottlerocket
Bottom-up-de-novo-design https://github.com/sailfish009/Bottom-up-de-novo-design
box-convolutions https://github.com/sailfish009/box-convolutions
brain-age-gnn https://github.com/sailfish009/brain-age-gnn
breathe https://github.com/sailfish009/breathe
breeze https://github.com/sailfish009/breeze
broot https://github.com/sailfish009/broot
brython https://github.com/sailfish009/brython
bsdf https://github.com/sailfish009/bsdf
bsdnt https://github.com/sailfish009/bsdnt
bsym https://github.com/sailfish009/bsym
buildbot https://github.com/sailfish009/buildbot
builder https://github.com/sailfish009/builder
Building-and-Interpreting-Random-Forest-based-Cell-Penetrating-Peptide-Prediction-Model https://github.com/sailfish009/Building-and-Interpreting-Random-Forest-based-Cell-Penetrating-Peptide-Prediction-Model
buildout https://github.com/sailfish009/buildout
buku https://github.com/sailfish009/buku
bullet3 https://github.com/sailfish009/bullet3
byol-pytorch https://github.com/sailfish009/byol-pytorch
byt5 https://github.com/sailfish009/byt5
c11-queues https://github.com/sailfish009/c11-queues
c2rust https://github.com/sailfish009/c2rust
c3c https://github.com/sailfish009/c3c
c3pred https://github.com/sailfish009/c3pred
Ca-Backbone-Prediction https://github.com/sailfish009/Ca-Backbone-Prediction
caer https://github.com/sailfish009/caer
caffe https://github.com/sailfish009/caffe
caffe-keypoint-rcnn https://github.com/sailfish009/caffe-keypoint-rcnn
caffe-mnist-test https://github.com/sailfish009/caffe-mnist-test
caffe2 https://github.com/sailfish009/caffe2
caffe2.github.io https://github.com/sailfish009/caffe2.github.io
Calories-Alert-Kafka https://github.com/sailfish009/Calories-Alert-Kafka
CAMD https://github.com/sailfish009/CAMD
camus https://github.com/sailfish009/camus
cancer_data https://github.com/sailfish009/cancer_data
CANDO https://github.com/sailfish009/CANDO
canister https://github.com/sailfish009/canister
captum https://github.com/sailfish009/captum
CARE-GNN https://github.com/sailfish009/CARE-GNN
cargo https://github.com/sailfish009/cargo
carla https://github.com/sailfish009/carla
CasparCG_Server https://github.com/sailfish009/CasparCG_Server
Catch https://github.com/sailfish009/Catch
CatKit https://github.com/sailfish009/CatKit
Catlab.jl https://github.com/sailfish009/Catlab.jl
CatLearn https://github.com/sailfish009/CatLearn
causalnex https://github.com/sailfish009/causalnex
cbh21-protein-solubility-challenge https://github.com/sailfish009/cbh21-protein-solubility-challenge
ccgnet https://github.com/sailfish009/ccgnet
ccl https://github.com/sailfish009/ccl
CCMpred https://github.com/sailfish009/CCMpred
CCTag https://github.com/sailfish009/CCTag
ccv https://github.com/sailfish009/ccv
cddd https://github.com/sailfish009/cddd
cdfsl-benchmark https://github.com/sailfish009/cdfsl-benchmark
CDN_Molecule https://github.com/sailfish009/CDN_Molecule
CedarX-12.06.2015 https://github.com/sailfish009/CedarX-12.06.2015
cedarx-libs https://github.com/sailfish009/cedarx-libs
cedrus https://github.com/sailfish009/cedrus
celluloid https://github.com/sailfish009/celluloid
CenterMask https://github.com/sailfish009/CenterMask
CenterNet https://github.com/sailfish009/CenterNet
ceres-solver https://github.com/sailfish009/ceres-solver
CFAI https://github.com/sailfish009/CFAI
CFSRCNN https://github.com/sailfish009/CFSRCNN
cfunc https://github.com/sailfish009/cfunc
CGCF-ConfGen https://github.com/sailfish009/CGCF-ConfGen
cgnn https://github.com/sailfish009/cgnn
chainer-chemistry https://github.com/sailfish009/chainer-chemistry
characterizing-sampling-algorithms https://github.com/sailfish009/characterizing-sampling-algorithms
ChEMBL_Structure_Pipeline https://github.com/sailfish009/ChEMBL_Structure_Pipeline
chembl_webresource_client https://github.com/sailfish009/chembl_webresource_client
chemcoord https://github.com/sailfish009/chemcoord
chemicalx https://github.com/sailfish009/chemicalx
cheminformatics https://github.com/sailfish009/cheminformatics
cheminformatics_code https://github.com/sailfish009/cheminformatics_code
chemlg https://github.com/sailfish009/chemlg
chemml https://github.com/sailfish009/chemml
ChemPlot https://github.com/sailfish009/ChemPlot
chemprop https://github.com/sailfish009/chemprop
chemprop-1 https://github.com/sailfish009/chemprop-1
chem_tutorial https://github.com/sailfish009/chem_tutorial
CheTo https://github.com/sailfish009/CheTo
chip-seq-pipeline2 https://github.com/sailfish009/chip-seq-pipeline2
CHM13 https://github.com/sailfish009/CHM13
chronological-map-phenotypes https://github.com/sailfish009/chronological-map-phenotypes
CIGIN https://github.com/sailfish009/CIGIN
CImg https://github.com/sailfish009/CImg
cinfony https://github.com/sailfish009/cinfony
CIoU https://github.com/sailfish009/CIoU
circle https://github.com/sailfish009/circle
circleloss.pytorch https://github.com/sailfish009/circleloss.pytorch
Cirq https://github.com/sailfish009/Cirq
citrine-python https://github.com/sailfish009/citrine-python
CIZSL https://github.com/sailfish009/CIZSL
CKG https://github.com/sailfish009/CKG
CL-Visualizing-Feature-Transformation https://github.com/sailfish009/CL-Visualizing-Feature-Transformation
cla https://github.com/sailfish009/cla
clang-power-tools https://github.com/sailfish009/clang-power-tools
Clang.jl https://github.com/sailfish009/Clang.jl
Class-balanced-loss-pytorch https://github.com/sailfish009/Class-balanced-loss-pytorch
classes https://github.com/sailfish009/classes
classification_models https://github.com/sailfish009/classification_models
ClassyVision https://github.com/sailfish009/ClassyVision
clazy https://github.com/sailfish009/clazy
cldoc https://github.com/sailfish009/cldoc
cleanlab https://github.com/sailfish009/cleanlab
clearml https://github.com/sailfish009/clearml
CleverAlgorithms https://github.com/sailfish009/CleverAlgorithms
Client https://github.com/sailfish009/Client
clojerl https://github.com/sailfish009/clojerl
clojure https://github.com/sailfish009/clojure
clojurescript https://github.com/sailfish009/clojurescript
clooj https://github.com/sailfish009/clooj
closure-library https://github.com/sailfish009/closure-library
cloture https://github.com/sailfish009/cloture
cloudpickle https://github.com/sailfish009/cloudpickle
clutrr https://github.com/sailfish009/clutrr
ClynMut https://github.com/sailfish009/ClynMut
CMake https://github.com/sailfish009/CMake
cmapPy https://github.com/sailfish009/cmapPy
cmdow https://github.com/sailfish009/cmdow
cme257-advanced-julia https://github.com/sailfish009/cme257-advanced-julia
cml https://github.com/sailfish009/cml
CNN-from-Scratch https://github.com/sailfish009/CNN-from-Scratch
CNN-Image-Classifier https://github.com/sailfish009/CNN-Image-Classifier
cnn-lstm https://github.com/sailfish009/cnn-lstm
CNN-LSTM-1 https://github.com/sailfish009/CNN-LSTM-1
CNN-RNN-Yield-Prediction https://github.com/sailfish009/CNN-RNN-Yield-Prediction
CNNIQA https://github.com/sailfish009/CNNIQA
CNN_Visualizations https://github.com/sailfish009/CNN_Visualizations
CNTK https://github.com/sailfish009/CNTK
cocoapi https://github.com/sailfish009/cocoapi
coconut https://github.com/sailfish009/coconut
code-cracker https://github.com/sailfish009/code-cracker
CodeBERT https://github.com/sailfish009/CodeBERT
CodeGen https://github.com/sailfish009/CodeGen
codequery https://github.com/sailfish009/codequery
coderx https://github.com/sailfish009/coderx
cogdl https://github.com/sailfish009/cogdl
cogena https://github.com/sailfish009/cogena
ColonSegNet https://github.com/sailfish009/ColonSegNet
combind https://github.com/sailfish009/combind
combined-gnn https://github.com/sailfish009/combined-gnn
comet https://github.com/sailfish009/comet
CompGCN https://github.com/sailfish009/CompGCN
CompGCN-DGL https://github.com/sailfish009/CompGCN-DGL
CompilerGym https://github.com/sailfish009/CompilerGym
comprakt https://github.com/sailfish009/comprakt
CompressAI https://github.com/sailfish009/CompressAI
ComputationalPhysics https://github.com/sailfish009/ComputationalPhysics
Computer-vision-for-the-chemistry-lab https://github.com/sailfish009/Computer-vision-for-the-chemistry-lab
computervision-recipes https://github.com/sailfish009/computervision-recipes
concurrentqueue https://github.com/sailfish009/concurrentqueue
conda https://github.com/sailfish009/conda
conditional-lane-detection https://github.com/sailfish009/conditional-lane-detection
ConfidNet https://github.com/sailfish009/ConfidNet
conrod https://github.com/sailfish009/conrod
constrained-graph-variational-autoencoder https://github.com/sailfish009/constrained-graph-variational-autoencoder
containers https://github.com/sailfish009/containers
contiguous_pytorch_params https://github.com/sailfish009/contiguous_pytorch_params
Continual-Learning-Benchmark https://github.com/sailfish009/Continual-Learning-Benchmark
continual-learning-papers https://github.com/sailfish009/continual-learning-papers
ConTNet https://github.com/sailfish009/ConTNet
contrib https://github.com/sailfish009/contrib
controlled-peptide-generation https://github.com/sailfish009/controlled-peptide-generation
ConvNeXt https://github.com/sailfish009/ConvNeXt
convolution-visualizer https://github.com/sailfish009/convolution-visualizer
Cookbook https://github.com/sailfish009/Cookbook
copperspice https://github.com/sailfish009/copperspice
copypasta https://github.com/sailfish009/copypasta
coq https://github.com/sailfish009/coq
coq-dpdgraph https://github.com/sailfish009/coq-dpdgraph
Coq-Equations https://github.com/sailfish009/Coq-Equations
coq2rust https://github.com/sailfish009/coq2rust
coqeal https://github.com/sailfish009/coqeal
CoqGym https://github.com/sailfish009/CoqGym
coqhammer https://github.com/sailfish009/coqhammer
coq_bits https://github.com/sailfish009/coq_bits
coriander https://github.com/sailfish009/coriander
CornerNet https://github.com/sailfish009/CornerNet
CoV-KGE https://github.com/sailfish009/CoV-KGE
coveragepy https://github.com/sailfish009/coveragepy
COVID-19 https://github.com/sailfish009/COVID-19
COVID-CT https://github.com/sailfish009/COVID-CT
covid-resources https://github.com/sailfish009/covid-resources
covid-spike-classification https://github.com/sailfish009/covid-spike-classification
cowboy https://github.com/sailfish009/cowboy
cowboy-elixir-example https://github.com/sailfish009/cowboy-elixir-example
CPCProt https://github.com/sailfish009/CPCProt
cpp-netlib https://github.com/sailfish009/cpp-netlib
cpp-to-rust-book https://github.com/sailfish009/cpp-to-rust-book
CppAsynchronousIO https://github.com/sailfish009/CppAsynchronousIO
CppCon2016 https://github.com/sailfish009/CppCon2016
CppCoreGuidelines https://github.com/sailfish009/CppCoreGuidelines
cppcoro https://github.com/sailfish009/cppcoro
cppkafka https://github.com/sailfish009/cppkafka
cpplinks https://github.com/sailfish009/cpplinks
cpprestsdk https://github.com/sailfish009/cpprestsdk
cpptraj https://github.com/sailfish009/cpptraj
cpython https://github.com/sailfish009/cpython
CrabNet https://github.com/sailfish009/CrabNet
cranelift https://github.com/sailfish009/cranelift
Credit-Card-Fraudlent https://github.com/sailfish009/Credit-Card-Fraudlent
credit-risk-modelling https://github.com/sailfish009/credit-risk-modelling
crem https://github.com/sailfish009/crem
crnn-pytorch https://github.com/sailfish009/crnn-pytorch
crnn.pytorch https://github.com/sailfish009/crnn.pytorch
crnn_ https://github.com/sailfish009/crnn_
crnn_lua https://github.com/sailfish009/crnn_lua
cromwell https://github.com/sailfish009/cromwell
cross-transformers-pytorch https://github.com/sailfish009/cross-transformers-pytorch
cross_focal_loss https://github.com/sailfish009/cross_focal_loss
crucible https://github.com/sailfish009/crucible
CrypTen https://github.com/sailfish009/CrypTen
cryptography https://github.com/sailfish009/cryptography
cryptol https://github.com/sailfish009/cryptol
cs-video-courses https://github.com/sailfish009/cs-video-courses
cs231n.github.io https://github.com/sailfish009/cs231n.github.io
CSharp-8.0-and-.NET-Core-3.0-Modern-Cross-Platform-Development-Fourth-Edition https://github.com/sailfish009/CSharp-8.0-and-.NET-Core-3.0-Modern-Cross-Platform-Development-Fourth-Edition
csv.vim https://github.com/sailfish009/csv.vim
ctci https://github.com/sailfish009/ctci
CtCI-6th-Edition-cpp https://github.com/sailfish009/CtCI-6th-Edition-cpp
CtCI-6th-Edition-CSharp https://github.com/sailfish009/CtCI-6th-Edition-CSharp
CtCI-6th-Edition-Python https://github.com/sailfish009/CtCI-6th-Edition-Python
ctci-python-solutions https://github.com/sailfish009/ctci-python-solutions
cttrie https://github.com/sailfish009/cttrie
cub https://github.com/sailfish009/cub
CUDA-grep https://github.com/sailfish009/CUDA-grep
CUDA.jl https://github.com/sailfish009/CUDA.jl
cudf https://github.com/sailfish009/cudf
cupy https://github.com/sailfish009/cupy
curio https://github.com/sailfish009/curio
curlpp https://github.com/sailfish009/curlpp
cusignal https://github.com/sailfish009/cusignal
customblue https://github.com/sailfish009/customblue
custom_ensemble https://github.com/sailfish009/custom_ensemble
Custom_kernel_hermes_new https://github.com/sailfish009/Custom_kernel_hermes_new
cuteSV https://github.com/sailfish009/cuteSV
Cutout https://github.com/sailfish009/Cutout
cutout-random-erasing https://github.com/sailfish009/cutout-random-erasing
cv-tricks.com https://github.com/sailfish009/cv-tricks.com
cvat https://github.com/sailfish009/cvat
cvcZSL https://github.com/sailfish009/cvcZSL
CVP https://github.com/sailfish009/CVP
cvpr2019_Pyramid-Feature-Attention-Network-for-Saliency-detection https://github.com/sailfish009/cvpr2019_Pyramid-Feature-Attention-Network-for-Saliency-detection
cvpr2020 https://github.com/sailfish009/cvpr2020
CVPR2020_PADS https://github.com/sailfish009/CVPR2020_PADS
cvxpylayers https://github.com/sailfish009/cvxpylayers
CXXGraph https://github.com/sailfish009/CXXGraph
cytounet https://github.com/sailfish009/cytounet
D2 https://github.com/sailfish009/D2
D2Det https://github.com/sailfish009/D2Det
d3 https://github.com/sailfish009/d3
d4-format https://github.com/sailfish009/d4-format
Dacon https://github.com/sailfish009/Dacon
DAFormer https://github.com/sailfish009/DAFormer
DAIN https://github.com/sailfish009/DAIN
DALEX https://github.com/sailfish009/DALEX
DALL-E https://github.com/sailfish009/DALL-E
DALLE-mtf https://github.com/sailfish009/DALLE-mtf
DALLE-pytorch https://github.com/sailfish009/DALLE-pytorch
dana https://github.com/sailfish009/dana
dandelion https://github.com/sailfish009/dandelion
dangerzone https://github.com/sailfish009/dangerzone
DAPPLE https://github.com/sailfish009/DAPPLE
darknet https://github.com/sailfish009/darknet
darkq https://github.com/sailfish009/darkq
darkriscv https://github.com/sailfish009/darkriscv
dask https://github.com/sailfish009/dask
data-efficient-gans https://github.com/sailfish009/data-efficient-gans
data-resources-for-materials-science https://github.com/sailfish009/data-resources-for-materials-science
Data-Science-Cheatsheet https://github.com/sailfish009/Data-Science-Cheatsheet
data-science-complete-tutorial https://github.com/sailfish009/data-science-complete-tutorial
Data-Science-for-Marketing-Analytics-elearning https://github.com/sailfish009/Data-Science-for-Marketing-Analytics-elearning
data-science-machine-learning-with-python https://github.com/sailfish009/data-science-machine-learning-with-python
DataFrame https://github.com/sailfish009/DataFrame
datamol https://github.com/sailfish009/datamol
dataserver https://github.com/sailfish009/dataserver
DataStructures.jl https://github.com/sailfish009/DataStructures.jl
datatables-flask-serverside https://github.com/sailfish009/datatables-flask-serverside
Data_Science_in_Chemistry_Examples https://github.com/sailfish009/Data_Science_in_Chemistry_Examples
DB https://github.com/sailfish009/DB
dbparser https://github.com/sailfish009/dbparser
dcm2niix https://github.com/sailfish009/dcm2niix
dcmstack https://github.com/sailfish009/dcmstack
DCNv2 https://github.com/sailfish009/DCNv2
DDANet https://github.com/sailfish009/DDANet
DDOD https://github.com/sailfish009/DDOD
ddpm-proteins https://github.com/sailfish009/ddpm-proteins
DearPyGui https://github.com/sailfish009/DearPyGui
DeBERTa https://github.com/sailfish009/DeBERTa
DeblurGANv2 https://github.com/sailfish009/DeblurGANv2
DECIMER-Image-to-SMILES https://github.com/sailfish009/DECIMER-Image-to-SMILES
decision-transformer https://github.com/sailfish009/decision-transformer
deductive-reasoning https://github.com/sailfish009/deductive-reasoning
Deep-Compression-PyTorch https://github.com/sailfish009/Deep-Compression-PyTorch
deep-diamond https://github.com/sailfish009/deep-diamond
Deep-Drug-Coder https://github.com/sailfish009/Deep-Drug-Coder
Deep-Flow-Prediction https://github.com/sailfish009/Deep-Flow-Prediction
Deep-Forest https://github.com/sailfish009/Deep-Forest
Deep-Hipo https://github.com/sailfish009/Deep-Hipo
deep-implicit-attention https://github.com/sailfish009/deep-implicit-attention
Deep-Learning-Boot-Camp https://github.com/sailfish009/Deep-Learning-Boot-Camp
deep-learning-cheatsheet https://github.com/sailfish009/deep-learning-cheatsheet
deep-learning-colonoscopy https://github.com/sailfish009/deep-learning-colonoscopy
Deep-Learning-Coursera https://github.com/sailfish009/Deep-Learning-Coursera
Deep-Learning-Coursera-1 https://github.com/sailfish009/Deep-Learning-Coursera-1
deep-learning-for-image-processing https://github.com/sailfish009/deep-learning-for-image-processing
deep-learning-model-convertor https://github.com/sailfish009/deep-learning-model-convertor
Deep-Learning-Specialization-Coursera https://github.com/sailfish009/Deep-Learning-Specialization-Coursera
deep-learning-uncertainty https://github.com/sailfish009/deep-learning-uncertainty
deep-learning-v2-pytorch https://github.com/sailfish009/deep-learning-v2-pytorch
deep-learning-visuals https://github.com/sailfish009/deep-learning-visuals
Deep-Learning-with-PyTorch-Quick-Start-Guide https://github.com/sailfish009/Deep-Learning-with-PyTorch-Quick-Start-Guide
deep-linear-network https://github.com/sailfish009/deep-linear-network
deep-molecular-massspec https://github.com/sailfish009/deep-molecular-massspec
deep-molecular-optimization https://github.com/sailfish009/deep-molecular-optimization
deep-neuroevolution https://github.com/sailfish009/deep-neuroevolution
Deep-Reinforcement-Learning-Algorithms-with-PyTorch https://github.com/sailfish009/Deep-Reinforcement-Learning-Algorithms-with-PyTorch
Deep-Reinforcement-Learning-Hands-On https://github.com/sailfish009/Deep-Reinforcement-Learning-Hands-On
Deep-reinforcement-learning-with-pytorch https://github.com/sailfish009/Deep-reinforcement-learning-with-pytorch
deep-review https://github.com/sailfish009/deep-review
deep-rules https://github.com/sailfish009/deep-rules
Deep-Vasp-E https://github.com/sailfish009/Deep-Vasp-E
DeepAAI https://github.com/sailfish009/DeepAAI
DeepCDR https://github.com/sailfish009/DeepCDR
DeepCE https://github.com/sailfish009/DeepCE
deepchem https://github.com/sailfish009/deepchem
DeepCL https://github.com/sailfish009/DeepCL
DeepCoil https://github.com/sailfish009/DeepCoil
DeepCompression-PyTorch https://github.com/sailfish009/DeepCompression-PyTorch
deepcourse https://github.com/sailfish009/deepcourse
DeepCov https://github.com/sailfish009/DeepCov
DeepCTR-Torch https://github.com/sailfish009/DeepCTR-Torch
deepDegron https://github.com/sailfish009/deepDegron
deepdock https://github.com/sailfish009/deepdock
deepDR https://github.com/sailfish009/deepDR
DeepDrug3D https://github.com/sailfish009/DeepDrug3D
DeepDTA https://github.com/sailfish009/DeepDTA
deepDTnet https://github.com/sailfish009/deepDTnet
DeepEMD https://github.com/sailfish009/DeepEMD
deeperGATGNN https://github.com/sailfish009/deeperGATGNN
DeepFace https://github.com/sailfish009/DeepFace
DeepFaceLab https://github.com/sailfish009/DeepFaceLab
DeepFl-LogP https://github.com/sailfish009/DeepFl-LogP
DeepFolding https://github.com/sailfish009/DeepFolding
DeepFRI https://github.com/sailfish009/DeepFRI
DeepGraphene https://github.com/sailfish009/DeepGraphene
DeepGS https://github.com/sailfish009/DeepGS
deepH3-distances-orientations https://github.com/sailfish009/deepH3-distances-orientations
DeepImageReconstruction https://github.com/sailfish009/DeepImageReconstruction
DeepImmuno https://github.com/sailfish009/DeepImmuno
DeepInteract https://github.com/sailfish009/DeepInteract
DeepIPW https://github.com/sailfish009/DeepIPW
deepks-kit https://github.com/sailfish009/deepks-kit
DeepLC https://github.com/sailfish009/DeepLC
deeplearning-biology https://github.com/sailfish009/deeplearning-biology
DeepLearningExamples https://github.com/sailfish009/DeepLearningExamples
DeeplyTough https://github.com/sailfish009/DeeplyTough
DeepMal https://github.com/sailfish009/DeepMal
deepmd-kit https://github.com/sailfish009/deepmd-kit
deepmind-research https://github.com/sailfish009/deepmind-research
DeepMOCCA https://github.com/sailfish009/DeepMOCCA
DeepMoleNet https://github.com/sailfish009/DeepMoleNet
deeponet https://github.com/sailfish009/deeponet
deepoptics https://github.com/sailfish009/deepoptics
DeepPath https://github.com/sailfish009/DeepPath
DeepPruner https://github.com/sailfish009/DeepPruner
DeepPurpose https://github.com/sailfish009/DeepPurpose
deepqmc https://github.com/sailfish009/deepqmc
deepquantiles https://github.com/sailfish009/deepquantiles
deeprank https://github.com/sailfish009/deeprank
deeprank-1 https://github.com/sailfish009/deeprank-1
Deeprank-GNN https://github.com/sailfish009/Deeprank-GNN
DeepRTplus https://github.com/sailfish009/DeepRTplus
DEEPScreen https://github.com/sailfish009/DEEPScreen
DeepScreening https://github.com/sailfish009/DeepScreening
DeepSEED-3D-ConvNets-for-Pulmonary-Nodule-Detection https://github.com/sailfish009/DeepSEED-3D-ConvNets-for-Pulmonary-Nodule-Detection
deepseedling https://github.com/sailfish009/deepseedling
DeepSequence https://github.com/sailfish009/DeepSequence
DeepShift https://github.com/sailfish009/DeepShift
DeepSpeed https://github.com/sailfish009/DeepSpeed
DeepStack_ExDark https://github.com/sailfish009/DeepStack_ExDark
DeepTables https://github.com/sailfish009/DeepTables
deeptraffic https://github.com/sailfish009/deeptraffic
deepvoxels https://github.com/sailfish009/deepvoxels
deep_gcns_torch https://github.com/sailfish009/deep_gcns_torch
Deep_GCN_Benchmarking https://github.com/sailfish009/Deep_GCN_Benchmarking
deep_learning_coronavirus_cure https://github.com/sailfish009/deep_learning_coronavirus_cure
Deep_learning_examples https://github.com/sailfish009/Deep_learning_examples
deep_learning_NLP https://github.com/sailfish009/deep_learning_NLP
deep_learning_object_detection https://github.com/sailfish009/deep_learning_object_detection
deep_motion_mag https://github.com/sailfish009/deep_motion_mag
Deep_reinforcement_learning_Course https://github.com/sailfish009/Deep_reinforcement_learning_Course
Deep_RL_with_pytorch https://github.com/sailfish009/Deep_RL_with_pytorch
deep_weeds https://github.com/sailfish009/deep_weeds
Deformable-DETR https://github.com/sailfish009/Deformable-DETR
deit https://github.com/sailfish009/deit
deltalanguage https://github.com/sailfish009/deltalanguage
DeLUCS https://github.com/sailfish009/DeLUCS
demeter2 https://github.com/sailfish009/demeter2
demucs https://github.com/sailfish009/demucs
densenet-pytorch https://github.com/sailfish009/densenet-pytorch
DensePhrases https://github.com/sailfish009/DensePhrases
Dependencies https://github.com/sailfish009/Dependencies
Depth-Estimation-Deep-Learning https://github.com/sailfish009/Depth-Estimation-Deep-Learning
Depth-Image-Processing https://github.com/sailfish009/Depth-Image-Processing
depthai-experiments https://github.com/sailfish009/depthai-experiments
DerainZoo https://github.com/sailfish009/DerainZoo
DESC_MOL-DDIE https://github.com/sailfish009/DESC_MOL-DDIE
detecto https://github.com/sailfish009/detecto
DetectoRS https://github.com/sailfish009/DetectoRS
Detectron https://github.com/sailfish009/Detectron
Detectron.pytorch https://github.com/sailfish009/Detectron.pytorch
detectron2 https://github.com/sailfish009/detectron2
detectron2-pipeline https://github.com/sailfish009/detectron2-pipeline
detectron2-ResNeSt https://github.com/sailfish009/detectron2-ResNeSt
Detectron2-Train-a-Instance-Segmentation-Model https://github.com/sailfish009/Detectron2-Train-a-Instance-Segmentation-Model
detectron2_backbone https://github.com/sailfish009/detectron2_backbone
detectron2_instance_segmentation_demo https://github.com/sailfish009/detectron2_instance_segmentation_demo
detr https://github.com/sailfish009/detr
detr3d https://github.com/sailfish009/detr3d
devol https://github.com/sailfish009/devol
dftbplus https://github.com/sailfish009/dftbplus
DFTK.jl https://github.com/sailfish009/DFTK.jl
dgcnn https://github.com/sailfish009/dgcnn
DGflow https://github.com/sailfish009/DGflow
dgl https://github.com/sailfish009/dgl
dgl-lifesci https://github.com/sailfish009/dgl-lifesci
dgl-operator https://github.com/sailfish009/dgl-operator
DGraphDTA https://github.com/sailfish009/DGraphDTA
dha_htvs https://github.com/sailfish009/dha_htvs
DIANet https://github.com/sailfish009/DIANet
DiANNA https://github.com/sailfish009/DiANNA
DICOM-CNN https://github.com/sailfish009/DICOM-CNN
dicom-contour https://github.com/sailfish009/dicom-contour
dicom-mr-classifier https://github.com/sailfish009/dicom-mr-classifier
dicom-numpy https://github.com/sailfish009/dicom-numpy
dicom2nifti https://github.com/sailfish009/dicom2nifti
DicomToMesh https://github.com/sailfish009/DicomToMesh
dielectric https://github.com/sailfish009/dielectric
DifferentialEquations.jl https://github.com/sailfish009/DifferentialEquations.jl
diffGrad https://github.com/sailfish009/diffGrad
diffGrad-tf https://github.com/sailfish009/diffGrad-tf
diffgram https://github.com/sailfish009/diffgram
DIG https://github.com/sailfish009/DIG
DigitalCellSorter https://github.com/sailfish009/DigitalCellSorter
dimenet https://github.com/sailfish009/dimenet
DimeNet-dgl https://github.com/sailfish009/DimeNet-dgl
dino https://github.com/sailfish009/dino
DIoU https://github.com/sailfish009/DIoU
DIoU-darknet https://github.com/sailfish009/DIoU-darknet
DIoU-pytorch-detectron https://github.com/sailfish009/DIoU-pytorch-detectron
DIPS-Plus https://github.com/sailfish009/DIPS-Plus
direct2d-rs https://github.com/sailfish009/direct2d-rs
dirent https://github.com/sailfish009/dirent
DiscoBox https://github.com/sailfish009/DiscoBox
diskus https://github.com/sailfish009/diskus
disopred https://github.com/sailfish009/disopred
displ https://github.com/sailfish009/displ
distance-encoding https://github.com/sailfish009/distance-encoding
distributed_tutorial https://github.com/sailfish009/distributed_tutorial
distributions https://github.com/sailfish009/distributions
disulfide_bonds https://github.com/sailfish009/disulfide_bonds
DivA https://github.com/sailfish009/DivA
DL4DistancePrediction2 https://github.com/sailfish009/DL4DistancePrediction2
DL4MolecularGraph https://github.com/sailfish009/DL4MolecularGraph
dlib https://github.com/sailfish009/dlib
dMaSIF https://github.com/sailfish009/dMaSIF
dmol-book https://github.com/sailfish009/dmol-book
DMPHN-cvpr19-master https://github.com/sailfish009/DMPHN-cvpr19-master
dna-3d-engine https://github.com/sailfish009/dna-3d-engine
DNABERT https://github.com/sailfish009/DNABERT
dnc https://github.com/sailfish009/dnc
dnn_from_scratch https://github.com/sailfish009/dnn_from_scratch
do-you-even-need-attention https://github.com/sailfish009/do-you-even-need-attention
Docked-protein-Interaction-ranking-using-graph-neural-networks https://github.com/sailfish009/Docked-protein-Interaction-ranking-using-graph-neural-networks
DockQ https://github.com/sailfish009/DockQ
doit https://github.com/sailfish009/doit
Domain-Consensus-Clustering https://github.com/sailfish009/Domain-Consensus-Clustering
Domain-generalization https://github.com/sailfish009/Domain-generalization
DOMPurify https://github.com/sailfish009/DOMPurify
dopamine https://github.com/sailfish009/dopamine
dotmotif https://github.com/sailfish009/dotmotif
dotty https://github.com/sailfish009/dotty
double-conversion https://github.com/sailfish009/double-conversion
doxypress https://github.com/sailfish009/doxypress
DPDDI https://github.com/sailfish009/DPDDI
dpgen https://github.com/sailfish009/dpgen
DPGN https://github.com/sailfish009/DPGN
DPPIN https://github.com/sailfish009/DPPIN
dqc https://github.com/sailfish009/dqc
draft https://github.com/sailfish009/draft
Dragablz https://github.com/sailfish009/Dragablz
drawing https://github.com/sailfish009/drawing
dremio-flight-connector https://github.com/sailfish009/dremio-flight-connector
dreyeve https://github.com/sailfish009/dreyeve
DRIAD https://github.com/sailfish009/DRIAD
DRIADrc https://github.com/sailfish009/DRIADrc
Drift-Diffusion_Python https://github.com/sailfish009/Drift-Diffusion_Python
DRKG https://github.com/sailfish009/DRKG
drn https://github.com/sailfish009/drn
drogon https://github.com/sailfish009/drogon
dropblock https://github.com/sailfish009/dropblock
DropEdge https://github.com/sailfish009/DropEdge
DropoutUncertaintyExps https://github.com/sailfish009/DropoutUncertaintyExps
drracket https://github.com/sailfish009/drracket
Drug-Repurposing-in-KNIME https://github.com/sailfish009/Drug-Repurposing-in-KNIME
Drug-Target_Interaction_prediction https://github.com/sailfish009/Drug-Target_Interaction_prediction
Drug3D-Net https://github.com/sailfish009/Drug3D-Net
drugbank https://github.com/sailfish009/drugbank
drugbank_bio2bel https://github.com/sailfish009/drugbank_bio2bel
drugbank_xml2csv_python https://github.com/sailfish009/drugbank_xml2csv_python
DrugCell https://github.com/sailfish009/DrugCell
drugEmbedding https://github.com/sailfish009/drugEmbedding
DrugEx https://github.com/sailfish009/DrugEx
DrugOrchestra https://github.com/sailfish009/DrugOrchestra
DrugRepositioning https://github.com/sailfish009/DrugRepositioning
drugVQA https://github.com/sailfish009/drugVQA
druid https://github.com/sailfish009/druid
ds000149 https://github.com/sailfish009/ds000149
dssp https://github.com/sailfish009/dssp
dssp-1 https://github.com/sailfish009/dssp-1
DTI_PDBbind https://github.com/sailfish009/DTI_PDBbind
DualStudent https://github.com/sailfish009/DualStudent
duet https://github.com/sailfish009/duet
dulwich https://github.com/sailfish009/dulwich
dummy_gpio_serial https://github.com/sailfish009/dummy_gpio_serial
DVA https://github.com/sailfish009/DVA
dxvk https://github.com/sailfish009/dxvk
Dynamic-convolution-Pytorch https://github.com/sailfish009/Dynamic-convolution-Pytorch
DynamicReLU https://github.com/sailfish009/DynamicReLU
e3nn https://github.com/sailfish009/e3nn
EAST https://github.com/sailfish009/EAST
Easy-deep-learning-with-Keras https://github.com/sailfish009/Easy-deep-learning-with-Keras
easyloggingpp https://github.com/sailfish009/easyloggingpp
easy_profiler https://github.com/sailfish009/easy_profiler
edgedb https://github.com/sailfish009/edgedb
edgePy https://github.com/sailfish009/edgePy
Edit https://github.com/sailfish009/Edit
eece7398-final-project https://github.com/sailfish009/eece7398-final-project
EEG-DTI https://github.com/sailfish009/EEG-DTI
effectivescala https://github.com/sailfish009/effectivescala
Efficient-3DCNNs https://github.com/sailfish009/Efficient-3DCNNs
EfficientDet-bifpn https://github.com/sailfish009/EfficientDet-bifpn
efficientdet-pytorch https://github.com/sailfish009/efficientdet-pytorch
EfficientNet-PyTorch https://github.com/sailfish009/EfficientNet-PyTorch
EfficientSeg https://github.com/sailfish009/EfficientSeg
EfficientUnet https://github.com/sailfish009/EfficientUnet
EGAT https://github.com/sailfish009/EGAT
egnn-pytorch https://github.com/sailfish009/egnn-pytorch
eigenlearning https://github.com/sailfish009/eigenlearning
einops https://github.com/sailfish009/einops
eixx https://github.com/sailfish009/eixx
elasticsearch https://github.com/sailfish009/elasticsearch
electra-pytorch https://github.com/sailfish009/electra-pytorch
electric-circuits https://github.com/sailfish009/electric-circuits
Electrochemical-barrier https://github.com/sailfish009/Electrochemical-barrier
ElegantRL https://github.com/sailfish009/ElegantRL
ElemNet https://github.com/sailfish009/ElemNet
ELF https://github.com/sailfish009/ELF
ELF-1 https://github.com/sailfish009/ELF-1
elixir https://github.com/sailfish009/elixir
elm-cookbook https://github.com/sailfish009/elm-cookbook
elm-d3 https://github.com/sailfish009/elm-d3
elm-graph https://github.com/sailfish009/elm-graph
elm-pages https://github.com/sailfish009/elm-pages
elm-pages-starter https://github.com/sailfish009/elm-pages-starter
elm-printf https://github.com/sailfish009/elm-printf
elm-visualization https://github.com/sailfish009/elm-visualization
elphmod https://github.com/sailfish009/elphmod
embxx https://github.com/sailfish009/embxx
emmet https://github.com/sailfish009/emmet
EMOGI https://github.com/sailfish009/EMOGI
En-transformer https://github.com/sailfish009/En-transformer
Enduro https://github.com/sailfish009/Enduro
enigma https://github.com/sailfish009/enigma
enlighten2-pymol https://github.com/sailfish009/enlighten2-pymol
Ensemble-Pytorch https://github.com/sailfish009/Ensemble-Pytorch
ensembler https://github.com/sailfish009/ensembler
entanglement-forging https://github.com/sailfish009/entanglement-forging
EntropySearch https://github.com/sailfish009/EntropySearch
enumeratum https://github.com/sailfish009/enumeratum
Enzyme https://github.com/sailfish009/Enzyme
enzynet https://github.com/sailfish009/enzynet
epcb-gnns https://github.com/sailfish009/epcb-gnns
epitope-prediction https://github.com/sailfish009/epitope-prediction
EquivariantMultipoleGNN https://github.com/sailfish009/EquivariantMultipoleGNN
esm https://github.com/sailfish009/esm
ESOINN-DP https://github.com/sailfish009/ESOINN-DP
ESPEI https://github.com/sailfish009/ESPEI
EssentialMath https://github.com/sailfish009/EssentialMath
Estimated-Time-of-arrival https://github.com/sailfish009/Estimated-Time-of-arrival
esugar https://github.com/sailfish009/esugar
etcher https://github.com/sailfish009/etcher
euporie https://github.com/sailfish009/euporie
EVcouplings https://github.com/sailfish009/EVcouplings
evcxr https://github.com/sailfish009/evcxr
event https://github.com/sailfish009/event
EvoMol https://github.com/sailfish009/EvoMol
EvoNorm https://github.com/sailfish009/EvoNorm
exact-cp-optimization https://github.com/sailfish009/exact-cp-optimization
examples https://github.com/sailfish009/examples
exercises-in-programming-style https://github.com/sailfish009/exercises-in-programming-style
exhale https://github.com/sailfish009/exhale
exploring_exploration https://github.com/sailfish009/exploring_exploration
exredis https://github.com/sailfish009/exredis
f-wgan https://github.com/sailfish009/f-wgan
FA-like_proteins https://github.com/sailfish009/FA-like_proteins
Fair-Evaluation-BERT https://github.com/sailfish009/Fair-Evaluation-BERT
fairseq https://github.com/sailfish009/fairseq
fair_self_supervision_benchmark https://github.com/sailfish009/fair_self_supervision_benchmark
faiss https://github.com/sailfish009/faiss
FAMSA https://github.com/sailfish009/FAMSA
FANet https://github.com/sailfish009/FANet
FAP80 https://github.com/sailfish009/FAP80
FaRL https://github.com/sailfish009/FaRL
fashion-mnist https://github.com/sailfish009/fashion-mnist
FAST https://github.com/sailfish009/FAST
Fast-SRGAN https://github.com/sailfish009/Fast-SRGAN
fast-symbolic-regression https://github.com/sailfish009/fast-symbolic-regression
Fast-Transformer https://github.com/sailfish009/Fast-Transformer
fast-transformers https://github.com/sailfish009/fast-transformers
fasta2png https://github.com/sailfish009/fasta2png
fastai https://github.com/sailfish009/fastai
FastAI.jl https://github.com/sailfish009/FastAI.jl
fastapi https://github.com/sailfish009/fastapi
faster https://github.com/sailfish009/faster
faster-rcnn-resnet https://github.com/sailfish009/faster-rcnn-resnet
faster-rcnn.pytorch https://github.com/sailfish009/faster-rcnn.pytorch
FasterSeg https://github.com/sailfish009/FasterSeg
FastFCN https://github.com/sailfish009/FastFCN
Fastformer-PyTorch https://github.com/sailfish009/Fastformer-PyTorch
FastGCN https://github.com/sailfish009/FastGCN
fastglobal https://github.com/sailfish009/fastglobal
FastMemcpy https://github.com/sailfish009/FastMemcpy
fastmoe https://github.com/sailfish009/fastmoe
FastNoise https://github.com/sailfish009/FastNoise
FastTransforms.jl https://github.com/sailfish009/FastTransforms.jl
fast_float https://github.com/sailfish009/fast_float