Skip to content

Commit 854156d

Browse files
committed
Introductory slides now updated and fully translated to slipshow!
1 parent e334f43 commit 854156d

10 files changed

+10912
-386
lines changed

datasets/half_moons.ml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ let generate_with_kind kind ?(config = Config.default) ~len () =
3939
for i = 0 to len - 1 do
4040
let v = Float.of_int i *. Float.pi /. Float.of_int len in
4141
let c = Float.cos v and s = Float.sin v in
42-
let x = c +. noise () in
43-
let y = s +. noise () in
42+
let x = c +. noise () and y = s +. noise () in
4443
let idx = i * 2 in
4544
Genarray.set coordinates [| idx; 0 |] x;
4645
Genarray.set coordinates [| idx; 1 |] y;
@@ -51,8 +50,7 @@ let generate_with_kind kind ?(config = Config.default) ~len () =
5150
for i = 0 to len - 1 do
5251
let v = Float.of_int i *. Float.pi /. Float.of_int len in
5352
let c = Float.cos v and s = Float.sin v in
54-
let x = 1.0 -. c +. noise () in
55-
let y = 0.5 -. s +. noise () in
53+
let x = 1.0 -. c +. noise () and y = 0.5 -. s +. noise () in
5654
let idx = (i * 2) + 1 in
5755
Genarray.set coordinates [| idx; 0 |] x;
5856
Genarray.set coordinates [| idx; 1 |] y;

docs/CLAUDE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,22 @@ Slipshow is a text-based presentation engine that compiles Markdown to interacti
2626
- **Quote style**: Use `>` to group blocks together
2727
- **Horizontal rules**: Use `---` to separate sections
2828

29+
Standalone navigation action can be combined witth the following block metadata:
30+
31+
```markdown
32+
{pause up=block-id}
33+
34+
{#block-id}
35+
```
36+
37+
is equivalent to:
38+
39+
```markdown
40+
{pause up #block-id}
41+
```
42+
43+
and the latter is preferred.
44+
2945
### Interactive Elements
3046
- **Drawing mode**: Press `w` to write, `h` to highlight, `e` to erase
3147
- **Speaker view**: Press `s` for notes and timing

docs/OCANNL-slides-basics_backprop_training_codegen.html

Lines changed: 10168 additions & 0 deletions
Large diffs are not rendered by default.

docs/OCANNL-slides-basics_backprop_training_codegen.md

Lines changed: 723 additions & 382 deletions
Large diffs are not rendered by default.

docs/Tensorflow_Playground.png

811 KB
Loading

docs/cuda-gdb-session.png

193 KB
Loading

docs/hinge_loss.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/ppx_minidebug_logs.png

160 KB
Loading

docs/tensor_carousel_1of2.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/tensor_carousel_2of2.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)