diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f411f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*\~ diff --git a/phase2.dyalog b/phase2.dyalog new file mode 100644 index 0000000..5dac59d --- /dev/null +++ b/phase2.dyalog @@ -0,0 +1,14 @@ +: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