This is the timeout paradox: both paths lead to failure. The difference is the path you take determines whether you see it coming.
TVSTRANGERTHINGS

izzy's playlists!
Show & Tell
almost home
Monterey Bay Aquarium
Keni
noise dept.

Origami Around

Product Placement

shark vs the universe

Discoholic 🪩

JBB: An Artblog!
KIROKAZE
tumblr dot com

❣ Chile in a Photography ❣

★
YOU ARE THE REASON

Kaledo Art

ellievsbear

blake kathryn
seen from United States

seen from France

seen from France
seen from Bulgaria

seen from United States
seen from United States

seen from United States

seen from United States
seen from United States

seen from United States
seen from United States
seen from United States
seen from United States

seen from United States

seen from United States

seen from United States

seen from United States

seen from Türkiye
seen from United States
seen from Türkiye
@kevinmarville
This is the timeout paradox: both paths lead to failure. The difference is the path you take determines whether you see it coming.
Woo-commerce, Bit-commerce = gratuit, payant
Pour un panier d’achat, j’irais avec deux booléens clairs : $codeReductionApplique et $eligibileLivraisonGratuite. Ça couvre tout : vérifier si le code est actif, et si la livraison est gratos en fonction des règles.
90s immersion: CRT monitors and mechanical keyboards
Pairing with Aureal Vortex audio cards represented just one facet of how developers pushed aging hardware architecture into new territory, inspiring a generation of landmark titles like Unreal Tournament. Have an amazing weekend everyone, I'm kicking mine off with a bit of 3DFX powered gaming.Unreal (1998) pic.twitter.com/POfMRdbG5I— Gammitin (Ben) 💾 (@Gammitin) June 28, 2024 But the innovation…
Michael Le · GitLab
https://gitlab.com/mle [alias] review = "!f() { curl $1.diff | git apply && git add --all | gdk restart; }; f" discard = "!f() { git reset --hard HEAD; }; f"
Fonction d'activation neuronale
Softmax softmax(xᵢ) = eˣⁱ / ∑eˣʲ Used for multi-class classification. Outputs probability distribution.
Fonction d'activation neuronale
ReLU ReLU(x) = max(0, x) Most popular. Computationally efficient, helps with vanishing gradient problem.
Fonction d'activation neuronale
Tanh tanh(x) = (eˣ – e⁻ˣ) / (eˣ + e⁻ˣ) Output range: (-1, 1). Zero-centered, often better than sigmoid.
Fonction d'activation neuronale
Sigmoid σ(x) = 1 / (1 + e⁻ˣ) Output range: (0, 1). Used for binary classification and probability outputs
Type System: statique, dynamique ou sadique ?
en.wikipedia.org/wiki/Type_system Le typage dépendant (dans Epigram, Idris, Agda, Dependent ML) se distingue du typage statique classique (comme Java, C, Rust) et du typage dynamique (comme Python, Ruby, JavaScript) parce qu’il ne se contente pas de vérifier que « les types correspondent » ou d’attendre l’exécution pour signaler une erreur, mais il encode dans les types eux-mêmes des propriétés…
Le français qui a update nos base de données, Pierre-Simon Laplace. La croyance mise à jour s’appelle posterior
the guy who developed Bayesian stats as it is today is a French mathematician called Pierre-Simon Laplace on peut se référer aux travaux de Pierre-Simon Laplace tels qu’ils sont présentés dans des ouvrages comme « Théorie analytique des probabilités » ou encore dans des articles récents de revues de statistiques, comme le « Journal of Statistical Physics ». prior = Belief(value=0.3) posterior =…
Evidance changes your beliefs
Extraordinary beliefs. require extraordinary evidence. And so that’s basically what Bayes’ formula is about. It’s the mathematical way of saying extraordinary claims require extraordinary evidence. And so if you think I’m an alien, a priori, it’s a very small probability. But then let’s say you get access to one of my blood tests. And in this resource, you get the information that actually my…
What is Bayesian mindset ? a constant process of updates
It’s extremely painful to have a perfectionist mindset. It’s a way to control the world around you. What helps me is to compare myself to what I was yesterday. Because the problem is that we try to compare ourselves with someone who’s maybe spent hours mastering a skill that we just started with. Or comparing yourself with your ideal version of yourself. There is a very good book actually by…
Entre histoire et data: penser contre soi-même, ça forge
« Who writes history books and who analyzes data and comes up with the statistics in a way determines the way people get this information? » Le mec qui a étudié l’histoire, même s’il fait maintenant des stats en Python, il reste influencé par la narration, la structure, la chronologie. Et inversement, un pur data scientist peut finir par écrire une histoire à travers ses graphes
Mélancolie, poésie et humeur
C’est vrai que l’ambiance d’une ville peut vraiment influencer notre humeur. Chaque endroit a un peu sa propre atmosphère, et parfois on ressent ça sans même s’en rendre compte. Donc c’est tout à fait possible que l’énergie de l’endroit où tu vis joue un rôle sur ce que tu ressens
Creates an array [1, 2, 3, 4, 5]
View on Threads A function pointer is a variable that stores the memory address of a function. This allows us to treat code as data, we can pass functions as arguments and decide which function to call at runtime. View on AliExpress
gdk rails console: So, why simply export GITLAB_SIMULATE_SAAS=0 didn’t work
One unified search tool; request goes through service.execute, checks current_user, and authorize! is always allowed.
+1. MCP client calls service.execute(request:, params:) 392 +1. CustomService.execute validates current_user presence This merge request introduces an “aggregated search MCP tool” that unifies the separate global, group and project search endpoints into a single dispatcher service: by inspecting parameters like group_id or project_id, the tool routes requests to the appropriate underlying API,…