tf-encrypted / tf-encrypted

A Framework for Encrypted Machine Learning in TensorFlow

Home Page:https://tf-encrypted.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for Non-Keras TensorFlow Code?

allenkim opened this issue · comments

Hi,

I was wondering if one could write non-Keras TensorFlow code and convert that into a secure version. It seems the examples all make use of Keras (unless I missed something?).

Thank you!

Hi, take a look at the graph converter. It predates our Keras interface, and it's not very polished, but it can be used to attempt an auto-conversion. There is also a guide there for adding new conversions to account for graph operations/subgraphs that TFE can't identify directly

Thanks for the quick reply!