Generating a Proof for a Private Network #195
-
Hey All. Hope you are doing well. Running the default settings for the ezkl compiler work fine(public network, private input). Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Hey @zd819 :) by default the parameters of the network are private, the inputs to the network are private and the outputs of the network are publically known. You can play around with these settings with the following flags # sets the networks parameters to be public or private
--public-params=true/false
# sets the network inputs to be public or private
--public-inputs=true/false
# sets the network output to be public or private
--public-outputs=true/false Example usage for public inputs to the network produce a specific public output, whilst keeping weights private ezkl --public-inputs=true --public-params=false --public-outputs=true prove ...
Hope that helps :) |
Beta Was this translation helpful? Give feedback.
Hey @zd819 I've implemented it here #216 . Hope that helps