Returns a Poly.MathMethods.*.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.*
Returns a Poly.MathMethods.*.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.*
import com.thoughtworks.deeplearning.DifferentiableInt._ import com.thoughtworks.deeplearning.Symbolic def myNetwork(implicit inputIntLayer: Int @Symbolic)(anotherIntLayer: Int @Symbolic) = { Poly.MathMethods.*(inputIntLayer,anotherIntLayer) }
Returns a Poly.MathMethods.+.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.+
Returns a Poly.MathMethods.+.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.+
import com.thoughtworks.deeplearning.DifferentiableInt._ import com.thoughtworks.deeplearning.Symbolic def myNetwork(implicit inputIntLayer: Int @Symbolic)(anotherIntLayer: Int @Symbolic) = { Poly.MathMethods.+(inputIntLayer,anotherIntLayer) }
Returns a Poly.MathMethods.-.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.-
Returns a Poly.MathMethods.-.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods.-
import com.thoughtworks.deeplearning.DifferentiableInt._ import com.thoughtworks.deeplearning.Symbolic def myNetwork(implicit inputIntLayer: Int @Symbolic)(anotherIntLayer: Int @Symbolic) = { Poly.MathMethods.-(inputIntLayer,anotherIntLayer) }
Returns a Poly.MathMethods./.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods./
Returns a Poly.MathMethods./.Case that accepts two Int Layers for the polymorphic function Poly.MathMethods./
import com.thoughtworks.deeplearning.DifferentiableInt._ import com.thoughtworks.deeplearning.Symbolic def myNetwork(implicit inputIntLayer: Int @Symbolic)(anotherIntLayer: Int @Symbolic) = { Poly.MathMethods./(inputIntLayer,anotherIntLayer) }
Author:
杨博 (Yang Bo) <[email protected]>