本文记录阅读该paper的笔记,这篇论文是TenSeal库的原理介绍. 摘要 机器学习算法已经取得了显著的效果,并被广泛应用于各个领域.这些算法通常依赖于敏感和私有数据,如医疗和财务记录.因此,进一步关注隐私威胁和应用于机器学习模型的相应防御技术至关重要.在本文中,我们介绍了TenSEAL,这是一个使用同态加密保护隐私数据的机器学习开源库,可以轻松地集成到流行的机器学习框架(PyTorch 或 Tensorflow)中.我们使用MNIST数据集对我们的实现进行了benchmark测试,结果显示加…
在此记录Tenseal的学习笔记 介绍 在张量上进行同态计算的库,是对Seal的python版实现,给开发者提供简单的python接口,无需深究底层密码实现. 当前最新版本:3.11 位置:A library for doing homomorphic encryption operations on tensors 具备以下特点: BFV方案的加解密(整数) CKKS方案的加解密(浮点数) 密文-密文.密文-明文的加法和乘法运算(同态计算) 点积和矩阵乘法 将Seal封装为tenseal.se…
TensorFlow Ops 1. Fun with TensorBoard In TensorFlow, you collectively call constants, variables, operators as ops. TensorFlow is not just a software library, but a suite of softwares that include TensorFlow, TensorBoard, and Tensor Serving. To make…
TensorFlow学习笔记2-性能分析工具 性能分析工具 在spyder中运行以下代码: import tensorflow as tf from tensorflow.python.client import timeline #构造计算图 x = tf.random_normal([1000, 1000]) y = tf.random_normal([1000, 1000]) res = tf.matmul(x, y) #运行计算图, 同时进行跟踪 with tf.Session() as…
[源码解析] 深度学习分布式训练框架 horovod (5) --- 融合框架 目录 [源码解析] 深度学习分布式训练框架 horovod (5) --- 融合框架 0x00 摘要 0x01 架构图 0x02 统一层 0x03 Horovod OP 类体系 3.1 基类 HorovodOp 3.2 派生类 AllreduceOp 3.3 适配类 MPIAllreduce 3.4 后台线程如何使用 3.4.1 具体collective 操作 3.4.2 调用不同类型的OP 3.4.3 取一个适配层…
[源码解析] PyTorch 分布式(4)------分布式应用基础概念 目录 [源码解析] PyTorch 分布式(4)------分布式应用基础概念 0x00 摘要 0x01 基本概念 0x02 设计思路 2.1 通信需求 2.2 概念 0x03 设置 0x04 点对点通信 0x05 集合通信 0x06 分布式训练 0x07 Ring-Allreduce 0x08 高级主题 8.1 通信后端 8.1.1 后端种类 8.1.2 使用哪个后端? 8.1.3 Gloo 后端 8.1.4 MPI后端…
LaTeX Software & Manuals How to Typeset Equations in LaTeX LaTeX is a very powerful tool for typesetting mathematical expressions. However, when looking at a typical document one often finds that mathematical equations that are too long to fit on one…
架构:c/s 开发语言:python 服务器端:在linux平台下部署 客户端:分gui与cli两种操作界面 相关包: http://blog.sina.com.cn/s/blog_53b95aec0100ga3x.html svn 出错信息总汇 http://blog.csdn.net/daniel_h1986/article/details/8159811  SVN分支/合并原理及最佳实践 一种典型的项目代码实践方式是:存在一个代码基线(Base Line)或称主干,不同的模块使用各自的分支…
http://www.caole.net/diary/des.html Table of Contents OpenSSL - DES Summary DES使用的例子 另一个带注释的例子 另一段Code: OpenSSL - DES   Summary This library contains a fast implementation of the DES encryption algorithm. There are two phases to the use of DES encryp…
Data Pump Export ATTACH Default: job currently in the user's schema, if there is only one Purpose(目的) Attaches the client session to an existing export job and automatically places you in the interactive-command interface. Export displays a descripti…