apl-competition-2018/phase2.dyalog

14 lines
297 B
APL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

:Namespace Phase2
(⎕IO ⎕ML ⎕WX)1 1 3
⍝ Neural Network Problem Set
⍝ Problem 1 - Transfer Functions
StepFn{¯1+2×0}
Sigmoid{÷1+*-}
⍝ Problem 2 - Perceptron
Perceptron{+/×}
:EndNamespace