forked from standardgalactic/standardgalactic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser-overview.txt
More file actions
20565 lines (20565 loc) · 599 KB
/
user-overview.txt
File metadata and controls
20565 lines (20565 loc) · 599 KB
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
Fetching repositories the user has contributed to via their events...
Fetching repositories the user has starred...
Fetching repositories the user owns...
Removing duplicates and sorting repositories...
Repositories:
01-ai/Yi
0hq/antikythera
0xcacti/ring
1Crazymoney/xtract
2timesjay/velcronics
3b1b/manim
86Box/86Box
AI-LLM/ai-llm.github.io
AI4Finance-Foundation/FinGPT
AI4Finance-Foundation/FinNLP
AI4LIFE-GROUP/OpenXAI
AUTOMATIC1111/stable-diffusion-webui
AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin
Ablustrund/APPS_Plus
AkshitIreddy/CUPCAKEAGI
AlibabaResearch/DAMO-ConvAI
AliceO2Group/analysis-framework
AndrasKovacs/elaboration-zoo
AntonBankevich/LJA
Arize-ai/phoenix
AssemblyScript/assemblyscript
AutoHotkey/AutoHotkey
Axect/HyperbolicLR
BabyBlue26/3dmesheslearning-from-generative-models
BabyBlue26/AestheticNet
BabyBlue26/AgentForge
BabyBlue26/AgentGPT
BabyBlue26/AgentLLM
BabyBlue26/Aladdin
BatsResearch/planetarium
Begalov/curve-tools-2
BionStt/py-kms
BlackDex/job_scheduler
BlackDex/mpris-control
BlackDex/rust-musl
BlinkDL/AI-Writer
BlinkDL/ChatRWKV
BlinkDL/RWKV-LM
BradyBromley/StardewMods
BrianCurliss/BrianCurliss
CategoricalData/hydra
Cerebras/modelzoo
ChavaScript/chavascript
Chiaraplizz/ST-TR
CodedotAl/gpt-code-clippy
CoderJava/NanoAndroidSDK
Codium-ai/AlphaCodium
ContextualAI/HALOs
ContextualAI/gritlm
ContextualAI/lens
ContinualAI/avalanche
ContinualAI/continual-learning-baselines
Cooper-Runstein/news-app
CraftJarvis/MCU
CyberCat-Institute/open-game-engine
DLYuanGod/TinyGPT-V
Dao-AILab/flash-attention
DarkDawn233/D2R_MTRL
DarthFubuMVC/fubumvc
Datalab-FIT-CTU/weather4cast-2022
DennisMitchell/jellylanguage
DianaNites/DianaNites
Dr-ManhTung/Dr-ManhTung
Dr-ManhTung/docs
EleutherAI/github-downloader
EleutherAI/hn-scraper
EleutherAI/lm_perplexity
EleutherAI/pile-pubmedcentral
EleutherAI/pile-ubuntu-irc
EleutherAI/pythia
EleutherAI/the-pile
Elreenys/array_tools
EmmanuelOga/firering
Eric-Foote/NetworkingResearchProject
Eric-Wallace/AK-classifier
Eric-Wallace/adversarial-mt
Eric-Wallace/data-poisoning
Eric-Wallace/hallucinations
Eric-Wallace/lexical-sub
Eric-Wallace/numeracy
Eric-Wallace/trickme-interface
Eric-Wallace/universal-triggers
EtienneDosSantos/stable-cascade-one-click-installer
EwingYangs/awesome-open-gpt
EyalSol2005/EyalMamas
FSoft-AI4Code/CodeCapybara
Farama-Foundation/chatarena
FerretDB/FerretDB
Flipboard/react-canvas
ForumMagnum/ForumMagnum
FourthBrain/Building-with-Instruction-Tuned-LLMs-A-Step-by-Step-Guide
FrankNielsen/FrankNielsen.github.io
FransBouma/Massive
FreeRTOS/FreeRTOS
Frege/frege
GaoDalie/Talk_with_CSV
Ghaith81/dropkan
Ghozayel/Lextale
Guangxuan-Xiao/torch-int
HVision-NKU/StoryDiffusion
Hadden-Industries/universal-ontology
Harchvertelol/Dangerous-Dave-2-Modification-Edition
HaxeFoundation/haxe
HazyResearch/hyena-dna
HelgeDavidSchneider/python2_final
Hirwa25/self-checkout
Homebrew/homebrew-cask
Hsword/Hetu
IAAR-Shanghai/ICSFSurvey
Igor-Brandalise/NLW-UNITE
Instruction-Tuning-with-GPT-4/GPT-4-LLM
InterNations/antwort
IoLanguage/io
JacksonUptain/EwokVillage
JacksonUptain/JacksonUptain
JacksonUptain/JacksonUptainPortfolio
JacksonUptain/MORE-ROMS-DOWNLOADS-RECALBOX
JacksonUptain/My-3D-Models-Free-SketchFab
JacksonUptain/OpenGL
JacksonUptain/Parallax-Effect-FullCode-From-TrueCoderYT
JacksonUptain/RecalBox-Download-ROM-Pre-Loaded
JacksonUptain/SpaceThreeJS
JacksonUptain/Star-Wars
JacksonUptain/StarWarsLobby1-VR
JacksonUptain/Test-Portfolio
JacksonUptain/Test-Portfolio2
JacksonUptain/Test-Portfolo
JacksonUptain/VR-Game
JacksonUptain/WifiCayote
JacksonUptain/WifiRickroll-CayoteWifi-
JacksonUptain/bla
JacksonUptain/exp.corv
JacksonUptain/exp.lambo
JacksonUptain/lol
JacksonUptain/mariomak2jones
JacksonUptain/neondion
JacksonUptain/react-disney
JacksonUptain/topquotes
JacksonUptain/vr-model
JasonCruz-Dev/asp.net-crud
JetBrains/compose-multiplatform-ios-android-template
JetBrains/kotlin
JinSSJ3/C-plus-plus-unlimited
JinSSJ3/DP2
JinSSJ3/Doccou
JinSSJ3/PROCAI
JinSSJ3/Serenity
JinSSJ3/angular
JinSSJ3/bootstrap
JinSSJ3/code-verifier-front
JinSSJ3/cpp_library
JinSSJ3/dp2-react-template-deploy
JinSSJ3/dropzone-react
JinSSJ3/dropzone-ui
JinSSJ3/dsmovie
JinSSJ3/dynamicss
JinSSJ3/ejemplo-react
JinSSJ3/emoji-flags
JinSSJ3/material-ui
JinSSJ3/rc-highlight
JinSSJ3/starter-express-api
JinSSJ3/template-module
JinSSJ3/uTutor_backend
Jingkang50/OpenOOD
JohnSundell/Publish
JonasGeiping/carving
JonasGeiping/cramming
JonathanGin52/JonathanGin52
JoshEngels/MultiDimensionalFeatures
JuanmaMenendez/AutoHotkey-script-Open-Show-Apps
JuliaCollections/DataStructures.jl
JuliaDebug/Debugger.jl
JuliaLang/julia
JuliaPluto/PlutoTest.jl
JuliaSIMD/LoopVectorization.jl
JunoLab/atom-ink
JunoLab/electron
JunoLab/junolab.github.io
JunoLab/junowebsite
KULeuven-COSIC/Starlink-FI
KZiemian/Code-for-scientific-papers
KZiemian/Presentations
KZiemian/Various-things-that-I-test
KZiemian/Various-things-to-keep-at-hand
KaiNylund/CBMMPlaceCellVis
KaiNylund/lm-weights-encode-time
KaiNylund/neural-concepts
KevinHock/307-final-project
Kim-Vallee/SteganoFriend
KindXiaoming/pykan
LAION-AI/laion5B-paper
LargeWorldModel/LWM
LeapLabTHU/DAT
LudwigStumpp/llm-leaderboard
Luodian/Otter
Ma-Lab-Berkeley/CRATE
Maclory/Deep-Iterative-Collaboration
Maplemx/Agently
MarkHershey/AudioDeepFakeDetection
MathieuMonfort/easy-frame
MathisWellmann/go_ehlers_indicators
Mattie/cataclysm
Mattie/plunkylib
McGill-NLP/llm2vec
McGill-NLP/webllama
MikeyBeez/JoeJoe
MikeyBeez/SimpleAgent
MikeyBeez/SimpleAgent2
MineDojo/Voyager
MochiDiffusion/MochiDiffusion
Mohannadcse/DepsRAG
Mooler0410/LLMsPracticalGuide
MurtyShikhar/Pushdown-Layers
MurtyShikhar/structural-grokking
Musti03/SmallSurvivalGame
MyceliumMuse/TheAstralCodex
MycroftAI/mimic3
NACLab/ngc-museum
NACLab/ngc-sim-lib
NVIDIA/GenerativeAIExamples
NVIDIA/Megatron-LM
NVIDIA/NeMo-Guardrails
NVIDIA/cuda-samples
NathanWalker/modal-issues
Neo23x0/signature-base
Newbeeer/pfgmpp
NicolasT/papers
NolanoOrg/cformers
NolanoOrg/smol-gpt
NouamaneTazi/bloomz.cpp
Nutlope/roomGPT
OSU-NLP-Group/GrokkedTransformer
OSU-NLP-Group/HippoRAG
OSU-NLP-Group/Mind2Web
OSU-NLP-Group/SeeAct
ObeidaElJundi/Miller-Rabin
ObeidaElJundi/OS-Fingerprinting
Obijuan/2018-19-PNE-practices
Obijuan/2019-2020-CSAAI-Practicas
Obijuan/2019-2020-LTAW-Practicas
Obijuan/2019-2020-PNE-Practices
Obijuan/2020-2021-CSAAI-Practicas
Obijuan/3D-parts
Obijuan/ACC
Obijuan/AVR-Programming
Obijuan/Academia-Jedi-Hw
Obijuan/Apollo-11
Obijuan/ArduSnake
Obijuan/CTIF-Madrid-2018-FPGAs-Libres
Obijuan/CTIF-Madrid-2018-FreeCAD
Obijuan/CTIF-Madrid-2018-OCT-FPGAs-Libres
Obijuan/Clone-wars
Obijuan/CollapseOS-FPGA
Obijuan/Cuadernos-tecnicos-FPGAs-libres
Obijuan/Curso-Electronica-Digital-para-makers-con-FPGAs-Libres
Obijuan/DCON
Obijuan/DEZ80
Obijuan/EDSAC-icestudio
Obijuan/Electron-chrono
Obijuan/Entregas-Tutorial-Electronica-Digital-FPGAs
Obijuan/FPGA-WEB-Serial
Obijuan/FPGA-keyboard
Obijuan/FemtoRV-learn
Obijuan/FreeCAD-library
Obijuan/Freecad-Reprap-parts-library
Obijuan/Freecad-utils
Obijuan/Generic-3D-designs
Obijuan/GodFinger
Obijuan/IceZUM_Alhambra_Fritzing
Obijuan/Learn-PyCompilerExercices
Obijuan/Learn-RISCV
Obijuan/Learn-RISCV-ESP32-C3
Obijuan/Learn-RISCV-nanoCH32V203
Obijuan/Learn-forth
Obijuan/Learn-icestudio-dev
Obijuan/Learn-mearm
Obijuan/Learn-python
Obijuan/Learn-zx-spectrum-asm
Obijuan/MIPS-URJC
Obijuan/Mecatronica-2022-2023
Obijuan/Mecatronica-2022-2023-bis
Obijuan/Mecatronica-2023-2024
Obijuan/Mecatronica-2023-2024-test
Obijuan/Mecatronica-TEST
Obijuan/Mecatronica-TEST2
Obijuan/Miniskybot
Obijuan/MonsterLED
Obijuan/My-Ipython-notebooks
Obijuan/Nandland-Go-Board-tutorial
Obijuan/PER2018
Obijuan/PS2-KeyBoard-FPGA
Obijuan/Prusa2-Blender
Obijuan/Pycharm-test
Obijuan/REPYZ
Obijuan/RISC-V-FPGA
Obijuan/RiscvForth
Obijuan/RoboDraw
Obijuan/Russell
Obijuan/Rust-learn
Obijuan/SAP-1-FPGA
Obijuan/TinyFPGA-B-Series
Obijuan/URJC-Gsyc-2018-2019-Arquitectura-Computadores
Obijuan/URJC-Gsyc-2018-Arquitectura-Internet
Obijuan/URJC-Gsyc-2018-CSAAI-App-audiovisuales-internet
Obijuan/URJC-Gsyc-2018-PNE-Programming-in-network-environment
Obijuan/URJC-Gsyc-2018-Programacion-en-Entornos-de-Red
Obijuan/Ubuntu-phone-crosscompilation
Obijuan/VGA_basics
Obijuan/Web-iceprog
Obijuan/Z80-FPGA
Obijuan/aframe-playground
Obijuan/alhambra-advanced-collection
Obijuan/apio
Obijuan/ardumation
Obijuan/avr8-core
Obijuan/black-iceprog
Obijuan/blackice-examples
Obijuan/ciclop
Obijuan/covid-vacuna
Obijuan/de_cocinicas_con_nodejs
Obijuan/digital-electronics-with-open-FPGAs-tutorial
Obijuan/educational-materials
Obijuan/escornabot-fpga
Obijuan/freecad-key-chain-library
Obijuan/friki
Obijuan/gastrogit
Obijuan/gcode-gedit
Obijuan/ghdl
Obijuan/ghdlsynth-beta
Obijuan/github-action-tests
Obijuan/hack-miniblip.github.io
Obijuan/ice-chips-verilog
Obijuan/iceFactory
Obijuan/icebot
Obijuan/icecrystal
Obijuan/icestorm
Obijuan/icestudio
Obijuan/icezum
Obijuan/isabel2016locomocion
Obijuan/j1a-icestudio
Obijuan/libftdi-cross-builder
Obijuan/libusb-cross-builder
Obijuan/limited_wheels
Obijuan/lsbasi
Obijuan/machines
Obijuan/my2Ddesigns
Obijuan/mycourses
Obijuan/mynotes
Obijuan/myslides
Obijuan/mytests
Obijuan/myweb
Obijuan/nRV32-URJC
Obijuan/nand2tetris-icestudio
Obijuan/nandland
Obijuan/obijuan-designs
Obijuan/obijuan.github.io
Obijuan/obiscad
Obijuan/open-fpga-install
Obijuan/open-fpga-verilog-tutorial
Obijuan/openfda
Obijuan/openmr
Obijuan/platformio
Obijuan/platformio-simplez
Obijuan/podsearch-py
Obijuan/printbot_part_library
Obijuan/printbots
Obijuan/protocoder-apps
Obijuan/prusa-i3-hephestos
Obijuan/pyooml
Obijuan/rars
Obijuan/riscv-elf-psabi-doc
Obijuan/screen-leds
Obijuan/screen-logo
Obijuan/semaforos
Obijuan/simplez-fpga
Obijuan/simplez-grammar
Obijuan/simplez-i4-FPGA
Obijuan/temp-delete-me
Obijuan/toolchain-dfu
Obijuan/toolchain-icestorm
Obijuan/tools-usb-ftdi
Obijuan/tutorial-openscad
Obijuan/tutoriales-freecad
Obijuan/videoblog
Obijuan/visualino
Obijuan/whisbone
Obijuan/witbox
Obijuan/zowi
Obijuan/zum
Obijuan/zum-servos
Onurtag/TSolidBackground
OpenDevin/OpenDevin
OpenGVLab/CaFo
OpenGVLab/LLaMA-Adapter
OpenInterpreter/open-interpreter
OpenLogicProject/OpenLogic
OptimalScale/LMFlow
P2333/Papers-of-Robust-ML
PKU-YuanGroup/MoE-LLaVA
PapenfussLab/bionix
PapenfussLab/bioshake
PassionPlus777/PassionPlus777
PathOfBuildingCommunity/PathOfBuilding
Perlence/AutoHotkey.py
PicksPeng/SimuQ
Picsart-AI-Research/Text2Video-Zero
PlexPt/awesome-chatgpt-prompts-zh
Polychart/builder
PowerShell/PowerShell
PrefectHQ/marvin
Priler/jarvis
Project-MONAI/GenerativeModels
Pythagora-io/pythagora
RManLuo/Awesome-LLM-KG
RUCAIBox/LLMSurvey
RWKV/rwkv.cpp
RamonLarcherRibeiro/100DaysOfCodeJava
RamonLarcherRibeiro/HatedInTheNation
RamonLarcherRibeiro/RamonLarcherRibeiro
RamonLarcherRibeiro/calculadora
RamonLarcherRibeiro/gerador_de_senhas
RamonLarcherRibeiro/node_curso
RamonLarcherRibeiro/ordenacao_selecao_c
RamonLarcherRibeiro/page-login-night
RamonLarcherRibeiro/sockets_tcp
RamonLarcherRibeiro/sockets_tcp_C
RamonLarcherRibeiro/sockets_udp
RamonLarcherRibeiro/webBee
RedSiege/EyeWitness
Redth/APNS-Sharp
Redth/PushSharp
RelevanceAI/relevanceai
RoboCoachTechnologies/GPT-Synthesizer
S3cur3Th1sSh1t/Caro-Kann
STRML/strml.net
SWHL/RapidVideOCR
SakanaAI/evolutionary-model-merge
SamPink/dev-gpt
SaraChalokh/ACE_CloneWars1
SchemaStore/schemastore
SciML/DiffEqFlux.jl
SenegalLang/Senegal
SgtHotshot/pb4py
ShishirPatil/gorilla
Shopify/active_utils
Shwetago/Generative-model-using-PyTorch
Significant-Gravitas/Auto-GPT-Plugins
Significant-Gravitas/AutoGPT
Sinaptik-AI/pandas-ai
Snowflake-Labs/snowflake-arctic
Squirrel/Squirrel.Windows
Squirrelcoding/lexer-thing
Stability-AI/StableCascade
Stability-AI/StableLM
SuReLI/dyna-gym
SunoApi/SunoApi
SurveyMan/SurveyMan
SwiftCommunityPodcast/podcast
Sycnex/Windows10Debloater
SzymonPobiega/restbucks-wcf
THUDM/GLM
THUDM/P-tuning
THUDM/P-tuning-v2
THUDM/WebGLM
TechEmpower/FrameworkBenchmarks
TencentARC/GFPGAN
Terence-A/Terence_Arseneault_Portfolio
Tharun-tharun/tharunp
TheAtticusProject/cuad
ThePrimeagen/harpoon
ThrowTheSwitch/Unity
Torantulino/AI-Functions
TransformerOptimus/SuperAGI
Tryneus/Lethe
Tryneus/indecorous
Unity-Technologies/Labs
Unstructured-IO/unstructured
UpstageAI/dataverse
VDIGPKU/GALA3D
VHellendoorn/Code-LMs
VHellendoorn/ICLR20-Great
Vision-CAIR/MiniGPT-4
Vladimir2506/Pointformer
W4RH4WK/Debloat-Windows-10
Walter0807/MotionBERT
WeixiongLin/PMC-CLIP
William3Johnson/animated-succotash
Willsalmon/lovecoin
WongKinYiu/yolov9
X-PLUG/mPLUG-Owl
XanaduAI/jet
XiangLi1999/PrefixTuning
YellPika/constraint-rules
YodasMyDad/mvcforum
Yvictor/TradingGym
ZXDunny/SpecBAS-Demos
ZaydH/influence_analysis_papers
ZrrSkywalker/Personalize-SAM
aamini/introtodeeplearning
abacaj/chatgpt-backup
abertsch72/unlimiformer
acheong08/ChatGPT
acheong08/EdgeGPT
acken/AutoTest.Net
activemerchant/active_merchant
adapter-hub/adapters
adelfak/hell
adithya-s-k/omniparse
aengelberg/jamulus-bootstrapped
affinelayer/pix2pix-tensorflow
agiresearch/AIOS
agiresearch/OpenAGI
aindilis/ies
aindilis/nlu
albertoruiz/generic
albrones/Pomodex
alekszemz/react-portfolio
alex/what-happens-when
ali-vilab/composer
allenai/dolma
allenai/mmc4
allenai/natural-instructions-v1
alpa-projects/alpa
amccloud/django-stripe
amureke/amureke
anant0407/Gideon
andrewferlitsch/Gap
andrewferlitsch/Training
andrewferlitsch/idiomatic
andrewferlitsch/labs.earth
andyzoujm/pixmix
andyzoujm/representation-engineering
anse-app/chatgpt-demo
anthropics/anthropic-sdk-python
anysphere/gpt-4-for-code
aounon/distributional-robustness
apache/superset
apple/corenet
apple/ml-aim
apple/ml-hierarchical-confusion-matrix
apple/ml-stable-diffusion
apple/pkl
apple/swift-clang
apple/swift-corelibs-foundation
apple/swift-corelibs-libdispatch
apple/swift-llvm
apple/swift-protobuf-plugin
arc53/DocsGPT
argoproj/argo-cd
arskom/spyne
artidoro/qlora
artifacthub/hub
artificial-scientist-lab/FutureOfAIviaAI
arvindshmicrosoft/azure-sql-devops
asakatida/data-structures-and-algorithms.py
asakatida/glowing-chainsaw
asakatida/primes
asciidoctor/asciidoctor.org
askrella/whatsapp-chatgpt
asolpshinning/chaingpt
assafmo/joincap
astral-sh/uv
aturon/aturon.github.io
augmentedstartups/AS-One
aukw/xhyx
aurelio-labs/arxiv-bot
auser/poolparty
autogluon/autogluon
avinayak14/DrQA_Research_Paper
avinayak14/Games
aws-samples/aws-do-eks
ayaka14732/jax-smi
ayaka14732/tpu-starter
b/bertrem
b7leung/MLE-Flashcards
bapt/cplanet
bbatsov/prelude
bbelchak/campy
bcsherma/mnist-vae
bcsherma/prolame
bcsherma/superres
beefytech/Beef
berlino/seq_icl
bernard24/Embarrassingly-simple-ZSL
bernard24/multitask-representation
beydacar1/JavascriptDrumKit
beydacar1/movie-project
bgavran/Category_Theory_Machine_Learning
bhooi/dynamic
bhooi/honors-thesis
bigcode-project/starcoder
bigscience-workshop/model_card
binux/cat-planet-bot
biobootloader/wolverine
biomadeira/biomadeira
biomadeira/cli-rules
birnbaumlab/Rappazzo-et-al-2020
bitmerse/WiSer
bitsandbytes-foundation/bitsandbytes
booydar/recurrent-memory-transformer
boyugou/Mind2Web
bradendubois/do-calculus
bradtraversy/design-resources-for-developers
braveclojure/cftbat-code
brevdev/notebooks
brianmario/mysql2
c3js/c3
cadentj/m3
camel-ai/camel
carlini/js13k2019-yet-another-doom-clone
cbfinn/gps
cesarhuret/docGPT
cfbreathing/slides
cg123/promptrate
chapel-lang/chapel
charlax/professional-programming
charlesw/tesseract
charted-co/charted
chenfei-wu/TaskMatrix
chroma-core/chroma
clockvoid/HaskellAnywhereForAndroid
clojure-emacs/cider
clojure/clojure
cneilmon/cneilmon.github.io
cocktailpeanut/dalai
cognitivecomputations/dolphin-system-messages
commoncrawl/cc-pyspark
commoncrawl/news-crawl
conceptofmind/PaLM
conda/conda-build
continue-revolution/sd-webui-segment-anything
coq/coq
corca-ai/EVAL
coreos/third_party.go
cortex-lab/phy
crystal-lang/crystal
cs50/python-cs50
csbl-br/awesome-compbio-chatgpt
cue-lang/cue
curl/trurl
curtisjamesholt/BY-GEN-public
dair-ai/ML-Papers-of-the-Week
dair-ai/Mathematics-for-ML
dangertits/dangertits
dangkhoasdc/awesome-ai-residency
dani-garcia/vaultwarden
danielytan/Hanabi_SPARTA_257
danielytan/LAHACKSPROJ
danielytan/doom_DQN
danielytan/elastic-search-experiment
danielytan/next-js-experiment
danielytan/next-js-lighthouse-example
danielytan/nextjs-console-experiment
danielytan/offline-notes
danielytan/project-c
danielytan/q-bert
danlucraft/redcar
dapr/dapr
darrencauthon/AutoMoq
dart-lang/sdk
databrickslabs/dolly
datamapper/dm-core
datamapper/dm-migrations
dataprofessor/code
dataprofessor/data
dataprofessor/pywebio-bmi
datitran/face2face-demo
daveveitch/UofT
davidfitzek/Computational-Physics-Binary-Alloy
davidfitzek/Computational-Physics-Molecular-Dynamics
davidfitzek/bachelor_thesis_qml
davidfitzek/qbang
davidfitzek/qflow
dbieber/ti83
dc-js/dc.js
dcai-course/dcai-lab
dcetin/eth-cs-notes
deconasser/Space-Game-Cplusplus-SDL2
deep-diver/keras-sd-serving
deepseek-ai/DeepSeek-Coder
deepseek-ai/DeepSeek-MoE
deepset-ai/haystack
der-mur/book1-zynq-intro
der-mur/zynq-cpp-sandbox
der-mur/zynq-freertos-sandbox
desktop/desktop
detaos/vectimator
devbridge/jQuery-Autocomplete
dhansel/PaperTapeReader
dipuk0506/SpinalNet
disconcision/fructure
disler/lllm
ditekshen/detection
dlang/dmd
dm4ml/gate
donnemartin/gitsome
dosfstools/dosfstools
dotnet/csharplang
dotnet/fsharp
dotnet/roslyn
drym-org/qi
dumbanode/Escape-From-Dreamland
dwofk/fast-depth
dypsilon/frontend-dev-bookmarks
ebroder/anygit
eclipse-archived/golo-lang
ejmejm/in-weight-memory
ekiwi111/chromadb-bun-segmentation-fauilt
elbowz/xbmc.service.pushbullet
eliemichel/LilySurfaceScraper
elixir-lang/elixir
elizakempton/Exo_Transmit
elm/compiler
elyase/awesome-gpt3
emorikawa/pythonREPL
ericciarla/babyagijs
ericjang/chaos
eriklindernoren/ML-From-Scratch
erlang/otp
ermongroup/cs228-notes
ethanfetaya/NRI
eugeneyan/open-llms
eureka-research/Eureka
evalplus/evalplus
eventmachine/eventmachine
eventmachine/evma_httpserver
evogytis/baltic
exaloop/codon
exo-lang/exo
ezhangle/BF4
ezhangle/BlueTooth
ezhangle/BlueToothSender
ezhangle/Chronoshift-Files
ezhangle/CxlCommon
ezhangle/DWGLib
ezhangle/File_Extractor
ezhangle/HeliMap
ezhangle/Materials
ezhangle/SmartHeap
ezhangle/Splice3DSMAX
ezhangle/SpliceModo
ezhangle/SyncMe
ezhangle/TPoF
ezhangle/TinyUnityRuntime
ezhangle/UE4RuntimeMeshComponent_Marketplace
ezhangle/WaterObjects
ezhangle/Window-API
ezhangle/apps
ezhangle/caskbench
ezhangle/ce_buildbot
ezhangle/chip-8
ezhangle/clok
ezhangle/coolc
ezhangle/dotty-tools
ezhangle/eventql-ruby
ezhangle/foo_midi
ezhangle/glexamples
ezhangle/hlmaster
ezhangle/krypton
ezhangle/leveldbd
ezhangle/lldb
ezhangle/maji
ezhangle/matrix
ezhangle/meshy-tools
ezhangle/mini_dungeon_maker
ezhangle/mojo_sdk
ezhangle/mono-vo
ezhangle/motor
ezhangle/neoirc
ezhangle/opentvremote
ezhangle/radar_parser
ezhangle/react-native-qiu-shi-bai-ke
ezhangle/shinobi
ezhangle/stare
ezhangle/swmm
ezhangle/tangram-ascii
ezhangle/timingwheel
ezhangle/twinkle
ezhangle/ultramicron
ezhangle/villa2d
ezhangle/voxel-lidar
fabiensanglard/Another-World-Bytecode-Interpreter
fabiocaccamo/python-benedict
facebookresearch/AnimatedDrawings
facebookresearch/Aria_data_tools
facebookresearch/audiocraft
facebookresearch/dinov2
facebookresearch/flores
facebookresearch/home-robot
facebookresearch/jepa
facebookresearch/projectaria_tools
fantasyland/fantasy-land
farzask/farzask.github.io
fastapi/fastapi
fchollet/deep-learning-with-python-notebooks
feizc/DiT-MoE
fergusbarratt/qmps
fiddler-labs/fiddler-auditor
firework8/Awesome-Skeleton-based-Action-Recognition
fishsizeproject/BigFishGame
fixie-ai/fixie-sdk-js
flexflow/FlexFlow
florestefano1975/comfyui-prompt-composer
flowchartsman/go-in-action
flu-crew/octoFLU
flu-crew/smot
fonsp/Pluto.jl
forhaoliu/chain-of-hindsight
forhaoliu/hybrid-discriminative-generative
forhaoliu/language-quantized-autoencoders
forhaoliu/ringattention
forhaoliu/taming-maml
franciscoliu/Awesome-GenAI-Unlearning
frmsaul/Tetris3D
fudan-zvg/Semantic-Segment-Anything
gbwey/predicate-typed
gcaccaos/ising-model-2d
gdb/Conv-Nets-Series
gdb/Stout
gdb/Stripe.com-Wordpress-Plugin
gdb/Visualizing-Representations
gdb/active_merchant
gdb/active_utils
gdb/amq-protocol
gdb/anygit
gdb/apache2
gdb/asciinema-player
gdb/barnowl
gdb/bashttpd
gdb/bertrem
gdb/bulldozer
gdb/bunny
gdb/char-rnn
gdb/chef-cookbook-hostname
gdb/chromepg
gdb/chronos
gdb/colah.github.io
gdb/configatron
gdb/connexion
gdb/ctf-helpers
gdb/dm-core
gdb/dm-migrations
gdb/docker-dd-agent
gdb/docker-grafana-graphite
gdb/docker-graphite-statsd
gdb/docker-openvpn
gdb/docker-vault
gdb/documents-and-resources
gdb/domaincli
gdb/doom-py
gdb/edits-benedict
gdb/em-http-request
gdb/emailyak-ruby
gdb/embedded-mongo
gdb/escort
gdb/etcd
gdb/etcd-cookbook
gdb/eventmachine
gdb/evma_httpserver
gdb/firering
gdb/firewall
gdb/gaps
gdb/ghsync
gdb/gin
gdb/gists
gdb/git
gdb/github-flask
gdb/gmail-archiver
gdb/group-conv-post
gdb/gym
gdb/hubot-deploy
gdb/impala
gdb/kaggle
gdb/layered-yaml-attrdict-config
gdb/lfs-test
gdb/libgit2
gdb/logging
gdb/logstash
gdb/logstash-utils
gdb/lspace
gdb/lua-protobuf
gdb/lunchbox
gdb/mail
gdb/mime-types
gdb/minitest
gdb/mod-vhost-ldap
gdb/mongo-ruby-driver
gdb/mysql2
gdb/neuraltalk
gdb/node-DJs
gdb/nsenter-build
gdb/one-chat
gdb/openai-python
gdb/password-vault
gdb/poolparty
gdb/pybind11
gdb/pyconfigatron
gdb/pyseidon
gdb/rack-flash
gdb/raft
gdb/react-contenteditable
gdb/react-text-selection-popover
gdb/remote_ikernel
gdb/require-prof
gdb/ruby
gdb/ruby-static-checker
gdb/ruby_rbenv
gdb/ruby_route_53
gdb/rubysh
gdb/rugged
gdb/sinatra
gdb/slate
gdb/sneaker
gdb/spam-can
gdb/spree
gdb/state_machine
gdb/statsd
gdb/stellar-federation
gdb/stellard
gdb/stellarjob
gdb/stripe-prg
gdb/tee-output
gdb/tensor2tensor
gdb/terraform
gdb/thrifty
gdb/tmate-docker
gdb/triton
gdb/trpo
gdb/ufw
gdb/vault
gdb/write-ups
gdb/zcommit
gdb/zipkin
geekan/MetaGPT
gencay/vscode-chatgpt
geometric-intelligence/pirounet
geomstats/geomstats
getpelican/pelican
ggerganov/llama.cpp
gifford-lab/PUFFIN
gifford-lab/overinterpretation
github/copilot.vim
githubnext/githubnext
gitster/git-htmldocs
gitster/git-manpages
gkamradt/langchain-tutorials
gkz/LiveScript
gmpetrov/databerry
goby-lang/goby
godotengine/godot
gogs/gogs
golang/go
goldbergyoni/nodebestpractices
google-deepmind/long-form-factuality
google-deepmind/recurrentgemma
google-deepmind/tracr
google-research-datasets/wit
google-research/jaxpruner
google-research/medical-ai-research-foundations
google-research/swift-tfp
google/grumpy
google/pyglove
google/seqio
google/swift
google/tf-quant-finance
gosu-lang/gosu-lang
gpt-mind/gpt-mind
gradio-app/awesome-demos
gradio-app/gradio
graninas/Hydra
graphcore/ogb-lsc-pcqm4mv2
graphdeco-inria/gaussian-splatting
greshake/llm-security
guidance-ai/guidance
h2oai/h2o-llmstudio
h2oai/h2ogpt
habospace/lilla
hacktoon/acrilic
hank-ai/darknet
hao-ai-lab/LookaheadDecoding
haofanwang/ControlNet-for-Diffusers
haok1402/GPT-Sentinel-public
hashicorp/vagrant
helloSystem/hello
hemanth/functional-programming-jargon
hendrycks/apps
hendrycks/jiminy-cricket
hendrycks/math
hendrycks/pre-training
hendrycks/robustness
hilaliMoncef/portfolio
hkust-nlp/AgentBoard
holistic-ai/holisticai
huggingface/accelerate
huggingface/datasets