Skip to content

Commit

Permalink
one note
Browse files Browse the repository at this point in the history
  • Loading branch information
vmchale committed Aug 20, 2024
1 parent e80421c commit e412665
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
5 changes: 5 additions & 0 deletions MATRIX.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- [ ] https://github.com/mlochbaum/bqn-libs/blob/master/matrix.bqn
- [ ] https://en.wikipedia.org/wiki/QR_decomposition
- [ ] https://en.wikipedia.org/wiki/Singular_value_decomposition#Calculating_the_SVD
- [ ] https://en.wikipedia.org/wiki/Principal_component_analysis
- [ ] https://en.wikipedia.org/wiki/Ordered_dithering
9 changes: 9 additions & 0 deletions QUICKCHECK.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- [ ] amgm is between its arguments
- [ ] [((+)/x)%ℝ(:x)]'([x]\`7 (frange 0 9 10)) equal to [((+)/x)%ℝ(:x)]\` 7
- [ ] ~`{1∘[2]}⟨⟨0,1⟩,⟨1,0::int⟩,⟨2,4⟩⟩ vs ~'⟨⟨0,1⟩,⟨1,0::int⟩,⟨2,4⟩⟩
- [ ] |: ((2 ⊖)`{1} ⟨⟨1,2⟩,⟨3,4⟩,⟨5,6.0⟩⟩)
- [ ] > [(⋉)/x] ⨳ {3} ⟨_1,0,4,_2,3,3,1,1,0,_5.0⟩
Vec 8 [4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 1.0, 1.0]
> [(⋉)/x] \`3 ⟨_1,0,4,_2,3,3,1,1,0,_5.0⟩
Vec 8 [4.0, 4.0, 4.0, 3.0, 3.0, 3.0, 1.0, 1.0]
- [ ] :qc \xs. (xs˙)'even.⩪xs = even. § xs
2 changes: 2 additions & 0 deletions doc/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

Apple is an experimental compiler structured as a library.

Everything is an expression; there are no imports.

## Installation

The REPL and typechecker are available on the [release page](https://github.com/vmchale/apple/releases).
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ <h2 id="train-neural-network">Train Neural Network</h2>
sDdx ← [x*(1-x)];
sum ⇐ [(+)/x];
ho ⟜ sigmoid`{0} ([(+)`bh x]&#39;(X%.wh));
prediction ⟜ sigmoid&#39;((+bo)&#39;(ho%:wo));
prediction ⟜ (sigmoid ∴ (+bo))&#39;(ho%:wo);
l1E ← (-)`Y prediction;
l1Δ ⟜ (*)`(sDdx&#39;prediction) l1E;
he ← l1Δ (*)⊗ wo;
Expand Down

0 comments on commit e412665

Please sign in to comment.