fdl icon indicating copy to clipboard operation
fdl copied to clipboard

Simple implementations of forward- and backward-mode automatic differentation in Scala

Results 1 fdl issues
Sort by recently updated
recently updated
newest added

Taking below snippet as reference: ``` val x = Reverse(-2.0) val y = Reverse(5.0) val z = Reverse(-4.0) val q = x + y val f = q * z...