📰 Dev.to · slackman
Articles from Dev.to · slackman · 3 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (9433)
ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog

Dev.to · slackman
1mo ago
Python sigmoid()
$$ f(x) = \frac{1}{ (1 + e^{-x}) } $$ $$ f'(x) = f * (1-f) $$ pip install numpy matplotlib...

Dev.to · slackman
2mo ago
Python quick_sort
def quick_sort(arr): if len(arr) <=1: return arr pivot = arr[0] left = [] right =...

Dev.to · slackman
2mo ago
Python math.gcd
(10,2) => 2 (3, 5) => 1 def gcd(a,b): if a < b: a,b = b,a while b: ...
DeepCamp AI