This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; 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)) |
NewerOlder