Skip to content

Instantly share code, notes, and snippets.

View dysinger's full-sized avatar
🏠
Working from home

Dysinger dysinger

🏠
Working from home
  • Independent
  • Nearby
View GitHub Profile
;; This is proof-of-concept, it's not idiomatic and needs a lot of refactoring, take it with a block of salt.
(ns gradient-descent.core)
;; Thetas with starting values
(def theta0 (atom 1))
(def theta1 (atom 1))
(def theta2 (atom 1))