📰 Dev.to · slackman
3 articles · Updated every 3 hours · View all reads
All
Articles 75,800Blog Posts 102,389Tech Tutorials 18,503Research Papers 16,016News 13,171
⚡ AI Lessons

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

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

Dev.to · slackman
4mo 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