You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix: Set notebook version of library to latest (#57)
* fix: set version of notebooks automatically to latest
* chore: added linear_regression tutorial notebook
* chore: added linear_regression to README.md
Copy file name to clipboardExpand all lines: examples/README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,3 +6,4 @@ The following are the currently available examples:
6
6
-**Matrix Multiplication**[](https://colab.research.google.com/github/NillionNetwork/nada-numpy/blob/main/examples/matrix_multiplication/matrix_multiplication.ipynb)
7
7
-**Broadcasting**[](https://colab.research.google.com/github/NillionNetwork/nada-numpy/blob/main/examples/broadcasting/broadcasting.ipynb)
8
8
-**Rational Numbers**[](https://colab.research.google.com/github/NillionNetwork/nada-numpy/blob/main/examples/rational_numbers/rational_numbers.ipynb)
9
+
-**[Advanced] Linear Regression Closed-Form Training**[](https://colab.research.google.com/github/NillionNetwork/nada-numpy/blob/main/examples/linear_regression/linear_regression.ipynb)
[](https://colab.research.google.com/github/NillionNetwork/nada-numpy/blob/main/examples/linear_regression/linear_regression.ipynb)
4
+
5
+
This tutorial shows how to train a linear regression privately based on the closed-form solution to linear regression.
6
+
7
+
This is an implementation on the [paper by Blom et al.](https://eprint.iacr.org/2019/773.pdf)
8
+
9
+
## 🚨 Limitations
10
+
The choice for blind computing implies certain trade-offs in comparison to conventional computing. What you gain in privacy, you pay in extra computational overhead & capacity constraints.
11
+
12
+
Therefore, you will notice that large-scale computational workloads may lead to long compilation and/or execution times or hitting network capacity guardrails.
13
+
14
+
That said, the Nillion team is working around the clock to push the boundaries of this technology and bring the potential of blind computing to reality 🚀
15
+
16
+
👉 This example has been tested on local devnet with the current given dimension of 3 x 3.
17
+
18
+
## ➡️ Stay in touch
19
+
If you want to get involved in the blind computing community and be the first to know all big updates, join our Discord
0 commit comments