User:Sethalves/scheme-perceptron: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

26 March 2009

  • curprev 18:4218:42, 26 March 2009Sethalves talk contribs 1,514 bytes +1,514 New page: <pre> #!/usr/bin/guile \ --debug -s !# (use-modules (ice-9 format)) (define (dot-product v0 v1) (apply + (map (lambda (m0 m1) (* m0 m1)) v0 v1))) (define (sigmoid beta x) ;; sig...