Skip to content

Commit

Permalink
add multiple linear regression example
Browse files Browse the repository at this point in the history
  • Loading branch information
retraigo committed Oct 21, 2023
1 parent 1fb9e7f commit 3470024
Show file tree
Hide file tree
Showing 4 changed files with 10,092 additions and 0 deletions.
1 change: 1 addition & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"example:xor-gpu": "deno run -A --unstable ./examples/xor_gpu.ts",
"example:xor-wasm": "deno run -A --unstable ./examples/xor_wasm.ts",
"example:linear": "deno run -A --unstable ./examples/linear.ts",
"example:multiple-linear": "deno run -A --unstable ./examples/multiple-linear/student.ts",
"example:binary": "deno run -A --unstable ./examples/classification/binary_iris.ts",
"example:filters": "deno run -A --unstable examples/filters/conv.ts ",
"example:train": "deno run -A --unstable examples/model/train.ts ",
Expand Down
2 changes: 2 additions & 0 deletions examples/multiple-linear/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Multiple Linear Regression
This example showcases linear regression on a dataset with multiple variables.
Loading

0 comments on commit 3470024

Please sign in to comment.