-
-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Logistic Regression over Encrypted Data with BFV Scheme #119
Comments
Sorry for reply late, you can approximate the sigmoid function with a polynomial within a limited range. Here is an example. |
I've referred that example. However, the author only used CKKS. One solution I read about is to scale the real numbers into integers by multiply them with scale factor p and then scale them back down to the original values, but I am having difficulty with the scaling down part |
You may need re-encrypt it, there is no bootstrapping in the SEAL. |
Thannks for your help. |
If there is no bootstrapping, Is there a way to refresh noise? I have tried mod switch but it is not very feasible |
|
I am building a Logistic Regression model based on this paper using BFV scheme : https://eprint.iacr.org/2018/462.pdf
However, I could not complete it, because of its floating point number in approximate sigmoid function and learning rate. I've read suggestion of author to use bscale function that is combined in bootstrap and scale. I hope you help me to explain explicit this function. I honestly thanks for your help.
The text was updated successfully, but these errors were encountered: